chartview.h
29 lines
| 476 B
| text/x-c
|
CLexer
Michal Klocek
|
r246 | #ifndef CHARTVIEW_H_ | ||
#define CHARTVIEW_H_ | ||||
Michal Klocek
|
r632 | #include <QChartView> | ||
Michal Klocek
|
r246 | #include <QTimer> | ||
QTCOMMERCIALCHART_USE_NAMESPACE | ||||
Michal Klocek
|
r482 | //![1] | ||
Michal Klocek
|
r246 | class ChartView: public QChartView | ||
{ | ||||
Q_OBJECT | ||||
public: | ||||
Tero Ahola
|
r760 | ChartView(QWidget* parent = 0); | ||
Michal Klocek
|
r246 | virtual ~ChartView(); | ||
public slots: | ||||
void handleTimeout(); | ||||
Michal Klocek
|
r571 | void handlePointClicked(const QPointF& point); | ||
Michal Klocek
|
r246 | |||
private: | ||||
QTimer m_timer; | ||||
Michal Klocek
|
r360 | QList<QSeries*> m_series; | ||
Michal Klocek
|
r476 | QStringList m_titles; | ||
Michal Klocek
|
r246 | int m_index; | ||
}; | ||||
Michal Klocek
|
r482 | //![1] | ||
Michal Klocek
|
r246 | |||
#endif /* CHARTVIEW_H_ */ | ||||