##// END OF EJS Templates
Renamed to QtCommercialChart
Renamed to QtCommercialChart

File last commit:

r30:ef99599d15b7
r30:ef99599d15b7
Show More
qchartwidget.h
36 lines | 721 B | text/x-c | CLexer
#ifndef QCHARTWIDGET_H
#define QCHARTWIDGET_H
#include "qchartglobal.h"
#include "qchart.h"
#include <QWidget>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QChartSeries;
class QChartWidgetPrivate;
class QTCOMMERCIALCHART_EXPORT QChartWidget : public QWidget
{
Q_OBJECT
public:
explicit QChartWidget(QWidget *parent = 0);
~QChartWidget();
//implement from QWidget
void resizeEvent(QResizeEvent *event);
QSize sizeHint() const;
void addSeries(QChartSeries* series);
protected:
QChartWidgetPrivate * const d_ptr;
private:
Q_DISABLE_COPY(QChartWidget)
Q_DECLARE_PRIVATE(QChartWidget)
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QCHARTWIDGET_H