diff options
author | jan Iversen <jan@casacondor.com> | 2020-01-05 17:08:48 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-01-18 17:35:16 -0800 |
commit | 93c3a18db7142e9d6afeed4fde17196776e0d422 (patch) | |
tree | 5c1aeebcf0566960d8e593a99880037793925eb3 /mobile-widgets/qml/main.qml | |
parent | c93b76eee663d5b000dcd9f0a3e7b4fa12b99b9b (diff) | |
download | subsurface-93c3a18db7142e9d6afeed4fde17196776e0d422.tar.gz |
mobile-widgets/qml: use strongly typed CloudStatus
Replace CloudStatus.<value> with backend.<value> as part
of making enum sharing between C/C++ and QML more robust.
Replace PrefCloudStorage.verification_status with
backend.verification_status to use the strongly typed function.
Signed-off-by: jan Iversen <jan@casacondor.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml/main.qml')
-rw-r--r-- | mobile-widgets/qml/main.qml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index 94c5dd3c4..11fcad171 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -164,8 +164,8 @@ Kirigami.ApplicationWindow { id: globalDrawer height: rootItem.height rightPadding: 0 - enabled: (PrefCloudStorage.cloud_verification_status === CloudStatus.CS_NOCLOUD || - PrefCloudStorage.cloud_verification_status === CloudStatus.CS_VERIFIED) + enabled: (Backend.cloud_verification_status === Enums.CS_NOCLOUD || + Backend.cloud_verification_status === Enums.CS_VERIFIED) topContent: Image { source: "qrc:/qml/icons/dive.jpg" Layout.fillWidth: true @@ -244,7 +244,7 @@ Kirigami.ApplicationWindow { } text: qsTr("Dive list") onTriggered: { - manager.appendTextToLog("requested dive list with credential status " + PrefCloudStorage.cloud_verification_status) + manager.appendTextToLog("requested dive list with credential status " + Backend.cloud_verification_status) returnTopPage() globalDrawer.close() } @@ -319,7 +319,7 @@ Kirigami.ApplicationWindow { name: ":/icons/cloud_sync.svg" } text: qsTr("Manual sync with cloud") - enabled: PrefCloudStorage.cloud_verification_status === CloudStatus.CS_VERIFIED + enabled: Backend.cloud_verification_status === Enums.CS_VERIFIED onTriggered: { globalDrawer.close() detailsWindow.endEditMode() @@ -332,7 +332,7 @@ Kirigami.ApplicationWindow { name: PrefCloudStorage.cloud_auto_sync ? ":/icons/ic_cloud_off.svg" : ":/icons/ic_cloud_done.svg" } text: PrefCloudStorage.cloud_auto_sync ? qsTr("Disable auto cloud sync") : qsTr("Enable auto cloud sync") - visible: PrefCloudStorage.cloud_verification_status !== CloudStatus.CS_NOCLOUD + visible: Backend.cloud_verification_status !== Enums.CS_NOCLOUD onTriggered: { PrefCloudStorage.cloud_auto_sync = !PrefCloudStorage.cloud_auto_sync manager.setGitLocalOnly(PrefCloudStorage.cloud_auto_sync) @@ -840,8 +840,8 @@ if you have network connectivity and want to sync your data to cloud storage."), StartPage { id: startPage anchors.fill: parent - visible: PrefCloudStorage.cloud_verification_status !== CloudStatus.CS_NOCLOUD && - PrefCloudStorage.cloud_verification_status !== CloudStatus.CS_VERIFIED + visible: Backend.cloud_verification_status !== Enums.CS_NOCLOUD && + Backend.cloud_verification_status !== Enums.CS_VERIFIED Behavior on opacity { NumberAnimation { duration: Kirigami.Units.shortDuration } } onVisibleChanged: { |