diff options
Diffstat (limited to 'qt-mobile/main.qml')
-rw-r--r-- | qt-mobile/main.qml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/qt-mobile/main.qml b/qt-mobile/main.qml index adceb9a02..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: { @@ -108,4 +118,9 @@ ApplicationWindow { id: detailsWindow visible: false } + + DownloadFromDiveComputer { + id: downloadDivesWindow + visible: false + } } |