summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/divelistview.h
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2018-08-01 19:23:43 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-10-11 16:22:27 -0700
commit23db0ba68df5f785a8a2db5ff5b76bbbee31d69f (patch)
tree41204dd19c78c7ecf75493be3b121f3773c0d438 /desktop-widgets/divelistview.h
parent0d98da52610161ecbafd50afacbff20996756264 (diff)
downloadsubsurface-23db0ba68df5f785a8a2db5ff5b76bbbee31d69f.tar.gz
Dive list view: replace signal-magic by flag
In DiveListView, we have a very fundamental problem: When On the one hand, we get informed of user-selection in the DiveListView::selectionChanged() slot. This has to set the correct flags in the C-backend. On the other hand, sometimes we have to set the selection programatically, e.g. when selecting a trip. This is done by calling QItemSelectionModel::select(). But: this will *also* call into the above slot, in which we can't tell whether it was a user interaction or an internal call. This can lead to either infinite loops or very inefficient behavior, because the current dive is set numerous times. The current code is aware of that and disconnects the corresponding signal. This is scary, as these signals are set internally by the model and view. Replace this by a global "command executing" flag in DiveListNotifier. The flag is set using a "marker" class, which resets the flag once it goes out of scope (cf. RAII pattern). In DiveListView, only process a selection if the flag is not set. Otherwise simply call the QTreeView base class, to reflect the new selection in the UI. To have a common point for notifications of selection changes, add such a signal to DiveListNotifier. This signal will be used by the DiveListView as well as the Command-objects. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets/divelistview.h')
-rw-r--r--desktop-widgets/divelistview.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/desktop-widgets/divelistview.h b/desktop-widgets/divelistview.h
index 2d7699d1d..9e6857312 100644
--- a/desktop-widgets/divelistview.h
+++ b/desktop-widgets/divelistview.h
@@ -58,10 +58,6 @@ slots:
void shiftTimes();
void loadImages();
void loadWebImages();
-
-signals:
- void currentDiveChanged();
-
private:
bool mouseClickSelection;
QList<int> expandedRows;