summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/DiveList.qml
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2017-06-27 21:45:17 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-06-27 22:18:26 -0700
commitb459ccbff75065d42c9dcf81472e515703c40903 (patch)
treeb600a192dc65ee4dd47d52777263856f8e6ceb05 /mobile-widgets/qml/DiveList.qml
parent344b9e3234bc3f0d64fb92d876425b5dc9a0a555 (diff)
downloadsubsurface-b459ccbff75065d42c9dcf81472e515703c40903.tar.gz
QML UI: DiveList: make download from DC main action
Now that we support this for many dive computers, that seem reasonable. I'm not happy with the icon, but couldn't figure out a better one in the breeze icon set. See #426 Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml/DiveList.qml')
-rw-r--r--mobile-widgets/qml/DiveList.qml14
1 files changed, 11 insertions, 3 deletions
diff --git a/mobile-widgets/qml/DiveList.qml b/mobile-widgets/qml/DiveList.qml
index 8ffaa0011..0bd9e81d8 100644
--- a/mobile-widgets/qml/DiveList.qml
+++ b/mobile-widgets/qml/DiveList.qml
@@ -274,11 +274,11 @@ Kirigami.ScrollablePage {
page.actions.right = page.offlineAction
title = qsTr("Cloud credentials")
} else if(manager.credentialStatus === QMLManager.VALID || manager.credentialStatus === QMLManager.VALID_EMAIL || manager.credentialStatus === QMLManager.NOCLOUD) {
- page.actions.main = page.addDiveAction
- page.actions.right = null
+ page.actions.main = page.downloadFromDCAction
+ page.actions.right = page.addDiveAction
title = qsTr("Dive list")
if (diveListView.count === 0)
- showPassiveNotification(qsTr("Please tap the '+' button to add a dive"), 3000)
+ showPassiveNotification(qsTr("Please tap the '+' button to add a dive (or download dives from a supported dive computer)"), 3000)
} else {
page.actions.main = null
page.actions.right = null
@@ -327,6 +327,14 @@ Kirigami.ScrollablePage {
}
}
+ property QtObject downloadFromDCAction: Kirigami.Action {
+ iconName: "document-import"
+ onTriggered: {
+ downloadFromDc.dcImportModel.clearTable()
+ stackView.push(downloadFromDc)
+ }
+ }
+
property QtObject addDiveAction: Kirigami.Action {
iconName: "list-add"
onTriggered: {