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 Q3DSURFACE_P_H
15#define Q3DSURFACE_P_H
16
17#include "surface3dcontroller_p.h"
18#include "qabstract3dgraph_p.h"
19
20QT_BEGIN_NAMESPACE
21
22class Q3DSurface;
23
24class Q3DSurfacePrivate : public QAbstract3DGraphPrivate
25{
26 Q_OBJECT
27public:
28 Q3DSurfacePrivate(Q3DSurface *q);
29 ~Q3DSurfacePrivate();
30
31 void handleAxisXChanged(QAbstract3DAxis *axis) override;
32 void handleAxisYChanged(QAbstract3DAxis *axis) override;
33 void handleAxisZChanged(QAbstract3DAxis *axis) override;
34
35 Q3DSurface *qptr();
36
37 Surface3DController *m_shared;
38};
39
40QT_END_NAMESPACE
41
42#endif
43

source code of qtdatavis3d/src/datavisualization/engine/q3dsurface_p.h