blob: 7f0a69be04aa9c8c61ba5921da9f0d1fe81cd3b6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
// SPDX-License-Identifier: GPL-2.0
import QtQuick 2.6
import QtQuick.Controls 2.2 as Controls
import QtQuick.Layouts 1.2
import org.subsurfacedivelog.mobile 1.0
import org.kde.kirigami 2.4 as Kirigami
Kirigami.Page {
id: tripEditPage
objectName: "TripDetails"
property string tripLocation
property string tripNotes
title: "" !== tripLocation ? tripLocation : qsTr("Trip details")
state: "view"
padding: Kirigami.largeSpacing
background: Rectangle { color: subsurfaceTheme.backgroundColor }
width: rootItem.colWidth
Flickable {
id: tripEditFlickable
anchors.fill: parent
GridLayout {
columns: 2
width: tripEditFlickable.width
TemplateLabel {
Layout.columnSpan: 2
id: title
text: qsTr("Edit trip details")
font.pointSize: subsurfaceTheme.titlePointSize
font.bold: true
}
Rectangle {
id: spacer
Layout.columnSpan: 2
color: subsurfaceTheme.backgroundColor
height: Kirigami.Units.gridUnit
width: 1
}
TemplateLabel {
text: qsTr("Trip location:")
opacity: 0.6
}
SsrfTextField {
Layout.fillWidth: true
text: tripLocation
flickable: tripEditFlickable
}
TemplateLabel {
Layout.columnSpan: 2
text: qsTr("Trip notes")
opacity: 0.6
}
Controls.TextArea {
text: tripNotes
textFormat: TextEdit.RichText
Layout.columnSpan: 2
Layout.fillWidth: true
Layout.fillHeight: true
Layout.minimumHeight: Kirigami.Units.gridUnit * 6
selectByMouse: true
wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere
}
}
}
}
|