SedSat3 1.1.6
Sediment Source Apportionment Tool - Advanced statistical methods for environmental pollution research
Loading...
Searching...
No Matches
chart.h
Go to the documentation of this file.
1#ifndef CHART_H
2#define CHART_H
3
4#include <QtCharts>
5
6QT_BEGIN_NAMESPACE
7class QGestureEvent;
8QT_END_NAMESPACE
9
10QT_USE_NAMESPACE
11
12
13class Chart : public QChart
14{
15public:
16 explicit Chart(QGraphicsItem *parent = nullptr, Qt::WindowFlags wFlags = {});
17 ~Chart();
18
19protected:
20 bool sceneEvent(QEvent *event);
21
22private:
23 bool gestureEvent(QGestureEvent *event);
24
25private:
26
27};
28
29#endif // CHART_H
Definition chart.h:14
bool gestureEvent(QGestureEvent *event)
Definition chart.cpp:26
bool sceneEvent(QEvent *event)
Definition chart.cpp:19
~Chart()
Definition chart.cpp:14