summaryrefslogtreecommitdiffstats
path: root/src/input/frontend/qaxissetting.h
diff options
context:
space:
mode:
authorRobert Brock <robert.brock@kdab.com>2016-02-25 15:47:21 +0000
committerSean Harmer <sean.harmer@kdab.com>2016-02-28 19:29:36 +0000
commitbbd7a9ff02487796e83d31c53ea3075c5eef4b07 (patch)
tree50d59bcc7543c37a8c188131f857cf4e5c7974f3 /src/input/frontend/qaxissetting.h
parent921ffb37ca4908587cda5f519c357a6c4e1cb825 (diff)
QAxisSetting renamed filter to smooth
As per API review Change-Id: I3d539c6ab5fc80dc67f2d1058386f793196a8231 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/input/frontend/qaxissetting.h')
-rw-r--r--src/input/frontend/qaxissetting.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/input/frontend/qaxissetting.h b/src/input/frontend/qaxissetting.h
index 52b2dad4f..9c2807182 100644
--- a/src/input/frontend/qaxissetting.h
+++ b/src/input/frontend/qaxissetting.h
@@ -56,7 +56,7 @@ class QT3DINPUTSHARED_EXPORT QAxisSetting : public Qt3DCore::QNode
Q_OBJECT
Q_PROPERTY(float deadZoneRadius READ deadZoneRadius WRITE setDeadZoneRadius NOTIFY deadZoneRadiusChanged)
Q_PROPERTY(QVariantList axes READ axes WRITE setAxes NOTIFY axesChanged)
- Q_PROPERTY(bool filter READ isFilterEnabled WRITE setFilterEnabled NOTIFY filterChanged)
+ Q_PROPERTY(bool smooth READ isSmoothEnabled WRITE setSmoothEnabled NOTIFY smoothChanged)
public:
explicit QAxisSetting(Qt3DCore::QNode *parent = Q_NULLPTR);
@@ -64,17 +64,17 @@ public:
float deadZoneRadius() const;
QVariantList axes() const;
- bool isFilterEnabled() const;
+ bool isSmoothEnabled() const;
public Q_SLOTS:
void setDeadZoneRadius(float deadZoneRadius);
void setAxes(const QVariantList &axes);
- void setFilterEnabled(bool enabled);
+ void setSmoothEnabled(bool enabled);
Q_SIGNALS:
void deadZoneRadiusChanged(float deadZoneRadius);
void axesChanged(QVariantList axes);
- void filterChanged(bool filter);
+ void smoothChanged(bool smooth);
protected:
void copy(const Qt3DCore::QNode *ref) Q_DECL_OVERRIDE;