mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
selection: remove current_dive and dc_number access from tabwidgets
An attempt at limitting accesses to the globals current_dive and dc_number. These globals do not make sense on mobile. The parent widget of the tab-widgets remembers the currently displayer dive and dive computer and the individual widgets access these values from there. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
8cd191c271
commit
6f03fc9689
8 changed files with 125 additions and 96 deletions
|
@ -114,12 +114,11 @@ TabDiveEquipment::~TabDiveEquipment()
|
||||||
// Refresh the corresponding UI field.
|
// Refresh the corresponding UI field.
|
||||||
void TabDiveEquipment::divesChanged(const QVector<dive *> &dives, DiveField field)
|
void TabDiveEquipment::divesChanged(const QVector<dive *> &dives, DiveField field)
|
||||||
{
|
{
|
||||||
// If the current dive is not in list of changed dives, do nothing
|
if (!parent.includesCurrentDive(dives))
|
||||||
if (!current_dive || !dives.contains(current_dive))
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (field.suit)
|
if (field.suit)
|
||||||
ui.suit->setText(QString(current_dive->suit));
|
ui.suit->setText(QString(parent.currentDive->suit));
|
||||||
}
|
}
|
||||||
|
|
||||||
void TabDiveEquipment::toggleTriggeredColumn()
|
void TabDiveEquipment::toggleTriggeredColumn()
|
||||||
|
@ -209,7 +208,7 @@ void TabDiveEquipment::divesEdited(int i)
|
||||||
|
|
||||||
void TabDiveEquipment::on_suit_editingFinished()
|
void TabDiveEquipment::on_suit_editingFinished()
|
||||||
{
|
{
|
||||||
if (!current_dive)
|
if (!parent.currentDive)
|
||||||
return;
|
return;
|
||||||
divesEdited(Command::editSuit(ui.suit->text(), false));
|
divesEdited(Command::editSuit(ui.suit->text(), false));
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
// SPDX-License-Identifier: GPL-2.0
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
#include "TabDiveInformation.h"
|
#include "TabDiveInformation.h"
|
||||||
|
#include "maintab.h"
|
||||||
#include "ui_TabDiveInformation.h"
|
#include "ui_TabDiveInformation.h"
|
||||||
#include "desktop-widgets/mainwindow.h" // TODO: Only used temporarilly for edit mode changes
|
|
||||||
#include "profile-widget/profilewidget2.h"
|
#include "profile-widget/profilewidget2.h"
|
||||||
#include "../tagwidget.h"
|
#include "../tagwidget.h"
|
||||||
#include "commands/command.h"
|
#include "commands/command.h"
|
||||||
|
@ -108,32 +108,33 @@ void TabDiveInformation::updateWaterTypeWidget()
|
||||||
// Update fields that depend on the dive profile
|
// Update fields that depend on the dive profile
|
||||||
void TabDiveInformation::updateProfile()
|
void TabDiveInformation::updateProfile()
|
||||||
{
|
{
|
||||||
ui->maxcnsText->setText(QString("%L1\%").arg(current_dive->maxcns));
|
dive *currentDive = parent.currentDive;
|
||||||
ui->otuText->setText(QString("%L1").arg(current_dive->otu));
|
ui->maxcnsText->setText(QString("%L1\%").arg(currentDive->maxcns));
|
||||||
ui->maximumDepthText->setText(get_depth_string(current_dive->maxdepth, true));
|
ui->otuText->setText(QString("%L1").arg(currentDive->otu));
|
||||||
ui->averageDepthText->setText(get_depth_string(current_dive->meandepth, true));
|
ui->maximumDepthText->setText(get_depth_string(currentDive->maxdepth, true));
|
||||||
|
ui->averageDepthText->setText(get_depth_string(currentDive->meandepth, true));
|
||||||
|
|
||||||
volume_t *gases = get_gas_used(current_dive);
|
volume_t *gases = get_gas_used(currentDive);
|
||||||
QString volumes;
|
QString volumes;
|
||||||
std::vector<int> mean(current_dive->cylinders.nr), duration(current_dive->cylinders.nr);
|
std::vector<int> mean(currentDive->cylinders.nr), duration(currentDive->cylinders.nr);
|
||||||
struct divecomputer *currentdc = get_dive_dc(current_dive, dc_number);
|
struct divecomputer *currentdc = parent.getCurrentDC();
|
||||||
if (currentdc && current_dive->cylinders.nr >= 0)
|
if (currentdc && currentDive->cylinders.nr >= 0)
|
||||||
per_cylinder_mean_depth(current_dive, currentdc, mean.data(), duration.data());
|
per_cylinder_mean_depth(currentDive, currentdc, mean.data(), duration.data());
|
||||||
volume_t sac;
|
volume_t sac;
|
||||||
QString gaslist, SACs, separator;
|
QString gaslist, SACs, separator;
|
||||||
|
|
||||||
for (int i = 0; i < current_dive->cylinders.nr; i++) {
|
for (int i = 0; i < currentDive->cylinders.nr; i++) {
|
||||||
if (!is_cylinder_used(current_dive, i))
|
if (!is_cylinder_used(currentDive, i))
|
||||||
continue;
|
continue;
|
||||||
gaslist.append(separator); volumes.append(separator); SACs.append(separator);
|
gaslist.append(separator); volumes.append(separator); SACs.append(separator);
|
||||||
separator = "\n";
|
separator = "\n";
|
||||||
|
|
||||||
gaslist.append(gasname(get_cylinder(current_dive, i)->gasmix));
|
gaslist.append(gasname(get_cylinder(currentDive, i)->gasmix));
|
||||||
if (!gases[i].mliter)
|
if (!gases[i].mliter)
|
||||||
continue;
|
continue;
|
||||||
volumes.append(get_volume_string(gases[i], true));
|
volumes.append(get_volume_string(gases[i], true));
|
||||||
if (duration[i]) {
|
if (duration[i]) {
|
||||||
sac.mliter = lrint(gases[i].mliter / (depth_to_atm(mean[i], current_dive) * duration[i] / 60));
|
sac.mliter = lrint(gases[i].mliter / (depth_to_atm(mean[i], currentDive) * duration[i] / 60));
|
||||||
SACs.append(get_volume_string(sac, true).append(tr("/min")));
|
SACs.append(get_volume_string(sac, true).append(tr("/min")));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -141,23 +142,23 @@ void TabDiveInformation::updateProfile()
|
||||||
ui->gasUsedText->setText(volumes);
|
ui->gasUsedText->setText(volumes);
|
||||||
ui->oxygenHeliumText->setText(gaslist);
|
ui->oxygenHeliumText->setText(gaslist);
|
||||||
|
|
||||||
ui->diveTimeText->setText(get_dive_duration_string(current_dive->duration.seconds, tr("h"), tr("min"), tr("sec"),
|
ui->diveTimeText->setText(get_dive_duration_string(currentDive->duration.seconds, tr("h"), tr("min"), tr("sec"),
|
||||||
" ", current_dive->dc.divemode == FREEDIVE));
|
" ", currentDive->dc.divemode == FREEDIVE));
|
||||||
|
|
||||||
ui->sacText->setText(current_dive->cylinders.nr > 0 && mean[0] && current_dive->dc.divemode != CCR ? SACs : QString());
|
ui->sacText->setText(currentDive->cylinders.nr > 0 && mean[0] && currentDive->dc.divemode != CCR ? SACs : QString());
|
||||||
|
|
||||||
if (current_dive->surface_pressure.mbar == 0) {
|
if (currentDive->surface_pressure.mbar == 0) {
|
||||||
ui->atmPressVal->clear(); // If no atm pressure for dive then clear text box
|
ui->atmPressVal->clear(); // If no atm pressure for dive then clear text box
|
||||||
} else {
|
} else {
|
||||||
ui->atmPressVal->setEnabled(true);
|
ui->atmPressVal->setEnabled(true);
|
||||||
ui->atmPressVal->setText(QString::number(current_dive->surface_pressure.mbar)); // else display atm pressure
|
ui->atmPressVal->setText(QString::number(currentDive->surface_pressure.mbar)); // else display atm pressure
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update fields that depend on start of dive
|
// Update fields that depend on start of dive
|
||||||
void TabDiveInformation::updateWhen()
|
void TabDiveInformation::updateWhen()
|
||||||
{
|
{
|
||||||
timestamp_t surface_interval = get_surface_interval(current_dive->when);
|
timestamp_t surface_interval = get_surface_interval(parent.currentDive->when);
|
||||||
if (surface_interval >= 0)
|
if (surface_interval >= 0)
|
||||||
ui->surfaceIntervalText->setText(get_dive_surfint_string(surface_interval, tr("d"), tr("h"), tr("min")));
|
ui->surfaceIntervalText->setText(get_dive_surfint_string(surface_interval, tr("d"), tr("h"), tr("min")));
|
||||||
else
|
else
|
||||||
|
@ -182,11 +183,11 @@ int TabDiveInformation::updateSalinityComboIndex(int salinity)
|
||||||
// If dive->user_salinity != dive->salinity (i.e. dc value) then show the salinity-overwrite indicator
|
// If dive->user_salinity != dive->salinity (i.e. dc value) then show the salinity-overwrite indicator
|
||||||
void TabDiveInformation::checkDcSalinityOverWritten()
|
void TabDiveInformation::checkDcSalinityOverWritten()
|
||||||
{
|
{
|
||||||
const struct divecomputer *currentdc = get_dive_dc(current_dive, dc_number);
|
const struct divecomputer *currentdc = parent.getCurrentDC();
|
||||||
if (!current_dive || !currentdc)
|
if (!currentdc)
|
||||||
return;
|
return;
|
||||||
int dc_value = currentdc->salinity;
|
int dc_value = currentdc->salinity;
|
||||||
int user_value = current_dive->user_salinity;
|
int user_value = parent.currentDive->user_salinity;
|
||||||
bool show_indicator = false;
|
bool show_indicator = false;
|
||||||
if (!manualDive && user_value != 0 && user_value != dc_value)
|
if (!manualDive && user_value != 0 && user_value != dc_value)
|
||||||
show_indicator = true;
|
show_indicator = true;
|
||||||
|
@ -229,7 +230,7 @@ void TabDiveInformation::updateData(const std::vector<dive *> &, dive *currentDi
|
||||||
}
|
}
|
||||||
checkDcSalinityOverWritten(); // If exclamation is needed (i.e. salinity overwrite by user), then show it
|
checkDcSalinityOverWritten(); // If exclamation is needed (i.e. salinity overwrite by user), then show it
|
||||||
|
|
||||||
updateMode(currentDive);
|
updateMode();
|
||||||
ui->visibility->setCurrentStars(currentDive->visibility);
|
ui->visibility->setCurrentStars(currentDive->visibility);
|
||||||
ui->wavesize->setCurrentStars(currentDive->wavesize);
|
ui->wavesize->setCurrentStars(currentDive->wavesize);
|
||||||
ui->current->setCurrentStars(currentDive->current);
|
ui->current->setCurrentStars(currentDive->current);
|
||||||
|
@ -259,7 +260,7 @@ void TabDiveInformation::on_waterTypeCombo_activated(int index)
|
||||||
{
|
{
|
||||||
Q_UNUSED(index)
|
Q_UNUSED(index)
|
||||||
int combobox_salinity = 0;
|
int combobox_salinity = 0;
|
||||||
const struct divecomputer *currentdc = get_dive_dc(current_dive, dc_number);
|
const struct divecomputer *currentdc = parent.getCurrentDC();
|
||||||
if (!currentdc)
|
if (!currentdc)
|
||||||
return;
|
return;
|
||||||
int dc_salinity = currentdc->salinity;
|
int dc_salinity = currentdc->salinity;
|
||||||
|
@ -301,7 +302,7 @@ void TabDiveInformation::on_waterTypeCombo_activated(int index)
|
||||||
void TabDiveInformation::cylinderChanged(dive *d)
|
void TabDiveInformation::cylinderChanged(dive *d)
|
||||||
{
|
{
|
||||||
// If this isn't the current dive, do nothing
|
// If this isn't the current dive, do nothing
|
||||||
if (current_dive != d)
|
if (parent.currentDive != d)
|
||||||
return;
|
return;
|
||||||
updateProfile();
|
updateProfile();
|
||||||
}
|
}
|
||||||
|
@ -313,78 +314,81 @@ void TabDiveInformation::divesChanged(const QVector<dive *> &dives, DiveField fi
|
||||||
int salinity_value;
|
int salinity_value;
|
||||||
|
|
||||||
// If the current dive is not in list of changed dives, do nothing
|
// If the current dive is not in list of changed dives, do nothing
|
||||||
if (!current_dive || !dives.contains(current_dive))
|
if (!parent.includesCurrentDive(dives))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
dive *currentDive = parent.currentDive;
|
||||||
if (field.visibility)
|
if (field.visibility)
|
||||||
ui->visibility->setCurrentStars(current_dive->visibility);
|
ui->visibility->setCurrentStars(currentDive->visibility);
|
||||||
if (field.wavesize)
|
if (field.wavesize)
|
||||||
ui->wavesize->setCurrentStars(current_dive->wavesize);
|
ui->wavesize->setCurrentStars(currentDive->wavesize);
|
||||||
if (field.current)
|
if (field.current)
|
||||||
ui->current->setCurrentStars(current_dive->current);
|
ui->current->setCurrentStars(currentDive->current);
|
||||||
if (field.surge)
|
if (field.surge)
|
||||||
ui->surge->setCurrentStars(current_dive->surge);
|
ui->surge->setCurrentStars(currentDive->surge);
|
||||||
if (field.chill)
|
if (field.chill)
|
||||||
ui->chill->setCurrentStars(current_dive->chill);
|
ui->chill->setCurrentStars(currentDive->chill);
|
||||||
if (field.mode)
|
if (field.mode)
|
||||||
updateMode(current_dive);
|
updateMode();
|
||||||
if (field.duration || field.depth || field.mode)
|
if (field.duration || field.depth || field.mode)
|
||||||
updateProfile();
|
updateProfile();
|
||||||
if (field.air_temp)
|
if (field.air_temp)
|
||||||
ui->airtemp->setText(get_temperature_string(current_dive->airtemp, true));
|
ui->airtemp->setText(get_temperature_string(currentDive->airtemp, true));
|
||||||
if (field.water_temp)
|
if (field.water_temp)
|
||||||
ui->watertemp->setText(get_temperature_string(current_dive->watertemp, true));
|
ui->watertemp->setText(get_temperature_string(currentDive->watertemp, true));
|
||||||
if (field.atm_press)
|
if (field.atm_press)
|
||||||
ui->atmPressVal->setText(QString::number(current_dive->surface_pressure.mbar));
|
ui->atmPressVal->setText(QString::number(currentDive->surface_pressure.mbar));
|
||||||
if (field.salinity)
|
if (field.salinity)
|
||||||
checkDcSalinityOverWritten();
|
checkDcSalinityOverWritten();
|
||||||
if (current_dive->user_salinity)
|
if (currentDive->user_salinity)
|
||||||
salinity_value = current_dive->user_salinity;
|
salinity_value = currentDive->user_salinity;
|
||||||
else
|
else
|
||||||
salinity_value = current_dive->salinity;
|
salinity_value = currentDive->salinity;
|
||||||
ui->waterTypeCombo->setCurrentIndex(updateSalinityComboIndex(salinity_value));
|
ui->waterTypeCombo->setCurrentIndex(updateSalinityComboIndex(salinity_value));
|
||||||
ui->salinityText->setText(QString("%L1g/ℓ").arg(salinity_value / 10.0));
|
ui->salinityText->setText(QString("%L1g/ℓ").arg(salinity_value / 10.0));
|
||||||
}
|
}
|
||||||
|
|
||||||
void TabDiveInformation::on_visibility_valueChanged(int value)
|
void TabDiveInformation::on_visibility_valueChanged(int value)
|
||||||
{
|
{
|
||||||
if (current_dive)
|
if (parent.currentDive)
|
||||||
divesEdited(Command::editVisibility(value, false));
|
divesEdited(Command::editVisibility(value, false));
|
||||||
}
|
}
|
||||||
|
|
||||||
void TabDiveInformation::on_wavesize_valueChanged(int value)
|
void TabDiveInformation::on_wavesize_valueChanged(int value)
|
||||||
{
|
{
|
||||||
if (current_dive)
|
if (parent.currentDive)
|
||||||
divesEdited(Command::editWaveSize(value, false));
|
divesEdited(Command::editWaveSize(value, false));
|
||||||
}
|
}
|
||||||
|
|
||||||
void TabDiveInformation::on_current_valueChanged(int value)
|
void TabDiveInformation::on_current_valueChanged(int value)
|
||||||
{
|
{
|
||||||
if (current_dive)
|
if (parent.currentDive)
|
||||||
divesEdited(Command::editCurrent(value, false));
|
divesEdited(Command::editCurrent(value, false));
|
||||||
}
|
}
|
||||||
|
|
||||||
void TabDiveInformation::on_surge_valueChanged(int value)
|
void TabDiveInformation::on_surge_valueChanged(int value)
|
||||||
{
|
{
|
||||||
if (current_dive)
|
if (parent.currentDive)
|
||||||
divesEdited(Command::editSurge(value, false));
|
divesEdited(Command::editSurge(value, false));
|
||||||
}
|
}
|
||||||
|
|
||||||
void TabDiveInformation::on_chill_valueChanged(int value)
|
void TabDiveInformation::on_chill_valueChanged(int value)
|
||||||
{
|
{
|
||||||
if (current_dive)
|
if (parent.currentDive)
|
||||||
divesEdited(Command::editChill(value, false));
|
divesEdited(Command::editChill(value, false));
|
||||||
}
|
}
|
||||||
|
|
||||||
void TabDiveInformation::updateMode(struct dive *d)
|
void TabDiveInformation::updateMode()
|
||||||
{
|
{
|
||||||
ui->diveType->setCurrentIndex(get_dive_dc(d, dc_number)->divemode);
|
divecomputer *currentDC = parent.getCurrentDC();
|
||||||
|
if (currentDC)
|
||||||
|
ui->diveType->setCurrentIndex(currentDC->divemode);
|
||||||
}
|
}
|
||||||
|
|
||||||
void TabDiveInformation::diveModeChanged(int index)
|
void TabDiveInformation::diveModeChanged(int index)
|
||||||
{
|
{
|
||||||
if (current_dive)
|
if (parent.currentDive)
|
||||||
divesEdited(Command::editMode(dc_number, (enum divemode_t)index, false));
|
divesEdited(Command::editMode(parent.currentDC, (enum divemode_t)index, false));
|
||||||
}
|
}
|
||||||
|
|
||||||
void TabDiveInformation::on_airtemp_editingFinished()
|
void TabDiveInformation::on_airtemp_editingFinished()
|
||||||
|
@ -392,7 +396,7 @@ void TabDiveInformation::on_airtemp_editingFinished()
|
||||||
// If the field wasn't modified by the user, don't post a new undo command.
|
// 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
|
// Owing to rounding errors, this might lead to undo commands that have
|
||||||
// no user visible effects. These can be very confusing.
|
// no user visible effects. These can be very confusing.
|
||||||
if (ui->airtemp->isModified() && current_dive)
|
if (ui->airtemp->isModified() && parent.currentDive)
|
||||||
divesEdited(Command::editAirTemp(parseTemperatureToMkelvin(ui->airtemp->text()), false));
|
divesEdited(Command::editAirTemp(parseTemperatureToMkelvin(ui->airtemp->text()), false));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -401,7 +405,7 @@ void TabDiveInformation::on_watertemp_editingFinished()
|
||||||
// If the field wasn't modified by the user, don't post a new undo command.
|
// 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
|
// Owing to rounding errors, this might lead to undo commands that have
|
||||||
// no user visible effects. These can be very confusing.
|
// no user visible effects. These can be very confusing.
|
||||||
if (ui->watertemp->isModified() && current_dive)
|
if (ui->watertemp->isModified() && parent.currentDive)
|
||||||
divesEdited(Command::editWaterTemp(parseTemperatureToMkelvin(ui->watertemp->text()), false));
|
divesEdited(Command::editWaterTemp(parseTemperatureToMkelvin(ui->watertemp->text()), false));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -420,13 +424,14 @@ void TabDiveInformation::updateTextBox(int event) // Either the text box has bee
|
||||||
{ // Either way this gets a numeric value and puts it on the text box atmPressVal,
|
{ // 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
|
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.
|
double altitudeVal; // maintained even though two independent events trigger saving the text box contents.
|
||||||
if (current_dive) {
|
dive *currentDive = parent.currentDive;
|
||||||
|
if (currentDive) {
|
||||||
switch (ui->atmPressType->currentIndex()) {
|
switch (ui->atmPressType->currentIndex()) {
|
||||||
case 0: // If atm pressure in mbar has been selected:
|
case 0: // If atm pressure in mbar has been selected:
|
||||||
if (event == TEXT_EDITED) // this is only triggered by on_atmPressVal_editingFinished()
|
if (event == TEXT_EDITED) // this is only triggered by on_atmPressVal_editingFinished()
|
||||||
atmpress.mbar = ui->atmPressVal->text().toInt(); // use the specified mbar pressure
|
atmpress.mbar = ui->atmPressVal->text().toInt(); // use the specified mbar pressure
|
||||||
else // if no pressure has been typed, then show existing dive pressure
|
else // if no pressure has been typed, then show existing dive pressure
|
||||||
ui->atmPressVal->setText(QString::number(current_dive->surface_pressure.mbar));
|
ui->atmPressVal->setText(QString::number(currentDive->surface_pressure.mbar));
|
||||||
break;
|
break;
|
||||||
case 1: // If an altitude has been specified:
|
case 1: // If an altitude has been specified:
|
||||||
if (event == TEXT_EDITED) { // this is only triggered by on_atmPressVal_editingFinished()
|
if (event == TEXT_EDITED) { // this is only triggered by on_atmPressVal_editingFinished()
|
||||||
|
@ -451,7 +456,7 @@ void TabDiveInformation::updateTextBox(int event) // Either the text box has bee
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 2: // i.e. event = COMBO_CHANGED, that is, the option "Use dc" was selected from combobox
|
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
|
atmpress = calculate_surface_pressure(currentDive); // re-calculate air pressure from dc data
|
||||||
ui->atmPressVal->setText(QString::number(atmpress.mbar)); // display it in text box
|
ui->atmPressVal->setText(QString::number(atmpress.mbar)); // display it in text box
|
||||||
ui->atmPressType->setCurrentIndex(0); // reset combobox to mbar
|
ui->atmPressType->setCurrentIndex(0); // reset combobox to mbar
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -41,7 +41,7 @@ private:
|
||||||
int pressTypeIndex;
|
int pressTypeIndex;
|
||||||
void updateWaterTypeWidget();
|
void updateWaterTypeWidget();
|
||||||
void updateTextBox(int event);
|
void updateTextBox(int event);
|
||||||
void updateMode(struct dive *d);
|
void updateMode();
|
||||||
void divesEdited(int);
|
void divesEdited(int);
|
||||||
void closeWarning();
|
void closeWarning();
|
||||||
void showCurrentWidget(bool show, int position);
|
void showCurrentWidget(bool show, int position);
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
// SPDX-License-Identifier: GPL-2.0
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
#include "TabDiveNotes.h"
|
#include "TabDiveNotes.h"
|
||||||
|
#include "maintab.h"
|
||||||
#include "core/divesite.h"
|
#include "core/divesite.h"
|
||||||
#include "core/qthelper.h"
|
#include "core/qthelper.h"
|
||||||
#include "core/selection.h"
|
#include "core/selection.h"
|
||||||
|
@ -97,35 +98,36 @@ void TabDiveNotes::closeWarning()
|
||||||
void TabDiveNotes::divesChanged(const QVector<dive *> &dives, DiveField field)
|
void TabDiveNotes::divesChanged(const QVector<dive *> &dives, DiveField field)
|
||||||
{
|
{
|
||||||
// If the current dive is not in list of changed dives, do nothing
|
// If the current dive is not in list of changed dives, do nothing
|
||||||
if (!current_dive || !dives.contains(current_dive))
|
if (!parent.includesCurrentDive(dives))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
dive *currentDive = parent.currentDive;
|
||||||
if (field.duration)
|
if (field.duration)
|
||||||
ui.duration->setText(render_seconds_to_string(current_dive->duration.seconds));
|
ui.duration->setText(render_seconds_to_string(currentDive->duration.seconds));
|
||||||
if (field.depth)
|
if (field.depth)
|
||||||
ui.depth->setText(get_depth_string(current_dive->maxdepth, true));
|
ui.depth->setText(get_depth_string(currentDive->maxdepth, true));
|
||||||
if (field.rating)
|
if (field.rating)
|
||||||
ui.rating->setCurrentStars(current_dive->rating);
|
ui.rating->setCurrentStars(currentDive->rating);
|
||||||
if (field.notes)
|
if (field.notes)
|
||||||
updateNotes(current_dive);
|
updateNotes(currentDive);
|
||||||
if (field.datetime) {
|
if (field.datetime) {
|
||||||
updateDateTime(current_dive);
|
updateDateTime(currentDive);
|
||||||
DivePlannerPointsModel::instance()->getDiveplan().when = current_dive->when;
|
DivePlannerPointsModel::instance()->getDiveplan().when = currentDive->when;
|
||||||
}
|
}
|
||||||
if (field.divesite)
|
if (field.divesite)
|
||||||
updateDiveSite(current_dive);
|
updateDiveSite(currentDive);
|
||||||
if (field.tags)
|
if (field.tags)
|
||||||
ui.tagWidget->setText(get_taglist_string(current_dive->tag_list));
|
ui.tagWidget->setText(get_taglist_string(currentDive->tag_list));
|
||||||
if (field.buddy)
|
if (field.buddy)
|
||||||
ui.buddy->setText(current_dive->buddy);
|
ui.buddy->setText(currentDive->buddy);
|
||||||
if (field.diveguide)
|
if (field.diveguide)
|
||||||
ui.diveguide->setText(current_dive->diveguide);
|
ui.diveguide->setText(currentDive->diveguide);
|
||||||
}
|
}
|
||||||
|
|
||||||
void TabDiveNotes::diveSiteEdited(dive_site *ds, int)
|
void TabDiveNotes::diveSiteEdited(dive_site *ds, int)
|
||||||
{
|
{
|
||||||
if (current_dive && current_dive->dive_site == ds)
|
if (parent.currentDive && parent.currentDive->dive_site == ds)
|
||||||
updateDiveSite(current_dive);
|
updateDiveSite(parent.currentDive);
|
||||||
}
|
}
|
||||||
|
|
||||||
// This function gets called if a trip-field gets updated by an undo command.
|
// This function gets called if a trip-field gets updated by an undo command.
|
||||||
|
@ -303,7 +305,7 @@ void TabDiveNotes::divesEdited(int i)
|
||||||
|
|
||||||
void TabDiveNotes::on_buddy_editingFinished()
|
void TabDiveNotes::on_buddy_editingFinished()
|
||||||
{
|
{
|
||||||
if (ignoreInput || !current_dive)
|
if (ignoreInput || !parent.currentDive)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
divesEdited(Command::editBuddies(stringToList(ui.buddy->toPlainText()), false));
|
divesEdited(Command::editBuddies(stringToList(ui.buddy->toPlainText()), false));
|
||||||
|
@ -311,7 +313,7 @@ void TabDiveNotes::on_buddy_editingFinished()
|
||||||
|
|
||||||
void TabDiveNotes::on_diveguide_editingFinished()
|
void TabDiveNotes::on_diveguide_editingFinished()
|
||||||
{
|
{
|
||||||
if (ignoreInput || !current_dive)
|
if (ignoreInput || !parent.currentDive)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
divesEdited(Command::editDiveGuide(stringToList(ui.diveguide->toPlainText()), false));
|
divesEdited(Command::editDiveGuide(stringToList(ui.diveguide->toPlainText()), false));
|
||||||
|
@ -319,7 +321,7 @@ void TabDiveNotes::on_diveguide_editingFinished()
|
||||||
|
|
||||||
void TabDiveNotes::on_duration_editingFinished()
|
void TabDiveNotes::on_duration_editingFinished()
|
||||||
{
|
{
|
||||||
if (ignoreInput || !current_dive)
|
if (ignoreInput || !parent.currentDive)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// Duration editing is special: we only edit the current dive.
|
// Duration editing is special: we only edit the current dive.
|
||||||
|
@ -328,7 +330,7 @@ void TabDiveNotes::on_duration_editingFinished()
|
||||||
|
|
||||||
void TabDiveNotes::on_depth_editingFinished()
|
void TabDiveNotes::on_depth_editingFinished()
|
||||||
{
|
{
|
||||||
if (ignoreInput || !current_dive)
|
if (ignoreInput || !parent.currentDive)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// Depth editing is special: we only edit the current dive.
|
// Depth editing is special: we only edit the current dive.
|
||||||
|
@ -337,36 +339,36 @@ void TabDiveNotes::on_depth_editingFinished()
|
||||||
|
|
||||||
// Editing of the dive time is different. If multiple dives are edited,
|
// Editing of the dive time is different. If multiple dives are edited,
|
||||||
// all dives are shifted by an offset.
|
// all dives are shifted by an offset.
|
||||||
static void shiftTime(QDateTime &dateTime)
|
static void shiftTime(QDateTime &dateTime, dive *currentDive)
|
||||||
{
|
{
|
||||||
timestamp_t when = dateTimeToTimestamp(dateTime);
|
timestamp_t when = dateTimeToTimestamp(dateTime);
|
||||||
if (current_dive && current_dive->when != when) {
|
if (currentDive->when != when) {
|
||||||
timestamp_t offset = when - current_dive->when;
|
timestamp_t offset = when - currentDive->when;
|
||||||
Command::shiftTime(getDiveSelection(), (int)offset);
|
Command::shiftTime(getDiveSelection(), (int)offset);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void TabDiveNotes::on_dateEdit_editingFinished()
|
void TabDiveNotes::on_dateEdit_editingFinished()
|
||||||
{
|
{
|
||||||
if (ignoreInput || !current_dive)
|
if (ignoreInput || !parent.currentDive)
|
||||||
return;
|
return;
|
||||||
QDateTime dateTime = timestampToDateTime(current_dive->when);
|
QDateTime dateTime = timestampToDateTime(parent.currentDive->when);
|
||||||
dateTime.setDate(ui.dateEdit->date());
|
dateTime.setDate(ui.dateEdit->date());
|
||||||
shiftTime(dateTime);
|
shiftTime(dateTime, parent.currentDive);
|
||||||
}
|
}
|
||||||
|
|
||||||
void TabDiveNotes::on_timeEdit_editingFinished()
|
void TabDiveNotes::on_timeEdit_editingFinished()
|
||||||
{
|
{
|
||||||
if (ignoreInput || !current_dive)
|
if (ignoreInput || !parent.currentDive)
|
||||||
return;
|
return;
|
||||||
QDateTime dateTime = timestampToDateTime(current_dive->when);
|
QDateTime dateTime = timestampToDateTime(parent.currentDive->when);
|
||||||
dateTime.setTime(ui.timeEdit->time());
|
dateTime.setTime(ui.timeEdit->time());
|
||||||
shiftTime(dateTime);
|
shiftTime(dateTime, parent.currentDive);
|
||||||
}
|
}
|
||||||
|
|
||||||
void TabDiveNotes::on_tagWidget_editingFinished()
|
void TabDiveNotes::on_tagWidget_editingFinished()
|
||||||
{
|
{
|
||||||
if (ignoreInput || !current_dive)
|
if (ignoreInput || !parent.currentDive)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
divesEdited(Command::editTags(ui.tagWidget->getBlockStringList(), false));
|
divesEdited(Command::editTags(ui.tagWidget->getBlockStringList(), false));
|
||||||
|
@ -374,7 +376,7 @@ void TabDiveNotes::on_tagWidget_editingFinished()
|
||||||
|
|
||||||
void TabDiveNotes::on_location_diveSiteSelected()
|
void TabDiveNotes::on_location_diveSiteSelected()
|
||||||
{
|
{
|
||||||
if (ignoreInput || !current_dive)
|
if (ignoreInput || !parent.currentDive)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
struct dive_site *newDs = ui.location->currDiveSite();
|
struct dive_site *newDs = ui.location->currDiveSite();
|
||||||
|
@ -398,7 +400,7 @@ void TabDiveNotes::on_diveTripLocation_editingFinished()
|
||||||
|
|
||||||
void TabDiveNotes::on_notes_editingFinished()
|
void TabDiveNotes::on_notes_editingFinished()
|
||||||
{
|
{
|
||||||
if (!currentTrip && !current_dive)
|
if (!currentTrip && !parent.currentDive)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
QString html = ui.notes->toHtml();
|
QString html = ui.notes->toHtml();
|
||||||
|
@ -412,7 +414,7 @@ void TabDiveNotes::on_notes_editingFinished()
|
||||||
|
|
||||||
void TabDiveNotes::on_rating_valueChanged(int value)
|
void TabDiveNotes::on_rating_valueChanged(int value)
|
||||||
{
|
{
|
||||||
if (ignoreInput || !current_dive)
|
if (ignoreInput || !parent.currentDive)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
divesEdited(Command::editRating(value, false));
|
divesEdited(Command::editRating(value, false));
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
// SPDX-License-Identifier: GPL-2.0
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
#include "TabDivePhotos.h"
|
#include "TabDivePhotos.h"
|
||||||
|
#include "maintab.h"
|
||||||
#include "ui_TabDivePhotos.h"
|
#include "ui_TabDivePhotos.h"
|
||||||
#include "core/imagedownloader.h"
|
#include "core/imagedownloader.h"
|
||||||
|
|
||||||
|
@ -113,7 +114,7 @@ void TabDivePhotos::recalculateSelectedThumbnails()
|
||||||
|
|
||||||
void TabDivePhotos::saveSubtitles()
|
void TabDivePhotos::saveSubtitles()
|
||||||
{
|
{
|
||||||
if (!current_dive)
|
if (!parent.currentDive)
|
||||||
return;
|
return;
|
||||||
if (!ui->photosView->selectionModel()->hasSelection())
|
if (!ui->photosView->selectionModel()->hasSelection())
|
||||||
return;
|
return;
|
||||||
|
@ -131,7 +132,7 @@ void TabDivePhotos::saveSubtitles()
|
||||||
if (!duration)
|
if (!duration)
|
||||||
continue;
|
continue;
|
||||||
struct membufferpp b;
|
struct membufferpp b;
|
||||||
save_subtitles_buffer(&b, current_dive, offset, duration);
|
save_subtitles_buffer(&b, parent.currentDive, offset, duration);
|
||||||
const char *data = mb_cstring(&b);
|
const char *data = mb_cstring(&b);
|
||||||
subtitlefile.open(QIODevice::WriteOnly);
|
subtitlefile.open(QIODevice::WriteOnly);
|
||||||
subtitlefile.write(data, strlen(data));
|
subtitlefile.write(data, strlen(data));
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
// SPDX-License-Identifier: GPL-2.0
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
#include "TabDiveStatistics.h"
|
#include "TabDiveStatistics.h"
|
||||||
|
#include "maintab.h"
|
||||||
#include "ui_TabDiveStatistics.h"
|
#include "ui_TabDiveStatistics.h"
|
||||||
|
|
||||||
#include "core/qthelper.h"
|
#include "core/qthelper.h"
|
||||||
|
@ -29,10 +30,9 @@ TabDiveStatistics::TabDiveStatistics(MainTab *parent) : TabBase(parent), ui(new
|
||||||
connect(&diveListNotifier, &DiveListNotifier::cylinderEdited, this, &TabDiveStatistics::cylinderChanged);
|
connect(&diveListNotifier, &DiveListNotifier::cylinderEdited, this, &TabDiveStatistics::cylinderChanged);
|
||||||
|
|
||||||
const auto l = findChildren<QLabel *>(QString(), Qt::FindDirectChildrenOnly);
|
const auto l = findChildren<QLabel *>(QString(), Qt::FindDirectChildrenOnly);
|
||||||
for (QLabel *label: l) {
|
for (QLabel *label: l)
|
||||||
label->setAlignment(Qt::AlignHCenter);
|
label->setAlignment(Qt::AlignHCenter);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
TabDiveStatistics::~TabDiveStatistics()
|
TabDiveStatistics::~TabDiveStatistics()
|
||||||
{
|
{
|
||||||
|
@ -59,7 +59,7 @@ void TabDiveStatistics::divesChanged(const QVector<dive *> &dives, DiveField fie
|
||||||
|
|
||||||
// TODO: make this more fine grained. Currently, the core can only calculate *all* statistics.
|
// TODO: make this more fine grained. Currently, the core can only calculate *all* statistics.
|
||||||
if (field.duration || field.depth || field.mode || field.air_temp || field.water_temp)
|
if (field.duration || field.depth || field.mode || field.air_temp || field.water_temp)
|
||||||
updateData(getDiveSelection(), current_dive, dc_number); // TODO: remember these data
|
updateData(getDiveSelection(), parent.currentDive, parent.currentDC); // TODO: remember dive selection
|
||||||
}
|
}
|
||||||
|
|
||||||
void TabDiveStatistics::cylinderChanged(dive *d)
|
void TabDiveStatistics::cylinderChanged(dive *d)
|
||||||
|
@ -67,7 +67,7 @@ void TabDiveStatistics::cylinderChanged(dive *d)
|
||||||
// If the changed dive is not selected, do nothing
|
// If the changed dive is not selected, do nothing
|
||||||
if (!d->selected)
|
if (!d->selected)
|
||||||
return;
|
return;
|
||||||
updateData(getDiveSelection(), current_dive, dc_number); // TODO: remember these data
|
updateData(getDiveSelection(), parent.currentDive, parent.currentDC); // TODO: remember dive selection
|
||||||
}
|
}
|
||||||
|
|
||||||
void TabDiveStatistics::updateData(const std::vector<dive *> &, dive *currentDive, int)
|
void TabDiveStatistics::updateData(const std::vector<dive *> &, dive *currentDive, int)
|
||||||
|
|
|
@ -26,6 +26,7 @@ static bool paletteIsDark(const QPalette &p)
|
||||||
}
|
}
|
||||||
|
|
||||||
MainTab::MainTab(QWidget *parent) : QTabWidget(parent),
|
MainTab::MainTab(QWidget *parent) : QTabWidget(parent),
|
||||||
|
currentDive(nullptr),
|
||||||
lastSelectedDive(true),
|
lastSelectedDive(true),
|
||||||
lastTabSelectedDive(0),
|
lastTabSelectedDive(0),
|
||||||
lastTabSelectedDiveTrip(0)
|
lastTabSelectedDiveTrip(0)
|
||||||
|
@ -73,11 +74,16 @@ void MainTab::nextInputField(QKeyEvent *event)
|
||||||
void MainTab::settingsChanged()
|
void MainTab::settingsChanged()
|
||||||
{
|
{
|
||||||
// TODO: remember these
|
// TODO: remember these
|
||||||
updateDiveInfo(getDiveSelection(), current_dive, dc_number);
|
updateDiveInfo(getDiveSelection(), currentDive, currentDC);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainTab::updateDiveInfo(const std::vector<dive *> &selection, dive *currentDive, int currentDC)
|
void MainTab::updateDiveInfo(const std::vector<dive *> &selection, dive *currentDiveIn, int currentDCIn)
|
||||||
{
|
{
|
||||||
|
// Remember current dive and divecomputer. This is needed to refresh the
|
||||||
|
// display, for example when the settings change.
|
||||||
|
currentDive = currentDiveIn;
|
||||||
|
currentDC = currentDCIn;
|
||||||
|
|
||||||
// don't execute this while planning a dive
|
// don't execute this while planning a dive
|
||||||
if (DivePlannerPointsModel::instance()->isPlanner())
|
if (DivePlannerPointsModel::instance()->isPlanner())
|
||||||
return;
|
return;
|
||||||
|
@ -172,3 +178,15 @@ void MainTab::colorsChanged()
|
||||||
for (TabBase *widget: extraWidgets)
|
for (TabBase *widget: extraWidgets)
|
||||||
widget->updateUi(colorText);
|
widget->updateUi(colorText);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Called when dives changed. Checks whether the currently displayed
|
||||||
|
// dive is affected by the change.
|
||||||
|
bool MainTab::includesCurrentDive(const QVector<dive *> &dives) const
|
||||||
|
{
|
||||||
|
return currentDive && dives.contains(currentDive);
|
||||||
|
}
|
||||||
|
|
||||||
|
divecomputer *MainTab::getCurrentDC() const
|
||||||
|
{
|
||||||
|
return get_dive_dc(currentDive, currentDC);
|
||||||
|
}
|
||||||
|
|
|
@ -21,7 +21,11 @@ public:
|
||||||
void clearTabs();
|
void clearTabs();
|
||||||
void nextInputField(QKeyEvent *event);
|
void nextInputField(QKeyEvent *event);
|
||||||
void stealFocus();
|
void stealFocus();
|
||||||
|
bool includesCurrentDive(const QVector<dive *> &dives) const;
|
||||||
|
divecomputer *getCurrentDC() const;
|
||||||
|
|
||||||
|
dive *currentDive;
|
||||||
|
int currentDC;
|
||||||
public
|
public
|
||||||
slots:
|
slots:
|
||||||
// Always called with non-null currentDive
|
// Always called with non-null currentDive
|
||||||
|
|
Loading…
Reference in a new issue