##// 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:

r546:3faf122e2566
r567:17f0257049a1
Show More
tablewidget.h
40 lines | 730 B | text/x-c | CLexer
#ifndef TABLEWIDGET_H
#define TABLEWIDGET_H
#include <QtGui/QWidget>
#include "qchartview.h"
#include "qxyseries.h"
QTCOMMERCIALCHART_USE_NAMESPACE
class CustomTableModel;
class QTableView;
class QRadioButton;
//class QSeries;
class TableWidget : public QWidget
{
Q_OBJECT
public:
TableWidget(QWidget *parent = 0);
~TableWidget();
public slots:
void addRowAbove();
void addRowBelow();
void removeRow();
void updateChartType();
private:
QChartView* chartView;
QXYSeries* series;
CustomTableModel* m_model;
QTableView* tableView;
QRadioButton* lineRadioButton;
QRadioButton* splineRadioButton;
QRadioButton* scatterRadioButton;
};
#endif // TABLEWIDGET_H