| 
									
										
										
										
											2017-04-27 20:26:05 +02:00
										 |  |  | // SPDX-License-Identifier: GPL-2.0
 | 
					
						
							| 
									
										
										
										
											2015-10-01 18:59:53 -03:00
										 |  |  | #include "preferences_graph.h"
 | 
					
						
							|  |  |  | #include "ui_preferences_graph.h"
 | 
					
						
							| 
									
										
										
										
											2018-08-15 11:50:53 +02:00
										 |  |  | #include "core/settings/qPrefGeneral.h"
 | 
					
						
							|  |  |  | #include "core/settings/qPrefTechnicalDetails.h"
 | 
					
						
							|  |  |  | #include "core/settings/qPrefPartialPressureGas.h"
 | 
					
						
							| 
									
										
										
										
											2015-10-01 18:59:53 -03:00
										 |  |  | #include <QMessageBox>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "qt-models/models.h"
 | 
					
						
							| 
									
										
										
										
											2019-07-15 23:36:14 +02:00
										 |  |  | #include "core/deco.h"
 | 
					
						
							| 
									
										
										
										
											2015-10-01 18:59:53 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-09 20:58:20 +02:00
										 |  |  | PreferencesGraph::PreferencesGraph() : AbstractPreferencesWidget(tr("Tech setup"), QIcon(":graph-icon"), 7) | 
					
						
							| 
									
										
										
										
											2015-10-01 18:59:53 -03: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 19:11:31 +01:00
										 |  |  | 	ui->po2ThresholdMax->setValue(prefs.pp_graphs.po2_threshold_max); | 
					
						
							|  |  |  | 	ui->po2ThresholdMin->setValue(prefs.pp_graphs.po2_threshold_min); | 
					
						
							| 
									
										
										
										
											2015-10-01 18:59:53 -03:00
										 |  |  | 	ui->pn2Threshold->setValue(prefs.pp_graphs.pn2_threshold); | 
					
						
							|  |  |  | 	ui->maxpo2->setValue(prefs.modpO2); | 
					
						
							|  |  |  | 	ui->red_ceiling->setChecked(prefs.redceiling); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-01 17:00:06 +01:00
										 |  |  | 	if (prefs.display_deco_mode == BUEHLMANN) { | 
					
						
							| 
									
										
										
										
											2016-10-03 16:25:48 +02:00
										 |  |  | 		ui->buehlmann->setChecked(true); | 
					
						
							|  |  |  | 		ui->vpmb->setChecked(false); | 
					
						
							| 
									
										
										
										
											2018-10-16 19:50:32 +02:00
										 |  |  | 		on_buehlmann_toggled(true); | 
					
						
							| 
									
										
										
										
											2016-10-03 16:25:48 +02:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		ui->buehlmann->setChecked(false); | 
					
						
							| 
									
										
										
										
											2016-11-02 09:54:09 +01:00
										 |  |  | 		ui->vpmb->setChecked(true); | 
					
						
							| 
									
										
										
										
											2018-10-16 19:50:32 +02:00
										 |  |  | 		on_buehlmann_toggled(false); | 
					
						
							| 
									
										
										
										
											2016-10-03 16:25:48 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-11-01 17:00:06 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-01 18:59:53 -03:00
										 |  |  | 	ui->gflow->setValue(prefs.gflow); | 
					
						
							|  |  |  | 	ui->gfhigh->setValue(prefs.gfhigh); | 
					
						
							| 
									
										
										
										
											2016-09-24 18:02:08 +10:00
										 |  |  | 	ui->vpmb_conservatism->setValue(prefs.vpmb_conservatism); | 
					
						
							| 
									
										
										
										
											2015-10-01 18:59:53 -03:00
										 |  |  | 	ui->show_ccr_setpoint->setChecked(prefs.show_ccr_setpoint); | 
					
						
							|  |  |  | 	ui->show_ccr_sensors->setChecked(prefs.show_ccr_sensors); | 
					
						
							| 
									
										
										
										
											2018-03-14 17:13:37 +02:00
										 |  |  | 	ui->show_scr_ocpo2->setChecked(prefs.show_scr_ocpo2); | 
					
						
							| 
									
										
										
										
											2015-10-01 18:59:53 -03:00
										 |  |  | 	ui->defaultSetpoint->setValue((double)prefs.defaultsetpoint / 1000.0); | 
					
						
							|  |  |  | 	ui->psro2rate->setValue(prefs.o2consumption / 1000.0); | 
					
						
							| 
									
										
										
										
											2017-03-08 13:41:41 +07:00
										 |  |  | 	ui->pscrfactor->setValue(lrint(1000.0 / prefs.pscr_ratio)); | 
					
						
							| 
									
										
										
										
											2015-10-01 18:59:53 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-05 15:58:25 +01:00
										 |  |  | 	ui->show_icd->setChecked(prefs.show_icd); | 
					
						
							| 
									
										
										
										
											2015-10-01 18:59:53 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void PreferencesGraph::syncSettings() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-08-15 11:50:53 +02:00
										 |  |  | 	qPrefGeneral::set_defaultsetpoint(lrint(ui->defaultSetpoint->value() * 1000.0)); | 
					
						
							|  |  |  | 	qPrefGeneral::set_o2consumption(lrint(ui->psro2rate->value() *1000.0)); | 
					
						
							|  |  |  | 	qPrefGeneral::set_pscr_ratio(lrint(1000.0 / ui->pscrfactor->value())); | 
					
						
							| 
									
										
										
										
											2015-10-01 18:59:53 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-15 11:50:53 +02:00
										 |  |  | 	qPrefPartialPressureGas::set_phe_threshold(ui->pheThreshold->value()); | 
					
						
							|  |  |  | 	qPrefPartialPressureGas::set_po2_threshold_max(ui->po2ThresholdMax->value()); | 
					
						
							|  |  |  | 	qPrefPartialPressureGas::set_po2_threshold_min(ui->po2ThresholdMin->value()); | 
					
						
							|  |  |  | 	qPrefPartialPressureGas::set_pn2_threshold(ui->pn2Threshold->value()); | 
					
						
							| 
									
										
										
										
											2015-10-01 18:59:53 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-15 11:50:53 +02:00
										 |  |  | 	qPrefTechnicalDetails::set_modpO2(ui->maxpo2->value()); | 
					
						
							|  |  |  | 	qPrefTechnicalDetails::set_redceiling(ui->red_ceiling->isChecked()); | 
					
						
							| 
									
										
										
										
											2018-08-04 19:26:51 +02:00
										 |  |  | 	prefs.planner_deco_mode = ui->buehlmann->isChecked() ? BUEHLMANN : VPMB; | 
					
						
							| 
									
										
										
										
											2018-08-15 11:50:53 +02:00
										 |  |  | 	qPrefTechnicalDetails::set_gflow(ui->gflow->value()); | 
					
						
							|  |  |  | 	qPrefTechnicalDetails::set_gfhigh(ui->gfhigh->value()); | 
					
						
							| 
									
										
										
										
											2018-10-16 19:35:01 +02:00
										 |  |  | 	set_gf(ui->gflow->value(), ui->gfhigh->value()); | 
					
						
							| 
									
										
										
										
											2018-08-15 11:50:53 +02:00
										 |  |  | 	qPrefTechnicalDetails::set_vpmb_conservatism(ui->vpmb_conservatism->value()); | 
					
						
							| 
									
										
										
										
											2018-10-16 19:35:01 +02:00
										 |  |  | 	set_vpmb_conservatism(ui->vpmb_conservatism->value()); | 
					
						
							| 
									
										
										
										
											2018-08-15 11:50:53 +02:00
										 |  |  | 	qPrefTechnicalDetails::set_show_ccr_setpoint(ui->show_ccr_setpoint->isChecked()); | 
					
						
							|  |  |  | 	qPrefTechnicalDetails::set_show_ccr_sensors(ui->show_ccr_sensors->isChecked()); | 
					
						
							|  |  |  | 	qPrefTechnicalDetails::set_show_scr_ocpo2(ui->show_scr_ocpo2->isChecked()); | 
					
						
							|  |  |  | 	qPrefTechnicalDetails::set_show_icd(ui->show_icd->isChecked()); | 
					
						
							|  |  |  | 	qPrefTechnicalDetails::set_display_deco_mode(ui->vpmb->isChecked() ? VPMB : BUEHLMANN); | 
					
						
							| 
									
										
										
										
											2015-10-01 18:59:53 -03: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 16:25:48 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | void PreferencesGraph::on_buehlmann_toggled(bool buehlmann) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	ui->gfhigh->setEnabled(buehlmann); | 
					
						
							|  |  |  | 	ui->gflow->setEnabled(buehlmann); | 
					
						
							| 
									
										
										
										
											2016-11-02 10:00:51 +01:00
										 |  |  | 	ui->label_GFhigh->setEnabled(buehlmann); | 
					
						
							|  |  |  | 	ui->label_GFlow->setEnabled(buehlmann); | 
					
						
							| 
									
										
										
										
											2016-10-03 16:25:48 +02:00
										 |  |  | 	ui->vpmb_conservatism->setEnabled(!buehlmann); | 
					
						
							| 
									
										
										
										
											2016-11-02 10:00:51 +01:00
										 |  |  | 	ui->label_VPMB->setEnabled(!buehlmann); | 
					
						
							| 
									
										
										
										
											2016-10-03 16:25:48 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-04 22:02:03 -07:00
										 |  |  | #undef DANGER_GF
 |