diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2014-05-20 19:33:32 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-05-21 03:31:43 +0900 |
commit | 7dc642860def420f85ae25548ddfa674e14636d1 (patch) | |
tree | 65f58d09ec8b5293550c124286fecf606bd23e73 /qt-ui/mainwindow.h | |
parent | 0b6cbe0f79d7707297211850963323eb77d21c20 (diff) | |
download | subsurface-7dc642860def420f85ae25548ddfa674e14636d1.tar.gz |
Implementing export dialog
As our menus are getting many export entries, it is better to create a
single export dialog where user is able to select the export type and
whether to export selected dives or all of them. This should also be
more intuitive than the current way when export from file menu export
all dives and right click menu on divelist exports only selected dives.
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/mainwindow.h')
-rw-r--r-- | qt-ui/mainwindow.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/qt-ui/mainwindow.h b/qt-ui/mainwindow.h index d6775c602..1bde5f0e8 100644 --- a/qt-ui/mainwindow.h +++ b/qt-ui/mainwindow.h @@ -90,9 +90,6 @@ slots: void on_actionSave_triggered(); void on_actionSaveAs_triggered(); void on_actionClose_triggered(); - void on_actionExportUDDF_triggered(); - void on_actionExport_CSV_triggered(); - void on_actionExportHTMLworldmap_triggered(); void on_actionPrint_triggered(); void on_actionPreferences_triggered(); void on_actionQuit_triggered(); @@ -146,6 +143,8 @@ slots: void on_profSAC_clicked(bool triggered); void on_profScaled_clicked(bool triggered); + void on_actionExport_triggered(); + protected: void closeEvent(QCloseEvent *); |