chartview.h
25 lines
| 385 B
| text/x-c
|
CLexer
Michal Klocek
|
r246 | #ifndef CHARTVIEW_H_ | ||
#define CHARTVIEW_H_ | ||||
#include <qchartview.h> | ||||
#include <QTimer> | ||||
QTCOMMERCIALCHART_USE_NAMESPACE | ||||
class ChartView: public QChartView | ||||
{ | ||||
Q_OBJECT | ||||
public: | ||||
ChartView(QWidget* parent=0); | ||||
virtual ~ChartView(); | ||||
public slots: | ||||
void handleTimeout(); | ||||
private: | ||||
QTimer m_timer; | ||||
Michal Klocek
|
r360 | QList<QSeries*> m_series; | ||
Michal Klocek
|
r246 | int m_index; | ||
}; | ||||
#endif /* CHARTVIEW_H_ */ | ||||