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 TouchEventSequenceWrapper : public QObject
25 {
26  Q_OBJECT
27 public:
28  TouchEventSequenceWrapper(QTest::QTouchEventSequence eventSequence);
29 
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);
35 
36 private:
37  QTest::QTouchEventSequence m_eventSequence;
38 };
39 
40 QML_DECLARE_TYPE(TouchEventSequenceWrapper)
41 
42 #endif // TOUCH_EVENT_SEQUENCE_WRAPPER_H