##// END OF EJS Templates
Added support for data from model to QBarSeries. Various fixes and small modifications to data from model support to other series
Added support for data from model to QBarSeries. Various fixes and small modifications to data from model support to other series

File last commit:

r486:7ab45bf9f776
r630:dd8db9a3a988
Show More
widget.h
34 lines | 574 B | text/x-c | CLexer
Marek Rosa
Initial commit for gdpBarChart example.
r205 #ifndef WIDGET_H
#define WIDGET_H
#include <QtGui/QWidget>
#include <qchartview.h>
#include <QSqlDatabase>
QTCOMMERCIALCHART_USE_NAMESPACE
class QListWidget;
Marek Rosa
Added another chart type choice
r268 class QRadioButton;
Marek Rosa
Initial commit for gdpBarChart example.
r205
class Widget : public QWidget
{
Q_OBJECT
public:
Widget(QWidget *parent = 0);
~Widget();
public slots:
void refreshChart();
Marek Rosa
Added chart printing to pdf
r244 void printChart();
Marek Rosa
Initial commit for gdpBarChart example.
r205
private:
QChartView* chartArea;
QListWidget* countrieslist;
QListWidget* yearslist;
QSqlDatabase db;
Marek Rosa
Added another chart type choice
r268 QRadioButton* barChartRadioButton;
QRadioButton* scatterChartRadioButton;
Marek Rosa
Initial commit for gdpBarChart example.
r205 };
#endif // WIDGET_H