mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
0ea6f13891
all qDebug / qCDebug and friends now will be properly logged into developer -> log, on QML. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
41 lines
942 B
QML
41 lines
942 B
QML
// SPDX-License-Identifier: GPL-2.0
|
|
import QtQuick 2.3
|
|
import QtQuick.Window 2.2
|
|
import QtQuick.Dialogs 1.2
|
|
import QtQuick.Layouts 1.1
|
|
import QtQuick.Window 2.2
|
|
import QtQuick.Controls 2.1
|
|
import org.subsurfacedivelog.mobile 1.0
|
|
import org.kde.kirigami 2.0 as Kirigami
|
|
|
|
Kirigami.ScrollablePage {
|
|
id: logWindow
|
|
anchors.margins: Kirigami.Units.gridUnit / 2
|
|
objectName: "Log"
|
|
title: qsTr("Application Log")
|
|
|
|
property int pageWidth: subsurfaceTheme.columnWidth - Kirigami.Units.smallSpacing
|
|
|
|
ColumnLayout {
|
|
width: logWindow.width - logWindow.leftPadding - logWindow.rightPadding - 2 * Kirigami.Units.smallSpacing
|
|
spacing: Kirigami.Units.smallSpacing
|
|
Kirigami.Heading {
|
|
text: qsTr("Application Log")
|
|
}
|
|
|
|
ListView {
|
|
width: parent.width;
|
|
height: 500
|
|
model: logModel
|
|
delegate : Text {
|
|
text : message
|
|
}
|
|
}
|
|
|
|
Rectangle {
|
|
color: "transparent"
|
|
height: Kirigami.Units.gridUnit * 2
|
|
width: pageWidth
|
|
}
|
|
}
|
|
}
|