diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-03-13 21:36:31 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-04-12 18:19:07 +0300 |
commit | aac8eacfa2b4621efadf1fb2b6d255f69394be55 (patch) | |
tree | 2d9b1764619b8578fd8e63237d8d3e6535de48f9 /desktop-widgets/tab-widgets/TabDiveSite.cpp | |
parent | 56dcbd9588fa3b7d70a4b639b71cb18e1c462067 (diff) | |
download | subsurface-aac8eacfa2b4621efadf1fb2b6d255f69394be55.tar.gz |
Dive site: on first addition of dive site, edit name
When adding a dive site, enter the name field of the new dive site.
Thus, when adding a new dive site, the user can immediately edit the
name.
The code is rather subtle: It hooks into the dive site added signal
before executing the command and unhooks afterwards. This only works,
because signals are executed in order of connect - thus the model
adds the index first and only *then* is the field edited.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/tab-widgets/TabDiveSite.cpp')
-rw-r--r-- | desktop-widgets/tab-widgets/TabDiveSite.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/desktop-widgets/tab-widgets/TabDiveSite.cpp b/desktop-widgets/tab-widgets/TabDiveSite.cpp index 648df6395..5b65015da 100644 --- a/desktop-widgets/tab-widgets/TabDiveSite.cpp +++ b/desktop-widgets/tab-widgets/TabDiveSite.cpp @@ -1,5 +1,7 @@ // SPDX-License-Identifier: GPL-2.0 #include "TabDiveSite.h" +#include "core/subsurface-qt/DiveListNotifier.h" +#include "core/divesite.h" #include "qt-models/divelocationmodel.h" #include "desktop-widgets/command.h" @@ -31,5 +33,23 @@ void TabDiveSite::clear() void TabDiveSite::add() { + // This is mighty dirty: We hook into the "dive site added" signal and + // select the name field of the added dive site when the command sends + // the signal. This works only because we know that the model added the + // connection first. Very subtle! + // After the command has finished, the signal is disconnected so that dive + // site names are not selected on regular redo / undo. + connect(&diveListNotifier, &DiveListNotifier::diveSiteAdded, this, &TabDiveSite::diveSiteAdded); Command::addDiveSite(tr("New dive site")); + disconnect(&diveListNotifier, &DiveListNotifier::diveSiteAdded, this, &TabDiveSite::diveSiteAdded); +} + +void TabDiveSite::diveSiteAdded(struct dive_site *, int idx) +{ + if (idx < 0) + return; + QModelIndex globalIdx = LocationInformationModel::instance()->index(idx, LocationInformationModel::NAME); + QModelIndex localIdx = model.mapFromSource(globalIdx); + ui.diveSites->view()->setCurrentIndex(localIdx); + ui.diveSites->view()->edit(localIdx); } |