mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
751626eec5
Completely adapt to the api changes of OverlaySheet in Kirigami2 in order to achieve the same look and behavior for the dive edits that had with kirigami1 Port most components to QtQuickContrls2, except comboboxes in the dive edit sheet that will need a new control type Signed-off-by: Marco Martin <notmart@gmail.com>
37 lines
972 B
QML
37 lines
972 B
QML
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 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")
|
|
}
|
|
Kirigami.Label {
|
|
id: logContent
|
|
width: parent.width
|
|
Layout.preferredWidth: parent.width
|
|
Layout.maximumWidth: parent.width
|
|
wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere
|
|
text: manager.logText
|
|
}
|
|
Rectangle {
|
|
color: "transparent"
|
|
height: Kirigami.Units.gridUnit * 2
|
|
width: pageWidth
|
|
}
|
|
}
|
|
}
|