2017-04-27 18:26:05 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2015-10-01 21:59:53 +00:00
|
|
|
#include "preferences_graph.h"
|
|
|
|
#include "ui_preferences_graph.h"
|
2016-04-05 05:02:03 +00:00
|
|
|
#include "core/prefs-macros.h"
|
2016-08-08 13:58:05 +00:00
|
|
|
#include "core/subsurface-qt/SettingsObjectWrapper.h"
|
2015-10-01 21:59:53 +00:00
|
|
|
#include <QMessageBox>
|
|
|
|
|
|
|
|
#include "qt-models/models.h"
|
|
|
|
|
2017-03-13 11:39:12 +00:00
|
|
|
PreferencesGraph::PreferencesGraph() : AbstractPreferencesWidget(tr("Profile"), QIcon(":graph"), 5)
|
2015-10-01 21:59:53 +00:00
|
|
|
{
|
|
|
|
ui = new Ui::PreferencesGraph();
|
|
|
|
ui->setupUi(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
PreferencesGraph::~PreferencesGraph()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PreferencesGraph::refreshSettings()
|
|
|
|
{
|
|
|
|
ui->pheThreshold->setValue(prefs.pp_graphs.phe_threshold);
|
2017-03-24 18:11:31 +00:00
|
|
|
ui->po2ThresholdMax->setValue(prefs.pp_graphs.po2_threshold_max);
|
|
|
|
ui->po2ThresholdMin->setValue(prefs.pp_graphs.po2_threshold_min);
|
2015-10-01 21:59:53 +00:00
|
|
|
ui->pn2Threshold->setValue(prefs.pp_graphs.pn2_threshold);
|
|
|
|
ui->maxpo2->setValue(prefs.modpO2);
|
|
|
|
ui->red_ceiling->setChecked(prefs.redceiling);
|
|
|
|
|
2016-11-01 16:00:06 +00:00
|
|
|
if (prefs.display_deco_mode == BUEHLMANN) {
|
2016-10-03 14:25:48 +00:00
|
|
|
ui->buehlmann->setChecked(true);
|
|
|
|
ui->vpmb->setChecked(false);
|
|
|
|
} else {
|
|
|
|
ui->buehlmann->setChecked(false);
|
2016-11-02 08:54:09 +00:00
|
|
|
ui->vpmb->setChecked(true);
|
2016-10-03 14:25:48 +00:00
|
|
|
}
|
2016-11-01 16:00:06 +00:00
|
|
|
|
2015-10-01 21:59:53 +00:00
|
|
|
ui->gflow->setValue(prefs.gflow);
|
|
|
|
ui->gfhigh->setValue(prefs.gfhigh);
|
2016-09-24 08:02:08 +00:00
|
|
|
ui->vpmb_conservatism->setValue(prefs.vpmb_conservatism);
|
2015-10-01 21:59:53 +00:00
|
|
|
ui->show_ccr_setpoint->setChecked(prefs.show_ccr_setpoint);
|
|
|
|
ui->show_ccr_sensors->setChecked(prefs.show_ccr_sensors);
|
|
|
|
ui->defaultSetpoint->setValue((double)prefs.defaultsetpoint / 1000.0);
|
|
|
|
ui->psro2rate->setValue(prefs.o2consumption / 1000.0);
|
2017-03-08 06:41:41 +00:00
|
|
|
ui->pscrfactor->setValue(lrint(1000.0 / prefs.pscr_ratio));
|
2015-10-01 21:59:53 +00:00
|
|
|
|
|
|
|
ui->display_unused_tanks->setChecked(prefs.display_unused_tanks);
|
|
|
|
ui->show_average_depth->setChecked(prefs.show_average_depth);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PreferencesGraph::syncSettings()
|
|
|
|
{
|
2016-08-08 13:58:05 +00:00
|
|
|
auto general = SettingsObjectWrapper::instance()->general_settings;
|
2017-03-08 06:41:41 +00:00
|
|
|
general->setDefaultSetPoint(lrint(ui->defaultSetpoint->value() * 1000.0));
|
|
|
|
general->setO2Consumption(lrint(ui->psro2rate->value() *1000.0));
|
|
|
|
general->setPscrRatio(lrint(1000.0 / ui->pscrfactor->value()));
|
2015-10-01 21:59:53 +00:00
|
|
|
|
2016-08-08 13:58:05 +00:00
|
|
|
auto pp_gas = SettingsObjectWrapper::instance()->pp_gas;
|
|
|
|
pp_gas->setPheThreshold(ui->pheThreshold->value());
|
2017-03-24 18:11:31 +00:00
|
|
|
pp_gas->setPo2ThresholdMax(ui->po2ThresholdMax->value());
|
|
|
|
pp_gas->setPo2ThresholdMin(ui->po2ThresholdMin->value());
|
2016-08-08 13:58:05 +00:00
|
|
|
pp_gas->setPn2Threshold(ui->pn2Threshold->value());
|
2015-10-01 21:59:53 +00:00
|
|
|
|
2016-08-08 13:58:05 +00:00
|
|
|
auto tech = SettingsObjectWrapper::instance()->techDetails;
|
2017-11-12 13:26:34 +00:00
|
|
|
tech->setModpO2(ui->maxpo2->value());
|
2016-08-08 13:58:05 +00:00
|
|
|
tech->setRedceiling(ui->red_ceiling->isChecked());
|
2016-10-03 14:25:48 +00:00
|
|
|
tech->setBuehlmann(ui->buehlmann->isChecked());
|
2016-08-08 13:58:05 +00:00
|
|
|
tech->setGflow(ui->gflow->value());
|
|
|
|
tech->setGfhigh(ui->gfhigh->value());
|
2016-09-24 08:02:08 +00:00
|
|
|
tech->setVpmbConservatism(ui->vpmb_conservatism->value());
|
2016-08-08 13:58:05 +00:00
|
|
|
tech->setShowCCRSetpoint(ui->show_ccr_setpoint->isChecked());
|
|
|
|
tech->setShowCCRSensors(ui->show_ccr_sensors->isChecked());
|
|
|
|
tech->setDisplayUnusedTanks(ui->display_unused_tanks->isChecked());
|
|
|
|
tech->setShowAverageDepth(ui->show_average_depth->isChecked());
|
2016-11-01 16:00:06 +00:00
|
|
|
tech->setDecoMode(ui->vpmb->isChecked() ? VPMB : BUEHLMANN);
|
2015-10-01 21:59:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#define DANGER_GF (gf > 100) ? "* { color: red; }" : ""
|
|
|
|
void PreferencesGraph::on_gflow_valueChanged(int gf)
|
|
|
|
{
|
|
|
|
ui->gflow->setStyleSheet(DANGER_GF);
|
|
|
|
}
|
|
|
|
void PreferencesGraph::on_gfhigh_valueChanged(int gf)
|
|
|
|
{
|
|
|
|
ui->gfhigh->setStyleSheet(DANGER_GF);
|
|
|
|
}
|
2016-10-03 14:25:48 +00:00
|
|
|
|
|
|
|
void PreferencesGraph::on_buehlmann_toggled(bool buehlmann)
|
|
|
|
{
|
|
|
|
ui->gfhigh->setEnabled(buehlmann);
|
|
|
|
ui->gflow->setEnabled(buehlmann);
|
2016-11-02 09:00:51 +00:00
|
|
|
ui->label_GFhigh->setEnabled(buehlmann);
|
|
|
|
ui->label_GFlow->setEnabled(buehlmann);
|
2016-10-03 14:25:48 +00:00
|
|
|
ui->vpmb_conservatism->setEnabled(!buehlmann);
|
2016-11-02 09:00:51 +00:00
|
|
|
ui->label_VPMB->setEnabled(!buehlmann);
|
2016-10-03 14:25:48 +00:00
|
|
|
}
|
|
|
|
|
2016-04-05 05:02:03 +00:00
|
|
|
#undef DANGER_GF
|