QAxis Class
(Qt3DInput::QAxis)QAxis stores QAbstractAxisInputs used to trigger an input event. More...
Header: | #include <QAxis> |
qmake: | QT += 3dinput |
Since: | Qt 5.7 |
Instantiated By: | Axis |
Inherits: | Qt3DCore::QNode |
Properties
- value : const float
- 2 properties inherited from Qt3DCore::QNode
- 1 property inherited from QObject
Public Functions
QAxis(Qt3DCore::QNode *parent = nullptr) | |
void | addInput(QAbstractAxisInput *input) |
QVector<QAbstractAxisInput *> | inputs() const |
void | removeInput(QAbstractAxisInput *input) |
float | value() const |
- 6 public functions inherited from Qt3DCore::QNode
- 31 public functions inherited from QObject
Signals
void | valueChanged(float value) |
- 3 signals inherited from Qt3DCore::QNode
- 2 signals inherited from QObject
Additional Inherited Members
- 2 public slots inherited from Qt3DCore::QNode
- 1 public slot inherited from QObject
- 1 public variable inherited from QObject
- 10 static public members inherited from QObject
- 2 protected functions inherited from Qt3DCore::QNode
- 9 protected functions inherited from QObject
- 2 protected variables inherited from QObject
Detailed Description
Constructs a new QAxis instance with parent.
QAxis stores QAbstractAxisInputs used to trigger an input event.
Property Documentation
value : const float
The value of the axis.
Access functions:
float | value() const |
Notifier signal:
void | valueChanged(float value) |
Member Function Documentation
QAxis::QAxis(Qt3DCore::QNode *parent = nullptr)
Constructs a new QAxis instance with parent parent.
void QAxis::addInput(QAbstractAxisInput *input)
QAxis::addInput Adds an input for the axis.
See also Qt3DInput::QAbstractAxisInput.
QVector<QAbstractAxisInput *> QAxis::inputs() const
QAxis::inputs
Returns vector of all inputs added to the axis.
void QAxis::removeInput(QAbstractAxisInput *input)
QAxis::removeInput
Removes an input from the axis.
See also Qt3DInput::QAbstractAxisInput.