##// END OF EJS Templates
Revert "Integrated scatter series"...
Revert "Integrated scatter series" This reverts commit 67e4c740a645378b45cdd289662aff9c0f85a943.

File last commit:

r39:abd9caf3a53e
r39:abd9caf3a53e
Show More
qchartwidget.h
36 lines | 721 B | text/x-c | CLexer
Tero Ahola
Started to refactor the API to allow integrating different plot types
r19 #ifndef QCHARTWIDGET_H
#define QCHARTWIDGET_H
Tero Ahola
Renamed to QtCommercialChart
r30 #include "qchartglobal.h"
Tero Ahola
Started to refactor the API to allow integrating different plot types
r19 #include "qchart.h"
#include <QWidget>
Tero Ahola
Renamed to QtCommercialChart
r30 QTCOMMERCIALCHART_BEGIN_NAMESPACE
Tero Ahola
Started to refactor the API to allow integrating different plot types
r19
Michal Klocek
Refactor current draft to fit int current design specs...
r21 class QChartSeries;
Tero Ahola
Started to refactor the API to allow integrating different plot types
r19 class QChartWidgetPrivate;
Tero Ahola
Renamed to QtCommercialChart
r30 class QTCOMMERCIALCHART_EXPORT QChartWidget : public QWidget
Tero Ahola
Started to refactor the API to allow integrating different plot types
r19 {
Q_OBJECT
public:
explicit QChartWidget(QWidget *parent = 0);
~QChartWidget();
Michal Klocek
Refactor current draft to fit int current design specs...
r21 //implement from QWidget
void resizeEvent(QResizeEvent *event);
Tero Ahola
Added size hint for the widget
r29 QSize sizeHint() const;
Tero Ahola
Started to refactor the API to allow integrating different plot types
r19
Michal Klocek
Refactor current draft to fit int current design specs...
r21 void addSeries(QChartSeries* series);
protected:
QChartWidgetPrivate * const d_ptr;
Tero Ahola
Started to refactor the API to allow integrating different plot types
r19
private:
Q_DISABLE_COPY(QChartWidget)
Michal Klocek
Refactor current draft to fit int current design specs...
r21 Q_DECLARE_PRIVATE(QChartWidget)
Tero Ahola
Started to refactor the API to allow integrating different plot types
r19 };
Tero Ahola
Renamed to QtCommercialChart
r30 QTCOMMERCIALCHART_END_NAMESPACE
Tero Ahola
Started to refactor the API to allow integrating different plot types
r19
#endif // QCHARTWIDGET_H