blob: dcc81cd8e9a5461348aa3418c6a8f65a8137f057 (
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
|
// Copyright (C) 2015 Klaralvdalens Datakonsult AB (KDAB).
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qlogicaldevice.h"
#include "qlogicaldevice_p.h"
#include <Qt3DInput/qaction.h>
#include <Qt3DInput/qaxis.h>
QT_BEGIN_NAMESPACE
namespace Qt3DInput {
QLogicalDevicePrivate::QLogicalDevicePrivate()
: Qt3DCore::QComponentPrivate()
{
}
QLogicalDevicePrivate::~QLogicalDevicePrivate()
{
}
/*!
\class Qt3DInput::QLogicalDevice
\inmodule Qt3DInput
\inherits Qt3DCore::QNode
\brief QLogicalDevice allows the user to define a set of actions that they wish to use within an application.
\since 5.6
*/
/*!
\qmltype LogicalDevice
\inqmlmodule Qt3D.Input
\nativetype Qt3DInput::QLogicalDevice
\brief QML frontend for the Qt3DInput::QLogicalDevice C++ class.
Allows the user to define a set of actions that they wish to use within an application.
\qml
LogicalDevice {
id: keyboardLogicalDevice
actions: [
Action {
name: "fire"
inputs: [
ActionInput {
sourceDevice: keyboardSourceDevice
keys: [Qt.Key_Space]
},
InputChord {
tolerance: 10
inputs: [
ActionInput {
sourceDevice: keyboardSourceDevice
keys: [Qt.Key_A]
},
ActionInput {
sourceDevice: keyboardSourceDevice
keys: [Qt.Key_S]
}
]
}
]
},
Action {
name: "reload"
inputs: [
ActionInput {
sourceDevice: keyboardSourceDevice
keys: [Qt.Key_Alt]
}
]
},
Action {
name: "combo"
inputs: [
InputSequence {
interval: 1000
timeout: 10000
inputs: [
ActionInput {
sourceDevice: keyboardSourceDevice
keys: [Qt.Key_G]
},
ActionInput {
sourceDevice: keyboardSourceDevice
keys: [Qt.Key_D]
},
ActionInput {
sourceDevice: keyboardSourceDevice
keys: [Qt.Key_J]
}
]
}
]
}
]
}
\endqml
\since 5.6
*/
/*!
Constructs a new QLogicalDevice instance with parent \a parent.
*/
QLogicalDevice::QLogicalDevice(Qt3DCore::QNode *parent)
: Qt3DCore::QComponent(*new QLogicalDevicePrivate(), parent)
{
}
QLogicalDevice::~QLogicalDevice()
{
}
/*!
\qmlproperty list<Action> Qt3D.Input::LogicalDevice::actions
The actions used by this Logical Device
*/
/*!
Add an \a action to the list of actions.
*/
void QLogicalDevice::addAction(QAction *action)
{
Q_D(QLogicalDevice);
if (!d->m_actions.contains(action)) {
d->m_actions.push_back(action);
// Force creation in backend by setting parent
if (!action->parent())
action->setParent(this);
// Ensures proper bookkeeping
d->registerDestructionHelper(action, &QLogicalDevice::removeAction, d->m_actions);
d->update();
}
}
/*!
Remove an \a action from the list of actions.
*/
void QLogicalDevice::removeAction(QAction *action)
{
Q_D(QLogicalDevice);
if (d->m_actions.contains(action)) {
d->update();
d->m_actions.removeOne(action);
// Remove bookkeeping connection
d->unregisterDestructionHelper(action);
}
}
/*!
Returns the list of actions.
*/
QList<QAction *> QLogicalDevice::actions() const
{
Q_D(const QLogicalDevice);
return d->m_actions;
}
/*!
\qmlproperty list<Axis> Qt3D.Input::LogicalDevice::axis
The axis used by this Logical Device
*/
/*!
Add an \a axis to the list of axis.
*/
void QLogicalDevice::addAxis(QAxis *axis)
{
Q_D(QLogicalDevice);
if (!d->m_axes.contains(axis)) {
d->m_axes.push_back(axis);
// Force creation in backend by setting parent
if (!axis->parent())
axis->setParent(this);
// Ensures proper bookkeeping
d->registerDestructionHelper(axis, &QLogicalDevice::removeAxis, d->m_axes);
d->update();
}
}
/*!
Remove an \a axis drom the list of axis.
*/
void QLogicalDevice::removeAxis(QAxis *axis)
{
Q_D(QLogicalDevice);
if (d->m_axes.contains(axis)) {
d->update();
d->m_axes.removeOne(axis);
// Remove bookkeeping connection
d->unregisterDestructionHelper(axis);
}
}
/*!
Returns the list of axis.
*/
QList<QAxis *> QLogicalDevice::axes() const
{
Q_D(const QLogicalDevice);
return d->m_axes;
}
} // Qt3DInput
QT_END_NAMESPACE
#include "moc_qlogicaldevice.cpp"
|