aboutsummaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/Export.qml
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2020-02-15 11:44:14 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-02-17 10:50:51 -0800
commit0178f0c7e78d8e61e5794f33e519a87c56039c06 (patch)
treeb038f425803b76431778a712346a61c279e78fb6 /mobile-widgets/qml/Export.qml
parentb8c02c9b030da70f5abdd143fcde4a1bf8435a94 (diff)
downloadsubsurface-0178f0c7e78d8e61e5794f33e519a87c56039c06.tar.gz
mobile/export: remove most of the export options
A tablet or phone is not a computer. What would you do with a CSV or TeX/LaTeX file on a phone. Yeah, I get it, feature parity. This should never have been merged. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml/Export.qml')
-rw-r--r--mobile-widgets/qml/Export.qml73
1 files changed, 0 insertions, 73 deletions
diff --git a/mobile-widgets/qml/Export.qml b/mobile-widgets/qml/Export.qml
index 7384bcbe2..2b1b004ab 100644
--- a/mobile-widgets/qml/Export.qml
+++ b/mobile-widgets/qml/Export.qml
@@ -166,79 +166,6 @@ Kirigami.ScrollablePage {
explain.text = qsTr("Send the dive data to dive-share.appspot.com website.")
}
}
- RadioButton {
- Layout.fillWidth: true
- text: qsTr("Export CSV dive profile")
- exclusiveGroup: radioGroup
- onClicked: {
- selectedExport = ExportType.EX_CSV_DIVE_PROFILE
- explain.text = qsTr("Comma separated values describing the dive profile.")
- }
- }
- RadioButton {
- Layout.fillWidth: true
- text: qsTr("Export CSV dive details")
- exclusiveGroup: radioGroup
- onClicked: {
- selectedExport = ExportType.EX_CSV_DETAILS
- explain.text = qsTr("Comma separated values of the dive information. This includes most of the dive details but no profile information.")
- }
- }
- RadioButton {
- Layout.fillWidth: true
- text: qsTr("Export CSV profile data")
- exclusiveGroup: radioGroup
- onClicked: {
- selectedExport = ExportType.EX_CSV_PROFILE
- explain.text = qsTr("Write profile data to a CSV file.")
- }
- }
- RadioButton {
- Layout.fillWidth: true
- visible: false // TEMPORARY MEASURE, until a non UI PNG generation is ready
- text: qsTr("Export Dive profile")
- exclusiveGroup: radioGroup
- onClicked: {
- selectedExport = ExportType.EX_PROFILE_PNG
- explain.text = qsTr("Write the profile image as PNG file.")
- }
- }
- RadioButton {
- Layout.fillWidth: true
- text: qsTr("Export Worldmap")
- exclusiveGroup: radioGroup
- onClicked: {
- selectedExport = ExportType.EX_WORLD_MAP
- explain.text = qsTr("HTML export of the dive locations, visualized on a world map.")
- }
- }
- RadioButton {
- Layout.fillWidth: true
- text: qsTr("Export TeX")
- exclusiveGroup: radioGroup
- onClicked: {
- selectedExport = ExportType.EX_TEX
- explain.text = qsTr("Write dive as TeX macros to file.")
- }
- }
- RadioButton {
- Layout.fillWidth: true
- text: qsTr("Export LaTeX")
- exclusiveGroup: radioGroup
- onClicked: {
- selectedExport = ExportType.EX_LATEX
- explain.text = qsTr("Write dive as LaTeX macros to file.")
- }
- }
- RadioButton {
- Layout.fillWidth: true
- text: qsTr("Export Image depths")
- exclusiveGroup: radioGroup
- onClicked: {
- selectedExport = ExportType.EX_IMAGE_DEPTHS
- explain.text = qsTr("Write depths of images to file.")
- }
- }
Text {
id: explain
Layout.fillWidth: true