summaryrefslogtreecommitdiffstats
path: root/src/graphs3d/data/qcustom3ditem_p.h
blob: 18f5950ab2cf234f7e86b70da48f20f147b562e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

//
//  W A R N I N G
//  -------------
//
// This file is not part of the QtGraphs API.  It exists purely as an
// implementation detail.  This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.

#ifndef QCUSTOM3DITEM_P_H
#define QCUSTOM3DITEM_P_H

#include <QtCore/private/qobject_p.h>
#include "qcustom3ditem.h"

QT_BEGIN_NAMESPACE

struct QCustomItemDirtyBitField
{
    bool textureDirty : 1;
    bool meshDirty : 1;
    bool positionDirty : 1;
    bool scalingDirty : 1;
    bool rotationDirty : 1;
    bool visibleDirty : 1;
    bool shadowCastingDirty : 1;

    QCustomItemDirtyBitField()
        : textureDirty(false)
        , meshDirty(false)
        , positionDirty(false)
        , scalingDirty(false)
        , rotationDirty(false)
        , visibleDirty(false)
        , shadowCastingDirty(false)
    {}
};

class QCustom3DItemPrivate : public QObjectPrivate
{
    Q_DECLARE_PUBLIC(QCustom3DItem)

public:
    QCustom3DItemPrivate();
    QCustom3DItemPrivate(const QString &meshFile,
                         QVector3D position,
                         QVector3D scaling,
                         const QQuaternion &rotation);
    ~QCustom3DItemPrivate() override;

    QImage textureImage();
    void clearTextureImage();
    void resetDirtyBits();

public:
    QImage m_textureImage;
    QString m_textureFile;
    QString m_meshFile;
    QVector3D m_position;
    bool m_positionAbsolute;
    QVector3D m_scaling;
    bool m_scalingAbsolute;
    QQuaternion m_rotation;
    bool m_visible;
    bool m_shadowCasting;

    bool m_isLabelItem;
    bool m_isVolumeItem;

    QCustomItemDirtyBitField m_dirtyBits;

private:
    QCustom3DItemPrivate(QCustom3DItemPrivate *d);
};

QT_END_NAMESPACE

#endif