summaryrefslogtreecommitdiffstats
path: root/qt-mobile/qml/DiveDetailsEdit.qml
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2016-01-01 00:32:30 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-01-01 00:55:34 -0800
commita0aa27e86471ec94e00acfd874ca7cdd9c793308 (patch)
treeebd7c42a620723a8f57784715c19af8627de3887 /qt-mobile/qml/DiveDetailsEdit.qml
parent2c28b16b26bd917670f84102d6535abf99a30d4d (diff)
downloadsubsurface-a0aa27e86471ec94e00acfd874ca7cdd9c793308.tar.gz
QML UI: handle editing of depth
Getting closer to being able to really edit / add dives in the mobile UI. This works for manually added dives - needs a bit more thought for dives downloaded from dive computers as we don't necessarily want to change the maxdepth in conflict with the samples. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/qml/DiveDetailsEdit.qml')
-rw-r--r--qt-mobile/qml/DiveDetailsEdit.qml10
1 files changed, 10 insertions, 0 deletions
diff --git a/qt-mobile/qml/DiveDetailsEdit.qml b/qt-mobile/qml/DiveDetailsEdit.qml
index e77b3234a..051e38676 100644
--- a/qt-mobile/qml/DiveDetailsEdit.qml
+++ b/qt-mobile/qml/DiveDetailsEdit.qml
@@ -16,6 +16,7 @@ Item {
property alias divemasterText: txtDiveMaster.text
property alias notesText: txtNotes.text
property alias durationText: txtDuration.text
+ property alias depthText: txtDepth.text
ColumnLayout {
anchors {
left: parent.left
@@ -51,6 +52,15 @@ Item {
MobileComponents.Label {
Layout.alignment: Qt.AlignRight
+ text: "Depth:"
+ }
+ TextField {
+ id: txtDepth
+ text: depth
+ Layout.fillWidth: true
+ }
+ MobileComponents.Label {
+ Layout.alignment: Qt.AlignRight
text: "Duration:"
}
TextField {