Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qwaylandwindow_p.h
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3// Qt-Security score:significant reason:default
4
5#ifndef QWAYLANDWINDOW_H
6#define QWAYLANDWINDOW_H
7
8//
9// W A R N I N G
10// -------------
11//
12// This file is not part of the Qt API. It exists purely as an
13// implementation detail. This header file may change from version to
14// version without notice, or even be removed.
15//
16// We mean it.
17//
18
19#include <QtCore/QWaitCondition>
20#include <QtCore/QMutex>
21#include <QtCore/QReadWriteLock>
22
23#include <QtGui/QIcon>
24#include <QtGui/QEventPoint>
25#include <QtCore/QVariant>
26#include <QtCore/QLoggingCategory>
27#include <QtCore/QElapsedTimer>
28#include <QtCore/QList>
29#include <QtCore/QMap> // for QVariantMap
30
31#include <qpa/qplatformwindow.h>
32#include <qpa/qplatformwindow_p.h>
33
34#include <QtWaylandClient/private/qwayland-wayland.h>
35#include <QtWaylandClient/private/qwaylanddisplay_p.h>
36#include <QtWaylandClient/qtwaylandclientglobal.h>
37#include <QtWaylandClient/private/qwaylandshellsurface_p.h>
38
39#include <QtCore/qpointer.h>
40
41#include <memory>
42
43struct wl_egl_window;
44
45QT_BEGIN_NAMESPACE
46
47namespace QtWaylandClient {
48
49Q_DECLARE_LOGGING_CATEGORY(lcWaylandBackingstore)
50
51class QWaylandDisplay;
52class QWaylandBuffer;
53class QWaylandShellSurface;
54class QWaylandSubSurface;
55class QWaylandAbstractDecoration;
56class QWaylandInputDevice;
57class QWaylandScreen;
58class QWaylandShellIntegration;
59class QWaylandShmBackingStore;
63class QWaylandSurface;
68
69class Q_WAYLANDCLIENT_EXPORT QWaylandWindow : public QNativeInterface::Private::QWaylandWindow,
70 public QPlatformWindow
71{
73public:
79
88
91
92 // Keep Toplevels position on the top left corner of their screen
93 static inline bool fixedToplevelPositions = true;
94
95 virtual WindowType windowType() const = 0;
96 virtual void ensureSize();
97 WId winId() const override;
98 void setVisible(bool visible) override;
100
103
104 inline QIcon windowIcon() const;
105 void setWindowIcon(const QIcon &icon) override;
106
107 void setGeometry(const QRect &rect) override;
108
110
111 void resizeFromApplyConfigure(const QSize &sizeWithMargins, const QPoint &offset = {0, 0});
114
115 void applyConfigureWhenPossible(); //rename to possible?
116
117 void attach(QWaylandBuffer *buffer, int x, int y);
119 QPoint attachOffset() const;
120
121 void damage(const QRect &rect);
122
125
126 void commit();
127
128 bool waitForFrameSync(int timeout);
129
133 QSize surfaceSize() const;
137
139 ::wl_surface *wlSurface() const;
141 {
142 return wlSurface();
143 }
145
146 QWaylandDisplay *display() const { return mDisplay; }
148 std::any _surfaceRole() const override;
151
155
158
162 Qt::WindowFlags windowFlags() const;
164
165 void raise() override;
166 void lower() override;
167
168 void setMask(const QRegion &region) override;
169
170 void setAlertState(bool enabled) override;
171 bool isAlertState() const override;
172
173 qreal scale() const;
175
177 bool isExposed() const override;
178 bool isActive() const override;
179
181
183#ifndef QT_NO_GESTURES
188#endif
189
195
196 virtual bool createDecoration();
197
198#if QT_CONFIG(cursor)
200 void setStoredCursor(const QCursor &cursor);
201 void resetStoredCursor();
203#endif
204
206
208 static QWaylandWindow *mouseGrab() { return mMouseGrab; }
209
210 void sendProperty(const QString &name, const QVariant &value);
211 void setProperty(const QString &name, const QVariant &value);
212
213 QVariantMap properties() const;
216
217#ifdef QT_PLATFORM_WINDOW_HAS_VIRTUAL_SET_BACKING_STORE
219#else
221#endif
223
226
227 bool setKeyboardGrabEnabled(bool) override { return false; }
229 void addAttachOffset(const QPoint point);
230
233
235 void requestUpdate() override;
236 void handleUpdate();
238
241
242 void beginFrame();
243 void endFrame();
244
245 void closeChildPopups();
246
247 // should be invoked whenever a property that potentially affects
248 // exposure changes
249 void updateExposure();
250
251 virtual void reinit();
252 void reset();
253 void initializeWlSurface(bool colorSpace = true);
254
256
258
262
267
268public Q_SLOTS:
269 void applyConfigure();
270
274
275protected:
276 virtual void doHandleFrameCallback();
277 virtual QRect defaultGeometry() const;
278 void setFormat(const QSurfaceFormat &format);
279
280 // this should be called directly for buffer size changes only
281 // use updateExposure for anything affecting the on/off state
282 void sendExposeEvent(const QRect &rect);
283
285
286 // mSurface can be written by the main thread. Other threads should claim a read lock for access
291
296
301
302#ifndef QT_NO_GESTURES
308
309 // We want gestures started in the decoration area to be completely ignored even if the mouse
310 // pointer is later moved to content area. Likewise, gestures started in the content area should
311 // keep sending events even if the mouse pointer is moved over the decoration (consider that
312 // the events for that gesture will be sent to us even if it's moved outside the window).
313 // So we track the gesture state and accept or ignore events based on that. Note that
314 // concurrent gestures of different types are not allowed in the protocol, so single state is
315 // enough
317#endif
318
319 std::atomic_bool mFrameCallbackTimedOut = false; // Whether the frame callback has timed out
322
323 QElapsedTimer mFrameCallbackElapsedTimer; // Protected by mFrameSyncMutex
324 struct ::wl_callback *mFrameCallback = nullptr; // Protected by mFrameSyncMutex
327
328 bool mExposed = false;
330
331 // written from the main thread, read by the render thread
333 // written from the render thread, read by the main thread
335
338
341
344
347
348 // Empty QRegion maps to "infinite" input region, needs a dedicated "deliberately empty" state.
351
355
357
360
363
365
368
369#if QT_CONFIG(cursor)
371 bool mHasStoredCursor = false;
372#endif
373
374private:
375 void setGeometry_helper(const QRect &rect);
377 void initWindow();
378 bool shouldCreateShellSurface() const;
379 bool shouldCreateSubSurface() const;
380 void resetSurfaceRole();
381 void resetFrameCallback();
383 void setOpaqueArea(const QRegion &opaqueArea);
384 bool isOpaque() const;
385 void updateInputRegion();
386 void updateViewport();
387 bool calculateExposure() const;
389
392 void updateScale();
393 void setScale(qreal newScale);
394
398
399 bool mInResizeFromApplyConfigure = false;
400 bool lastVisible = false;
403
406 const QPlatformWindow *lastParent = nullptr;
407
408 struct {
411 } m_popupInfo;
412
415
416 friend class QWaylandSubSurface;
417};
418
420
422{
423 return mWindowIcon;
424}
425
427{
428 return mOffset;
429}
430
431}
432
433QT_END_NAMESPACE
434
435#endif // QWAYLANDWINDOW_H
friend class QPainter
Combined button and popup list for selecting options.
static QRegion marginsRegion(const QSize &size, const QMargins &margins)