qtestmouse.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:5k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtTest module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QTESTMOUSE_H
  38. #define QTESTMOUSE_H
  39. #if 0
  40. // inform syncqt
  41. #pragma qt_no_master_include
  42. #endif
  43. #include <QtTest/qtest_global.h>
  44. #include <QtTest/qtestassert.h>
  45. #include <QtTest/qtestsystem.h>
  46. #include <QtTest/qtestspontaneevent.h>
  47. #include <QtCore/qpoint.h>
  48. #include <QtCore/qstring.h>
  49. #include <QtGui/qapplication.h>
  50. #include <QtGui/qevent.h>
  51. #include <QtGui/qwidget.h>
  52. QT_BEGIN_HEADER
  53. QT_BEGIN_NAMESPACE
  54. QT_MODULE(Test)
  55. namespace QTest
  56. {
  57.     enum MouseAction { MousePress, MouseRelease, MouseClick, MouseDClick, MouseMove };
  58.     static void mouseEvent(MouseAction action, QWidget *widget, Qt::MouseButton button,
  59.                            Qt::KeyboardModifiers stateKey, QPoint pos, int delay=-1)
  60.     {
  61.         QTEST_ASSERT(widget);
  62.         extern int Q_TESTLIB_EXPORT defaultMouseDelay();
  63.         if (delay == -1 || delay < defaultMouseDelay())
  64.             delay = defaultMouseDelay();
  65.         if(delay > 0)
  66.             QTest::qWait(delay);
  67.         if (pos.isNull())
  68.             pos = widget->rect().center();
  69.         if (action == MouseClick) {
  70.             mouseEvent(MousePress, widget, button, stateKey, pos);
  71.             mouseEvent(MouseRelease, widget, button, stateKey, pos);
  72.             return;
  73.         }
  74.         QTEST_ASSERT(button == Qt::NoButton || button & Qt::MouseButtonMask);
  75.         QTEST_ASSERT(stateKey == 0 || stateKey & Qt::KeyboardModifierMask);
  76.         stateKey &= Qt::KeyboardModifierMask;
  77.         QMouseEvent me(QEvent::User, QPoint(), Qt::LeftButton, button, stateKey);
  78.         switch (action)
  79.         {
  80.             case MousePress:
  81.                 me = QMouseEvent(QEvent::MouseButtonPress, pos, widget->mapToGlobal(pos), button, button, stateKey);
  82.                 break;
  83.             case MouseRelease:
  84.                 me = QMouseEvent(QEvent::MouseButtonRelease, pos, widget->mapToGlobal(pos), button, 0, stateKey);
  85.                 break;
  86.             case MouseDClick:
  87.                 me = QMouseEvent(QEvent::MouseButtonDblClick, pos, widget->mapToGlobal(pos), button, button, stateKey);
  88.                 break;
  89.             case MouseMove:
  90.                 QCursor::setPos(widget->mapToGlobal(pos));
  91.                 qApp->processEvents();
  92.                 return;
  93.             default:
  94.                 QTEST_ASSERT(false);
  95.         }
  96.         QSpontaneKeyEvent::setSpontaneous(&me);
  97.         if (!qApp->notify(widget, &me))
  98.             QTest::qWarn("Mouse event not accepted by receiving widget");
  99.     }
  100.     inline void mousePress(QWidget *widget, Qt::MouseButton button, Qt::KeyboardModifiers stateKey = 0,
  101.                            QPoint pos = QPoint(), int delay=-1)
  102.     { mouseEvent(MousePress, widget, button, stateKey, pos, delay); }
  103.     inline void mouseRelease(QWidget *widget, Qt::MouseButton button, Qt::KeyboardModifiers stateKey = 0,
  104.                              QPoint pos = QPoint(), int delay=-1)
  105.     { mouseEvent(MouseRelease, widget, button, stateKey, pos, delay); }
  106.     inline void mouseClick(QWidget *widget, Qt::MouseButton button, Qt::KeyboardModifiers stateKey = 0,
  107.                            QPoint pos = QPoint(), int delay=-1)
  108.     { mouseEvent(MouseClick, widget, button, stateKey, pos, delay); }
  109.     inline void mouseDClick(QWidget *widget, Qt::MouseButton button, Qt::KeyboardModifiers stateKey = 0,
  110.                             QPoint pos = QPoint(), int delay=-1)
  111.     { mouseEvent(MouseDClick, widget, button, stateKey, pos, delay); }
  112.     inline void mouseMove(QWidget *widget, QPoint pos = QPoint(), int delay=-1)
  113.     { mouseEvent(MouseMove, widget, Qt::NoButton, 0, pos, delay); }
  114. }
  115. QT_END_NAMESPACE
  116. QT_END_HEADER
  117. #endif // QTESTMOUSE_H