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();
237 void requestForcedUpdate();
239
242
243 void beginFrame();
244 void endFrame();
245
246 void closeChildPopups();
247
248 // should be invoked whenever a property that potentially affects
249 // exposure changes
250 void updateExposure();
251
252 virtual void reinit();
253 void reset();
254 void initializeWlSurface(bool colorSpace = true);
255
257
259
263
268
270
271public Q_SLOTS:
272 void applyConfigure();
273
277
278protected:
279 virtual void doHandleFrameCallback();
280 virtual QRect defaultGeometry() const;
281 void setFormat(const QSurfaceFormat &format);
282
283 // this should be called directly for buffer size changes only
284 // use updateExposure for anything affecting the on/off state
285 void sendExposeEvent(const QRect &rect);
286
288
289 // mSurface can be written by the main thread. Other threads should claim a read lock for access
294
299
304
305#ifndef QT_NO_GESTURES
311
312 // We want gestures started in the decoration area to be completely ignored even if the mouse
313 // pointer is later moved to content area. Likewise, gestures started in the content area should
314 // keep sending events even if the mouse pointer is moved over the decoration (consider that
315 // the events for that gesture will be sent to us even if it's moved outside the window).
316 // So we track the gesture state and accept or ignore events based on that. Note that
317 // concurrent gestures of different types are not allowed in the protocol, so single state is
318 // enough
320#endif
321
322 std::atomic_bool mFrameCallbackTimedOut = false; // Whether the frame callback has timed out
325 bool mPendingForcedUpdate = false; // The window should force a redraw at the next fame callback
326
327 QElapsedTimer mFrameCallbackElapsedTimer; // Protected by mFrameSyncMutex
328 struct ::wl_callback *mFrameCallback = nullptr; // Protected by mFrameSyncMutex
331
332 bool mExposed = false;
334
335 // written from the main thread, read by the render thread
337 // written from the render thread, read by the main thread
339
342
345
348
351
352 // Empty QRegion maps to "infinite" input region, needs a dedicated "deliberately empty" state.
355
359
361
364
367
369
372
373#if QT_CONFIG(cursor)
375 bool mHasStoredCursor = false;
376#endif
377
378private:
379 void setGeometry_helper(const QRect &rect);
381 void initWindow();
382 bool shouldCreateShellSurface() const;
383 bool shouldCreateSubSurface() const;
384 void resetSurfaceRole();
385 void resetFrameCallback();
387 void setOpaqueArea(const QRegion &opaqueArea);
388 bool isOpaque() const;
389 void updateInputRegion();
390 void updateViewport();
391 bool calculateExposure() const;
393
396 void updateScale();
397 void setScale(qreal newScale);
398
402
403 bool mInResizeFromApplyConfigure = false;
404 bool lastVisible = false;
407
410 const QPlatformWindow *lastParent = nullptr;
411
412 struct {
415 } m_popupInfo;
416
419
420 friend class QWaylandSubSurface;
421};
422
424
426{
427 return mWindowIcon;
428}
429
431{
432 return mOffset;
433}
434
435}
436
437QT_END_NAMESPACE
438
439#endif // QWAYLANDWINDOW_H
friend class QPainter
Combined button and popup list for selecting options.
static QRegion marginsRegion(const QSize &size, const QMargins &margins)