Lomiri
TouchEventSequenceWrapper.h
1 /*
2  * Copyright 2013-2016 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 #include <QPointer>
25 
26 class QQuickItem;
27 
28 class TouchEventSequenceWrapper : public QObject
29 {
30  Q_OBJECT
31 public:
32  TouchEventSequenceWrapper(QTest::QTouchEventSequence eventSequence, QQuickItem *item);
33 
34  Q_INVOKABLE void commit(bool processEvents = true);
35  Q_INVOKABLE void move(int touchId, int x, int y);
36  Q_INVOKABLE void press(int touchId, int x, int y);
37  Q_INVOKABLE void release(int touchId, int x, int y);
38  Q_INVOKABLE void stationary(int touchId);
39 
40 private:
41  QTest::QTouchEventSequence m_eventSequence;
42  QPointer<QQuickItem> m_item;
43 };
44 
45 QML_DECLARE_TYPE(TouchEventSequenceWrapper)
46 
47 #endif // TOUCH_EVENT_SEQUENCE_WRAPPER_H