54 lines
1.1 KiB
QML
54 lines
1.1 KiB
QML
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
|
|
ListView {
|
|
id: root
|
|
|
|
clip: true
|
|
|
|
highlight: Rectangle { color: "#EEEEEE"; radius: 5 }
|
|
highlightMoveDuration: 500
|
|
|
|
ScrollBar.vertical: ScrollBar {
|
|
parent: root.parent
|
|
anchors.top: root.top
|
|
anchors.right: root.right
|
|
anchors.bottom: root.bottom
|
|
}
|
|
|
|
model: ListModel { id: logModel }
|
|
delegate: TextEdit {
|
|
id: textEdit
|
|
|
|
text: logText
|
|
width: root.width
|
|
clip: true
|
|
readOnly: true
|
|
selectByKeyboard: true
|
|
selectByMouse: false
|
|
wrapMode: TextEdit.WrapAnywhere
|
|
textFormat: TextEdit.RichText
|
|
font.pixelSize: 16
|
|
|
|
TapHandler {
|
|
onTapped: root.currentIndex = index;
|
|
}
|
|
}
|
|
|
|
Button {
|
|
text: "Return to Bottom"
|
|
visible: root.currentIndex !== logModel.count - 1
|
|
onClicked: root.currentIndex = logModel.count - 1;
|
|
}
|
|
|
|
function append(text) {
|
|
const autoScroll = root.currentIndex === logModel.count - 1;
|
|
logModel.append({ logText: text });
|
|
if (autoScroll) {
|
|
root.currentIndex = logModel.count - 1;
|
|
}
|
|
}
|
|
}
|