summaryrefslogtreecommitdiffstats
path: root/src/input/frontend/qaxisinput.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/frontend/qaxisinput.h')
-rw-r--r--src/input/frontend/qaxisinput.h19
1 files changed, 9 insertions, 10 deletions
diff --git a/src/input/frontend/qaxisinput.h b/src/input/frontend/qaxisinput.h
index b28e85a3a..9ba3f8ef1 100644
--- a/src/input/frontend/qaxisinput.h
+++ b/src/input/frontend/qaxisinput.h
@@ -60,23 +60,22 @@ public:
explicit QAxisInput(Qt3DCore::QNode *parent = Q_NULLPTR);
~QAxisInput();
- void setSourceDevice(QAbstractPhysicalDevice *sourceDevice);
QAbstractPhysicalDevice *sourceDevice() const;
-
- void setScale(float scale);
float scale() const;
-
- void setAxis(int axis);
int axis() const;
+ QVariantList keys() const;
+public Q_SLOTS:
+ void setSourceDevice(QAbstractPhysicalDevice *sourceDevice);
+ void setScale(float scale);
+ void setAxis(int axis);
void setKeys(const QVariantList &keys);
- QVariantList keys() const;
Q_SIGNALS:
- void sourceDeviceChanged();
- void scaleChanged();
- void axisChanged();
- void keysChanged();
+ void sourceDeviceChanged(QAbstractPhysicalDevice *sourceDevice);
+ void scaleChanged(float scale);
+ void axisChanged(int axis);
+ void keysChanged(const QVariantList &keys);
protected:
void copy(const Qt3DCore::QNode *ref) Q_DECL_OVERRIDE;