aboutsummaryrefslogtreecommitdiffstats
path: root/stats/statsview.h
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2021-02-08 17:07:37 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2021-02-13 13:02:54 -0800
commit64b82b16a26bcaa624cc35e775b821e33133bdbb (patch)
tree184f58141f2a0377bc16686c3a2724770b8dbd8c /stats/statsview.h
parent21b8cded56854f81327f4f553e32a15ffe5c7b82 (diff)
downloadsubsurface-64b82b16a26bcaa624cc35e775b821e33133bdbb.tar.gz
statistics: make selection keyboard modifiers more general
Up to now, we passed a "shiftPressed" flag to the individual selection functions. To be more general replace by a struct with "shift" and "ctrl" flags. While doing this: 1) Move the struct into a new statsselection file for better encapsulation. 2) Change shift to control in the scatter series, since individual selection of items is usually done with control, not shift. Shift usually means "select range". Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'stats/statsview.h')
-rw-r--r--stats/statsview.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/stats/statsview.h b/stats/statsview.h
index 279889104..6e0fe8967 100644
--- a/stats/statsview.h
+++ b/stats/statsview.h
@@ -4,6 +4,7 @@
#include "statsstate.h"
#include "statshelper.h"
+#include "statsselection.h"
#include <memory>
#include <QFont>
#include <QImage>
@@ -145,7 +146,7 @@ private:
ChartItemPtr<RegressionItem> regressionItem;
ChartItemPtr<ChartRectLineItem> selectionRect;
QPointF dragStartMouse, dragStartItem;
- bool shiftSelection;
+ SelectionModifier selectionModifier;
std::vector<dive *> oldSelection;
void hoverEnterEvent(QHoverEvent *event) override;