17 #ifndef TOUCH_EVENT_SEQUENCE_WRAPPER_H
18 #define TOUCH_EVENT_SEQUENCE_WRAPPER_H
20 #include <QtCore/QObject>
21 #include <QtTest/QTest>
22 #include <QtQml/qqml.h>
24 class TouchEventSequenceWrapper :
public QObject
28 TouchEventSequenceWrapper(QTest::QTouchEventSequence eventSequence);
30 Q_INVOKABLE
void commit(
bool processEvents =
true);
31 Q_INVOKABLE
void move(
int touchId,
int x,
int y);
32 Q_INVOKABLE
void press(
int touchId,
int x,
int y);
33 Q_INVOKABLE
void release(
int touchId,
int x,
int y);
34 Q_INVOKABLE
void stationary(
int touchId);
37 QTest::QTouchEventSequence m_eventSequence;
40 QML_DECLARE_TYPE(TouchEventSequenceWrapper)
42 #endif // TOUCH_EVENT_SEQUENCE_WRAPPER_H