diff options
Diffstat (limited to 'mobile-widgets')
-rw-r--r-- | mobile-widgets/qml/main.qml | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index a7262c57d..c35e2b15e 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -502,6 +502,38 @@ if you have network connectivity and want to sync your data to cloud storage."), pageStack.push(themetest) } } + Kirigami.Action { + text: qsTr("Dive planner") + + Kirigami.Action { + text: qsTr("Setup") + onTriggered: { + globalDrawer.close() + pageStack.push(divePlannerSetupWindow) + } + } + Kirigami.Action { + text: qsTr("Edit") + onTriggered: { + globalDrawer.close() + pageStack.push(divePlannerEditWindow) + } + } + Kirigami.Action { + text: qsTr("View") + onTriggered: { + globalDrawer.close() + pageStack.push(divePlannerViewWindow) + } + } + Kirigami.Action { + text: qsTr("Manager") + onTriggered: { + globalDrawer.close() + pageStack.push(divePlannerManagerWindow) + } + } + } } ] // end actions Image { @@ -845,6 +877,26 @@ if you have network connectivity and want to sync your data to cloud storage."), visible: false } + DivePlannerSetup { + id: divePlannerSetupWindow + visible: false + } + + DivePlannerEdit { + id: divePlannerEditWindow + visible: false + } + + DivePlannerView { + id: divePlannerViewWindow + visible: false + } + + DivePlannerManager { + id: divePlannerManagerWindow + visible: false + } + ThemeTest { id: themetest visible: false |