qtestevent.h 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtTest module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QTESTEVENT_H
  40. #define QTESTEVENT_H
  41. #if 0
  42. // inform syncqt
  43. #pragma qt_no_master_include
  44. #endif
  45. #include <QtTest/qtest_global.h>
  46. #ifdef QT_GUI_LIB
  47. #include <QtTest/qtestkeyboard.h>
  48. #include <QtTest/qtestmouse.h>
  49. #endif
  50. #include <QtTest/qtestsystem.h>
  51. #include <QtCore/qlist.h>
  52. #include <stdlib.h>
  53. QT_BEGIN_NAMESPACE
  54. class QTestEvent
  55. {
  56. public:
  57. #ifdef QT_WIDGETS_LIB
  58. virtual void simulate(QWidget *w) = 0;
  59. #endif
  60. virtual QTestEvent *clone() const = 0;
  61. virtual ~QTestEvent() {}
  62. };
  63. #ifdef QT_GUI_LIB
  64. class QTestKeyEvent: public QTestEvent
  65. {
  66. public:
  67. inline QTestKeyEvent(QTest::KeyAction action, Qt::Key key, Qt::KeyboardModifiers modifiers, int delay)
  68. : _action(action), _delay(delay), _modifiers(modifiers), _ascii(0), _key(key) {}
  69. inline QTestKeyEvent(QTest::KeyAction action, char ascii, Qt::KeyboardModifiers modifiers, int delay)
  70. : _action(action), _delay(delay), _modifiers(modifiers),
  71. _ascii(ascii), _key(Qt::Key_unknown) {}
  72. inline QTestEvent *clone() const { return new QTestKeyEvent(*this); }
  73. #ifdef QT_WIDGETS_LIB
  74. inline void simulate(QWidget *w)
  75. {
  76. if (_ascii == 0)
  77. QTest::keyEvent(_action, w, _key, _modifiers, _delay);
  78. else
  79. QTest::keyEvent(_action, w, _ascii, _modifiers, _delay);
  80. }
  81. #endif
  82. protected:
  83. QTest::KeyAction _action;
  84. int _delay;
  85. Qt::KeyboardModifiers _modifiers;
  86. char _ascii;
  87. Qt::Key _key;
  88. };
  89. class QTestKeyClicksEvent: public QTestEvent
  90. {
  91. public:
  92. inline QTestKeyClicksEvent(const QString &keys, Qt::KeyboardModifiers modifiers, int delay)
  93. : _keys(keys), _modifiers(modifiers), _delay(delay) {}
  94. inline QTestEvent *clone() const { return new QTestKeyClicksEvent(*this); }
  95. #ifdef QT_WIDGETS_LIB
  96. inline void simulate(QWidget *w)
  97. {
  98. QTest::keyClicks(w, _keys, _modifiers, _delay);
  99. }
  100. #endif
  101. private:
  102. QString _keys;
  103. Qt::KeyboardModifiers _modifiers;
  104. int _delay;
  105. };
  106. class QTestMouseEvent: public QTestEvent
  107. {
  108. public:
  109. inline QTestMouseEvent(QTest::MouseAction action, Qt::MouseButton button,
  110. Qt::KeyboardModifiers modifiers, QPoint position, int delay)
  111. : _action(action), _button(button), _modifiers(modifiers), _pos(position), _delay(delay) {}
  112. inline QTestEvent *clone() const { return new QTestMouseEvent(*this); }
  113. #ifdef QT_WIDGETS_LIB
  114. inline void simulate(QWidget *w)
  115. {
  116. QTest::mouseEvent(_action, w, _button, _modifiers, _pos, _delay);
  117. }
  118. #endif
  119. private:
  120. QTest::MouseAction _action;
  121. Qt::MouseButton _button;
  122. Qt::KeyboardModifiers _modifiers;
  123. QPoint _pos;
  124. int _delay;
  125. };
  126. #endif //QT_GUI_LIB
  127. class QTestDelayEvent: public QTestEvent
  128. {
  129. public:
  130. inline QTestDelayEvent(int msecs): _delay(msecs) {}
  131. inline QTestEvent *clone() const { return new QTestDelayEvent(*this); }
  132. #ifdef QT_WIDGETS_LIB
  133. inline void simulate(QWidget * /*w*/) { QTest::qWait(_delay); }
  134. #endif
  135. private:
  136. int _delay;
  137. };
  138. class QTestEventList: public QList<QTestEvent *>
  139. {
  140. public:
  141. inline QTestEventList() {}
  142. inline QTestEventList(const QTestEventList &other): QList<QTestEvent *>()
  143. { for (int i = 0; i < other.count(); ++i) append(other.at(i)->clone()); }
  144. inline ~QTestEventList()
  145. { clear(); }
  146. inline void clear()
  147. { qDeleteAll(*this); QList<QTestEvent *>::clear(); }
  148. #ifdef QT_GUI_LIB
  149. inline void addKeyClick(Qt::Key qtKey, Qt::KeyboardModifiers modifiers = Qt::NoModifier, int msecs = -1)
  150. { addKeyEvent(QTest::Click, qtKey, modifiers, msecs); }
  151. inline void addKeyPress(Qt::Key qtKey, Qt::KeyboardModifiers modifiers = Qt::NoModifier, int msecs = -1)
  152. { addKeyEvent(QTest::Press, qtKey, modifiers, msecs); }
  153. inline void addKeyRelease(Qt::Key qtKey, Qt::KeyboardModifiers modifiers = Qt::NoModifier, int msecs = -1)
  154. { addKeyEvent(QTest::Release, qtKey, modifiers, msecs); }
  155. inline void addKeyEvent(QTest::KeyAction action, Qt::Key qtKey,
  156. Qt::KeyboardModifiers modifiers = Qt::NoModifier, int msecs = -1)
  157. { append(new QTestKeyEvent(action, qtKey, modifiers, msecs)); }
  158. inline void addKeyClick(char ascii, Qt::KeyboardModifiers modifiers = Qt::NoModifier, int msecs = -1)
  159. { addKeyEvent(QTest::Click, ascii, modifiers, msecs); }
  160. inline void addKeyPress(char ascii, Qt::KeyboardModifiers modifiers = Qt::NoModifier, int msecs = -1)
  161. { addKeyEvent(QTest::Press, ascii, modifiers, msecs); }
  162. inline void addKeyRelease(char ascii, Qt::KeyboardModifiers modifiers = Qt::NoModifier, int msecs = -1)
  163. { addKeyEvent(QTest::Release, ascii, modifiers, msecs); }
  164. inline void addKeyClicks(const QString &keys, Qt::KeyboardModifiers modifiers = Qt::NoModifier, int msecs = -1)
  165. { append(new QTestKeyClicksEvent(keys, modifiers, msecs)); }
  166. inline void addKeyEvent(QTest::KeyAction action, char ascii, Qt::KeyboardModifiers modifiers = Qt::NoModifier, int msecs = -1)
  167. { append(new QTestKeyEvent(action, ascii, modifiers, msecs)); }
  168. inline void addMousePress(Qt::MouseButton button, Qt::KeyboardModifiers stateKey = Qt::KeyboardModifiers(),
  169. QPoint pos = QPoint(), int delay=-1)
  170. { append(new QTestMouseEvent(QTest::MousePress, button, stateKey, pos, delay)); }
  171. inline void addMouseRelease(Qt::MouseButton button, Qt::KeyboardModifiers stateKey = Qt::KeyboardModifiers(),
  172. QPoint pos = QPoint(), int delay=-1)
  173. { append(new QTestMouseEvent(QTest::MouseRelease, button, stateKey, pos, delay)); }
  174. inline void addMouseClick(Qt::MouseButton button, Qt::KeyboardModifiers stateKey = Qt::KeyboardModifiers(),
  175. QPoint pos = QPoint(), int delay=-1)
  176. { append(new QTestMouseEvent(QTest::MouseClick, button, stateKey, pos, delay)); }
  177. inline void addMouseDClick(Qt::MouseButton button, Qt::KeyboardModifiers stateKey = Qt::KeyboardModifiers(),
  178. QPoint pos = QPoint(), int delay=-1)
  179. { append(new QTestMouseEvent(QTest::MouseDClick, button, stateKey, pos, delay)); }
  180. inline void addMouseMove(QPoint pos = QPoint(), int delay=-1)
  181. { append(new QTestMouseEvent(QTest::MouseMove, Qt::NoButton, Qt::KeyboardModifiers(), pos, delay)); }
  182. #endif //QT_GUI_LIB
  183. inline void addDelay(int msecs)
  184. { append(new QTestDelayEvent(msecs)); }
  185. #ifdef QT_WIDGETS_LIB
  186. inline void simulate(QWidget *w)
  187. {
  188. for (int i = 0; i < count(); ++i)
  189. at(i)->simulate(w);
  190. }
  191. #endif
  192. };
  193. QT_END_NAMESPACE
  194. Q_DECLARE_METATYPE(QTestEventList)
  195. #endif