summaryrefslogtreecommitdiffstats
path: root/src/input/frontend
diff options
context:
space:
mode:
authorSean Harmer <sean.harmer@kdab.com>2015-12-01 12:17:24 +0000
committerSean Harmer <sean.harmer@kdab.com>2015-12-04 16:22:56 +0000
commitf01d9a60e9184a3595e5128e1af3c9b0be6a1d80 (patch)
tree600243a52ac1d41809e9ee4585be7288a44e4128 /src/input/frontend
parent39dece190a3954d0b1b0fca1e41bd826df44e4cf (diff)
Add signal and normalise signatures in QAxisActionHandler
Change-Id: I27c854f56b9f3f2eee2f7ba7f60e480dc67c7491 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'src/input/frontend')
-rw-r--r--src/input/frontend/qaxisactionhandler.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/input/frontend/qaxisactionhandler.h b/src/input/frontend/qaxisactionhandler.h
index e77e088b2..e5df8f534 100644
--- a/src/input/frontend/qaxisactionhandler.h
+++ b/src/input/frontend/qaxisactionhandler.h
@@ -64,8 +64,9 @@ public Q_SLOTS:
Q_SIGNALS:
void logicalDeviceChanged(Qt3DInput::QLogicalDevice *logicalDevice);
- void actionStarted(const QString &name);
- void actionFinished(const QString &name);
+ void actionStarted(QString name);
+ void actionFinished(QString name);
+ void axisValueChanged(QString name, float axisValue);
protected:
Q_DECLARE_PRIVATE(QAxisActionHandler)