mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
ccc95f938a
In the future we want to use our own axis implementation to convert from/to screen coordinates. For this purpose, we need to save the axes with the series. Especially if we want to support multiple series on different axes. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
29 lines
995 B
C++
29 lines
995 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
// Base class for all series. Defines a small virtual interface
|
|
// concerning highlighting of series items.
|
|
#ifndef STATS_SERIES_H
|
|
#define STATS_SERIES_H
|
|
|
|
#include <QScatterSeries>
|
|
|
|
namespace QtCharts {
|
|
class QChart;
|
|
}
|
|
class StatsAxis;
|
|
|
|
// We derive from a proper scatter series to get access to the map-to
|
|
// and map-from coordinates calls. But we don't use any of its functionality.
|
|
// This should be removed in due course.
|
|
|
|
class StatsSeries : public QtCharts::QScatterSeries {
|
|
public:
|
|
StatsSeries(QtCharts::QChart *chart, 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:
|
|
StatsAxis *xAxis, *yAxis; // May be zero for charts without axes (pie charts).
|
|
};
|
|
|
|
#endif
|