summaryrefslogtreecommitdiffstats
path: root/qt-mobile/main.qml
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-07-24 09:44:47 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-07-24 09:44:47 -0700
commit0029844b1c889a88b4f5785426f4aad4caddc4f9 (patch)
tree3cb955536237386a64fb09ed75d21d7313e47443 /qt-mobile/main.qml
parent292982cdd551b0c42e7f411e3ccade4e50756e6d (diff)
parente93bb9230f19a054888fc6db09f3757412ab7cc5 (diff)
downloadsubsurface-0029844b1c889a88b4f5785426f4aad4caddc4f9.tar.gz
Merge branch 'devel' of https://github.com/gracie89/subsurface
Diffstat (limited to 'qt-mobile/main.qml')
-rw-r--r--qt-mobile/main.qml19
1 files changed, 19 insertions, 0 deletions
diff --git a/qt-mobile/main.qml b/qt-mobile/main.qml
index d64c27760..9553197b6 100644
--- a/qt-mobile/main.qml
+++ b/qt-mobile/main.qml
@@ -56,6 +56,16 @@ ApplicationWindow {
}
Button {
+ id: downloadDivesButton
+ text: "Download Dives"
+ onClicked: {
+ downloadDivesWindow.height = parent.height
+ downloadDivesWindow.width = parent.width
+ stackView.push(downloadDivesWindow)
+ }
+ }
+
+ Button {
id: saveChanges
text: "Save Changes"
onClicked: {
@@ -104,4 +114,13 @@ ApplicationWindow {
visible: false
}
+ DiveDetails {
+ id: detailsWindow
+ visible: false
+ }
+
+ DownloadFromDiveComputer {
+ id: downloadDivesWindow
+ visible: false
+ }
}