From 5c098eea29fdb1cd663b78db4e430a1c76c2209a Mon Sep 17 00:00:00 2001 From: "Robert C. Helling" Date: Sun, 17 Jan 2021 13:34:18 +0100 Subject: 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 Signed-off-by: Berthold Stoeger --- stats/boxseries.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'stats/boxseries.cpp') 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 @@ -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 &dives = items[index]->q.dives; + setSelection(dives, dives.empty() ? nullptr : dives.front()); +} -- cgit v1.2.3-70-g09d2