1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QTESTSUPPORT_GUI_H
#define QTESTSUPPORT_GUI_H
#include <QtGui/qtguiglobal.h>
#include <QtGui/qevent.h>
#include <QtCore/qmap.h>
#include <QtCore/qtestsupport_core.h>
QT_BEGIN_NAMESPACE
class QWindow;
Q_GUI_EXPORT void qt_handleTouchEvent(QWindow *w, const QPointingDevice *device,
const QList<QEventPoint> &points,
Qt::KeyboardModifiers mods = Qt::NoModifier);
Q_GUI_EXPORT bool qt_handleTouchEventv2(QWindow *w, const QPointingDevice *device,
const QList<QEventPoint> &points,
Qt::KeyboardModifiers mods = Qt::NoModifier);
namespace QTest {
[[nodiscard]] Q_GUI_EXPORT bool qWaitForWindowActive(QWindow *window,
int timeout = static_cast<int>(Internal::defaultTryTimeout.count()));
[[nodiscard]] Q_GUI_EXPORT bool qWaitForWindowFocused(QWindow *window,
QDeadlineTimer timeout = Internal::defaultTryTimeout);
[[nodiscard]] Q_GUI_EXPORT bool qWaitForWindowExposed(QWindow *window,
int timeout = static_cast<int>(Internal::defaultTryTimeout.count()));
Q_GUI_EXPORT QPointingDevice * createTouchDevice(QInputDevice::DeviceType devType = QInputDevice::DeviceType::TouchScreen,
QInputDevice::Capabilities caps = QInputDevice::Capability::Position);
class Q_GUI_EXPORT QTouchEventSequence
{
public:
virtual ~QTouchEventSequence();
QTouchEventSequence& press(int touchId, const QPoint &pt, QWindow *window = nullptr);
QTouchEventSequence& move(int touchId, const QPoint &pt, QWindow *window = nullptr);
QTouchEventSequence& release(int touchId, const QPoint &pt, QWindow *window = nullptr);
virtual QTouchEventSequence& stationary(int touchId);
virtual bool commit(bool processEvents = true);
protected:
QTouchEventSequence(QWindow *window, QPointingDevice *aDevice, bool autoCommit);
QPoint mapToScreen(QWindow *window, const QPoint &pt);
QEventPoint &point(int touchId);
QEventPoint &pointOrPreviousPoint(int touchId);
QMap<int, QEventPoint> previousPoints;
QMap<int, QEventPoint> points;
QWindow *targetWindow;
QPointingDevice *device;
bool commitWhenDestroyed;
friend QTouchEventSequence touchEvent(QWindow *window, QPointingDevice *device, bool autoCommit);
};
} // namespace QTest
//
// W A R N I N G
// -------------
//
// The QtGuiTest namespace is not part of the Qt API. It exists purely as an
// implementation detail. It may change from version to version without notice,
// or even be removed.
//
// We mean it.
//
#if QT_CONFIG(test_gui)
namespace QtGuiTest
{
Q_GUI_EXPORT void setKeyboardModifiers(Qt::KeyboardModifiers modifiers);
Q_GUI_EXPORT void setCursorPosition(const QPoint &position);
Q_GUI_EXPORT void synthesizeExtendedKeyEvent(QEvent::Type type, int key, Qt::KeyboardModifiers modifiers,
quint32 nativeScanCode, quint32 nativeVirtualKey,
const QString &text);
Q_GUI_EXPORT bool synthesizeKeyEvent(QWindow *window, QEvent::Type t, int k, Qt::KeyboardModifiers mods,
const QString & text = QString(), bool autorep = false,
ushort count = 1);
Q_GUI_EXPORT void synthesizeMouseEvent(const QPointF &position, Qt::MouseButtons state,
Qt::MouseButton button, QEvent::Type type,
Qt::KeyboardModifiers modifiers);
Q_GUI_EXPORT void synthesizeWheelEvent(int rollCount, Qt::KeyboardModifiers modifiers);
Q_GUI_EXPORT qint64 eventTimeElapsed();
Q_GUI_EXPORT void postFakeWindowActivation(QWindow *window);
Q_GUI_EXPORT QPoint toNativePixels(const QPoint &value, const QWindow *window);
Q_GUI_EXPORT QRect toNativePixels(const QRect &value, const QWindow *window);
Q_GUI_EXPORT qreal scaleFactor(const QWindow *window);
Q_GUI_EXPORT void setEventPointId(QEventPoint &p, int arg);
Q_GUI_EXPORT void setEventPointPressure(QEventPoint &p, qreal arg);
Q_GUI_EXPORT void setEventPointState(QEventPoint &p, QEventPoint::State arg);
Q_GUI_EXPORT void setEventPointPosition(QEventPoint &p, QPointF arg);
Q_GUI_EXPORT void setEventPointGlobalPosition(QEventPoint &p, QPointF arg);
Q_GUI_EXPORT void setEventPointScenePosition(QEventPoint &p, QPointF arg);
Q_GUI_EXPORT void setEventPointEllipseDiameters(QEventPoint &p, QSizeF arg);
} // namespace QtGuiTest
#endif // #if QT_CONFIG(test_gui)
QT_END_NAMESPACE
#endif // #ifndef QTESTSUPPORT_GUI_H
|