##// END OF EJS Templates
Initial commit for gdpBarChart example.
Initial commit for gdpBarChart example.

File last commit:

r205:a2592bf5395a
r205:a2592bf5395a
Show More
widget.h
30 lines | 449 B | text/x-c | CLexer
#ifndef WIDGET_H
#define WIDGET_H
#include <QtGui/QWidget>
#include <qchartview.h>
#include <QSqlDatabase>
QTCOMMERCIALCHART_USE_NAMESPACE
class QListWidget;
class Widget : public QWidget
{
Q_OBJECT
public:
Widget(QWidget *parent = 0);
~Widget();
public slots:
void refreshChart();
private:
QChartView* chartArea;
QListWidget* countrieslist;
QListWidget* yearslist;
QSqlDatabase db;
};
#endif // WIDGET_H