Unity 8
TouchEventSequenceWrapper.h
1 /*
2  * Copyright 2013 Canonical Ltd.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 3.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef TOUCH_EVENT_SEQUENCE_WRAPPER_H
18 #define TOUCH_EVENT_SEQUENCE_WRAPPER_H
19 
20 #include <QtCore/QObject>
21 #include <QtTest/QTest>
22 #include <QtQml/qqml.h>
23 
24 class QQuickItem;
25 
26 class TouchEventSequenceWrapper : public QObject
27 {
28  Q_OBJECT
29 public:
30  TouchEventSequenceWrapper(QTest::QTouchEventSequence eventSequence, QQuickItem *item);
31 
32  Q_INVOKABLE void commit(bool processEvents = true);
33  Q_INVOKABLE void move(int touchId, int x, int y);
34  Q_INVOKABLE void press(int touchId, int x, int y);
35  Q_INVOKABLE void release(int touchId, int x, int y);
36  Q_INVOKABLE void stationary(int touchId);
37 
38 private:
39  QTest::QTouchEventSequence m_eventSequence;
40  QQuickItem *m_item;
41 };
42 
43 QML_DECLARE_TYPE(TouchEventSequenceWrapper)
44 
45 #endif // TOUCH_EVENT_SEQUENCE_WRAPPER_H