aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/qquickmultipointtoucharea_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/quick/items/qquickmultipointtoucharea_p.h')
-rw-r--r--src/quick/items/qquickmultipointtoucharea_p.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/quick/items/qquickmultipointtoucharea_p.h b/src/quick/items/qquickmultipointtoucharea_p.h
index dbce42853b..d182ab85cf 100644
--- a/src/quick/items/qquickmultipointtoucharea_p.h
+++ b/src/quick/items/qquickmultipointtoucharea_p.h
@@ -217,15 +217,21 @@ public:
}
Q_SIGNALS:
- void touchPointsPressed(const QList<QObject*> &touchPoints);
- void touchPointsUpdated(const QList<QObject*> &touchPoints);
- void touchPointsReleased(const QList<QObject*> &touchPoints);
- void touchPointsCanceled(const QList<QObject*> &touchPoints);
+ void pressed(const QList<QObject*> &touchPoints);
+ void updated(const QList<QObject*> &touchPoints);
+ void released(const QList<QObject*> &touchPoints);
+ void canceled(const QList<QObject*> &touchPoints);
void gestureStarted(QQuickGrabGestureEvent *gesture);
void touchUpdated(const QList<QObject*> &touchPoints);
void minimumTouchPointsChanged();
void maximumTouchPointsChanged();
+ //### deprecated, will be removed for 5.0
+ void touchPointsPressed(const QList<QObject*> &touchPoints);
+ void touchPointsUpdated(const QList<QObject*> &touchPoints);
+ void touchPointsReleased(const QList<QObject*> &touchPoints);
+ void touchPointsCanceled(const QList<QObject*> &touchPoints);
+
protected:
void touchEvent(QTouchEvent *);
bool childMouseEventFilter(QQuickItem *i, QEvent *event);