##// END OF EJS Templates
Adds qchartview privte missing file
Michal Klocek -
r750:fb5acf5f7d53
parent child
Show More
@@ -0,0 +1,35
1 // W A R N I N G
2 // -------------
3 //
4 // This file is not part of the QtCommercial Chart API. It exists purely as an
5 // implementation detail. This header file may change from version to
6 // version without notice, or even be removed.
7 //
8 // We mean it.
9
10 #ifndef QCHARTVIEW_P_H
11 #define QCHARTVIEW_P_H
12
13 #include "qchartview.h"
14
15 class QGraphicsScene;
16
17 QTCOMMERCIALCHART_BEGIN_NAMESPACE
18
19 class QChart;
20
21 struct QChartViewPrivate {
22
23 QChartViewPrivate();
24 ~QChartViewPrivate();
25
26 QGraphicsScene *m_scene;
27 QChart *m_chart;
28 ChartPresenter *m_presenter;
29 QPoint m_rubberBandOrigin;
30 QRubberBand *m_rubberBand;
31 QChartView::RubberBands m_rubberBandFlags;
32 };
33
34 QTCOMMERCIALCHART_END_NAMESPACE
35 #endif
General Comments 0
You need to be logged in to leave comments. Login now