diff options
Diffstat (limited to 'qt-mobile/qml')
-rw-r--r-- | qt-mobile/qml/DownloadFromDiveComputer.qml | 19 |
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" + } } } } |