statistics: pass view to series

The series were passed a pointer to the QGraphicsScene to add
their item. In the future these items will be replaced by
QSGNodes. To add these, the series need a reference to the StatsView.
Therefore pass it in the constructor. Once everything is
replaces by QSGNodes, remove the QGraphicsScene member.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2021-01-13 14:56:48 +01:00 committed by bstoeger
parent 1a869833d8
commit d7878dad36
11 changed files with 27 additions and 25 deletions

View file

@ -8,16 +8,18 @@
class QGraphicsScene;
class StatsAxis;
class StatsView;
class StatsSeries {
public:
StatsSeries(QGraphicsScene *scene, StatsAxis *xAxis, StatsAxis *yAxis);
StatsSeries(QGraphicsScene *scene, StatsView &view, StatsAxis *xAxis, StatsAxis *yAxis);
virtual ~StatsSeries();
virtual void updatePositions() = 0; // Called if chart geometry changes.
virtual bool hover(QPointF pos) = 0; // Called on mouse movement. Return true if an item of this series is highlighted.
virtual void unhighlight() = 0; // Unhighlight any highlighted item.
protected:
QGraphicsScene *scene;
StatsView &view;
StatsAxis *xAxis, *yAxis; // May be zero for charts without axes (pie charts).
QPointF toScreen(QPointF p);
};