summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2020-03-18 22:42:47 +0100
committerGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2020-04-07 00:13:35 +0200
commit20e70646584e71f03e5983660c21e7a7e097cf39 (patch)
treef219f3425cb73a5d28f96e7e1d44dc1f6be95c4f
parent3b9913d82893ca023eaea2e25cdbc86765aeb40a (diff)
downloadsubsurface-20e70646584e71f03e5983660c21e7a7e097cf39.tar.gz
desktop/tabwidgets: replace editMode by boolean
There was only one editMode left (MANUALLY_ADDED_DIVE). Therefore replace by a flag. This makes the code more consistent, because the conditions "editMode != NONE" and "editMode == MANUALLY_ADDED_DIVE) actually meant the same thing. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
-rw-r--r--desktop-widgets/tab-widgets/maintab.cpp22
-rw-r--r--desktop-widgets/tab-widgets/maintab.h7
2 files changed, 12 insertions, 17 deletions
diff --git a/desktop-widgets/tab-widgets/maintab.cpp b/desktop-widgets/tab-widgets/maintab.cpp
index 87e9854d5..7fde2e1b6 100644
--- a/desktop-widgets/tab-widgets/maintab.cpp
+++ b/desktop-widgets/tab-widgets/maintab.cpp
@@ -49,7 +49,7 @@ struct Completers {
};
MainTab::MainTab(QWidget *parent) : QTabWidget(parent),
- editMode(NONE),
+ editMode(false),
ignoreInput(false),
lastSelectedDive(true),
lastTabSelectedDive(0),
@@ -209,7 +209,7 @@ void MainTab::displayMessage(QString str)
void MainTab::enableEdition()
{
- if (current_dive == NULL || editMode != NONE)
+ if (current_dive == NULL || editMode)
return;
ui.editDiveSiteButton->setEnabled(false);
@@ -219,7 +219,7 @@ void MainTab::enableEdition()
ui.dateEdit->setEnabled(true);
displayMessage(tr("This dive is being edited."));
- editMode = MANUALLY_ADDED_DIVE;
+ editMode = true;
}
// This function gets called if a field gets updated by an undo command.
@@ -284,7 +284,7 @@ void MainTab::nextInputField(QKeyEvent *event)
bool MainTab::isEditing()
{
- return editMode != NONE;
+ return editMode;
}
static bool isHtml(const QString &s)
@@ -343,7 +343,7 @@ void MainTab::updateDiveInfo()
{
ui.location->refreshDiveSiteCache();
// don't execute this while adding / planning a dive
- if (editMode == MANUALLY_ADDED_DIVE || MainWindow::instance()->graphics->isPlanner())
+ if (editMode || MainWindow::instance()->graphics->isPlanner())
return;
// If there is no current dive, disable all widgets except the last, which is the dive site tab.
@@ -503,13 +503,13 @@ void MainTab::acceptChanges()
ui.dateEdit->setEnabled(true);
hideMessage();
- if (editMode == MANUALLY_ADDED_DIVE) {
+ if (editMode) {
MainWindow::instance()->showProfile();
DivePlannerPointsModel::instance()->setPlanMode(DivePlannerPointsModel::NOTHING);
Command::editProfile(&displayed_dive);
}
int scrolledBy = MainWindow::instance()->diveList->verticalScrollBar()->sliderPosition();
- if (editMode == MANUALLY_ADDED_DIVE) {
+ if (editMode) {
MainWindow::instance()->diveList->reload();
MainWindow::instance()->refreshDisplay();
MainWindow::instance()->graphics->replot();
@@ -522,12 +522,12 @@ void MainTab::acceptChanges()
MainWindow::instance()->setEnabledToolbar(true);
ui.editDiveSiteButton->setEnabled(!ui.location->text().isEmpty());
ignoreInput = false;
- editMode = NONE;
+ editMode = false;
}
void MainTab::rejectChanges()
{
- if (editMode != NONE && current_dive) {
+ if (editMode && current_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) {
@@ -535,7 +535,7 @@ void MainTab::rejectChanges()
}
}
ui.dateEdit->setEnabled(true);
- editMode = NONE;
+ editMode = false;
hideMessage();
// no harm done to call cancelPlan even if we were not PLAN mode...
DivePlannerPointsModel::instance()->cancelPlan();
@@ -693,7 +693,7 @@ void MainTab::escDetected()
{
// In edit mode, pressing escape cancels the current changes.
// In standard mode, remove focus of any active widget to
- if (editMode != NONE)
+ if (editMode)
rejectChanges();
else
stealFocus();
diff --git a/desktop-widgets/tab-widgets/maintab.h b/desktop-widgets/tab-widgets/maintab.h
index bf071619b..49003be4e 100644
--- a/desktop-widgets/tab-widgets/maintab.h
+++ b/desktop-widgets/tab-widgets/maintab.h
@@ -26,11 +26,6 @@ class TabBase;
class MainTab : public QTabWidget {
Q_OBJECT
public:
- enum EditMode {
- NONE,
- MANUALLY_ADDED_DIVE
- };
-
MainTab(QWidget *parent = 0);
~MainTab();
void clearTabs();
@@ -74,7 +69,7 @@ slots:
void escDetected(void);
private:
Ui::MainTab ui;
- EditMode editMode;
+ bool editMode;
bool ignoreInput; // When computionally editing fields, we have to ignore changed-signals
BuddyCompletionModel buddyModel;
DiveMasterCompletionModel diveMasterModel;