mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
a925e677f1
We use time stamps without timezone, so we need to correct for the current time zone offset before showing dates and times in time zone aware widgets. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
1121 lines
37 KiB
C++
1121 lines
37 KiB
C++
/*
|
|
* maintab.cpp
|
|
*
|
|
* classes for the "notebook" area of the main window of Subsurface
|
|
*
|
|
*/
|
|
#include "maintab.h"
|
|
#include "mainwindow.h"
|
|
#include "../helpers.h"
|
|
#include "../statistics.h"
|
|
#include "divelistview.h"
|
|
#include "modeldelegates.h"
|
|
#include "globe.h"
|
|
#include "diveplanner.h"
|
|
#include "divelist.h"
|
|
#include "qthelper.h"
|
|
#include "display.h"
|
|
#include "divepicturewidget.h"
|
|
|
|
#include <QLabel>
|
|
#include <QCompleter>
|
|
#include <QDebug>
|
|
#include <QSet>
|
|
#include <QSettings>
|
|
#include <QTableView>
|
|
#include <QPalette>
|
|
#include <QScrollBar>
|
|
#include <QShortcut>
|
|
#include <QMessageBox>
|
|
|
|
MainTab::MainTab(QWidget *parent) : QTabWidget(parent),
|
|
weightModel(new WeightModel(this)),
|
|
cylindersModel(CylindersModel::instance()),
|
|
editMode(NONE),
|
|
divePictureModel(DivePictureModel::instance())
|
|
{
|
|
ui.setupUi(this);
|
|
|
|
memset(&editedDive, 0, sizeof(editedDive));
|
|
|
|
ui.cylinders->setModel(cylindersModel);
|
|
ui.weights->setModel(weightModel);
|
|
ui.photosView->setModel(divePictureModel);
|
|
closeMessage();
|
|
|
|
QAction *action = new QAction(tr("Save"), this);
|
|
connect(action, SIGNAL(triggered(bool)), this, SLOT(acceptChanges()));
|
|
addMessageAction(action);
|
|
|
|
action = new QAction(tr("Cancel"), this);
|
|
connect(action, SIGNAL(triggered(bool)), this, SLOT(rejectChanges()));
|
|
|
|
QShortcut *closeKey = new QShortcut(QKeySequence(Qt::Key_Escape), this);
|
|
connect(closeKey, SIGNAL(activated()), this, SLOT(escDetected()));
|
|
|
|
addMessageAction(action);
|
|
|
|
if (qApp->style()->objectName() == "oxygen")
|
|
setDocumentMode(true);
|
|
else
|
|
setDocumentMode(false);
|
|
|
|
// we start out with the fields read-only; once things are
|
|
// filled from a dive, they are made writeable
|
|
setEnabled(false);
|
|
|
|
ui.location->installEventFilter(this);
|
|
ui.coordinates->installEventFilter(this);
|
|
ui.divemaster->installEventFilter(this);
|
|
ui.buddy->installEventFilter(this);
|
|
ui.suit->installEventFilter(this);
|
|
ui.notes->viewport()->installEventFilter(this);
|
|
ui.rating->installEventFilter(this);
|
|
ui.visibility->installEventFilter(this);
|
|
ui.airtemp->installEventFilter(this);
|
|
ui.watertemp->installEventFilter(this);
|
|
ui.dateEdit->installEventFilter(this);
|
|
ui.timeEdit->installEventFilter(this);
|
|
ui.tagWidget->installEventFilter(this);
|
|
|
|
QList<QObject *> statisticsTabWidgets = ui.statisticsTab->children();
|
|
Q_FOREACH (QObject *obj, statisticsTabWidgets) {
|
|
QLabel *label = qobject_cast<QLabel *>(obj);
|
|
if (label)
|
|
label->setAlignment(Qt::AlignHCenter);
|
|
}
|
|
ui.cylinders->setTitle(tr("Cylinders"));
|
|
ui.cylinders->setBtnToolTip(tr("Add Cylinder"));
|
|
connect(ui.cylinders, SIGNAL(addButtonClicked()), this, SLOT(addCylinder_clicked()));
|
|
|
|
ui.weights->setTitle(tr("Weights"));
|
|
ui.weights->setBtnToolTip(tr("Add Weight System"));
|
|
connect(ui.weights, SIGNAL(addButtonClicked()), this, SLOT(addWeight_clicked()));
|
|
|
|
connect(ui.cylinders->view(), SIGNAL(clicked(QModelIndex)), this, SLOT(editCylinderWidget(QModelIndex)));
|
|
connect(ui.weights->view(), SIGNAL(clicked(QModelIndex)), this, SLOT(editWeightWidget(QModelIndex)));
|
|
|
|
ui.cylinders->view()->setItemDelegateForColumn(CylindersModel::TYPE, new TankInfoDelegate(this));
|
|
ui.weights->view()->setItemDelegateForColumn(WeightModel::TYPE, new WSInfoDelegate(this));
|
|
ui.cylinders->view()->setColumnHidden(CylindersModel::DEPTH, true);
|
|
completers.buddy = new QCompleter(&buddyModel, ui.buddy);
|
|
completers.divemaster = new QCompleter(&diveMasterModel, ui.divemaster);
|
|
completers.location = new QCompleter(&locationModel, ui.location);
|
|
completers.suit = new QCompleter(&suitModel, ui.suit);
|
|
completers.tags = new QCompleter(&tagModel, ui.tagWidget);
|
|
completers.buddy->setCaseSensitivity(Qt::CaseInsensitive);
|
|
completers.divemaster->setCaseSensitivity(Qt::CaseInsensitive);
|
|
completers.location->setCaseSensitivity(Qt::CaseInsensitive);
|
|
completers.suit->setCaseSensitivity(Qt::CaseInsensitive);
|
|
completers.tags->setCaseSensitivity(Qt::CaseInsensitive);
|
|
ui.buddy->setCompleter(completers.buddy);
|
|
ui.divemaster->setCompleter(completers.divemaster);
|
|
ui.location->setCompleter(completers.location);
|
|
ui.suit->setCompleter(completers.suit);
|
|
ui.tagWidget->setCompleter(completers.tags);
|
|
|
|
setMinimumHeight(0);
|
|
setMinimumWidth(0);
|
|
|
|
// Current display of things on Gnome3 looks like shit, so
|
|
// let`s fix that.
|
|
if (isGnome3Session()) {
|
|
QPalette p;
|
|
p.setColor(QPalette::Window, QColor(Qt::white));
|
|
ui.scrollArea->viewport()->setPalette(p);
|
|
ui.scrollArea_2->viewport()->setPalette(p);
|
|
ui.scrollArea_3->viewport()->setPalette(p);
|
|
ui.scrollArea_4->viewport()->setPalette(p);
|
|
|
|
// GroupBoxes in Gnome3 looks like I'v drawn them...
|
|
static const QString gnomeCss(
|
|
"QGroupBox {"
|
|
" background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,"
|
|
" stop: 0 #E0E0E0, stop: 1 #FFFFFF);"
|
|
" border: 2px solid gray;"
|
|
" border-radius: 5px;"
|
|
" margin-top: 1ex;"
|
|
"}"
|
|
"QGroupBox::title {"
|
|
" subcontrol-origin: margin;"
|
|
" subcontrol-position: top center;"
|
|
" padding: 0 3px;"
|
|
" background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,"
|
|
" stop: 0 #E0E0E0, stop: 1 #FFFFFF);"
|
|
"}");
|
|
Q_FOREACH (QGroupBox *box, findChildren<QGroupBox *>()) {
|
|
box->setStyleSheet(gnomeCss);
|
|
}
|
|
}
|
|
ui.cylinders->view()->horizontalHeader()->setContextMenuPolicy(Qt::ActionsContextMenu);
|
|
|
|
QSettings s;
|
|
s.beginGroup("cylinders_dialog");
|
|
for (int i = 0; i < CylindersModel::COLUMNS; i++) {
|
|
if ((i == CylindersModel::REMOVE) || (i == CylindersModel::TYPE))
|
|
continue;
|
|
bool checked = s.value(QString("column%1_hidden").arg(i)).toBool();
|
|
action = new QAction(cylindersModel->headerData(i, Qt::Horizontal, Qt::DisplayRole).toString(), ui.cylinders->view());
|
|
action->setCheckable(true);
|
|
action->setData(i);
|
|
action->setChecked(!checked);
|
|
connect(action, SIGNAL(triggered(bool)), this, SLOT(toggleTriggeredColumn()));
|
|
ui.cylinders->view()->setColumnHidden(i, checked);
|
|
ui.cylinders->view()->horizontalHeader()->addAction(action);
|
|
}
|
|
}
|
|
|
|
MainTab::~MainTab()
|
|
{
|
|
QSettings s;
|
|
s.beginGroup("cylinders_dialog");
|
|
for (int i = 0; i < CylindersModel::COLUMNS; i++) {
|
|
if ((i == CylindersModel::REMOVE) || (i == CylindersModel::TYPE))
|
|
continue;
|
|
s.setValue(QString("column%1_hidden").arg(i), ui.cylinders->view()->isColumnHidden(i));
|
|
}
|
|
}
|
|
|
|
void MainTab::toggleTriggeredColumn()
|
|
{
|
|
QAction *action = qobject_cast<QAction *>(sender());
|
|
int col = action->data().toInt();
|
|
QTableView *view = ui.cylinders->view();
|
|
|
|
if (action->isChecked()) {
|
|
view->showColumn(col);
|
|
if (view->columnWidth(col) <= 15)
|
|
view->setColumnWidth(col, 80);
|
|
} else
|
|
view->hideColumn(col);
|
|
}
|
|
|
|
void MainTab::addDiveStarted()
|
|
{
|
|
enableEdition(ADD);
|
|
}
|
|
|
|
void MainTab::addMessageAction(QAction *action)
|
|
{
|
|
ui.diveEquipmentMessage->addAction(action);
|
|
ui.diveNotesMessage->addAction(action);
|
|
ui.diveInfoMessage->addAction(action);
|
|
ui.diveStatisticsMessage->addAction(action);
|
|
}
|
|
|
|
void MainTab::hideMessage()
|
|
{
|
|
ui.diveNotesMessage->animatedHide();
|
|
ui.diveEquipmentMessage->animatedHide();
|
|
ui.diveInfoMessage->animatedHide();
|
|
ui.diveStatisticsMessage->animatedHide();
|
|
updateTextLabels(false);
|
|
}
|
|
|
|
void MainTab::closeMessage()
|
|
{
|
|
hideMessage();
|
|
ui.diveNotesMessage->setCloseButtonVisible(false);
|
|
ui.diveEquipmentMessage->setCloseButtonVisible(false);
|
|
ui.diveInfoMessage->setCloseButtonVisible(false);
|
|
ui.diveStatisticsMessage->setCloseButtonVisible(false);
|
|
}
|
|
|
|
void MainTab::displayMessage(QString str)
|
|
{
|
|
ui.diveNotesMessage->setText(str);
|
|
ui.diveNotesMessage->animatedShow();
|
|
ui.diveEquipmentMessage->setText(str);
|
|
ui.diveEquipmentMessage->animatedShow();
|
|
ui.diveInfoMessage->setText(str);
|
|
ui.diveInfoMessage->animatedShow();
|
|
ui.diveStatisticsMessage->setText(str);
|
|
ui.diveStatisticsMessage->animatedShow();
|
|
updateTextLabels();
|
|
}
|
|
|
|
void MainTab::updateTextLabels(bool showUnits)
|
|
{
|
|
if (showUnits) {
|
|
ui.airTempLabel->setText(tr("Air temp [%1]").arg(get_temp_unit()));
|
|
ui.waterTempLabel->setText(tr("Water temp [%1]").arg(get_temp_unit()));
|
|
} else {
|
|
ui.airTempLabel->setText(tr("Air temp"));
|
|
ui.waterTempLabel->setText(tr("Water temp"));
|
|
}
|
|
}
|
|
|
|
void MainTab::enableEdition(EditMode newEditMode)
|
|
{
|
|
if (current_dive == NULL || editMode != NONE)
|
|
return;
|
|
if ((newEditMode == DIVE || newEditMode == NONE) &&
|
|
current_dive->dc.model &&
|
|
strcmp(current_dive->dc.model, "manually added dive") == 0) {
|
|
// editCurrentDive will call enableEdition with newEditMode == MANUALLY_ADDED_DIVE
|
|
// so exit this function here after editCurrentDive() returns
|
|
MainWindow::instance()->editCurrentDive();
|
|
return;
|
|
}
|
|
MainWindow::instance()->dive_list()->setEnabled(false);
|
|
if (amount_selected == 1)
|
|
MainWindow::instance()->globe()->prepareForGetDiveCoordinates();
|
|
if (MainWindow::instance() && MainWindow::instance()->dive_list()->selectedTrips().count() == 1) {
|
|
// we are editing trip location and notes
|
|
displayMessage(tr("This trip is being edited."));
|
|
editedDive.location = current_dive->divetrip->location;
|
|
editedDive.notes = current_dive->divetrip->notes;
|
|
ui.dateEdit->setEnabled(false);
|
|
editMode = TRIP;
|
|
} else {
|
|
if (amount_selected > 1) {
|
|
displayMessage(tr("Multiple dives are being edited."));
|
|
} else {
|
|
displayMessage(tr("This dive is being edited."));
|
|
}
|
|
// editedDive already contains the current dive (we set this up in updateDiveInfo),
|
|
// so all we need to do is update the editMode if necessary
|
|
editMode = newEditMode != NONE ? newEditMode : DIVE;
|
|
}
|
|
}
|
|
|
|
bool MainTab::eventFilter(QObject *object, QEvent *event)
|
|
{
|
|
if (!isEnabled())
|
|
return false;
|
|
|
|
if (editMode != NONE)
|
|
return false;
|
|
|
|
// for the dateEdit widget we need to ignore Wheel events as well (as long as we aren't editing)
|
|
if (object->objectName() == "dateEdit" &&
|
|
(event->type() == QEvent::FocusIn || event->type() == QEvent::Wheel))
|
|
return true;
|
|
// MouseButtonPress in any widget (not all will ever get this), KeyPress in the dateEdit,
|
|
// FocusIn for the starWidgets or RequestSoftwareInputPanel for tagWidget start the editing
|
|
if ((event->type() == QEvent::MouseButtonPress) ||
|
|
(event->type() == QEvent::KeyPress && object == ui.dateEdit) ||
|
|
(event->type() == QEvent::FocusIn && (object == ui.rating || object == ui.visibility || object == ui.buddy || object == ui.tagWidget || object || ui.divemaster))) {
|
|
tabBar()->setTabIcon(currentIndex(), QIcon(":warning"));
|
|
enableEdition();
|
|
}
|
|
return false; // don't "eat" the event.
|
|
}
|
|
|
|
void MainTab::clearEquipment()
|
|
{
|
|
cylindersModel->clear();
|
|
weightModel->clear();
|
|
}
|
|
|
|
void MainTab::nextInputField(QKeyEvent *event)
|
|
{
|
|
keyPressEvent(event);
|
|
}
|
|
|
|
void MainTab::clearInfo()
|
|
{
|
|
ui.sacText->clear();
|
|
ui.otuText->clear();
|
|
ui.oxygenHeliumText->clear();
|
|
ui.gasUsedText->clear();
|
|
ui.dateText->clear();
|
|
ui.diveTimeText->clear();
|
|
ui.surfaceIntervalText->clear();
|
|
ui.maximumDepthText->clear();
|
|
ui.averageDepthText->clear();
|
|
ui.waterTemperatureText->clear();
|
|
ui.airTemperatureText->clear();
|
|
ui.airPressureText->clear();
|
|
ui.salinityText->clear();
|
|
ui.tagWidget->clear();
|
|
}
|
|
|
|
void MainTab::clearStats()
|
|
{
|
|
ui.depthLimits->clear();
|
|
ui.sacLimits->clear();
|
|
ui.divesAllText->clear();
|
|
ui.tempLimits->clear();
|
|
ui.totalTimeAllText->clear();
|
|
ui.timeLimits->clear();
|
|
}
|
|
|
|
#define UPDATE_TEXT(d, field) \
|
|
if (!d || !d->field) \
|
|
ui.field->setText(""); \
|
|
else \
|
|
ui.field->setText(d->field)
|
|
|
|
#define UPDATE_TEMP(d, field) \
|
|
if (!d || d->field.mkelvin == 0) \
|
|
ui.field->setText(""); \
|
|
else \
|
|
ui.field->setText(get_temperature_string(d->field, true))
|
|
|
|
bool MainTab::isEditing()
|
|
{
|
|
return editMode != NONE;
|
|
}
|
|
|
|
void MainTab::updateDiveInfo(int dive)
|
|
{
|
|
// don't execute this while adding / planning a dive
|
|
if (editMode == ADD || editMode == MANUALLY_ADDED_DIVE || MainWindow::instance()->graphics()->isPlanner())
|
|
return;
|
|
if (!isEnabled() && dive != -1)
|
|
setEnabled(true);
|
|
if (isEnabled() && dive == -1)
|
|
setEnabled(false);
|
|
editMode = NONE;
|
|
// This method updates ALL tabs whenever a new dive or trip is
|
|
// selected.
|
|
// If exactly one trip has been selected, we show the location / notes
|
|
// for the trip in the Info tab, otherwise we show the info of the
|
|
// selected_dive
|
|
temperature_t temp;
|
|
struct dive *prevd;
|
|
struct dive *d = get_dive(dive);
|
|
char buf[1024];
|
|
|
|
process_selected_dives();
|
|
process_all_dives(d, &prevd);
|
|
|
|
divePictureModel->updateDivePictures(dive);
|
|
UPDATE_TEXT(d, notes);
|
|
UPDATE_TEXT(d, location);
|
|
UPDATE_TEXT(d, suit);
|
|
UPDATE_TEXT(d, divemaster);
|
|
UPDATE_TEXT(d, buddy);
|
|
UPDATE_TEMP(d, airtemp);
|
|
UPDATE_TEMP(d, watertemp);
|
|
if (d) {
|
|
updateGpsCoordinates(d);
|
|
QDateTime localTime = QDateTime::fromTime_t(d->when - gettimezoneoffset());
|
|
ui.dateEdit->setDate(localTime.date());
|
|
ui.timeEdit->setTime(localTime.time());
|
|
if (MainWindow::instance() && MainWindow::instance()->dive_list()->selectedTrips().count() == 1) {
|
|
setTabText(0, tr("Trip Notes"));
|
|
// only use trip relevant fields
|
|
ui.coordinates->setVisible(false);
|
|
ui.CoordinatedLabel->setVisible(false);
|
|
ui.divemaster->setVisible(false);
|
|
ui.DivemasterLabel->setVisible(false);
|
|
ui.buddy->setVisible(false);
|
|
ui.BuddyLabel->setVisible(false);
|
|
ui.suit->setVisible(false);
|
|
ui.SuitLabel->setVisible(false);
|
|
ui.rating->setVisible(false);
|
|
ui.RatingLabel->setVisible(false);
|
|
ui.visibility->setVisible(false);
|
|
ui.visibilityLabel->setVisible(false);
|
|
ui.tagWidget->setVisible(false);
|
|
ui.TagLabel->setVisible(false);
|
|
ui.airTempLabel->setVisible(false);
|
|
ui.airtemp->setVisible(false);
|
|
ui.waterTempLabel->setVisible(false);
|
|
ui.watertemp->setVisible(false);
|
|
// rename the remaining fields and fill data from selected trip
|
|
dive_trip_t *currentTrip = *MainWindow::instance()->dive_list()->selectedTrips().begin();
|
|
ui.LocationLabel->setText(tr("Trip Location"));
|
|
ui.location->setText(currentTrip->location);
|
|
ui.NotesLabel->setText(tr("Trip Notes"));
|
|
ui.notes->setText(currentTrip->notes);
|
|
clearEquipment();
|
|
ui.equipmentTab->setEnabled(false);
|
|
} else {
|
|
setTabText(0, tr("Dive Notes"));
|
|
// make all the fields visible writeable
|
|
ui.coordinates->setVisible(true);
|
|
ui.CoordinatedLabel->setVisible(true);
|
|
ui.divemaster->setVisible(true);
|
|
ui.buddy->setVisible(true);
|
|
ui.suit->setVisible(true);
|
|
ui.SuitLabel->setVisible(true);
|
|
ui.rating->setVisible(true);
|
|
ui.RatingLabel->setVisible(true);
|
|
ui.visibility->setVisible(true);
|
|
ui.visibilityLabel->setVisible(true);
|
|
ui.BuddyLabel->setVisible(true);
|
|
ui.DivemasterLabel->setVisible(true);
|
|
ui.TagLabel->setVisible(true);
|
|
ui.tagWidget->setVisible(true);
|
|
ui.airTempLabel->setVisible(true);
|
|
ui.airtemp->setVisible(true);
|
|
ui.waterTempLabel->setVisible(true);
|
|
ui.watertemp->setVisible(true);
|
|
/* and fill them from the dive */
|
|
ui.rating->setCurrentStars(d->rating);
|
|
ui.visibility->setCurrentStars(d->visibility);
|
|
// reset labels in case we last displayed trip notes
|
|
ui.LocationLabel->setText(tr("Location"));
|
|
ui.NotesLabel->setText(tr("Notes"));
|
|
ui.equipmentTab->setEnabled(true);
|
|
// now copy the current dive over to editedDive and use THAT to show the
|
|
// cylinder and weight model (this way edits on the equipment tab happen in the
|
|
// editedDive and not on the real data (until the user hits save)
|
|
editedDive = *d;
|
|
cylindersModel->setDive(&editedDive);
|
|
weightModel->setDive(&editedDive);
|
|
taglist_get_tagstring(d->tag_list, buf, 1024);
|
|
ui.tagWidget->setText(QString(buf));
|
|
}
|
|
ui.maximumDepthText->setText(get_depth_string(d->maxdepth, true));
|
|
ui.averageDepthText->setText(get_depth_string(d->meandepth, true));
|
|
ui.otuText->setText(QString("%1").arg(d->otu));
|
|
ui.waterTemperatureText->setText(get_temperature_string(d->watertemp, true));
|
|
ui.airTemperatureText->setText(get_temperature_string(d->airtemp, true));
|
|
volume_t gases[MAX_CYLINDERS] = {};
|
|
get_gas_used(d, gases);
|
|
QString volumes = get_volume_string(gases[0], true);
|
|
int mean[MAX_CYLINDERS], duration[MAX_CYLINDERS];
|
|
per_cylinder_mean_depth(d, select_dc(d), mean, duration);
|
|
volume_t sac;
|
|
QString SACs;
|
|
if (mean[0] && duration[0]) {
|
|
sac.mliter = gases[0].mliter / (depth_to_atm(mean[0], d) * duration[0] / 60.0);
|
|
SACs = get_volume_string(sac, true).append(tr("/min"));
|
|
} else {
|
|
SACs = QString(tr("unknown"));
|
|
}
|
|
for (int i = 1; i < MAX_CYLINDERS && gases[i].mliter != 0; i++) {
|
|
volumes.append("\n" + get_volume_string(gases[i], true));
|
|
if (duration[i]) {
|
|
sac.mliter = gases[i].mliter / (depth_to_atm(mean[i], d) * duration[i] / 60);
|
|
SACs.append("\n" + get_volume_string(sac, true).append(tr("/min")));
|
|
} else {
|
|
SACs.append("\n");
|
|
}
|
|
}
|
|
ui.gasUsedText->setText(volumes);
|
|
ui.oxygenHeliumText->setText(get_gaslist(d));
|
|
ui.dateText->setText(get_short_dive_date_string(d->when));
|
|
ui.diveTimeText->setText(QString::number((int)((d->duration.seconds + 30) / 60)));
|
|
if (prevd)
|
|
ui.surfaceIntervalText->setText(get_time_string(d->when - (prevd->when + prevd->duration.seconds), 4));
|
|
else
|
|
ui.surfaceIntervalText->clear();
|
|
if (mean[0])
|
|
ui.sacText->setText(SACs);
|
|
else
|
|
ui.sacText->clear();
|
|
if (d->surface_pressure.mbar)
|
|
/* this is ALWAYS displayed in mbar */
|
|
ui.airPressureText->setText(QString("%1mbar").arg(d->surface_pressure.mbar));
|
|
else
|
|
ui.airPressureText->clear();
|
|
if (d->salinity)
|
|
ui.salinityText->setText(QString("%1g/l").arg(d->salinity / 10.0));
|
|
else
|
|
ui.salinityText->clear();
|
|
ui.depthLimits->setMaximum(get_depth_string(stats_selection.max_depth, true));
|
|
ui.depthLimits->setMinimum(get_depth_string(stats_selection.min_depth, true));
|
|
// the overall average depth is really confusing when listed between the
|
|
// deepest and shallowest dive - let's just not set it
|
|
// ui.depthLimits->setAverage(get_depth_string(stats_selection.avg_depth, true));
|
|
ui.depthLimits->overrideMaxToolTipText(tr("Deepest Dive"));
|
|
ui.depthLimits->overrideMinToolTipText(tr("Shallowest Dive"));
|
|
ui.sacLimits->setMaximum(get_volume_string(stats_selection.max_sac, true).append(tr("/min")));
|
|
ui.sacLimits->setMinimum(get_volume_string(stats_selection.min_sac, true).append(tr("/min")));
|
|
ui.sacLimits->setAverage(get_volume_string(stats_selection.avg_sac, true).append(tr("/min")));
|
|
ui.divesAllText->setText(QString::number(stats_selection.selection_size));
|
|
temp.mkelvin = stats_selection.max_temp;
|
|
ui.tempLimits->setMaximum(get_temperature_string(temp, true));
|
|
temp.mkelvin = stats_selection.min_temp;
|
|
ui.tempLimits->setMinimum(get_temperature_string(temp, true));
|
|
if (stats_selection.combined_temp && stats_selection.combined_count) {
|
|
const char *unit;
|
|
get_temp_units(0, &unit);
|
|
ui.tempLimits->setAverage(QString("%1%2").arg(stats_selection.combined_temp / stats_selection.combined_count, 0, 'f', 1).arg(unit));
|
|
}
|
|
ui.totalTimeAllText->setText(get_time_string(stats_selection.total_time.seconds, 0));
|
|
int seconds = stats_selection.total_time.seconds;
|
|
if (stats_selection.selection_size)
|
|
seconds /= stats_selection.selection_size;
|
|
ui.timeLimits->setAverage(get_time_string(seconds, 0));
|
|
ui.timeLimits->setMaximum(get_time_string(stats_selection.longest_time.seconds, 0));
|
|
ui.timeLimits->setMinimum(get_time_string(stats_selection.shortest_time.seconds, 0));
|
|
// now let's get some gas use statistics
|
|
QVector<QPair<QString, int> > gasUsed;
|
|
QString gasUsedString;
|
|
volume_t vol;
|
|
selectedDivesGasUsed(gasUsed);
|
|
for (int j = 0; j < 20; j++) {
|
|
if (gasUsed.isEmpty())
|
|
break;
|
|
QPair<QString, int> gasPair = gasUsed.last();
|
|
gasUsed.pop_back();
|
|
vol.mliter = gasPair.second;
|
|
gasUsedString.append(gasPair.first).append(": ").append(get_volume_string(vol, true)).append("\n");
|
|
}
|
|
if (!gasUsed.isEmpty())
|
|
gasUsedString.append("...");
|
|
ui.gasConsumption->setText(gasUsedString);
|
|
} else {
|
|
/* clear the fields */
|
|
clearInfo();
|
|
clearStats();
|
|
clearEquipment();
|
|
ui.rating->setCurrentStars(0);
|
|
ui.coordinates->clear();
|
|
ui.visibility->setCurrentStars(0);
|
|
}
|
|
}
|
|
|
|
void MainTab::addCylinder_clicked()
|
|
{
|
|
if (editMode == NONE)
|
|
enableEdition();
|
|
cylindersModel->add();
|
|
}
|
|
|
|
void MainTab::addWeight_clicked()
|
|
{
|
|
if (editMode == NONE)
|
|
enableEdition();
|
|
weightModel->add();
|
|
}
|
|
|
|
void MainTab::reload()
|
|
{
|
|
suitModel.updateModel();
|
|
buddyModel.updateModel();
|
|
locationModel.updateModel();
|
|
diveMasterModel.updateModel();
|
|
tagModel.updateModel();
|
|
}
|
|
|
|
// tricky little macro to edit all the selected dives
|
|
// loop over all dives, for each selected dive do WHAT, but do it
|
|
// last for the current dive; this is required in case the invocation
|
|
// wants to compare things to the original value in current_dive like it should
|
|
#define EDIT_SELECTED_DIVES(WHAT) \
|
|
do { \
|
|
struct dive *mydive = NULL; \
|
|
int _i; \
|
|
for_each_dive (_i, mydive) { \
|
|
if (!mydive->selected || mydive == cd) \
|
|
continue; \
|
|
\
|
|
WHAT; \
|
|
} \
|
|
mydive = cd; \
|
|
WHAT; \
|
|
mark_divelist_changed(true); \
|
|
} while (0)
|
|
|
|
#define EDIT_TEXT(what) \
|
|
if (same_string(mydive->what, cd->what)) { \
|
|
free(mydive->what); \
|
|
mydive->what = strdup(editedDive.what); \
|
|
}
|
|
|
|
#define EDIT_VALUE(what) \
|
|
if (mydive->what == cd->what) { \
|
|
mydive->what = editedDive.what; \
|
|
}
|
|
|
|
void MainTab::acceptChanges()
|
|
{
|
|
int i;
|
|
struct dive *d;
|
|
tabBar()->setTabIcon(0, QIcon()); // Notes
|
|
tabBar()->setTabIcon(1, QIcon()); // Equipment
|
|
hideMessage();
|
|
ui.equipmentTab->setEnabled(true);
|
|
/* now figure out if things have changed */
|
|
if (MainWindow::instance() && MainWindow::instance()->dive_list()->selectedTrips().count() == 1) {
|
|
if (!same_string(editedDive.notes, current_dive->divetrip->notes)) {
|
|
current_dive->divetrip->notes = strdup(editedDive.notes);
|
|
mark_divelist_changed(true);
|
|
}
|
|
if (!same_string(editedDive.location, current_dive->divetrip->location)) {
|
|
current_dive->divetrip->location = strdup(editedDive.location);
|
|
mark_divelist_changed(true);
|
|
}
|
|
ui.dateEdit->setEnabled(true);
|
|
} else {
|
|
struct dive *cd = current_dive;
|
|
//Reset coordinates field, in case it contains garbage.
|
|
updateGpsCoordinates(&editedDive);
|
|
// now check if something has changed and if yes, edit the selected dives that
|
|
// were identical with the master dive shown (and mark the divelist as changed)
|
|
if (!same_string(editedDive.buddy, cd->buddy))
|
|
EDIT_SELECTED_DIVES(EDIT_TEXT(buddy));
|
|
if (!same_string(editedDive.suit, cd->suit))
|
|
EDIT_SELECTED_DIVES(EDIT_TEXT(suit));
|
|
if (!same_string(editedDive.notes, cd->notes))
|
|
EDIT_SELECTED_DIVES(EDIT_TEXT(notes));
|
|
if (!same_string(editedDive.divemaster, cd->divemaster))
|
|
EDIT_SELECTED_DIVES(EDIT_TEXT(divemaster));
|
|
if (editedDive.rating != cd->rating)
|
|
EDIT_SELECTED_DIVES(EDIT_VALUE(rating));
|
|
if (editedDive.visibility != cd->visibility)
|
|
EDIT_SELECTED_DIVES(EDIT_VALUE(visibility));
|
|
if (editedDive.airtemp.mkelvin != cd->airtemp.mkelvin)
|
|
EDIT_SELECTED_DIVES(EDIT_VALUE(airtemp.mkelvin));
|
|
if (editedDive.watertemp.mkelvin != cd->watertemp.mkelvin)
|
|
EDIT_SELECTED_DIVES(EDIT_VALUE(watertemp.mkelvin));
|
|
if (editedDive.when != cd->when) {
|
|
time_t offset = current_dive->when - editedDive.when;
|
|
EDIT_SELECTED_DIVES(mydive->when -= offset;);
|
|
}
|
|
if (!same_string(editedDive.location, cd->location)) {
|
|
EDIT_SELECTED_DIVES(EDIT_TEXT(location));
|
|
// if we have a location text and haven't edited the coordinates, try to fill the coordinates
|
|
// from the existing dives
|
|
if (!same_string(cd->location, "") &&
|
|
(!ui.coordinates->isModified() ||
|
|
ui.coordinates->text().trimmed().isEmpty())) {
|
|
struct dive *dive;
|
|
int i = 0;
|
|
for_each_dive (i, dive) {
|
|
QString location(dive->location);
|
|
if (location == ui.location->text() &&
|
|
(dive->latitude.udeg || dive->longitude.udeg)) {
|
|
EDIT_SELECTED_DIVES(if (same_string(mydive->location, dive->location)) {
|
|
mydive->latitude = dive->latitude;
|
|
mydive->longitude = dive->longitude;
|
|
});
|
|
MainWindow::instance()->globe()->reload();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (editedDive.latitude.udeg != current_dive->latitude.udeg ||
|
|
editedDive.longitude.udeg != current_dive->longitude.udeg) {
|
|
EDIT_SELECTED_DIVES(gpsHasChanged(mydive, cd, ui.coordinates->text(), 0));
|
|
}
|
|
if (tagsChanged(&editedDive, cd))
|
|
saveTags();
|
|
if (editMode == MANUALLY_ADDED_DIVE) {
|
|
DivePlannerPointsModel::instance()->copyCylinders(cd);
|
|
} else if (editMode != ADD && cylindersModel->changed) {
|
|
mark_divelist_changed(true);
|
|
EDIT_SELECTED_DIVES(
|
|
for (int i = 0; i < MAX_CYLINDERS; i++) {
|
|
if (mydive != cd) {
|
|
if (same_string(mydive->cylinder[i].type.description, cd->cylinder[i].type.description))
|
|
// only copy the cylinder type, none of the other values
|
|
mydive->cylinder[i].type = editedDive.cylinder[i].type;
|
|
} else {
|
|
mydive->cylinder[i] = editedDive.cylinder[i];
|
|
}
|
|
}
|
|
);
|
|
MainWindow::instance()->graphics()->replot();
|
|
}
|
|
|
|
if (weightModel->changed) {
|
|
mark_divelist_changed(true);
|
|
EDIT_SELECTED_DIVES(
|
|
for (int i = 0; i < MAX_WEIGHTSYSTEMS; i++) {
|
|
if (same_string(mydive->weightsystem[i].description, cd->weightsystem[i].description))
|
|
mydive->weightsystem[i] = editedDive.weightsystem[i];
|
|
}
|
|
);
|
|
}
|
|
// each dive that was selected might have had the temperatures in its active divecomputer changed
|
|
// so re-populate the temperatures - easiest way to do this is by calling fixup_dive
|
|
for_each_dive (i, d) {
|
|
if (d->selected)
|
|
fixup_dive(d);
|
|
}
|
|
}
|
|
if (current_dive->divetrip) {
|
|
current_dive->divetrip->when = current_dive->when;
|
|
find_new_trip_start_time(current_dive->divetrip);
|
|
}
|
|
if (editMode == ADD || editMode == MANUALLY_ADDED_DIVE) {
|
|
// clean up the dive data (get duration, depth information from samples)
|
|
fixup_dive(current_dive);
|
|
if (dive_table.nr == 1)
|
|
current_dive->number = 1;
|
|
else if (selected_dive == dive_table.nr - 1 && get_dive(dive_table.nr - 2)->number)
|
|
current_dive->number = get_dive(dive_table.nr - 2)->number + 1;
|
|
MainWindow::instance()->showProfile();
|
|
mark_divelist_changed(true);
|
|
DivePlannerPointsModel::instance()->setPlanMode(DivePlannerPointsModel::NOTHING);
|
|
}
|
|
int scrolledBy = MainWindow::instance()->dive_list()->verticalScrollBar()->sliderPosition();
|
|
resetPallete();
|
|
if (editMode == ADD || editMode == MANUALLY_ADDED_DIVE) {
|
|
// it's tricky to keep the right dive selected;
|
|
// first remember which one is selected in the current sort order
|
|
// and unselect all dives
|
|
int rememberSelected = selected_dive;
|
|
MainWindow::instance()->dive_list()->unselectDives();
|
|
struct dive *d = get_dive(rememberSelected);
|
|
// mark the previously selected dive as remembered (abusing the selected flag)
|
|
// and then clear that flag out on the other side of the sort_table()
|
|
d->selected = true;
|
|
sort_table(&dive_table);
|
|
for_each_dive (rememberSelected, d) {
|
|
if (d->selected) {
|
|
d->selected = false;
|
|
break;
|
|
}
|
|
}
|
|
// refreshDisplay() will select the top dive if no dive was
|
|
// selected - but that may not be the right one, so select the one
|
|
// we remembered instead
|
|
MainWindow::instance()->dive_list()->selectDive(rememberSelected, true);
|
|
|
|
editMode = NONE;
|
|
MainWindow::instance()->refreshDisplay();
|
|
MainWindow::instance()->graphics()->replot();
|
|
emit addDiveFinished();
|
|
} else {
|
|
editMode = NONE;
|
|
MainWindow::instance()->dive_list()->rememberSelection();
|
|
sort_table(&dive_table);
|
|
MainWindow::instance()->refreshDisplay();
|
|
MainWindow::instance()->dive_list()->restoreSelection();
|
|
}
|
|
updateDiveInfo();
|
|
DivePlannerPointsModel::instance()->setPlanMode(DivePlannerPointsModel::NOTHING);
|
|
MainWindow::instance()->dive_list()->verticalScrollBar()->setSliderPosition(scrolledBy);
|
|
MainWindow::instance()->dive_list()->setFocus();
|
|
}
|
|
|
|
void MainTab::resetPallete()
|
|
{
|
|
QPalette p;
|
|
ui.buddy->setPalette(p);
|
|
ui.notes->setPalette(p);
|
|
ui.location->setPalette(p);
|
|
ui.coordinates->setPalette(p);
|
|
ui.divemaster->setPalette(p);
|
|
ui.suit->setPalette(p);
|
|
ui.airtemp->setPalette(p);
|
|
ui.watertemp->setPalette(p);
|
|
ui.dateEdit->setPalette(p);
|
|
ui.timeEdit->setPalette(p);
|
|
ui.tagWidget->setPalette(p);
|
|
}
|
|
|
|
#define EDIT_TEXT2(what, text) \
|
|
textByteArray = text.toUtf8(); \
|
|
free(what); \
|
|
what = strdup(textByteArray.data());
|
|
|
|
#define FREE_IF_DIFFERENT(what) \
|
|
if (editedDive.what != cd->what) \
|
|
free(editedDive.what)
|
|
|
|
void MainTab::rejectChanges()
|
|
{
|
|
EditMode lastMode = editMode;
|
|
if (lastMode != NONE && current_dive && memcmp(&editedDive, current_dive, sizeof(struct dive))) {
|
|
if (QMessageBox::warning(MainWindow::instance(), TITLE_OR_TEXT(tr("Discard the Changes?"),
|
|
tr("You are about to discard your changes.")),
|
|
QMessageBox::Discard | QMessageBox::Cancel, QMessageBox::Discard) != QMessageBox::Discard) {
|
|
return;
|
|
}
|
|
}
|
|
editMode = NONE;
|
|
tabBar()->setTabIcon(0, QIcon()); // Notes
|
|
tabBar()->setTabIcon(1, QIcon()); // Equipment
|
|
|
|
if (MainWindow::instance() && MainWindow::instance()->dive_list()->selectedTrips().count() != 1) {
|
|
if (lastMode == ADD) {
|
|
// clean up
|
|
DivePlannerPointsModel::instance()->cancelPlan();
|
|
hideMessage();
|
|
resetPallete();
|
|
return;
|
|
} else if (lastMode == MANUALLY_ADDED_DIVE) {
|
|
// when we tried to edit a manually added dive, we destroyed
|
|
// the dive we edited, so let's just restore it from backup
|
|
DivePlannerPointsModel::instance()->restoreBackupDive();
|
|
}
|
|
if (selected_dive >= 0) {
|
|
editedDive = *get_dive(selected_dive);
|
|
cylindersModel->setDive(&editedDive);
|
|
weightModel->setDive(&editedDive);
|
|
} else {
|
|
cylindersModel->clear();
|
|
weightModel->clear();
|
|
setEnabled(false);
|
|
}
|
|
}
|
|
// now let's avoid memory leaks
|
|
struct dive *cd = current_dive;
|
|
FREE_IF_DIFFERENT(tag_list);
|
|
FREE_IF_DIFFERENT(location);
|
|
FREE_IF_DIFFERENT(buddy);
|
|
FREE_IF_DIFFERENT(divemaster);
|
|
FREE_IF_DIFFERENT(notes);
|
|
FREE_IF_DIFFERENT(suit);
|
|
|
|
hideMessage();
|
|
MainWindow::instance()->dive_list()->setEnabled(true);
|
|
ui.dateEdit->setEnabled(true);
|
|
resetPallete();
|
|
MainWindow::instance()->globe()->reload();
|
|
if (lastMode == MANUALLY_ADDED_DIVE) {
|
|
// more clean up
|
|
updateDiveInfo(selected_dive);
|
|
MainWindow::instance()->showProfile();
|
|
// we already reloaded the divelist above, so don't recreate it or we'll lose the selection
|
|
MainWindow::instance()->refreshDisplay(false);
|
|
}
|
|
MainWindow::instance()->dive_list()->setFocus();
|
|
// the user could have edited the location and then canceled the edit
|
|
// let's get the correct location back in view
|
|
MainWindow::instance()->globe()->centerOnCurrentDive();
|
|
DivePlannerPointsModel::instance()->setPlanMode(DivePlannerPointsModel::NOTHING);
|
|
updateDiveInfo();
|
|
}
|
|
#undef EDIT_TEXT2
|
|
|
|
void markChangedWidget(QWidget *w)
|
|
{
|
|
QPalette p;
|
|
qreal h, s, l, a;
|
|
qApp->palette().color(QPalette::Text).getHslF(&h, &s, &l, &a);
|
|
p.setBrush(QPalette::Base, (l <= 0.3) ? QColor(Qt::yellow).lighter() : (l <= 0.6) ? QColor(Qt::yellow).light() : /* else */ QColor(Qt::yellow).darker(300));
|
|
w->setPalette(p);
|
|
}
|
|
|
|
void MainTab::on_buddy_textChanged()
|
|
{
|
|
if (editMode == NONE)
|
|
return;
|
|
QStringList text_list = ui.buddy->toPlainText().split(",", QString::SkipEmptyParts);
|
|
for (int i = 0; i < text_list.size(); i++)
|
|
text_list[i] = text_list[i].trimmed();
|
|
QString text = text_list.join(", ");
|
|
editedDive.buddy = strdup(text.toUtf8().data());
|
|
markChangedWidget(ui.buddy);
|
|
}
|
|
|
|
void MainTab::on_divemaster_textChanged()
|
|
{
|
|
if (editMode == NONE)
|
|
return;
|
|
QStringList text_list = ui.divemaster->toPlainText().split(",", QString::SkipEmptyParts);
|
|
for (int i = 0; i < text_list.size(); i++)
|
|
text_list[i] = text_list[i].trimmed();
|
|
QString text = text_list.join(", ");
|
|
editedDive.divemaster = strdup(text.toUtf8().data());
|
|
markChangedWidget(ui.divemaster);
|
|
}
|
|
|
|
void MainTab::on_airtemp_textChanged(const QString &text)
|
|
{
|
|
if (editMode == NONE)
|
|
return;
|
|
editedDive.airtemp.mkelvin = parseTemperatureToMkelvin(text);
|
|
markChangedWidget(ui.airtemp);
|
|
validate_temp_field(ui.airtemp, text);
|
|
}
|
|
|
|
void MainTab::on_watertemp_textChanged(const QString &text)
|
|
{
|
|
if (editMode == NONE)
|
|
return;
|
|
editedDive.watertemp.mkelvin = parseTemperatureToMkelvin(text);
|
|
markChangedWidget(ui.watertemp);
|
|
validate_temp_field(ui.watertemp, text);
|
|
}
|
|
|
|
void MainTab::validate_temp_field(QLineEdit *tempField, const QString &text)
|
|
{
|
|
static bool missing_unit = false;
|
|
static bool missing_precision = false;
|
|
if (!text.contains(QRegExp("^[-+]{0,1}[0-9]+([,.][0-9]+){0,1}(°[CF]){0,1}$")) &&
|
|
!text.isEmpty() &&
|
|
!text.contains(QRegExp("^[-+]$"))) {
|
|
if (text.contains(QRegExp("^[-+]{0,1}[0-9]+([,.][0-9]+){0,1}(°)$")) && !missing_unit) {
|
|
if (!missing_unit) {
|
|
missing_unit = true;
|
|
return;
|
|
}
|
|
}
|
|
if (text.contains(QRegExp("^[-+]{0,1}[0-9]+([,.]){0,1}(°[CF]){0,1}$")) && !missing_precision) {
|
|
if (!missing_precision) {
|
|
missing_precision = true;
|
|
return;
|
|
}
|
|
}
|
|
QPalette p;
|
|
p.setBrush(QPalette::Base, QColor(Qt::red).lighter());
|
|
tempField->setPalette(p);
|
|
} else {
|
|
missing_unit = false;
|
|
missing_precision = false;
|
|
}
|
|
}
|
|
|
|
void MainTab::on_dateEdit_dateChanged(const QDate &date)
|
|
{
|
|
if (editMode == NONE)
|
|
return;
|
|
QDateTime dateTime = QDateTime::fromTime_t(editedDive.when);
|
|
dateTime.setTimeSpec(Qt::UTC);
|
|
dateTime.setDate(date);
|
|
editedDive.when = dateTime.toTime_t();
|
|
markChangedWidget(ui.dateEdit);
|
|
}
|
|
|
|
void MainTab::on_timeEdit_timeChanged(const QTime &time)
|
|
{
|
|
if (editMode == NONE)
|
|
return;
|
|
QDateTime dateTime = QDateTime::fromTime_t(editedDive.when);
|
|
dateTime.setTimeSpec(Qt::UTC);
|
|
dateTime.setTime(time);
|
|
editedDive.when = dateTime.toTime_t();
|
|
markChangedWidget(ui.timeEdit);
|
|
}
|
|
|
|
bool MainTab::tagsChanged(dive *a, dive *b)
|
|
{
|
|
char bufA[1024], bufB[1024];
|
|
taglist_get_tagstring(a->tag_list, bufA, sizeof(bufA));
|
|
taglist_get_tagstring(b->tag_list, bufB, sizeof(bufB));
|
|
QString tagStringA(bufA);
|
|
QString tagStringB(bufB);
|
|
QStringList text_list = tagStringA.split(",", QString::SkipEmptyParts);
|
|
for (int i = 0; i < text_list.size(); i++)
|
|
text_list[i] = text_list[i].trimmed();
|
|
QString textA = text_list.join(", ");
|
|
text_list = tagStringB.split(",", QString::SkipEmptyParts);
|
|
for (int i = 0; i < text_list.size(); i++)
|
|
text_list[i] = text_list[i].trimmed();
|
|
QString textB = text_list.join(", ");
|
|
return textA != textB;
|
|
}
|
|
|
|
// changing the tags on multiple dives is semantically strange - what's the right thing to do?
|
|
void MainTab::saveTags()
|
|
{
|
|
struct dive *cd = current_dive;
|
|
EDIT_SELECTED_DIVES(
|
|
QString tag;
|
|
taglist_free(mydive->tag_list);
|
|
mydive->tag_list = NULL;
|
|
Q_FOREACH (tag, ui.tagWidget->getBlockStringList())
|
|
taglist_add_tag(&mydive->tag_list, tag.toUtf8().data()););
|
|
}
|
|
|
|
void MainTab::on_tagWidget_textChanged()
|
|
{
|
|
if (editMode == NONE)
|
|
return;
|
|
QString tag;
|
|
if (editedDive.tag_list != current_dive->tag_list)
|
|
taglist_free(editedDive.tag_list);
|
|
editedDive.tag_list = NULL;
|
|
Q_FOREACH (tag, ui.tagWidget->getBlockStringList())
|
|
taglist_add_tag(&editedDive.tag_list, tag.toUtf8().data());
|
|
if (tagsChanged(&editedDive, current_dive))
|
|
markChangedWidget(ui.tagWidget);
|
|
}
|
|
|
|
void MainTab::on_location_textChanged(const QString &text)
|
|
{
|
|
if (editMode == NONE)
|
|
return;
|
|
editedDive.location = strdup(ui.location->text().toUtf8().data());
|
|
markChangedWidget(ui.location);
|
|
}
|
|
|
|
void MainTab::on_suit_textChanged(const QString &text)
|
|
{
|
|
if (editMode == NONE)
|
|
return;
|
|
editedDive.suit = strdup(text.toUtf8().data());
|
|
markChangedWidget(ui.suit);
|
|
}
|
|
|
|
void MainTab::on_notes_textChanged()
|
|
{
|
|
if (editMode == NONE)
|
|
return;
|
|
editedDive.notes = strdup(ui.notes->toPlainText().toUtf8().data());
|
|
markChangedWidget(ui.notes);
|
|
}
|
|
|
|
void MainTab::on_coordinates_textChanged(const QString &text)
|
|
{
|
|
if (editMode == NONE)
|
|
return;
|
|
bool gpsChanged = false;
|
|
bool parsed = false;
|
|
QPalette p;
|
|
ui.coordinates->setPalette(p); // reset palette
|
|
gpsChanged = gpsHasChanged(&editedDive, current_dive, text, &parsed);
|
|
if (gpsChanged)
|
|
markChangedWidget(ui.coordinates); // marks things yellow
|
|
if (!parsed) {
|
|
p.setBrush(QPalette::Base, QColor(Qt::red).lighter());
|
|
ui.coordinates->setPalette(p); // marks things red
|
|
}
|
|
}
|
|
|
|
void MainTab::on_rating_valueChanged(int value)
|
|
{
|
|
editedDive.rating = value;
|
|
}
|
|
|
|
void MainTab::on_visibility_valueChanged(int value)
|
|
{
|
|
editedDive.visibility = value;
|
|
}
|
|
|
|
#undef EDIT_SELECTED_DIVES
|
|
#undef EDIT_TEXT
|
|
#undef EDIT_VALUE
|
|
|
|
void MainTab::editCylinderWidget(const QModelIndex &index)
|
|
{
|
|
if (cylindersModel->changed && editMode == NONE) {
|
|
enableEdition();
|
|
return;
|
|
}
|
|
if (index.isValid() && index.column() != CylindersModel::REMOVE) {
|
|
if (editMode == NONE)
|
|
enableEdition();
|
|
ui.cylinders->edit(index);
|
|
}
|
|
}
|
|
|
|
void MainTab::editWeightWidget(const QModelIndex &index)
|
|
{
|
|
if (editMode == NONE)
|
|
enableEdition();
|
|
|
|
if (index.isValid() && index.column() != WeightModel::REMOVE)
|
|
ui.weights->edit(index);
|
|
}
|
|
|
|
void MainTab::updateCoordinatesText(qreal lat, qreal lon)
|
|
{
|
|
int ulat = rint(lat * 1000000);
|
|
int ulon = rint(lon * 1000000);
|
|
ui.coordinates->setText(printGPSCoords(ulat, ulon));
|
|
}
|
|
|
|
void MainTab::updateGpsCoordinates(const struct dive *dive)
|
|
{
|
|
if (dive) {
|
|
ui.coordinates->setText(printGPSCoords(dive->latitude.udeg, dive->longitude.udeg));
|
|
ui.coordinates->setModified(dive->latitude.udeg || dive->longitude.udeg);
|
|
} else {
|
|
ui.coordinates->clear();
|
|
}
|
|
}
|
|
|
|
QString MainTab::trHemisphere(const char *orig)
|
|
{
|
|
return tr(orig);
|
|
}
|
|
|
|
void MainTab::escDetected()
|
|
{
|
|
if (editMode != NONE)
|
|
rejectChanges();
|
|
}
|