mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
HTML: Export unit preferences to settings file
Working on HTML exports to support imperial and metric units and also custom selected units based on subsurface preferences. User selected units is exported to settings file that will be mainly used by listlib javascript file. Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
71d21c375c
commit
fae86eb4ce
1 changed files with 27 additions and 1 deletions
|
@ -17,6 +17,13 @@
|
|||
#include "helpers.h"
|
||||
#include "statistics.h"
|
||||
|
||||
#define GET_UNIT(name, field, f, t) \
|
||||
v = settings.value(QString(name)); \
|
||||
if (v.isValid()) \
|
||||
field = (v.toInt() == 0) ? (t) : (f); \
|
||||
else \
|
||||
field = default_prefs.units.field
|
||||
|
||||
DiveLogExportDialog::DiveLogExportDialog(QWidget *parent) : QDialog(parent),
|
||||
ui(new Ui::DiveLogExportDialog)
|
||||
{
|
||||
|
@ -149,7 +156,26 @@ void DiveLogExportDialog::exportHTMLsettings(const QString &filename)
|
|||
file.open(QIODevice::WriteOnly | QIODevice::Text);
|
||||
QTextStream out(&file);
|
||||
out << "settings = {\"fontSize\":\"" << fontSize << "\",\"fontFamily\":\"" << fontFamily << "\",\"listOnly\":\""
|
||||
<< ui->exportListOnly->isChecked() << "\",\"subsurfaceNumbers\":\"" << ui->exportSubsurfaceNumber->isChecked() << "\",}";
|
||||
<< ui->exportListOnly->isChecked() << "\",\"subsurfaceNumbers\":\"" << ui->exportSubsurfaceNumber->isChecked() << "\",";
|
||||
//save units preferences
|
||||
settings.beginGroup("Units");
|
||||
if (settings.value("unit_system").toString() == "metric") {
|
||||
out << "\"unit_system\":\"Meteric\"";
|
||||
} else if (settings.value("unit_system").toString() == "imperial") {
|
||||
out << "\"unit_system\":\"Imperial\"";
|
||||
} else {
|
||||
QVariant v;
|
||||
QString length, pressure, volume, temperature, weight;
|
||||
GET_UNIT("length", length, "FEET", "METER");
|
||||
GET_UNIT("pressure", pressure, "PSI", "BAR");
|
||||
GET_UNIT("volume", volume, "CUFT", "LITER");
|
||||
GET_UNIT("temperature", temperature, "FAHRENHEIT", "CELSIUS");
|
||||
GET_UNIT("weight", weight, "LBS", "KG");
|
||||
out << "\"unit_system\":\"Personalize\",";
|
||||
out << "\"units\":{\"depth\":\"" << length << "\",\"pressure\":\"" << pressure << "\",\"volume\":\"" << volume << "\",\"temperature\":\"" << temperature << "\",\"weight\":\"" << weight << "\"}";
|
||||
}
|
||||
out << "}";
|
||||
settings.endGroup();
|
||||
file.close();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue