1 | // Copyright (C) 2016 The Qt Company Ltd. |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only |
3 | |
4 | // |
5 | // W A R N I N G |
6 | // ------------- |
7 | // |
8 | // This file is not part of the QtDataVisualization API. It exists purely as an |
9 | // implementation detail. This header file may change from version to |
10 | // version without notice, or even be removed. |
11 | // |
12 | // We mean it. |
13 | |
14 | #ifndef Q3DSCATTER_P_H |
15 | #define Q3DSCATTER_P_H |
16 | |
17 | #include "scatter3dcontroller_p.h" |
18 | #include "qabstract3dgraph_p.h" |
19 | |
20 | QT_BEGIN_NAMESPACE |
21 | |
22 | class Q3DScatter; |
23 | |
24 | class Q3DScatterPrivate : public QAbstract3DGraphPrivate |
25 | { |
26 | Q_OBJECT |
27 | public: |
28 | Q3DScatterPrivate(Q3DScatter *q); |
29 | ~Q3DScatterPrivate(); |
30 | |
31 | void handleAxisXChanged(QAbstract3DAxis *axis) override; |
32 | void handleAxisYChanged(QAbstract3DAxis *axis) override; |
33 | void handleAxisZChanged(QAbstract3DAxis *axis) override; |
34 | |
35 | Q3DScatter *qptr(); |
36 | |
37 | Scatter3DController *m_shared; |
38 | }; |
39 | |
40 | QT_END_NAMESPACE |
41 | |
42 | #endif |
43 |