blob: 817b7bb1a2b05268f0de4466e297f6eb8148d19b (
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
|
// Copyright (C) 2016 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 "qanalogaxisinput.h"
#include "qanalogaxisinput_p.h"
#include <Qt3DInput/qabstractphysicaldevice.h>
QT_BEGIN_NAMESPACE
namespace Qt3DInput {
/*!
* \qmltype AnalogAxisInput
* \nativetype Qt3DInput::QAnalogAxisInput
* \inqmlmodule Qt3D.Input
* \brief QML frontend for QAnalogAxisInput C++ class.
* \since 5.7
* \TODO
*
*/
/*!
* \class Qt3DInput::QAnalogAxisInput
* \inheaderfile Qt3DInput/QAnalogAxisInput
* \inmodule Qt3DInput
* \brief An axis input controlled by an analog input
* \since 5.7
* The axis value is controlled like a traditional analog input such as a joystick.
*
*
*/
/*!
\qmlproperty int AnalogAxisInput::axis
Holds the axis for the AnalogAxisInput.
*/
/*!
Constructs a new QAnalogAxisInput instance with \a parent.
*/
QAnalogAxisInput::QAnalogAxisInput(Qt3DCore::QNode *parent)
: QAbstractAxisInput(*new QAnalogAxisInputPrivate, parent)
{
}
/*! \internal */
QAnalogAxisInput::~QAnalogAxisInput()
{
}
/*!
\property Qt3DInput::QAnalogAxisInput::axis
Axis for the analog input.
\sa Qt3DInput::QMouseDevice::Axis
*/
void QAnalogAxisInput::setAxis(int axis)
{
Q_D(QAnalogAxisInput);
if (d->m_axis != axis) {
d->m_axis = axis;
emit axisChanged(axis);
}
}
int QAnalogAxisInput::axis() const
{
Q_D(const QAnalogAxisInput);
return d->m_axis;
}
} // Qt3DInput
QT_END_NAMESPACE
#include "moc_qanalogaxisinput.cpp"
|