diff options
author | Robert C. Helling <helling@atdotde.de> | 2021-01-17 13:34:18 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2021-02-13 13:02:54 -0800 |
commit | 5c098eea29fdb1cd663b78db4e430a1c76c2209a (patch) | |
tree | d084244a3dfc20739e78bc4284e0b1075bb82a8e /stats/boxseries.cpp | |
parent | 1797b59c102eaa5b2091504d96616433aaf0a239 (diff) | |
download | subsurface-5c098eea29fdb1cd663b78db4e430a1c76c2209a.tar.gz |
statistics: select dives from Scatter Plot
When clicking on items in a plot, select the corresponding
dives. This can be useful for data validation.
Signed-off-by: Robert C. Helling <helling@atdotde.de>
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'stats/boxseries.cpp')
-rw-r--r-- | stats/boxseries.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/stats/boxseries.cpp b/stats/boxseries.cpp index 06aa8b095..564842001 100644 --- a/stats/boxseries.cpp +++ b/stats/boxseries.cpp @@ -7,6 +7,7 @@ #include "statstranslations.h" #include "statsview.h" #include "zvalues.h" +#include "core/selection.h" #include <QLocale> @@ -141,3 +142,13 @@ void BoxSeries::unhighlight() items[highlighted]->highlight(false); highlighted = -1; } + +void BoxSeries::selectItemsUnderMouse(const QPointF &pos) +{ + int index = getItemUnderMouse(pos); + if (index < 0) + return setSelection({}, nullptr); + + const std::vector<dive *> &dives = items[index]->q.dives; + setSelection(dives, dives.empty() ? nullptr : dives.front()); +} |