| 
									
										
										
										
											2017-04-27 20:26:05 +02:00
										 |  |  |  | // SPDX-License-Identifier: GPL-2.0
 | 
					
						
							| 
									
										
										
										
											2017-04-04 19:21:30 +02:00
										 |  |  |  | #include "TabDiveInformation.h"
 | 
					
						
							|  |  |  |  | #include "ui_TabDiveInformation.h"
 | 
					
						
							| 
									
										
										
										
											2019-11-10 13:09:19 -08:00
										 |  |  |  | #include "desktop-widgets/mainwindow.h" // TODO: Only used temporarilly for edit mode changes
 | 
					
						
							|  |  |  |  | #include "profile-widget/profilewidget2.h"
 | 
					
						
							| 
									
										
										
										
											2017-04-04 19:21:30 +02:00
										 |  |  |  | #include "../tagwidget.h"
 | 
					
						
							| 
									
										
										
										
											2019-11-13 15:08:40 +01:00
										 |  |  |  | #include "commands/command.h"
 | 
					
						
							| 
									
										
										
										
											2019-11-20 20:40:23 +02:00
										 |  |  |  | #include "core/subsurface-string.h"
 | 
					
						
							| 
									
										
										
										
											2019-04-30 12:42:33 +02:00
										 |  |  |  | #include "core/units.h"
 | 
					
						
							|  |  |  |  | #include "core/dive.h"
 | 
					
						
							| 
									
										
										
										
											2019-06-07 14:00:16 +02:00
										 |  |  |  | #include "core/qthelper.h"
 | 
					
						
							|  |  |  |  | #include "core/statistics.h"
 | 
					
						
							|  |  |  |  | #include "core/display.h"
 | 
					
						
							| 
									
										
										
										
											2019-07-15 23:44:39 +02:00
										 |  |  |  | #include "core/divelist.h"
 | 
					
						
							| 
									
										
										
										
											2017-04-04 19:21:30 +02:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-30 12:42:33 +02:00
										 |  |  |  | #define COMBO_CHANGED 0
 | 
					
						
							|  |  |  |  | #define TEXT_EDITED 1
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-04 19:21:30 +02:00
										 |  |  |  | TabDiveInformation::TabDiveInformation(QWidget *parent) : TabBase(parent), ui(new Ui::TabDiveInformation()) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	ui->setupUi(this); | 
					
						
							| 
									
										
										
										
											2019-04-26 10:03:32 +02:00
										 |  |  |  | 	connect(&diveListNotifier, &DiveListNotifier::divesChanged, this, &TabDiveInformation::divesChanged); | 
					
						
							| 
									
										
										
										
											2020-05-05 11:51:20 +02:00
										 |  |  |  | 	connect(&diveListNotifier, &DiveListNotifier::cylinderAdded, this, &TabDiveInformation::cylinderChanged); | 
					
						
							|  |  |  |  | 	connect(&diveListNotifier, &DiveListNotifier::cylinderRemoved, this, &TabDiveInformation::cylinderChanged); | 
					
						
							|  |  |  |  | 	connect(&diveListNotifier, &DiveListNotifier::cylinderEdited, this, &TabDiveInformation::cylinderChanged); | 
					
						
							| 
									
										
										
										
											2020-11-01 20:43:54 +02:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-05 07:30:29 -05:00
										 |  |  |  | 	QStringList atmPressTypes { "mbar", get_depth_unit() ,tr("Use DC")}; | 
					
						
							| 
									
										
										
										
											2019-04-30 12:42:33 +02:00
										 |  |  |  | 	ui->atmPressType->insertItems(0, atmPressTypes); | 
					
						
							|  |  |  |  | 	pressTypeIndex = 0; | 
					
						
							| 
									
										
										
										
											2020-09-21 21:44:35 +02:00
										 |  |  |  | 	ui->waterTypeCombo->insertItems(0, getWaterTypesAsString()); | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-10 13:09:19 -08:00
										 |  |  |  | 	// This needs to be the same order as enum dive_comp_type in dive.h!
 | 
					
						
							|  |  |  |  | 	QStringList types; | 
					
						
							|  |  |  |  | 	for (int i = 0; i < NUM_DIVEMODE; i++) | 
					
						
							|  |  |  |  | 		types.append(gettextFromC::tr(divemode_text_ui[i])); | 
					
						
							|  |  |  |  | 	ui->diveType->insertItems(0, types); | 
					
						
							|  |  |  |  | 	connect(ui->diveType, SIGNAL(currentIndexChanged(int)), this, SLOT(diveModeChanged(int))); | 
					
						
							| 
									
										
										
										
											2019-11-28 12:35:39 +02:00
										 |  |  |  | 	if (!prefs.extraEnvironmentalDefault) // if extraEnvironmental preference is turned off
 | 
					
						
							|  |  |  |  | 		showCurrentWidget(false, 0);  // Show current star widget at lefthand side
 | 
					
						
							| 
									
										
										
										
											2019-11-10 13:09:19 -08:00
										 |  |  |  | 	QAction *action = new QAction(tr("OK"), this); | 
					
						
							|  |  |  |  | 	connect(action, &QAction::triggered, this, &TabDiveInformation::closeWarning); | 
					
						
							|  |  |  |  | 	ui->multiDiveWarningMessage->addAction(action); | 
					
						
							|  |  |  |  | 	action = new QAction(tr("Undo"), this); | 
					
						
							|  |  |  |  | 	connect(action, &QAction::triggered, Command::undoAction(this), &QAction::trigger); | 
					
						
							|  |  |  |  | 	connect(action, &QAction::triggered, this, &TabDiveInformation::closeWarning); | 
					
						
							|  |  |  |  | 	ui->multiDiveWarningMessage->addAction(action); | 
					
						
							|  |  |  |  | 	ui->multiDiveWarningMessage->hide(); | 
					
						
							| 
									
										
										
										
											2020-01-06 11:59:28 -08:00
										 |  |  |  | 	manualDive = false; | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | 	updateWaterTypeWidget(); | 
					
						
							|  |  |  |  | 	QPixmap warning (":salinity-warning-icon"); | 
					
						
							|  |  |  |  | 	ui->salinityOverWrittenIcon->setPixmap(warning); | 
					
						
							| 
									
										
										
										
											2020-11-04 14:29:48 -08:00
										 |  |  |  | 	ui->salinityOverWrittenIcon->setToolTip("Water type differs from that of dc"); | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | 	ui->salinityOverWrittenIcon->setToolTipDuration(2500); | 
					
						
							| 
									
										
										
										
											2020-01-04 16:12:59 -08:00
										 |  |  |  | 	ui->salinityOverWrittenIcon->setVisible(false); | 
					
						
							| 
									
										
										
										
											2017-04-04 19:21:30 +02:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | TabDiveInformation::~TabDiveInformation() | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	delete ui; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | void TabDiveInformation::clear() | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	ui->sacText->clear(); | 
					
						
							|  |  |  |  | 	ui->otuText->clear(); | 
					
						
							|  |  |  |  | 	ui->maxcnsText->clear(); | 
					
						
							|  |  |  |  | 	ui->oxygenHeliumText->clear(); | 
					
						
							|  |  |  |  | 	ui->gasUsedText->clear(); | 
					
						
							|  |  |  |  | 	ui->diveTimeText->clear(); | 
					
						
							|  |  |  |  | 	ui->surfaceIntervalText->clear(); | 
					
						
							|  |  |  |  | 	ui->maximumDepthText->clear(); | 
					
						
							|  |  |  |  | 	ui->averageDepthText->clear(); | 
					
						
							| 
									
										
										
										
											2019-11-11 11:47:12 +02:00
										 |  |  |  | 	ui->watertemp->clear(); | 
					
						
							|  |  |  |  | 	ui->airtemp->clear(); | 
					
						
							| 
									
										
										
										
											2019-04-30 12:42:33 +02:00
										 |  |  |  | 	ui->atmPressVal->clear(); | 
					
						
							| 
									
										
										
										
											2017-04-04 19:21:30 +02:00
										 |  |  |  | 	ui->salinityText->clear(); | 
					
						
							| 
									
										
										
										
											2019-11-10 13:09:19 -08:00
										 |  |  |  | 	ui->waterTypeText->clear(); | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | 	ui->waterTypeCombo->setCurrentIndex(0); | 
					
						
							| 
									
										
										
										
											2019-11-10 13:09:19 -08:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | void TabDiveInformation::divesEdited(int i) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	// No warning if only one dive was edited
 | 
					
						
							|  |  |  |  | 	if (i <= 1) | 
					
						
							|  |  |  |  | 		return; | 
					
						
							|  |  |  |  | 	ui->multiDiveWarningMessage->setCloseButtonVisible(false); | 
					
						
							|  |  |  |  | 	ui->multiDiveWarningMessage->setText(tr("Warning: edited %1 dives").arg(i)); | 
					
						
							|  |  |  |  | 	ui->multiDiveWarningMessage->show(); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | void TabDiveInformation::closeWarning() | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	ui->multiDiveWarningMessage->hide(); | 
					
						
							| 
									
										
										
										
											2017-04-04 19:21:30 +02:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | void TabDiveInformation::updateWaterTypeWidget() | 
					
						
							| 
									
										
										
										
											2019-11-20 20:40:23 +02:00
										 |  |  |  | {    // Decide on whether to show the water type/salinity combobox or not
 | 
					
						
							|  |  |  |  | 	if (prefs.salinityEditDefault || manualDive) | 
					
						
							|  |  |  |  | 	{         // if the preference setting has been checked or this is a manually-entered dive
 | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | 		ui->waterTypeText->setVisible(false); | 
					
						
							| 
									
										
										
										
											2019-11-20 20:40:23 +02:00
										 |  |  |  | 		ui->waterTypeCombo->setVisible(true); // show combobox
 | 
					
						
							|  |  |  |  | 	} else {  // if the preference setting has not been set
 | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | 		ui->waterTypeCombo->setVisible(false); | 
					
						
							| 
									
										
										
										
											2019-11-20 20:40:23 +02:00
										 |  |  |  | 		ui->waterTypeText->setVisible(true);  // show water type as text label
 | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | 	} | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-26 10:03:32 +02:00
										 |  |  |  | // Update fields that depend on the dive profile
 | 
					
						
							|  |  |  |  | void TabDiveInformation::updateProfile() | 
					
						
							| 
									
										
										
										
											2017-04-04 19:21:30 +02:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-05-24 11:52:01 +02:00
										 |  |  |  | 	ui->maxcnsText->setText(QString("%L1\%").arg(current_dive->maxcns)); | 
					
						
							|  |  |  |  | 	ui->otuText->setText(QString("%L1").arg(current_dive->otu)); | 
					
						
							| 
									
										
										
										
											2019-04-26 09:46:36 +02:00
										 |  |  |  | 	ui->maximumDepthText->setText(get_depth_string(current_dive->maxdepth, true)); | 
					
						
							|  |  |  |  | 	ui->averageDepthText->setText(get_depth_string(current_dive->meandepth, true)); | 
					
						
							| 
									
										
										
										
											2017-04-04 19:21:30 +02:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-04 18:44:57 +02:00
										 |  |  |  | 	volume_t *gases = get_gas_used(current_dive); | 
					
						
							| 
									
										
										
										
											2017-04-04 19:21:30 +02:00
										 |  |  |  | 	QString volumes; | 
					
						
							| 
									
										
										
										
											2019-08-04 18:44:57 +02:00
										 |  |  |  | 	std::vector<int> mean(current_dive->cylinders.nr), duration(current_dive->cylinders.nr); | 
					
						
							| 
									
										
										
										
											2020-04-21 08:59:33 +02:00
										 |  |  |  | 	if (current_dive->cylinders.nr >= 0) | 
					
						
							|  |  |  |  | 		per_cylinder_mean_depth(current_dive, select_dc(current_dive), mean.data(), duration.data()); | 
					
						
							| 
									
										
										
										
											2017-04-04 19:21:30 +02:00
										 |  |  |  | 	volume_t sac; | 
					
						
							|  |  |  |  | 	QString gaslist, SACs, separator; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-04 18:44:57 +02:00
										 |  |  |  | 	for (int i = 0; i < current_dive->cylinders.nr; i++) { | 
					
						
							| 
									
										
										
										
											2019-04-26 09:46:36 +02:00
										 |  |  |  | 		if (!is_cylinder_used(current_dive, i)) | 
					
						
							| 
									
										
										
										
											2017-04-04 19:21:30 +02:00
										 |  |  |  | 			continue; | 
					
						
							|  |  |  |  | 		gaslist.append(separator); volumes.append(separator); SACs.append(separator); | 
					
						
							|  |  |  |  | 		separator = "\n"; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-04 22:13:49 +02:00
										 |  |  |  | 		gaslist.append(gasname(get_cylinder(current_dive, i)->gasmix)); | 
					
						
							| 
									
										
										
										
											2017-04-04 19:21:30 +02:00
										 |  |  |  | 		if (!gases[i].mliter) | 
					
						
							|  |  |  |  | 			continue; | 
					
						
							|  |  |  |  | 		volumes.append(get_volume_string(gases[i], true)); | 
					
						
							|  |  |  |  | 		if (duration[i]) { | 
					
						
							| 
									
										
										
										
											2019-04-26 09:46:36 +02:00
										 |  |  |  | 			sac.mliter = lrint(gases[i].mliter / (depth_to_atm(mean[i], current_dive) * duration[i] / 60)); | 
					
						
							| 
									
										
										
										
											2017-04-04 19:21:30 +02:00
										 |  |  |  | 			SACs.append(get_volume_string(sac, true).append(tr("/min"))); | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-06-27 07:42:09 +02:00
										 |  |  |  | 	free(gases); | 
					
						
							| 
									
										
										
										
											2017-04-04 19:21:30 +02:00
										 |  |  |  | 	ui->gasUsedText->setText(volumes); | 
					
						
							|  |  |  |  | 	ui->oxygenHeliumText->setText(gaslist); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-26 09:46:36 +02:00
										 |  |  |  | 	ui->diveTimeText->setText(get_dive_duration_string(current_dive->duration.seconds, tr("h"), tr("min"), tr("sec"), | 
					
						
							|  |  |  |  | 			" ", current_dive->dc.divemode == FREEDIVE)); | 
					
						
							| 
									
										
										
										
											2017-04-04 19:21:30 +02:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-14 03:55:33 +01:00
										 |  |  |  | 	ui->sacText->setText(current_dive->cylinders.nr > 0 && mean[0] && current_dive->dc.divemode != CCR ? SACs : QString()); | 
					
						
							| 
									
										
										
										
											2019-04-30 12:42:33 +02:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | 	if (current_dive->surface_pressure.mbar == 0) { | 
					
						
							|  |  |  |  | 		ui->atmPressVal->clear();			// If no atm pressure for dive then clear text box
 | 
					
						
							| 
									
										
										
										
											2019-05-15 07:42:14 -07:00
										 |  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2019-04-30 12:42:33 +02:00
										 |  |  |  | 		ui->atmPressVal->setEnabled(true); | 
					
						
							| 
									
										
										
										
											2020-01-04 16:04:36 -08:00
										 |  |  |  | 		ui->atmPressVal->setText(QString::number(current_dive->surface_pressure.mbar));		// else display atm pressure
 | 
					
						
							| 
									
										
										
										
											2019-04-30 12:42:33 +02:00
										 |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-04-26 10:03:32 +02:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | // Update fields that depend on start of dive
 | 
					
						
							|  |  |  |  | void TabDiveInformation::updateWhen() | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-04-26 09:46:36 +02:00
										 |  |  |  | 	timestamp_t surface_interval = get_surface_interval(current_dive->when); | 
					
						
							| 
									
										
										
										
											2018-10-06 09:21:27 +02:00
										 |  |  |  | 	if (surface_interval >= 0) | 
					
						
							|  |  |  |  | 		ui->surfaceIntervalText->setText(get_dive_surfint_string(surface_interval, tr("d"), tr("h"), tr("min"))); | 
					
						
							| 
									
										
										
										
											2017-04-04 19:21:30 +02:00
										 |  |  |  | 	else | 
					
						
							|  |  |  |  | 		ui->surfaceIntervalText->clear(); | 
					
						
							| 
									
										
										
										
											2019-04-26 10:03:32 +02:00
										 |  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-04-04 19:21:30 +02:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | // Provide an index for the combobox that corresponds to the salinity value
 | 
					
						
							|  |  |  |  | int TabDiveInformation::updateSalinityComboIndex(int salinity) | 
					
						
							| 
									
										
										
										
											2019-10-13 00:01:44 +02:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | 	if (salinity == 0) | 
					
						
							| 
									
										
										
										
											2020-01-04 16:06:28 -08:00
										 |  |  |  | 		return -1; // we don't know
 | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | 	else if (salinity < 10050) | 
					
						
							|  |  |  |  | 		return FRESHWATER; | 
					
						
							|  |  |  |  | 	else if (salinity < 10190) | 
					
						
							| 
									
										
										
										
											2020-05-04 18:07:56 -05:00
										 |  |  |  | 		return BRACKISHWATER; | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | 	else if (salinity < 10210) | 
					
						
							|  |  |  |  | 		return EN13319WATER; | 
					
						
							|  |  |  |  | 	else | 
					
						
							|  |  |  |  | 		return SALTWATER; | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | // If dive->user_salinity != dive->salinity (i.e. dc value) then show the salinity-overwrite indicator
 | 
					
						
							|  |  |  |  | void TabDiveInformation::checkDcSalinityOverWritten() | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-01-04 16:12:59 -08:00
										 |  |  |  | 	if (!current_dive) | 
					
						
							|  |  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-01-05 11:13:14 -08:00
										 |  |  |  | 	int dc_value = current_dc->salinity; | 
					
						
							| 
									
										
										
										
											2019-11-19 19:16:45 +02:00
										 |  |  |  | 	int user_value = current_dive->user_salinity; | 
					
						
							|  |  |  |  | 	bool show_indicator = false; | 
					
						
							| 
									
										
										
										
											2020-01-05 11:20:51 -08:00
										 |  |  |  | 	if (!manualDive && user_value != 0 && user_value != dc_value) | 
					
						
							| 
									
										
										
										
											2020-01-04 16:12:59 -08:00
										 |  |  |  | 		show_indicator = true; | 
					
						
							| 
									
										
										
										
											2019-11-19 19:16:45 +02:00
										 |  |  |  | 	ui->salinityOverWrittenIcon->setVisible(show_indicator); | 
					
						
							| 
									
										
										
										
											2019-10-13 00:01:44 +02:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-28 12:35:39 +02:00
										 |  |  |  | void TabDiveInformation::showCurrentWidget(bool show, int position) | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-11-19 19:16:45 +02:00
										 |  |  |  | 	ui->groupBox_wavesize->setVisible(show); | 
					
						
							|  |  |  |  | 	ui->groupBox_surge->setVisible(show); | 
					
						
							|  |  |  |  | 	ui->groupBox_chill->setVisible(show); | 
					
						
							|  |  |  |  | 	int layoutPosition = ui->diveInfoScrollAreaLayout->indexOf(ui->groupBox_current); | 
					
						
							|  |  |  |  | 	ui->diveInfoScrollAreaLayout->takeAt(layoutPosition); | 
					
						
							|  |  |  |  | 	ui->diveInfoScrollAreaLayout->addWidget(ui->groupBox_current, 6, position, 1, 1); | 
					
						
							| 
									
										
										
										
											2019-11-28 12:35:39 +02:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-26 10:03:32 +02:00
										 |  |  |  | void TabDiveInformation::updateData() | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	if (!current_dive) { | 
					
						
							|  |  |  |  | 		clear(); | 
					
						
							|  |  |  |  | 		return; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | 	int salinity_value; | 
					
						
							| 
									
										
										
										
											2019-11-20 20:40:23 +02:00
										 |  |  |  | 	manualDive = same_string(current_dive->dc.model, "manually added dive"); | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | 	updateWaterTypeWidget(); | 
					
						
							| 
									
										
										
										
											2019-04-26 10:03:32 +02:00
										 |  |  |  | 	updateProfile(); | 
					
						
							|  |  |  |  | 	updateWhen(); | 
					
						
							| 
									
										
										
										
											2019-11-11 11:47:12 +02:00
										 |  |  |  | 	ui->watertemp->setText(get_temperature_string(current_dive->watertemp, true)); | 
					
						
							|  |  |  |  | 	ui->airtemp->setText(get_temperature_string(current_dive->airtemp, true)); | 
					
						
							| 
									
										
										
										
											2019-04-30 12:42:33 +02:00
										 |  |  |  | 	ui->atmPressType->setItemText(1, get_depth_unit());  // Check for changes in depth unit (imperial/metric)
 | 
					
						
							| 
									
										
										
										
											2019-11-10 13:09:19 -08:00
										 |  |  |  | 	ui->atmPressType->setCurrentIndex(0);                // Set the atmospheric pressure combo box to mbar
 | 
					
						
							| 
									
										
										
										
											2020-05-04 08:54:58 -05:00
										 |  |  |  | 	salinity_value = get_dive_salinity(current_dive); | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | 	if (salinity_value) {			// Set water type indicator (EN13319 = 1.020 g/l)
 | 
					
						
							|  |  |  |  | 		if (prefs.salinityEditDefault) {   //If edit-salinity is enabled then set correct water type in combobox:
 | 
					
						
							|  |  |  |  | 			ui->waterTypeCombo->setCurrentIndex(updateSalinityComboIndex(salinity_value)); | 
					
						
							|  |  |  |  | 		} else {         // If water salinity is not editable: show water type as a text label
 | 
					
						
							| 
									
										
										
										
											2020-11-02 12:10:33 -08:00
										 |  |  |  | 			ui->waterTypeText->setText(get_water_type_string(salinity_value)); | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-05-04 08:54:58 -05:00
										 |  |  |  | 		ui->salinityText->setText(get_salinity_string(salinity_value)); | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2020-01-04 16:06:28 -08:00
										 |  |  |  | 		ui->waterTypeCombo->setCurrentIndex(-1); | 
					
						
							|  |  |  |  | 		ui->waterTypeText->setText(tr("unknown")); | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | 		ui->salinityText->clear(); | 
					
						
							|  |  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-01-04 16:12:59 -08:00
										 |  |  |  | 	checkDcSalinityOverWritten();  // If exclamation is needed (i.e. salinity overwrite by user), then show it
 | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-10 13:09:19 -08:00
										 |  |  |  | 	updateMode(current_dive); | 
					
						
							|  |  |  |  | 	ui->visibility->setCurrentStars(current_dive->visibility); | 
					
						
							| 
									
										
										
										
											2019-11-28 21:04:52 +02:00
										 |  |  |  | 	ui->wavesize->setCurrentStars(current_dive->wavesize); | 
					
						
							|  |  |  |  | 	ui->current->setCurrentStars(current_dive->current); | 
					
						
							|  |  |  |  | 	ui->surge->setCurrentStars(current_dive->surge); | 
					
						
							|  |  |  |  | 	ui->chill->setCurrentStars(current_dive->chill); | 
					
						
							| 
									
										
										
										
											2019-11-28 12:35:39 +02:00
										 |  |  |  | 	if (prefs.extraEnvironmentalDefault) | 
					
						
							|  |  |  |  | 		showCurrentWidget(true, 2);   // Show current star widget at 3rd position
 | 
					
						
							|  |  |  |  | 	else | 
					
						
							|  |  |  |  | 		showCurrentWidget(false, 0);  // Show current star widget at lefthand side
 | 
					
						
							| 
									
										
										
										
											2019-04-26 10:03:32 +02:00
										 |  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-04-04 19:21:30 +02:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-04 13:09:44 -08:00
										 |  |  |  | void TabDiveInformation::updateUi(QString titleColor) | 
					
						
							| 
									
										
										
										
											2020-11-02 12:10:33 -08:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-11-02 12:36:29 -08:00
										 |  |  |  | 	QString CSSSetSmallLabel = "QLabel:enabled { color: "; | 
					
						
							| 
									
										
										
										
											2020-11-04 13:09:44 -08:00
										 |  |  |  | 	CSSSetSmallLabel.append(titleColor + "; font-size: "); | 
					
						
							| 
									
										
										
										
											2020-11-02 12:10:33 -08:00
										 |  |  |  | 	CSSSetSmallLabel.append(QString::number((int)(0.5 + ui->diveHeadingLabel->geometry().height() * 0.66)) + "px;}"); | 
					
						
							| 
									
										
										
										
											2020-11-02 12:36:29 -08:00
										 |  |  |  | 	ui->groupBox_visibility->setStyleSheet(ui->groupBox_visibility->styleSheet() + CSSSetSmallLabel); | 
					
						
							|  |  |  |  | 	ui->groupBox_current->setStyleSheet(ui->groupBox_current->styleSheet() + CSSSetSmallLabel); | 
					
						
							|  |  |  |  | 	ui->groupBox_wavesize->setStyleSheet(ui->groupBox_wavesize->styleSheet() + CSSSetSmallLabel); | 
					
						
							|  |  |  |  | 	ui->groupBox_surge->setStyleSheet(ui->groupBox_surge->styleSheet() + CSSSetSmallLabel); | 
					
						
							|  |  |  |  | 	ui->groupBox_chill->setStyleSheet(ui->groupBox_chill->styleSheet() + CSSSetSmallLabel); | 
					
						
							|  |  |  |  | 	ui->salinityOverWrittenIcon->setToolTip(ui->salinityOverWrittenIcon->styleSheet() + CSSSetSmallLabel); | 
					
						
							| 
									
										
										
										
											2020-11-02 12:10:33 -08:00
										 |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-19 19:16:45 +02:00
										 |  |  |  | // From the index of the water type combo box, set the dive->salinity to an appropriate value
 | 
					
						
							| 
									
										
										
										
											2020-05-24 11:59:35 +02:00
										 |  |  |  | void TabDiveInformation::on_waterTypeCombo_activated(int index) | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-01-04 16:05:31 -08:00
										 |  |  |  | 	Q_UNUSED(index) | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | 	int combobox_salinity = 0; | 
					
						
							| 
									
										
										
										
											2020-01-05 11:13:14 -08:00
										 |  |  |  | 	int dc_salinity = current_dc->salinity; | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | 	switch(ui->waterTypeCombo->currentIndex()) { | 
					
						
							|  |  |  |  | 	case FRESHWATER: | 
					
						
							|  |  |  |  | 		combobox_salinity = FRESHWATER_SALINITY; | 
					
						
							|  |  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2020-05-04 18:07:56 -05:00
										 |  |  |  | 	case BRACKISHWATER: | 
					
						
							|  |  |  |  | 		combobox_salinity = BRACKISH_SALINITY; | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | 		break; | 
					
						
							|  |  |  |  | 	case EN13319WATER: | 
					
						
							|  |  |  |  | 		combobox_salinity = EN13319_SALINITY; | 
					
						
							|  |  |  |  | 		break; | 
					
						
							|  |  |  |  | 	case SALTWATER: | 
					
						
							|  |  |  |  | 		combobox_salinity = SEAWATER_SALINITY; | 
					
						
							|  |  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2020-01-04 16:06:28 -08:00
										 |  |  |  | 	case DC_WATERTYPE: | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | 		combobox_salinity = dc_salinity; | 
					
						
							|  |  |  |  | 		ui->waterTypeCombo->setCurrentIndex(updateSalinityComboIndex(combobox_salinity)); | 
					
						
							|  |  |  |  | 		break; | 
					
						
							|  |  |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2020-01-04 16:06:28 -08:00
										 |  |  |  | 		// the index was set to -1 to indicate an unknown water type
 | 
					
						
							|  |  |  |  | 		combobox_salinity = 0; | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | 		break; | 
					
						
							|  |  |  |  | 	} | 
					
						
							|  |  |  |  | 	// Save and display the new salinity value
 | 
					
						
							| 
									
										
										
										
											2020-01-04 16:06:28 -08:00
										 |  |  |  | 	if (combobox_salinity) | 
					
						
							| 
									
										
										
										
											2020-05-04 08:54:58 -05:00
										 |  |  |  | 		ui->salinityText->setText(get_salinity_string(combobox_salinity)); | 
					
						
							| 
									
										
										
										
											2020-01-04 16:06:28 -08:00
										 |  |  |  | 	else | 
					
						
							|  |  |  |  | 		ui->salinityText->clear(); | 
					
						
							| 
									
										
										
										
											2019-11-19 19:16:45 +02:00
										 |  |  |  | 	divesEdited(Command::editWaterTypeUser(combobox_salinity, false)); | 
					
						
							| 
									
										
										
										
											2020-01-05 11:20:51 -08:00
										 |  |  |  | 	// If salinity differs from that downloaded from dc, show warning
 | 
					
						
							|  |  |  |  | 	if (manualDive || dc_salinity == combobox_salinity) | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | 		ui->salinityOverWrittenIcon->setVisible(false); | 
					
						
							|  |  |  |  | 	else | 
					
						
							|  |  |  |  | 		ui->salinityOverWrittenIcon->setVisible(true); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-05 11:51:20 +02:00
										 |  |  |  | void TabDiveInformation::cylinderChanged(dive *d) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	// If this isn't the current dive, do nothing
 | 
					
						
							|  |  |  |  | 	if (current_dive != d) | 
					
						
							|  |  |  |  | 		return; | 
					
						
							|  |  |  |  | 	updateProfile(); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-26 10:03:32 +02:00
										 |  |  |  | // This function gets called if a field gets updated by an undo command.
 | 
					
						
							|  |  |  |  | // Refresh the corresponding UI field.
 | 
					
						
							| 
									
										
										
										
											2019-06-23 09:22:26 +02:00
										 |  |  |  | void TabDiveInformation::divesChanged(const QVector<dive *> &dives, DiveField field) | 
					
						
							| 
									
										
										
										
											2019-04-26 10:03:32 +02:00
										 |  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | 	int salinity_value; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-26 10:03:32 +02:00
										 |  |  |  | 	// If the current dive is not in list of changed dives, do nothing
 | 
					
						
							|  |  |  |  | 	if (!current_dive || !dives.contains(current_dive)) | 
					
						
							|  |  |  |  | 		return; | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-10 13:09:19 -08:00
										 |  |  |  | 	if (field.visibility) | 
					
						
							|  |  |  |  | 		ui->visibility->setCurrentStars(current_dive->visibility); | 
					
						
							| 
									
										
										
										
											2019-11-28 21:04:52 +02:00
										 |  |  |  | 	if (field.wavesize) | 
					
						
							|  |  |  |  | 		ui->wavesize->setCurrentStars(current_dive->wavesize); | 
					
						
							|  |  |  |  | 	if (field.current) | 
					
						
							|  |  |  |  | 		ui->current->setCurrentStars(current_dive->current); | 
					
						
							|  |  |  |  | 	if (field.surge) | 
					
						
							|  |  |  |  | 		ui->surge->setCurrentStars(current_dive->surge); | 
					
						
							|  |  |  |  | 	if (field.chill) | 
					
						
							|  |  |  |  | 		ui->chill->setCurrentStars(current_dive->chill); | 
					
						
							| 
									
										
										
										
											2021-01-27 23:41:51 +01:00
										 |  |  |  | 	if (field.mode) | 
					
						
							| 
									
										
										
										
											2019-11-10 13:09:19 -08:00
										 |  |  |  | 		updateMode(current_dive); | 
					
						
							| 
									
										
										
										
											2019-10-13 12:44:39 +02:00
										 |  |  |  | 	if (field.duration || field.depth || field.mode) | 
					
						
							| 
									
										
										
										
											2019-04-26 10:03:32 +02:00
										 |  |  |  | 		updateProfile(); | 
					
						
							| 
									
										
										
										
											2019-10-13 12:44:39 +02:00
										 |  |  |  | 	if (field.air_temp) | 
					
						
							| 
									
										
										
										
											2019-11-11 11:47:12 +02:00
										 |  |  |  | 		ui->airtemp->setText(get_temperature_string(current_dive->airtemp, true)); | 
					
						
							| 
									
										
										
										
											2019-10-13 12:44:39 +02:00
										 |  |  |  | 	if (field.water_temp) | 
					
						
							| 
									
										
										
										
											2019-11-11 11:47:12 +02:00
										 |  |  |  | 		ui->watertemp->setText(get_temperature_string(current_dive->watertemp, true)); | 
					
						
							| 
									
										
										
										
											2019-10-13 12:44:39 +02:00
										 |  |  |  | 	if (field.atm_press) | 
					
						
							| 
									
										
										
										
											2020-01-04 16:04:36 -08:00
										 |  |  |  | 		ui->atmPressVal->setText(QString::number(current_dive->surface_pressure.mbar)); | 
					
						
							| 
									
										
										
										
											2019-10-13 12:44:39 +02:00
										 |  |  |  | 	if (field.salinity) | 
					
						
							| 
									
										
										
										
											2019-11-19 12:27:18 +02:00
										 |  |  |  | 		checkDcSalinityOverWritten(); | 
					
						
							|  |  |  |  | 	if (current_dive->user_salinity) | 
					
						
							|  |  |  |  | 		salinity_value = current_dive->user_salinity; | 
					
						
							|  |  |  |  | 	else | 
					
						
							|  |  |  |  | 		salinity_value = current_dive->salinity; | 
					
						
							|  |  |  |  | 	ui->waterTypeCombo->setCurrentIndex(updateSalinityComboIndex(salinity_value)); | 
					
						
							| 
									
										
										
										
											2020-05-24 11:52:01 +02:00
										 |  |  |  | 	ui->salinityText->setText(QString("%L1g/ℓ").arg(salinity_value / 10.0)); | 
					
						
							| 
									
										
										
										
											2017-04-04 19:21:30 +02:00
										 |  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-04-30 12:42:33 +02:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-10 13:09:19 -08:00
										 |  |  |  | void TabDiveInformation::on_visibility_valueChanged(int value) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	if (current_dive) | 
					
						
							|  |  |  |  | 		divesEdited(Command::editVisibility(value, false)); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-28 21:04:52 +02:00
										 |  |  |  | void TabDiveInformation::on_wavesize_valueChanged(int value) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	if (current_dive) | 
					
						
							|  |  |  |  | 		divesEdited(Command::editWaveSize(value, false)); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | void TabDiveInformation::on_current_valueChanged(int value) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	if (current_dive) | 
					
						
							|  |  |  |  | 		divesEdited(Command::editCurrent(value, false)); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | void TabDiveInformation::on_surge_valueChanged(int value) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	if (current_dive) | 
					
						
							|  |  |  |  | 		divesEdited(Command::editSurge(value, false)); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | void TabDiveInformation::on_chill_valueChanged(int value) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	if (current_dive) | 
					
						
							|  |  |  |  | 		divesEdited(Command::editChill(value, false)); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-10 13:09:19 -08:00
										 |  |  |  | void TabDiveInformation::updateMode(struct dive *d) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	ui->diveType->setCurrentIndex(get_dive_dc(d, dc_number)->divemode); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | void TabDiveInformation::diveModeChanged(int index) | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	if (current_dive) | 
					
						
							|  |  |  |  | 		divesEdited(Command::editMode(dc_number, (enum divemode_t)index, false)); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-11 11:47:12 +02:00
										 |  |  |  | void TabDiveInformation::on_airtemp_editingFinished() | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	// If the field wasn't modified by the user, don't post a new undo command.
 | 
					
						
							|  |  |  |  | 	// Owing to rounding errors, this might lead to undo commands that have
 | 
					
						
							|  |  |  |  | 	// no user visible effects. These can be very confusing.
 | 
					
						
							|  |  |  |  | 	if (ui->airtemp->isModified() && current_dive) | 
					
						
							|  |  |  |  | 		divesEdited(Command::editAirTemp(parseTemperatureToMkelvin(ui->airtemp->text()), false)); | 
					
						
							|  |  |  |  | } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | void TabDiveInformation::on_watertemp_editingFinished() | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	// If the field wasn't modified by the user, don't post a new undo command.
 | 
					
						
							|  |  |  |  | 	// Owing to rounding errors, this might lead to undo commands that have
 | 
					
						
							|  |  |  |  | 	// no user visible effects. These can be very confusing.
 | 
					
						
							|  |  |  |  | 	if (ui->watertemp->isModified() && current_dive) | 
					
						
							|  |  |  |  | 		divesEdited(Command::editWaterTemp(parseTemperatureToMkelvin(ui->watertemp->text()), false)); | 
					
						
							|  |  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-01-04 16:05:31 -08:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-24 11:59:35 +02:00
										 |  |  |  | void TabDiveInformation::on_atmPressType_currentIndexChanged(int index) | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-01-04 16:05:31 -08:00
										 |  |  |  | 	Q_UNUSED(index) | 
					
						
							|  |  |  |  | 	updateTextBox(COMBO_CHANGED); | 
					
						
							|  |  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-04-30 12:42:33 +02:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-24 11:59:35 +02:00
										 |  |  |  | void TabDiveInformation::on_atmPressVal_editingFinished() | 
					
						
							|  |  |  |  | { | 
					
						
							|  |  |  |  | 	updateTextBox(TEXT_EDITED); | 
					
						
							|  |  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-04-30 12:42:33 +02:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | void TabDiveInformation::updateTextBox(int event) // Either the text box has been edited or the pressure type has changed.
 | 
					
						
							|  |  |  |  | {                                       // Either way this gets a numeric value and puts it on the text box atmPressVal,
 | 
					
						
							|  |  |  |  | 	pressure_t atmpress = { 0 };    // then stores it in dive->surface_pressure.The undo stack for the text box content is
 | 
					
						
							|  |  |  |  | 	double altitudeVal;             // maintained even though two independent events trigger saving the text box contents.
 | 
					
						
							|  |  |  |  | 	if (current_dive) { | 
					
						
							|  |  |  |  | 		switch (ui->atmPressType->currentIndex()) { | 
					
						
							| 
									
										
										
										
											2019-11-11 08:19:05 +02:00
										 |  |  |  | 		case 0:		// If atm pressure in mbar has been selected:
 | 
					
						
							| 
									
										
										
										
											2019-04-30 12:42:33 +02:00
										 |  |  |  | 			if (event == TEXT_EDITED)         // this is only triggered by on_atmPressVal_editingFinished()
 | 
					
						
							|  |  |  |  | 				atmpress.mbar = ui->atmPressVal->text().toInt();    // use the specified mbar pressure
 | 
					
						
							| 
									
										
										
										
											2019-11-11 08:19:05 +02:00
										 |  |  |  | 			else                              // if no pressure has been typed, then show existing dive pressure
 | 
					
						
							|  |  |  |  | 				ui->atmPressVal->setText(QString::number(current_dive->surface_pressure.mbar)); | 
					
						
							| 
									
										
										
										
											2019-04-30 12:42:33 +02:00
										 |  |  |  | 			break; | 
					
						
							|  |  |  |  | 		case 1:		// If an altitude has been specified:
 | 
					
						
							|  |  |  |  | 			if (event == TEXT_EDITED) {	// this is only triggered by on_atmPressVal_editingFinished()
 | 
					
						
							|  |  |  |  | 				altitudeVal = (ui->atmPressVal->text().toFloat());    // get altitude from text box
 | 
					
						
							|  |  |  |  | 				if (prefs.units.length == units::FEET)         // if altitude in feet
 | 
					
						
							|  |  |  |  | 					altitudeVal = feet_to_mm(altitudeVal); // imperial: convert altitude from feet to mm
 | 
					
						
							|  |  |  |  | 				else | 
					
						
							|  |  |  |  | 					altitudeVal = altitudeVal * 1000;     // metric: convert altitude from meters to mm
 | 
					
						
							|  |  |  |  | 				atmpress.mbar = altitude_to_pressure((int32_t) altitudeVal); // convert altitude (mm) to pressure (mbar)
 | 
					
						
							| 
									
										
										
										
											2020-01-04 16:04:36 -08:00
										 |  |  |  | 				ui->atmPressVal->setText(QString::number(atmpress.mbar)); | 
					
						
							| 
									
										
										
										
											2019-04-30 12:42:33 +02:00
										 |  |  |  | 				ui->atmPressType->setCurrentIndex(0);    // reset combobox to mbar
 | 
					
						
							|  |  |  |  | 			} else { // i.e. event == COMBO_CHANGED, that is, "m" or "ft" was selected from combobox
 | 
					
						
							| 
									
										
										
										
											2019-11-11 08:19:05 +02:00
										 |  |  |  | 				 // Show estimated altitude
 | 
					
						
							|  |  |  |  | 				bool ok; | 
					
						
							|  |  |  |  | 				double convertVal = 0.0010;	// Metric conversion fro mm to m
 | 
					
						
							|  |  |  |  | 				int pressure_as_integer = ui->atmPressVal->text().toInt(&ok,10); | 
					
						
							|  |  |  |  | 				if (ok && ui->atmPressVal->text().length()) {  // Show existing atm press as an altitude:
 | 
					
						
							|  |  |  |  | 					if (prefs.units.length == units::FEET) // For imperial units
 | 
					
						
							|  |  |  |  | 						convertVal = mm_to_feet(1);    // convert from mm to ft
 | 
					
						
							|  |  |  |  | 					ui->atmPressVal->setText(QString::number((int)(pressure_to_altitude(pressure_as_integer) * convertVal))); | 
					
						
							|  |  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2019-04-30 12:42:33 +02:00
										 |  |  |  | 			} | 
					
						
							|  |  |  |  | 			break; | 
					
						
							|  |  |  |  | 		case 2:          // i.e. event = COMBO_CHANGED, that is, the option "Use dc" was selected from combobox
 | 
					
						
							|  |  |  |  | 			atmpress = calculate_surface_pressure(current_dive);	// re-calculate air pressure from dc data
 | 
					
						
							|  |  |  |  | 			ui->atmPressVal->setText(QString::number(atmpress.mbar)); // display it in text box
 | 
					
						
							|  |  |  |  | 			ui->atmPressType->setCurrentIndex(0);          // reset combobox to mbar
 | 
					
						
							|  |  |  |  | 			break; | 
					
						
							|  |  |  |  | 		default: | 
					
						
							|  |  |  |  | 			atmpress.mbar = 1013;    // This line should never execute
 | 
					
						
							|  |  |  |  | 			break; | 
					
						
							|  |  |  |  | 		} | 
					
						
							|  |  |  |  | 		if (atmpress.mbar) | 
					
						
							| 
									
										
										
										
											2019-11-10 13:09:19 -08:00
										 |  |  |  | 			divesEdited(Command::editAtmPress(atmpress.mbar, false));      // and save the pressure for undo
 | 
					
						
							| 
									
										
										
										
											2019-04-30 12:42:33 +02:00
										 |  |  |  | 	} | 
					
						
							|  |  |  |  | } |