diff options
Diffstat (limited to 'mobile-widgets')
-rw-r--r-- | mobile-widgets/qml/Export.qml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/mobile-widgets/qml/Export.qml b/mobile-widgets/qml/Export.qml index 542f163af..c364ad209 100644 --- a/mobile-widgets/qml/Export.qml +++ b/mobile-widgets/qml/Export.qml @@ -12,6 +12,20 @@ Kirigami.ScrollablePage { property int selectedExport: ExportType.EX_DIVE_XML + FileDialog { + id: saveAsDialog + folder: shortcuts.documents + selectFolder: true + title: radioGroup.current.text + onAccepted: { + manager.exportToFile(selectedExport, fileUrls, anonymize.checked) + close() + } + onRejected: { + close() + } + } + ColumnLayout { width: parent.width spacing: 1 @@ -149,6 +163,12 @@ Kirigami.ScrollablePage { SsrfButton { text: qsTr("Next") onClicked: { + if (selectedExport === ExportType.EX_DIVELOGS_DE || + selectedExport === ExportType.EX_DIVESHARE) { + console.log("Upload TO BE DONE, You chose: " + selectedExport) + } else { + saveAsDialog.open() + } } } } |