qtestmouse.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  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 QTESTMOUSE_H
  40. #define QTESTMOUSE_H
  41. #if 0
  42. // inform syncqt
  43. #pragma qt_no_master_include
  44. #endif
  45. #include <QtTest/qtest_global.h>
  46. #include <QtTest/qtestassert.h>
  47. #include <QtTest/qtestsystem.h>
  48. #include <QtTest/qtestspontaneevent.h>
  49. #include <QtCore/qpoint.h>
  50. #include <QtCore/qstring.h>
  51. #include <QtCore/qpointer.h>
  52. #include <QtGui/qevent.h>
  53. #include <QtGui/qwindow.h>
  54. #ifdef QT_WIDGETS_LIB
  55. #include <QtWidgets/qapplication.h>
  56. #include <QtWidgets/qwidget.h>
  57. #endif
  58. #include <QtCore/QDebug>
  59. QT_BEGIN_NAMESPACE
  60. Q_GUI_EXPORT void qt_handleMouseEvent(QWindow *w, const QPointF &local, const QPointF &global, Qt::MouseButtons b, Qt::KeyboardModifiers mods, int timestamp);
  61. namespace QTest
  62. {
  63. enum MouseAction { MousePress, MouseRelease, MouseClick, MouseDClick, MouseMove };
  64. extern Q_TESTLIB_EXPORT Qt::MouseButton lastMouseButton;
  65. extern Q_TESTLIB_EXPORT int lastMouseTimestamp;
  66. static void waitForEvents()
  67. {
  68. #ifdef Q_OS_MAC
  69. QTest::qWait(20);
  70. #else
  71. qApp->processEvents();
  72. #endif
  73. }
  74. static void mouseEvent(MouseAction action, QWindow *window, Qt::MouseButton button,
  75. Qt::KeyboardModifiers stateKey, QPoint pos, int delay=-1)
  76. {
  77. QTEST_ASSERT(window);
  78. extern int Q_TESTLIB_EXPORT defaultMouseDelay();
  79. // pos is in window local coordinates
  80. if (window->geometry().width() <= pos.x() || window->geometry().height() <= pos.y()) {
  81. QTest::qWarn("Mouse event occurs outside of target window.");
  82. }
  83. if (delay == -1 || delay < defaultMouseDelay())
  84. delay = defaultMouseDelay();
  85. if (delay > 0) {
  86. QTest::qWait(delay);
  87. lastMouseTimestamp += delay;
  88. }
  89. if (pos.isNull())
  90. pos = QPoint(window->width() / 2, window->height() / 2);
  91. QTEST_ASSERT(uint(stateKey) == 0 || stateKey & Qt::KeyboardModifierMask);
  92. stateKey &= static_cast<unsigned int>(Qt::KeyboardModifierMask);
  93. QPointF global = window->mapToGlobal(pos);
  94. QPointer<QWindow> w(window);
  95. switch (action)
  96. {
  97. case MouseDClick:
  98. qt_handleMouseEvent(w, pos, global, button, stateKey, ++lastMouseTimestamp);
  99. qt_handleMouseEvent(w, pos, global, Qt::NoButton, stateKey, ++lastMouseTimestamp);
  100. // fall through
  101. case MousePress:
  102. case MouseClick:
  103. qt_handleMouseEvent(w, pos, global, button, stateKey, ++lastMouseTimestamp);
  104. lastMouseButton = button;
  105. if (action == MousePress)
  106. break;
  107. // fall through
  108. case MouseRelease:
  109. qt_handleMouseEvent(w, pos, global, Qt::NoButton, stateKey, ++lastMouseTimestamp);
  110. lastMouseTimestamp += 500; // avoid double clicks being generated
  111. lastMouseButton = Qt::NoButton;
  112. break;
  113. case MouseMove:
  114. qt_handleMouseEvent(w, pos, global, lastMouseButton, stateKey, ++lastMouseTimestamp);
  115. // No QCursor::setPos() call here. That could potentially result in mouse events sent by the windowing system
  116. // which is highly undesired here. Tests must avoid relying on QCursor.
  117. break;
  118. default:
  119. QTEST_ASSERT(false);
  120. }
  121. waitForEvents();
  122. }
  123. inline void mousePress(QWindow *window, Qt::MouseButton button,
  124. Qt::KeyboardModifiers stateKey = Qt::KeyboardModifiers(),
  125. QPoint pos = QPoint(), int delay=-1)
  126. { mouseEvent(MousePress, window, button, stateKey, pos, delay); }
  127. inline void mouseRelease(QWindow *window, Qt::MouseButton button,
  128. Qt::KeyboardModifiers stateKey = Qt::KeyboardModifiers(),
  129. QPoint pos = QPoint(), int delay=-1)
  130. { mouseEvent(MouseRelease, window, button, stateKey, pos, delay); }
  131. inline void mouseClick(QWindow *window, Qt::MouseButton button,
  132. Qt::KeyboardModifiers stateKey = Qt::KeyboardModifiers(),
  133. QPoint pos = QPoint(), int delay=-1)
  134. { mouseEvent(MouseClick, window, button, stateKey, pos, delay); }
  135. inline void mouseDClick(QWindow *window, Qt::MouseButton button,
  136. Qt::KeyboardModifiers stateKey = Qt::KeyboardModifiers(),
  137. QPoint pos = QPoint(), int delay=-1)
  138. { mouseEvent(MouseDClick, window, button, stateKey, pos, delay); }
  139. inline void mouseMove(QWindow *window, QPoint pos = QPoint(), int delay=-1)
  140. { mouseEvent(MouseMove, window, Qt::NoButton, Qt::KeyboardModifiers(), pos, delay); }
  141. #ifdef QT_WIDGETS_LIB
  142. static void mouseEvent(MouseAction action, QWidget *widget, Qt::MouseButton button,
  143. Qt::KeyboardModifiers stateKey, QPoint pos, int delay=-1)
  144. {
  145. QTEST_ASSERT(widget);
  146. if (pos.isNull())
  147. pos = widget->rect().center();
  148. #ifdef QTEST_QPA_MOUSE_HANDLING
  149. QWindow *w = widget->window()->windowHandle();
  150. QTEST_ASSERT(w);
  151. mouseEvent(action, w, button, stateKey, w->mapFromGlobal(widget->mapToGlobal(pos)), delay);
  152. #else
  153. extern int Q_TESTLIB_EXPORT defaultMouseDelay();
  154. if (delay == -1 || delay < defaultMouseDelay())
  155. delay = defaultMouseDelay();
  156. if (delay > 0)
  157. QTest::qWait(delay);
  158. if (action == MouseClick) {
  159. mouseEvent(MousePress, widget, button, stateKey, pos);
  160. mouseEvent(MouseRelease, widget, button, stateKey, pos);
  161. return;
  162. }
  163. QTEST_ASSERT(stateKey == 0 || stateKey & Qt::KeyboardModifierMask);
  164. stateKey &= static_cast<unsigned int>(Qt::KeyboardModifierMask);
  165. QMouseEvent me(QEvent::User, QPoint(), Qt::LeftButton, button, stateKey);
  166. switch (action)
  167. {
  168. case MousePress:
  169. me = QMouseEvent(QEvent::MouseButtonPress, pos, widget->mapToGlobal(pos), button, button, stateKey);
  170. break;
  171. case MouseRelease:
  172. me = QMouseEvent(QEvent::MouseButtonRelease, pos, widget->mapToGlobal(pos), button, Qt::MouseButton(), stateKey);
  173. break;
  174. case MouseDClick:
  175. me = QMouseEvent(QEvent::MouseButtonDblClick, pos, widget->mapToGlobal(pos), button, button, stateKey);
  176. break;
  177. case MouseMove:
  178. QCursor::setPos(widget->mapToGlobal(pos));
  179. #ifdef Q_OS_MAC
  180. QTest::qWait(20);
  181. #else
  182. qApp->processEvents();
  183. #endif
  184. return;
  185. default:
  186. QTEST_ASSERT(false);
  187. }
  188. QSpontaneKeyEvent::setSpontaneous(&me);
  189. if (!qApp->notify(widget, &me)) {
  190. static const char *const mouseActionNames[] =
  191. { "MousePress", "MouseRelease", "MouseClick", "MouseDClick", "MouseMove" };
  192. QString warning = QString::fromLatin1("Mouse event \"%1\" not accepted by receiving widget");
  193. QTest::qWarn(warning.arg(QString::fromLatin1(mouseActionNames[static_cast<int>(action)])).toLatin1().data());
  194. }
  195. #endif
  196. }
  197. inline void mousePress(QWidget *widget, Qt::MouseButton button,
  198. Qt::KeyboardModifiers stateKey = Qt::KeyboardModifiers(),
  199. QPoint pos = QPoint(), int delay=-1)
  200. { mouseEvent(MousePress, widget, button, stateKey, pos, delay); }
  201. inline void mouseRelease(QWidget *widget, Qt::MouseButton button,
  202. Qt::KeyboardModifiers stateKey = Qt::KeyboardModifiers(),
  203. QPoint pos = QPoint(), int delay=-1)
  204. { mouseEvent(MouseRelease, widget, button, stateKey, pos, delay); }
  205. inline void mouseClick(QWidget *widget, Qt::MouseButton button,
  206. Qt::KeyboardModifiers stateKey = Qt::KeyboardModifiers(),
  207. QPoint pos = QPoint(), int delay=-1)
  208. { mouseEvent(MouseClick, widget, button, stateKey, pos, delay); }
  209. inline void mouseDClick(QWidget *widget, Qt::MouseButton button,
  210. Qt::KeyboardModifiers stateKey = Qt::KeyboardModifiers(),
  211. QPoint pos = QPoint(), int delay=-1)
  212. { mouseEvent(MouseDClick, widget, button, stateKey, pos, delay); }
  213. inline void mouseMove(QWidget *widget, QPoint pos = QPoint(), int delay=-1)
  214. { mouseEvent(MouseMove, widget, Qt::NoButton, Qt::KeyboardModifiers(), pos, delay); }
  215. #endif // QT_WIDGETS_LIB
  216. }
  217. QT_END_NAMESPACE
  218. #endif // QTESTMOUSE_H