From b459ccbff75065d42c9dcf81472e515703c40903 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Tue, 27 Jun 2017 21:45:17 -0700 Subject: [PATCH] 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 --- mobile-widgets/qml/DiveList.qml | 14 +++++++++++--- mobile-widgets/qml/mobile-resources.qrc | 1 + scripts/mobilecomponents.sh | 1 + 3 files changed, 13 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: { diff --git a/mobile-widgets/qml/mobile-resources.qrc b/mobile-widgets/qml/mobile-resources.qrc index cd140f546..838464683 100644 --- a/mobile-widgets/qml/mobile-resources.qrc +++ b/mobile-widgets/qml/mobile-resources.qrc @@ -31,6 +31,7 @@ kirigami/icons/handle-left.svg kirigami/icons/distribute-horizontal-x.svg kirigami/icons/document-edit.svg + kirigami/icons/document-import.svg kirigami/icons/document-save.svg kirigami/icons/view-readermode.svg kirigami/icons/dialog-cancel.svg diff --git a/scripts/mobilecomponents.sh b/scripts/mobilecomponents.sh index 267b44515..4bc5293f1 100755 --- a/scripts/mobilecomponents.sh +++ b/scripts/mobilecomponents.sh @@ -57,6 +57,7 @@ cp -R $PMMC/* $MC/ cp $BREEZE/icons/actions/24/dialog-cancel.svg $MC/icons cp $BREEZE/icons/actions/24/distribute-horizontal-x.svg $MC/icons cp $BREEZE/icons/actions/24/document-edit.svg $MC/icons +cp $BREEZE/icons/actions/24/document-import.svg $MC/icons cp $BREEZE/icons/actions/24/document-save.svg $MC/icons cp $BREEZE/icons/actions/24/go-next.svg $MC/icons cp $BREEZE/icons/actions/24/go-previous.svg $MC/icons