mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Make exporting photos with HTML optional
This adds the ability to choose either to export photos or not. Patch is attached. -- regards, Gehad From 6476e1227b72d8297f9aecc2e6cc6f70d07f87ae Mon Sep 17 00:00:00 2001 From: Gehad elrobey <gehadelrobey@gmail.com> Date: Fri, 13 Mar 2015 15:31:24 +0200 Subject: [PATCH] Make exporting photos with HTML optional Add the option to enable/disable exporting photos with the HTML. Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
7e7cddde8a
commit
ec202890b7
3 changed files with 58 additions and 17 deletions
|
@ -56,6 +56,9 @@ DiveLogExportDialog::DiveLogExportDialog(QWidget *parent) : QDialog(parent),
|
|||
if (settings.contains("listOnly")) {
|
||||
ui->exportListOnly->setChecked(settings.value("listOnly").toBool());
|
||||
}
|
||||
if (settings.contains("exportPhotos")) {
|
||||
ui->exportPhotos->setChecked(settings.value("exportPhotos").toBool());
|
||||
}
|
||||
settings.endGroup();
|
||||
}
|
||||
|
||||
|
@ -105,8 +108,12 @@ void DiveLogExportDialog::exportHtmlInit(const QString &filename)
|
|||
QString json_settings = exportFiles + QDir::separator() + "settings.js";
|
||||
QString translation = exportFiles + QDir::separator() + "translation.js";
|
||||
QString stat_file = exportFiles + QDir::separator() + "stat.js";
|
||||
QString photos_directory = exportFiles + QDir::separator() + "photos" + QDir::separator();
|
||||
mainDir.mkdir(photos_directory);
|
||||
|
||||
QString photos_directory;
|
||||
if (ui->exportPhotos->isChecked()) {
|
||||
photos_directory = exportFiles + QDir::separator() + "photos" + QDir::separator();
|
||||
mainDir.mkdir(photos_directory);
|
||||
}
|
||||
exportFiles += "/";
|
||||
|
||||
exportHTMLsettings(json_settings);
|
||||
|
@ -143,6 +150,7 @@ void DiveLogExportDialog::exportHTMLsettings(const QString &filename)
|
|||
settings.setValue("subsurfaceNumbers", ui->exportSubsurfaceNumber->isChecked());
|
||||
settings.setValue("yearlyStatistics", ui->exportStatistics->isChecked());
|
||||
settings.setValue("listOnly", ui->exportListOnly->isChecked());
|
||||
settings.setValue("exportPhotos", ui->exportPhotos->isChecked());
|
||||
settings.endGroup();
|
||||
|
||||
QString fontSize = ui->fontSizeSelection->currentText();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue