![]() |
Qt 6.x
The Qt SDK
|
#include "qwindowsysteminterface.h"
#include <qpa/qplatformwindow.h>
#include "qwindowsysteminterface_p.h"
#include "private/qguiapplication_p.h"
#include "private/qevent_p.h"
#include "private/qeventpoint_p.h"
#include "private/qpointingdevice_p.h"
#include "private/qscreen_p.h"
#include <QAbstractEventDispatcher>
#include <qpa/qplatformintegration.h>
#include <qdebug.h>
#include "qhighdpiscaling_p.h"
#include <QtCore/qscopedvaluerollback.h>
#include <QtCore/private/qlocking_p.h>
Go to the source code of this file.
Classes | |
struct | QWindowSystemHelper< Delivery > |
Namespaces | |
namespace | QTest |
[15] | |
Macros | |
#define | QT_DEFINE_QPA_EVENT_HANDLER(ReturnType, HandlerName, ...) |
Functions | |
template<typename EventType , typename Delivery = QWindowSystemInterface::DefaultDelivery, typename ... Args> | |
static bool | handleWindowSystemEvent (Args ...args) |
QT_DEFINE_QPA_EVENT_HANDLER (void, handleEnterEvent, QWindow *window, const QPointF &local, const QPointF &global) | |
QT_DEFINE_QPA_EVENT_HANDLER (void, handleLeaveEvent, QWindow *window) | |
QT_DEFINE_QPA_EVENT_HANDLER (void, handleWindowActivated, QWindow *window, Qt::FocusReason r) | |
QT_DEFINE_QPA_EVENT_HANDLER (void, handleWindowStateChanged, QWindow *window, Qt::WindowStates newState, int oldState) | |
QT_DEFINE_QPA_EVENT_HANDLER (void, handleWindowScreenChanged, QWindow *window, QScreen *screen) | |
QT_DEFINE_QPA_EVENT_HANDLER (void, handleWindowDevicePixelRatioChanged, QWindow *window) | |
QT_DEFINE_QPA_EVENT_HANDLER (void, handleSafeAreaMarginsChanged, QWindow *window) | |
QT_DEFINE_QPA_EVENT_HANDLER (void, handleApplicationStateChanged, Qt::ApplicationState newState, bool forcePropagate) | |
QT_DEFINE_QPA_EVENT_HANDLER (bool, handleApplicationTermination) | |
QT_DEFINE_QPA_EVENT_HANDLER (void, handleGeometryChange, QWindow *window, const QRect &newRect) | |
QT_DEFINE_QPA_EVENT_HANDLER (bool, handleExposeEvent, QWindow *window, const QRegion ®ion) | |
QT_DEFINE_QPA_EVENT_HANDLER (bool, handlePaintEvent, QWindow *window, const QRegion ®ion) | |
QT_DEFINE_QPA_EVENT_HANDLER (bool, handleCloseEvent, QWindow *window) | |
QT_DEFINE_QPA_EVENT_HANDLER (bool, handleMouseEvent, QWindow *window, const QPointF &local, const QPointF &global, Qt::MouseButtons state, Qt::MouseButton button, QEvent::Type type, Qt::KeyboardModifiers mods, Qt::MouseEventSource source) | |
w == 0 means that the event is in global coords only, local will be ignored in this case | |
QT_DEFINE_QPA_EVENT_HANDLER (bool, handleMouseEvent, QWindow *window, const QPointingDevice *device, const QPointF &local, const QPointF &global, Qt::MouseButtons state, Qt::MouseButton button, QEvent::Type type, Qt::KeyboardModifiers mods, Qt::MouseEventSource source) | |
QT_DEFINE_QPA_EVENT_HANDLER (bool, handleMouseEvent, QWindow *window, ulong timestamp, const QPointF &local, const QPointF &global, Qt::MouseButtons state, Qt::MouseButton button, QEvent::Type type, Qt::KeyboardModifiers mods, Qt::MouseEventSource source) | |
QT_DEFINE_QPA_EVENT_HANDLER (bool, handleMouseEvent, QWindow *window, ulong timestamp, const QPointingDevice *device, const QPointF &local, const QPointF &global, Qt::MouseButtons state, Qt::MouseButton button, QEvent::Type type, Qt::KeyboardModifiers mods, Qt::MouseEventSource source) | |
QT_DEFINE_QPA_EVENT_HANDLER (bool, handleKeyEvent, QWindow *window, QEvent::Type t, int k, Qt::KeyboardModifiers mods, const QString &text, bool autorep, ushort count) | |
QT_DEFINE_QPA_EVENT_HANDLER (bool, handleKeyEvent, QWindow *window, ulong timestamp, QEvent::Type t, int k, Qt::KeyboardModifiers mods, const QString &text, bool autorep, ushort count) | |
QT_DEFINE_QPA_EVENT_HANDLER (bool, handleTouchEvent, QWindow *window, const QPointingDevice *device, const QList< TouchPoint > &points, Qt::KeyboardModifiers mods) | |
QT_DEFINE_QPA_EVENT_HANDLER (bool, handleTouchEvent, QWindow *window, ulong timestamp, const QPointingDevice *device, const QList< TouchPoint > &points, Qt::KeyboardModifiers mods) | |
QT_DEFINE_QPA_EVENT_HANDLER (bool, handleTouchCancelEvent, QWindow *window, const QPointingDevice *device, Qt::KeyboardModifiers mods) | |
QT_DEFINE_QPA_EVENT_HANDLER (bool, handleTouchCancelEvent, QWindow *window, ulong timestamp, const QPointingDevice *device, Qt::KeyboardModifiers mods) | |
QT_DEFINE_QPA_EVENT_HANDLER (void, handleThemeChange, QWindow *window) | |
Q_GUI_EXPORT QDebug | operator<< (QDebug dbg, const QWindowSystemInterface::TouchPoint &p) |
Q_GUI_EXPORT void | qt_handleMouseEvent (QWindow *window, const QPointF &local, const QPointF &global, Qt::MouseButtons state, Qt::MouseButton button, QEvent::Type type, Qt::KeyboardModifiers mods, int timestamp) |
Q_GUI_EXPORT void | qt_handleKeyEvent (QWindow *window, QEvent::Type t, int k, Qt::KeyboardModifiers mods, const QString &text=QString(), bool autorep=false, ushort count=1) |
Q_GUI_EXPORT bool | qt_sendShortcutOverrideEvent (QObject *o, ulong timestamp, int k, Qt::KeyboardModifiers mods, const QString &text=QString(), bool autorep=false, ushort count=1) |
Q_GUI_EXPORT QPointingDevice * | QTest::createTouchDevice (QInputDevice::DeviceType devType=QInputDevice::DeviceType::TouchScreen, QInputDevice::Capabilities caps=QInputDevice::Capability::Position) |
Q_GUI_EXPORT bool | qt_handleTouchEventv2 (QWindow *window, const QPointingDevice *device, const QList< QEventPoint > &points, Qt::KeyboardModifiers mods) |
Q_GUI_EXPORT void | qt_handleTouchEvent (QWindow *window, const QPointingDevice *device, const QList< QEventPoint > &points, Qt::KeyboardModifiers mods) |
Variables | |
QPointer< QWindow > | qt_last_mouse_receiver |
#define QT_DEFINE_QPA_EVENT_HANDLER | ( | ReturnType, | |
HandlerName, | |||
... | |||
) |
Definition at line 199 of file qwindowsysteminterface.cpp.
|
static |
Definition at line 136 of file qwindowsysteminterface.cpp.
References args.
Q_GUI_EXPORT QDebug operator<< | ( | QDebug | dbg, |
const QWindowSystemInterface::TouchPoint & | p | ||
) |
Definition at line 1044 of file qwindowsysteminterface.cpp.
QT_DEFINE_QPA_EVENT_HANDLER | ( | bool | , |
handleApplicationTermination | |||
) |
Definition at line 279 of file qwindowsysteminterface.cpp.
References QWindowSystemInterfacePrivate::ApplicationTermination.
QT_DEFINE_QPA_EVENT_HANDLER | ( | bool | , |
handleCloseEvent | , | ||
QWindow * | window | ||
) |
Definition at line 348 of file qwindowsysteminterface.cpp.
References Q_ASSERT, and window().
Handles an expose event.
The platform plugin sends expose events when an area of the window is invalidated or window exposure changes. region is in window local coordinates. An empty region indicates that the window is obscured, but note that the exposed property of the QWindow will be set based on what QPlatformWindow::isExposed() returns at the time of this call, not based on what the region is. // FIXME: this should probably be fixed.
The platform plugin may omit sending expose events (or send obscure events) for windows that are on screen but where the client area is completely covered by other windows or otherwise not visible. Expose event consumers can then use this to disable updates for such windows. This is required behavior on platforms where OpenGL swapbuffers stops blocking for obscured windows (like macOS).
Definition at line 335 of file qwindowsysteminterface.cpp.
References QHighDpi::fromNativeLocalExposedRegion(), and window().
QT_DEFINE_QPA_EVENT_HANDLER | ( | bool | , |
handleKeyEvent | , | ||
QWindow * | window, | ||
QEvent::Type | t, | ||
int | k, | ||
Qt::KeyboardModifiers | mods, | ||
const QString & | text, | ||
bool | autorep, | ||
ushort | count | ||
) |
Definition at line 465 of file qwindowsysteminterface.cpp.
References QElapsedTimer::elapsed(), QWindowSystemInterfacePrivate::eventTime, text, time, and window().
QT_DEFINE_QPA_EVENT_HANDLER | ( | bool | , |
handleKeyEvent | , | ||
QWindow * | window, | ||
ulong | timestamp, | ||
QEvent::Type | t, | ||
int | k, | ||
Qt::KeyboardModifiers | mods, | ||
const QString & | text, | ||
bool | autorep, | ||
ushort | count | ||
) |
Definition at line 470 of file qwindowsysteminterface.cpp.
References text, and window().
QT_DEFINE_QPA_EVENT_HANDLER | ( | bool | , |
handleMouseEvent | , | ||
QWindow * | window, | ||
const QPointF & | local, | ||
const QPointF & | global, | ||
Qt::MouseButtons | state, | ||
Qt::MouseButton | button, | ||
QEvent::Type | type, | ||
Qt::KeyboardModifiers | mods, | ||
Qt::MouseEventSource | source | ||
) |
w == 0 means that the event is in global coords only, local will be ignored in this case
Definition at line 360 of file qwindowsysteminterface.cpp.
References button, QElapsedTimer::elapsed(), QWindowSystemInterfacePrivate::eventTime, global, state, time, and window().
QT_DEFINE_QPA_EVENT_HANDLER | ( | bool | , |
handleMouseEvent | , | ||
QWindow * | window, | ||
const QPointingDevice * | device, | ||
const QPointF & | local, | ||
const QPointF & | global, | ||
Qt::MouseButtons | state, | ||
Qt::MouseButton | button, | ||
QEvent::Type | type, | ||
Qt::KeyboardModifiers | mods, | ||
Qt::MouseEventSource | source | ||
) |
Definition at line 369 of file qwindowsysteminterface.cpp.
References button, device, QElapsedTimer::elapsed(), QWindowSystemInterfacePrivate::eventTime, global, state, time, and window().
QT_DEFINE_QPA_EVENT_HANDLER | ( | bool | , |
handleMouseEvent | , | ||
QWindow * | window, | ||
ulong | timestamp, | ||
const QPointF & | local, | ||
const QPointF & | global, | ||
Qt::MouseButtons | state, | ||
Qt::MouseButton | button, | ||
QEvent::Type | type, | ||
Qt::KeyboardModifiers | mods, | ||
Qt::MouseEventSource | source | ||
) |
Definition at line 378 of file qwindowsysteminterface.cpp.
References button, global, QPointingDevice::primaryPointingDevice(), state, and window().
QT_DEFINE_QPA_EVENT_HANDLER | ( | bool | , |
handleMouseEvent | , | ||
QWindow * | window, | ||
ulong | timestamp, | ||
const QPointingDevice * | device, | ||
const QPointF & | local, | ||
const QPointF & | global, | ||
Qt::MouseButtons | state, | ||
Qt::MouseButton | button, | ||
QEvent::Type | type, | ||
Qt::KeyboardModifiers | mods, | ||
Qt::MouseEventSource | source | ||
) |
Definition at line 387 of file qwindowsysteminterface.cpp.
References button, device, QHighDpi::fromNativeGlobalPosition(), QHighDpi::fromNativeLocalPosition(), global, QEvent::MouseButtonDblClick, QEvent::MouseButtonPress, QEvent::MouseButtonRelease, QEvent::MouseMove, QEvent::NonClientAreaMouseButtonDblClick, QEvent::NonClientAreaMouseButtonPress, QEvent::NonClientAreaMouseButtonRelease, QEvent::NonClientAreaMouseMove, Q_ASSERT_X, state, and window().
Definition at line 341 of file qwindowsysteminterface.cpp.
References QHighDpi::fromNativeLocalExposedRegion(), and window().
QT_DEFINE_QPA_EVENT_HANDLER | ( | bool | , |
handleTouchCancelEvent | , | ||
QWindow * | window, | ||
const QPointingDevice * | device, | ||
Qt::KeyboardModifiers | mods | ||
) |
Definition at line 689 of file qwindowsysteminterface.cpp.
References device, QElapsedTimer::elapsed(), QWindowSystemInterfacePrivate::eventTime, time, and window().
QT_DEFINE_QPA_EVENT_HANDLER | ( | bool | , |
handleTouchCancelEvent | , | ||
QWindow * | window, | ||
ulong | timestamp, | ||
const QPointingDevice * | device, | ||
Qt::KeyboardModifiers | mods | ||
) |
Definition at line 696 of file qwindowsysteminterface.cpp.
References device, QEvent::TouchCancel, and window().
QT_DEFINE_QPA_EVENT_HANDLER | ( | bool | , |
handleTouchEvent | , | ||
QWindow * | window, | ||
const QPointingDevice * | device, | ||
const QList< TouchPoint > & | points, | ||
Qt::KeyboardModifiers | mods | ||
) |
Definition at line 665 of file qwindowsysteminterface.cpp.
References device, QElapsedTimer::elapsed(), QWindowSystemInterfacePrivate::eventTime, time, and window().
QT_DEFINE_QPA_EVENT_HANDLER | ( | bool | , |
handleTouchEvent | , | ||
QWindow * | window, | ||
ulong | timestamp, | ||
const QPointingDevice * | device, | ||
const QList< TouchPoint > & | points, | ||
Qt::KeyboardModifiers | mods | ||
) |
Definition at line 672 of file qwindowsysteminterface.cpp.
References device, QWindowSystemInterfacePrivate::fromNativeTouchPoints(), QInputDevicePrivate::isRegistered(), and window().
QT_DEFINE_QPA_EVENT_HANDLER | ( | void | , |
handleApplicationStateChanged | , | ||
Qt::ApplicationState | newState, | ||
bool | forcePropagate | ||
) |
Definition at line 273 of file qwindowsysteminterface.cpp.
References QPlatformIntegration::ApplicationState, newState(), QGuiApplicationPrivate::platformIntegration(), and Q_ASSERT.
QT_DEFINE_QPA_EVENT_HANDLER | ( | void | , |
handleEnterEvent | , | ||
QWindow * | window, | ||
const QPointF & | local, | ||
const QPointF & | global | ||
) |
Definition at line 217 of file qwindowsysteminterface.cpp.
References QHighDpi::fromNativeGlobalPosition(), QHighDpi::fromNativeLocalPosition(), global, and window().
QT_DEFINE_QPA_EVENT_HANDLER | ( | void | , |
handleGeometryChange | , | ||
QWindow * | window, | ||
const QRect & | newRect | ||
) |
Definition at line 296 of file qwindowsysteminterface.cpp.
References QHighDpi::fromNativeWindowGeometry(), Q_ASSERT, and window().
Definition at line 225 of file qwindowsysteminterface.cpp.
References window().
Definition at line 268 of file qwindowsysteminterface.cpp.
References window().
Definition at line 827 of file qwindowsysteminterface.cpp.
References window().
QT_DEFINE_QPA_EVENT_HANDLER | ( | void | , |
handleWindowActivated | , | ||
QWindow * | window, | ||
Qt::FocusReason | r | ||
) |
Definition at line 243 of file qwindowsysteminterface.cpp.
References window().
Definition at line 262 of file qwindowsysteminterface.cpp.
References window().
QT_DEFINE_QPA_EVENT_HANDLER | ( | void | , |
handleWindowScreenChanged | , | ||
QWindow * | window, | ||
QScreen * | screen | ||
) |
Definition at line 257 of file qwindowsysteminterface.cpp.
References screen, and window().
QT_DEFINE_QPA_EVENT_HANDLER | ( | void | , |
handleWindowStateChanged | , | ||
QWindow * | window, | ||
Qt::WindowStates | newState, | ||
int | oldState | ||
) |
Definition at line 248 of file qwindowsysteminterface.cpp.
References newState(), Q_ASSERT, window(), and Qt::WindowNoState.
Q_GUI_EXPORT void qt_handleKeyEvent | ( | QWindow * | window, |
QEvent::Type | t, | ||
int | k, | ||
Qt::KeyboardModifiers | mods, | ||
const QString & | text = QString() , |
||
bool | autorep = false , |
||
ushort | count = 1 |
||
) |
Definition at line 1159 of file qwindowsysteminterface.cpp.
References QElapsedTimer::elapsed(), QWindowSystemInterfacePrivate::eventTime, QWindowSystemInterface::handleShortcutEvent(), QEvent::KeyPress, text, and window().
Referenced by QTest::simulateEvent().
Q_GUI_EXPORT void qt_handleMouseEvent | ( | QWindow * | window, |
const QPointF & | local, | ||
const QPointF & | global, | ||
Qt::MouseButtons | state, | ||
Qt::MouseButton | button, | ||
QEvent::Type | type, | ||
Qt::KeyboardModifiers | mods, | ||
int | timestamp | ||
) |
Definition at line 1146 of file qwindowsysteminterface.cpp.
References button, global, state, QHighDpi::toNativeGlobalPosition(), QHighDpi::toNativeLocalPosition(), and window().
Referenced by QTest::mouseEvent().
Q_GUI_EXPORT void qt_handleTouchEvent | ( | QWindow * | window, |
const QPointingDevice * | device, | ||
const QList< QEventPoint > & | points, | ||
Qt::KeyboardModifiers | mods | ||
) |
Definition at line 1230 of file qwindowsysteminterface.cpp.
References device, qt_handleTouchEventv2(), and window().
Q_GUI_EXPORT bool qt_handleTouchEventv2 | ( | QWindow * | window, |
const QPointingDevice * | device, | ||
const QList< QEventPoint > & | points, | ||
Qt::KeyboardModifiers | mods | ||
) |
Definition at line 1222 of file qwindowsysteminterface.cpp.
References device, QWindowSystemInterfacePrivate::toNativeTouchPoints(), and window().
Referenced by QTest::QTouchEventSequence::commit(), QTest::QTouchEventWidgetSequence::commit(), and qt_handleTouchEvent().
Q_GUI_EXPORT bool qt_sendShortcutOverrideEvent | ( | QObject * | o, |
ulong | timestamp, | ||
int | k, | ||
Qt::KeyboardModifiers | mods, | ||
const QString & | text = QString() , |
||
bool | autorep = false , |
||
ushort | count = 1 |
||
) |
Definition at line 1171 of file qwindowsysteminterface.cpp.
References QGuiApplicationPrivate::instance(), QEvent::isAccepted(), QGuiApplicationPrivate::modifier_buttons, QKeySequence::NoMatch, o, Q_UNUSED, QCoreApplication::sendEvent(), QInputEvent::setTimestamp(), QEvent::ShortcutOverride, QShortcutMap::state(), text, and QShortcutMap::tryShortcut().
Referenced by QQuickDeliveryAgentPrivate::deliverKeyEvent(), QApplication::notify(), and QTest::sendKeyEvent().
Definition at line 346 of file qwidgetwindow.cpp.
Referenced by QWidgetWindow::handleEnterLeaveEvent(), QWidgetWindow::handleMouseEvent(), and QApplicationPrivate::sendSyntheticEnterLeave().