##// END OF EJS Templates
Make stackedbarchartdrilldown compile
Make stackedbarchartdrilldown compile

File last commit:

r827:e44172bd0846
r829:f9360d7ac284
Show More
widget.h
34 lines | 572 B | text/x-c | CLexer
#ifndef WIDGET_H
#define WIDGET_H
#include <QtGui/QWidget>
#include <QChartview>
#include <QSqlDatabase>
QTCOMMERCIALCHART_USE_NAMESPACE
class QListWidget;
class QRadioButton;
class Widget : public QWidget
{
Q_OBJECT
public:
Widget(QWidget *parent = 0);
~Widget();
public slots:
void refreshChart();
void printChart();
private:
QChartView* chartView;
QListWidget* countrieslist;
QListWidget* yearslist;
QSqlDatabase db;
QRadioButton* barChartRadioButton;
QRadioButton* scatterChartRadioButton;
};
#endif // WIDGET_H