blob: d647c63487e580465812942f578247b9eb571a6d (
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#ifndef QQUICK3DXRITEM_P_H
#define QQUICK3DXRITEM_P_H
#include <QQuickItem>
#include <QtQuick3D/private/qquick3dnode_p.h>
#include <QtQuick/private/qquicktranslate_p.h>
//
// W A R N I N G
// -------------
//
// This file is not part of the Qt 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.
//
QT_BEGIN_NAMESPACE
class QQuick3DXrItemPrivate;
class QQuick3DXrView;
class QQuick3DXrItem : public QQuick3DNode
{
Q_OBJECT
Q_DECLARE_PRIVATE(QQuick3DXrItem)
Q_PROPERTY(QQuickItem *contentItem READ contentItem WRITE setContentItem NOTIFY contentItemChanged FINAL)
Q_PROPERTY(qreal pixelsPerUnit READ pixelsPerUnit WRITE setPixelsPerUnit NOTIFY pixelsPerUnitChanged FINAL)
Q_PROPERTY(bool manualPixelsPerUnit READ manualPixelsPerUnit WRITE setManualPixelsPerUnit NOTIFY manualPixelsPerUnitChanged FINAL)
Q_PROPERTY(bool automaticHeight READ automaticHeight WRITE setAutomaticHeight NOTIFY automaticHeightChanged FINAL)
Q_PROPERTY(bool automaticWidth READ automaticWidth WRITE setAutomaticWidth NOTIFY automaticWidthChanged FINAL)
Q_PROPERTY(qreal width READ width WRITE setWidth NOTIFY widthChanged FINAL)
Q_PROPERTY(qreal height READ height WRITE setHeight NOTIFY heightChanged FINAL)
Q_PROPERTY(QColor color READ color WRITE setColor NOTIFY colorChanged FINAL)
QML_NAMED_ELEMENT(XrItem)
QML_ADDED_IN_VERSION(6, 8)
public:
struct TouchState
{
int pointId = -1;
QQuick3DXrItem *target = nullptr;
bool grabbed = false;
bool pressed = false;
qreal touchDistance = 1e6;
QPointF cursorPos;
QVector3D previous;
qint64 timestamp;
};
explicit QQuick3DXrItem(QQuick3DNode *parent = nullptr);
~QQuick3DXrItem() override;
QQuickItem *contentItem() const;
void setContentItem(QQuickItem *newContentItem);
qreal pixelsPerUnit() const;
void setPixelsPerUnit(qreal newPixelsPerUnit);
bool manualPixelsPerUnit() const;
void setManualPixelsPerUnit(bool newManualPixelsPerUnit);
qreal width() const;
void setWidth(qreal newWidth);
qreal height() const;
void setHeight(qreal newHeight);
QColor color() const;
void setColor(const QColor &newColor);
bool automaticHeight() const;
void setAutomaticHeight(bool newAutomaticHeight);
bool automaticWidth() const;
void setAutomaticWidth(bool newAutomaticHeight);
void componentComplete() override;
bool handleVirtualTouch(QQuick3DXrView *view, const QVector3D &pos, TouchState *touchState, QVector3D *offset);
signals:
void contentItemChanged();
void pixelsPerUnitChanged();
void flagsChanged();
void manualPixelsPerUnitChanged();
void widthChanged();
void heightChanged();
void colorChanged();
void automaticHeightChanged();
void automaticWidthChanged();
};
QT_END_NAMESPACE
#endif // QQUICK3DXRITEM_P_H
|