mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
QML UI: Add download from divecomputer window
Add a window to be used when downloading from dive computers. Signed-off-by: Grace Karanja <gracie.karanja89@gmail.com>
This commit is contained in:
parent
b0df506a8c
commit
e93bb9230f
3 changed files with 113 additions and 0 deletions
|
@ -55,6 +55,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"
|
||||
|
@ -108,4 +118,9 @@ ApplicationWindow {
|
|||
id: detailsWindow
|
||||
visible: false
|
||||
}
|
||||
|
||||
DownloadFromDiveComputer {
|
||||
id: downloadDivesWindow
|
||||
visible: false
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue