diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2021-02-10 12:15:14 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2021-02-13 13:02:54 -0800 |
commit | 43b0ccca3e8db081378d0924de257b4185b90464 (patch) | |
tree | 1bebf8867bb6515bac6dd7d596c726b6e4729a1d /stats/barseries.cpp | |
parent | 64b82b16a26bcaa624cc35e775b821e33133bdbb (diff) | |
download | subsurface-43b0ccca3e8db081378d0924de257b4185b90464.tar.gz |
statistics: support ctrl-selection for all series
Multiple selection using ctrl was only supported for
scatter series. Factor out the corresponding code and
use it in all series.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'stats/barseries.cpp')
-rw-r--r-- | stats/barseries.cpp | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/stats/barseries.cpp b/stats/barseries.cpp index 0f931e367..95b02111e 100644 --- a/stats/barseries.cpp +++ b/stats/barseries.cpp @@ -411,17 +411,16 @@ void BarSeries::unhighlight() highlighted = Index(); } -bool BarSeries::selectItemsUnderMouse(const QPointF &pos, SelectionModifier) +bool BarSeries::selectItemsUnderMouse(const QPointF &pos, SelectionModifier modifier) { Index index = getItemUnderMouse(pos); - if (index.bar < 0) { - setSelection({}, nullptr); - return false; - } - const std::vector<dive *> &dives = items[index.bar].subitems[index.subitem].dives; - setSelection(dives, dives.empty() ? nullptr : dives.front()); - return true; + std::vector<dive *> divesUnderMouse; + if (index.bar >= 0) + divesUnderMouse = items[index.bar].subitems[index.subitem].dives; + processSelection(std::move(divesUnderMouse), modifier); + + return index.bar >= 0; } void BarSeries::divesSelected(const QVector<dive *> &) |