aboutsummaryrefslogtreecommitdiffstats
path: root/qt-mobile/qml/DownloadFromDiveComputer.qml
diff options
context:
space:
mode:
authorGravatar Willem Ferguson <willem@localhost.localdomain>2016-01-25 11:00:02 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-01-25 07:10:37 -0800
commit37d841966f136ee8235b2b23b1d559371baf0294 (patch)
treef8a2314443fb568fe324d4e4e5945db338085091 /qt-mobile/qml/DownloadFromDiveComputer.qml
parent9bc7ef7567bae55d0bf9953f7ecea76c7877b28b (diff)
downloadsubsurface-37d841966f136ee8235b2b23b1d559371baf0294.tar.gz
MOBILE: update downloadFromDiveComputer table
Patch #2 that formats the table to be used for downloaded dives. Signed-off-by: Willem Ferguson <willem@localhost.localdomain> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/qml/DownloadFromDiveComputer.qml')
-rw-r--r--qt-mobile/qml/DownloadFromDiveComputer.qml19
1 files changed, 19 insertions, 0 deletions
diff --git a/qt-mobile/qml/DownloadFromDiveComputer.qml b/qt-mobile/qml/DownloadFromDiveComputer.qml
index d18c37bb8..5ce5370e6 100644
--- a/qt-mobile/qml/DownloadFromDiveComputer.qml
+++ b/qt-mobile/qml/DownloadFromDiveComputer.qml
@@ -84,6 +84,25 @@ Item {
TableView {
Layout.fillWidth: true
Layout.fillHeight: true
+ TableViewColumn {
+ width: 50
+ role: "isChecked"
+ title: "Select"
+ }
+ TableViewColumn {
+ role: "datetime"
+ title: "Date / Time"
+ }
+ TableViewColumn {
+ width: 80
+ role: "duration"
+ title: "Duration"
+ }
+ TableViewColumn {
+ width: 50
+ role: "depth"
+ title: "Depth"
+ }
}
}
}