aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/preferences.cpp
blob: 3e684d88a3633e57edaea2b84c61000e36efacda (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#include "preferences.h"
#include "ui_preferences.h"
#include "../dive.h"
#include <QSettings>

PreferencesDialog* PreferencesDialog::instance()
{
	static PreferencesDialog *dialog = new PreferencesDialog();
	return dialog;
}

PreferencesDialog::PreferencesDialog(QWidget* parent, Qt::WindowFlags f) : QDialog(parent, f)
, ui(new Ui::PreferencesDialog())
{
	ui->setupUi(this);
	connect(ui->buttonBox, SIGNAL(accepted()), this, SLOT(syncSettings()));

	#define B(X) s.value(#X, false).toBool()
	#define D(X) s.value(#X, 0.0).toDouble()

	QSettings s;

	// Graph
	s.beginGroup("TecDetails");
	ui->calculated_ceiling->setChecked(B(show_calculated_ceiling));
	ui->phe->setChecked(B(show_phe));
	ui->po2->setChecked(B(show_po2));
	ui->pn2->setChecked(B(show_pn2));
	ui->pheThreshould->setValue(D(phe_threshould));
	ui->po2Threashould->setValue(D(po2_threshould));
	ui->pn2Threshould->setValue(D(pn2_threshould));
	ui->ead_end_eadd->setChecked(B(show_ead_end_eadd));
	ui->dc_reported_ceiling->setChecked(B(show_dc_reported_ceiling));
	ui->calculated_ceiling->setChecked(B(show_calculated_ceiling));
	ui->increment_3m->setChecked(B(show_3m_increments));
	ui->gflow->setValue(D(gflow));
	ui->gfhigh->setValue(D(gfhigh));
	s.endGroup();

	// Units
	s.beginGroup("Units");
	bool value = s.value("units_metric").toBool();
	ui->metric->setChecked(value);
	ui->imperial->setChecked(!value);

	int unit = s.value("temperature").toInt();
	ui->celsius->setChecked(unit == units::CELSIUS);
	ui->fahrenheit->setChecked(unit == units::FAHRENHEIT);

	unit = s.value("length").toInt();
	ui->meter->setChecked(unit == units::METERS);
	ui->feet->setChecked(unit == units::FEET);

	unit = s.value("pressure").toInt();
	ui->bar->setChecked(unit == units::BAR);
	ui->psi->setChecked(unit == units::PSI);

	unit = s.value("volume").toInt();
	ui->liter->setChecked(unit == units::LITER);
	ui->cuft->setChecked(unit == units::CUFT);

	unit = s.value("weight").toInt();
	ui->kgs->setChecked(unit == units::KG);
	ui->lbs->setChecked(unit == units::LBS);

	s.endGroup();

	// Defaults
	s.beginGroup("GeneralSettings");
	ui->font->setFont( QFont(s.value("table_fonts").toString()));
	ui->fontsize->setValue(D(font_size));

	ui->defaultfilename->setText(s.value("default_file").toString());
	ui->displayinvalid->setChecked(B(show_invalid));
	s.endGroup();
#undef B
#undef D
}

void PreferencesDialog::syncSettings()
{
	QSettings s;

	// Graph
	s.beginGroup("TecDetails");
	s.setValue("show_calculated_ceiling", ui->calculated_ceiling->isChecked());
	s.setValue("show_phe", ui->phe->isChecked());
	s.setValue("show_po2", ui->po2->isChecked());
	s.setValue("show_pn2", ui->pn2->isChecked());
	s.setValue("phe_threshould", ui->pheThreshould->value());
	s.setValue("po2_threshould", ui->po2Threashould->value());
	s.setValue("pn2_threshould", ui->pn2Threshould->value());
	s.setValue("show_ead_end_eadd", ui->ead_end_eadd->isChecked());
	s.setValue("show_dc_reported_ceiling", ui->dc_reported_ceiling->isChecked());
	s.setValue("show_calculated_ceiling", ui->calculated_ceiling->isChecked());

	s.setValue("show_3m_increments", ui->increment_3m->isChecked());
	s.setValue("gflow", ui->gflow->value());
	s.setValue("gfhigh", ui->gfhigh->value());
	s.endGroup();
	// Units
	s.beginGroup("Units");
	s.setValue("units_metric", ui->metric->isChecked());
	s.setValue("temperature", ui->fahrenheit->isChecked() ? units::FAHRENHEIT : units::CELSIUS);
	s.setValue("length", ui->feet->isChecked() ? units::FEET : units::METERS);
	s.setValue("pressure", ui->psi->isChecked() ? units::PSI : units::BAR);
	s.setValue("volume", ui->cuft->isChecked() ? units::CUFT : units::LITER);
	s.setValue("weight", ui->lbs->isChecked() ? units::LBS : units::KG);
	s.endGroup();
	// Defaults
	s.beginGroup("GeneralSettings");
	s.value("table_fonts", ui->font->font().family());
	s.value("font_size", ui->fontsize->value());
	s.value("default_file", ui->defaultfilename->text());
	s.value("displayinvalid", ui->displayinvalid->isChecked());
	s.endGroup();
	s.sync();

	emit settingsChanged();
}