##// END OF EJS Templates
combined clicked and rightclicked events of legend to one event with parameter
combined clicked and rightclicked events of legend to one event with parameter

File last commit:

r541:4eee071cd5a1
r567:17f0257049a1
Show More
mainwindow.h
27 lines | 479 B | text/x-c | CLexer
Tero Ahola
Clicked, remove and clear to QScatterSeries
r394 #ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QtGui/QMainWindow>
#include <qchartglobal.h>
#include <qscatterseries.h>
QTCOMMERCIALCHART_USE_NAMESPACE
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = 0);
~MainWindow();
private Q_SLOTS:
Michal Klocek
Adds missing scatter intercation implementation...
r541 void handleClickedPoint(const QPointF& point);
Tero Ahola
Clicked, remove and clear to QScatterSeries
r394
private:
QScatterSeries *m_scatter;
QScatterSeries *m_scatter2;
QScatterSeries *m_scatter3;
};
#endif // MAINWINDOW_H