diff options
author | Gehad <gehadelrobey@gmail.com> | 2014-03-30 22:14:56 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-03-30 15:52:32 -0700 |
commit | 0cd9d09410e2631d3a47edcae7569e3b3f011cf1 (patch) | |
tree | 7251ebc0a25f063b00cfb10a34f641e0b314304c /qt-ui/mainwindow.cpp | |
parent | 7696fbf9cdb6292f487815bffdbc879a178cc73f (diff) | |
download | subsurface-0cd9d09410e2631d3a47edcae7569e3b3f011cf1.tar.gz |
Exporting a World-Map
This patch adds the world map exporter.
- add worldmap-save.c that writes the html to the file
- use Google maps v3 API to put the place marks on the map
- add worldmap-options.h to contain some settings for the JS which will
make it easier for those to be changed
- add save HTML action in the mainwindow user interface
Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/mainwindow.cpp')
-rw-r--r-- | qt-ui/mainwindow.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/qt-ui/mainwindow.cpp b/qt-ui/mainwindow.cpp index 86d612457..53f7a15df 100644 --- a/qt-ui/mainwindow.cpp +++ b/qt-ui/mainwindow.cpp @@ -36,6 +36,7 @@ #include "simplewidgets.h" #include "diveplanner.h" #include "about.h" +#include "worldmap-save.h" #ifndef NO_PRINTING #include "printdialog.h" #endif @@ -277,6 +278,15 @@ void MainWindow::on_actionExportUDDF_triggered() export_dives_uddf(filename.toUtf8(), false); } +void MainWindow::on_actionExportHTMLworldmap_triggered() +{ + QFileInfo fi(system_default_filename()); + QString filename = QFileDialog::getSaveFileName(this, tr("Export World Map"), fi.absolutePath(), + tr("HTML files (*.html)")); + if (!filename.isNull() && !filename.isEmpty()) + export_worldmap_HTML(filename.toUtf8().data()); +} + void MainWindow::on_actionPrint_triggered() { #ifndef NO_PRINTING |