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/statsview.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'stats/statsview.cpp') diff --git a/stats/statsview.cpp b/stats/statsview.cpp index 464339a9c..61d9db4a6 100644 --- a/stats/statsview.cpp +++ b/stats/statsview.cpp @@ -64,10 +64,11 @@ StatsView::~StatsView() void StatsView::mousePressEvent(QMouseEvent *event) { + QPointF pos = event->localPos(); + // Currently, we only support dragging of the legend. If other objects // should be made draggable, this needs to be generalized. if (legend) { - QPointF pos = event->localPos(); QRectF rect = legend->getRect(); if (legend->getRect().contains(pos)) { dragStartMouse = pos; @@ -75,8 +76,12 @@ void StatsView::mousePressEvent(QMouseEvent *event) draggedItem = &*legend; grabMouse(); setKeepMouseGrab(true); // don't allow Qt to steal the grab + return; } } + + for (auto &series: series) + series->selectItemsUnderMouse(pos); } void StatsView::mouseReleaseEvent(QMouseEvent *) -- cgit v1.2.3-70-g09d2