diff options
Diffstat (limited to 'desktop-widgets')
-rw-r--r-- | desktop-widgets/command.cpp | 4 | ||||
-rw-r--r-- | desktop-widgets/command.h | 11 | ||||
-rw-r--r-- | desktop-widgets/command_divelist.cpp | 22 | ||||
-rw-r--r-- | desktop-widgets/command_divelist.h | 2 | ||||
-rw-r--r-- | desktop-widgets/mainwindow.cpp | 14 | ||||
-rw-r--r-- | desktop-widgets/tab-widgets/maintab.cpp | 4 |
6 files changed, 30 insertions, 27 deletions
diff --git a/desktop-widgets/command.cpp b/desktop-widgets/command.cpp index 54ca2d39f..2bff1aad0 100644 --- a/desktop-widgets/command.cpp +++ b/desktop-widgets/command.cpp @@ -6,9 +6,9 @@ namespace Command { // Dive-list related commands -void addDive(dive *d, bool autogroup) +void addDive(dive *d, bool autogroup, bool newNumber) { - execute(new AddDive(d, autogroup)); + execute(new AddDive(d, autogroup, newNumber)); } void deleteDive(const QVector<struct dive*> &divesToDelete) diff --git a/desktop-widgets/command.h b/desktop-widgets/command.h index 9a8ccfd6d..71ef2f9da 100644 --- a/desktop-widgets/command.h +++ b/desktop-widgets/command.h @@ -9,13 +9,18 @@ // We put everything in a namespace, so that we can shorten names without polluting the global namespace namespace Command { -// General commands +// 1) General commands + void clear(); // Reset the undo stack. Delete all commands. QAction *undoAction(QObject *parent); // Create an undo action. QAction *redoAction(QObject *parent); // Create an redo action. -// Dive-list related commands -void addDive(dive *d, bool autogroup); +// 2) Dive-list related commands + +void addDive(dive *d, bool autogroup, bool newNumber); // If d->dive_trip is null and autogroup is true, dives within the auto-group + // distance are added to a trip. dive d is consumed (the structure is reset)! + // If newNumber is true, the dive is assigned a new number, depending on the + // insertion position. void deleteDive(const QVector<struct dive*> &divesToDelete); void shiftTime(const QVector<dive *> &changedDives, int amount); void renumberDives(const QVector<QPair<dive *, int>> &divesToRenumber); diff --git a/desktop-widgets/command_divelist.cpp b/desktop-widgets/command_divelist.cpp index 1bc225086..e129fefdd 100644 --- a/desktop-widgets/command_divelist.cpp +++ b/desktop-widgets/command_divelist.cpp @@ -483,21 +483,28 @@ void DiveListBase::redo() finishWork(); } -AddDive::AddDive(dive *d, bool autogroup) +AddDive::AddDive(dive *d, bool autogroup, bool newNumber) { setText(tr("add dive")); + // By convention, d is "displayed dive" and can be overwritten. d->maxdepth.mm = 0; + d->dc.maxdepth.mm = 0; fixup_dive(d); - d->divetrip = nullptr; - // Get an owning pointer to a copy of the dive - // Note: this destroys the old dive! + // Get an owning pointer to a copied or moved dive + // Note: if move is true, this destroys the old dive! OwningDivePtr divePtr(clone_dive(d)); + divePtr->selected = false; // If we clone a planned dive, it might have been selected. + // We have to clear the flag, as selections will be managed + // on dive-addition. // If we alloc a new-trip for autogrouping, get an owning pointer to it. OwningTripPtr allocTrip; - dive_trip *trip = nullptr; - if (autogroup) { + dive_trip *trip = divePtr->divetrip; + // We have to delete the pointer-to-trip, because this would prevent the core from adding to the trip + // and we would get the count-of-dives in the trip wrong. Yes, that's all horribly subtle! + divePtr->divetrip = nullptr; + if (!trip && autogroup) { bool alloc; trip = get_trip_for_new_dive(divePtr.get(), &alloc); if (alloc) @@ -505,7 +512,8 @@ AddDive::AddDive(dive *d, bool autogroup) } int idx = dive_get_insertion_index(divePtr.get()); - divePtr->number = get_dive_nr_at_idx(idx); + if (newNumber) + divePtr->number = get_dive_nr_at_idx(idx); divesToAdd.push_back({ std::move(divePtr), std::move(allocTrip), trip, idx }); } diff --git a/desktop-widgets/command_divelist.h b/desktop-widgets/command_divelist.h index 650a64ba4..29c9c6e7b 100644 --- a/desktop-widgets/command_divelist.h +++ b/desktop-widgets/command_divelist.h @@ -82,7 +82,7 @@ private: class AddDive : public DiveListBase { public: - AddDive(dive *dive, bool autogroup); + AddDive(dive *dive, bool autogroup, bool newNumber); private: void undoit() override; void redoit() override; diff --git a/desktop-widgets/mainwindow.cpp b/desktop-widgets/mainwindow.cpp index 625c094c1..0476dfae8 100644 --- a/desktop-widgets/mainwindow.cpp +++ b/desktop-widgets/mainwindow.cpp @@ -890,19 +890,11 @@ void MainWindow::planCanceled() void MainWindow::planCreated() { - // get the new dive selected and assign a number if reasonable - graphics()->setProfileState(); - if (displayed_dive.id == 0) { - // we might have added a new dive (so displayed_dive was cleared out by clone_dive() - dive_list()->unselectDives(); - select_dive(get_dive(dive_table.nr - 1)); - dive_list()->selectDive(get_divenr(current_dive)); // TODO: don't convert dive->idx and back - set_dive_nr_for_current_dive(); - } // make sure our UI is in a consistent state - information()->updateDiveInfo(); showProfile(); - refreshDisplay(); + setApplicationState("Default"); + dive_list()->setEnabled(true); + dive_list()->setFocus(); } void MainWindow::setPlanNotes() diff --git a/desktop-widgets/tab-widgets/maintab.cpp b/desktop-widgets/tab-widgets/maintab.cpp index 92e55784f..d45bc246d 100644 --- a/desktop-widgets/tab-widgets/maintab.cpp +++ b/desktop-widgets/tab-widgets/maintab.cpp @@ -799,7 +799,7 @@ void MainTab::acceptChanges() updateDiveSite(ui.location->currDiveSiteUuid(), &displayed_dive); copyTagsToDisplayedDive(); - Command::addDive(&displayed_dive, autogroup); + Command::addDive(&displayed_dive, autogroup, true); editMode = NONE; MainWindow::instance()->exitEditState(); @@ -810,8 +810,6 @@ void MainTab::acceptChanges() ui.editDiveSiteButton->setEnabled(!ui.location->text().isEmpty()); emit addDiveFinished(); DivePlannerPointsModel::instance()->setPlanMode(DivePlannerPointsModel::NOTHING); - int scrolledBy = MainWindow::instance()->dive_list()->verticalScrollBar()->sliderPosition(); - MainWindow::instance()->dive_list()->verticalScrollBar()->setSliderPosition(scrolledBy); MainWindow::instance()->dive_list()->setFocus(); resetPallete(); displayed_dive.divetrip = nullptr; // Should not be necessary, just in case! |