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
43
struct
wl_egl_window;
44
45
QT_BEGIN_NAMESPACE
46
47
namespace
QtWaylandClient
{
48
49
Q_DECLARE_LOGGING_CATEGORY(lcWaylandBackingstore)
50
51
class
QWaylandDisplay;
52
class
QWaylandBuffer;
53
class
QWaylandShellSurface;
54
class
QWaylandSubSurface;
55
class
QWaylandAbstractDecoration;
56
class
QWaylandInputDevice;
57
class
QWaylandScreen;
58
class
QWaylandShellIntegration;
59
class
QWaylandShmBackingStore;
60
class
QWaylandPointerEvent
;
61
class
QWaylandPointerGestureSwipeEvent
;
62
class
QWaylandPointerGesturePinchEvent
;
63
class
QWaylandSurface
;
64
class
QWaylandFractionalScale
;
65
class
QWaylandViewport
;
66
class
ColorManagementSurface
;
67
class
ImageDescription
;
68
69
class
Q_WAYLANDCLIENT_EXPORT
QWaylandWindow
:
public
QNativeInterface
::
Private
::
QWaylandWindow
,
70
public
QPlatformWindow
71
{
72
Q_OBJECT
73
public
:
74
enum
WindowType
{
75
Shm
,
76
Egl
,
77
Vulkan
78
};
79
80
enum
ToplevelWindowTilingState
{
81
WindowNoState
= 0,
82
WindowTiledLeft
= 1,
83
WindowTiledRight
= 2,
84
WindowTiledTop
= 4,
85
WindowTiledBottom
= 8
86
};
87
Q_DECLARE_FLAGS
(
ToplevelWindowTilingStates
,
ToplevelWindowTilingState
)
88
89
QWaylandWindow
(
QWindow
*
window
,
QWaylandDisplay
*
display
);
90
~
QWaylandWindow
()
override
;
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
;
99
void
setParent
(
const
QPlatformWindow
*
parent
)
override
;
100
101
QString
windowTitle
()
const
override
;
102
void
setWindowTitle
(
const
QString
&
title
)
override
;
103
104
inline
QIcon
windowIcon
()
const
;
105
void
setWindowIcon
(
const
QIcon
&
icon
)
override
;
106
107
void
setGeometry
(
const
QRect
&
rect
)
override
;
108
109
bool
allowsIndependentThreadedRendering
()
const
override
;
110
111
void
resizeFromApplyConfigure
(
const
QSize
&
sizeWithMargins
,
const
QPoint
&
offset
= {0, 0});
112
void
repositionFromApplyConfigure
(
const
QPoint
&
position
);
113
void
setGeometryFromApplyConfigure
(
const
QPoint
&
globalPosition
,
const
QSize
&
sizeWithMargins
);
114
115
void
applyConfigureWhenPossible
();
//rename to possible?
116
117
void
attach
(
QWaylandBuffer
*
buffer
,
int
x
,
int
y
);
118
void
attachOffset
(
QWaylandBuffer
*
buffer
);
119
QPoint
attachOffset
()
const
;
120
121
void
damage
(
const
QRect
&
rect
);
122
123
void
safeCommit
(
QWaylandBuffer
*
buffer
,
const
QRegion
&
damage
);
124
void
commit
(
QWaylandBuffer
*
buffer
,
const
QRegion
&
damage
);
125
126
void
commit
();
127
128
bool
waitForFrameSync
(
int
timeout
);
129
130
QMargins
frameMargins
()
const
override
;
131
QMargins
clientSideMargins
()
const
;
132
void
setCustomMargins
(
const
QMargins
&
margins
)
override
;
133
QSize
surfaceSize
()
const
;
134
QMargins
windowContentMargins
()
const
;
135
QRect
windowContentGeometry
()
const
;
136
QPointF
mapFromWlSurface
(
const
QPointF
&
surfacePosition
)
const
;
137
138
QWaylandSurface
*
waylandSurface
()
const
{
return
mSurface
.
get
(); }
139
::
wl_surface
*
wlSurface
()
const
;
140
::
wl_surface
*
surface
()
const
override
141
{
142
return
wlSurface
();
143
}
144
static
QWaylandWindow
*
fromWlSurface
(::
wl_surface
*
surface
);
145
146
QWaylandDisplay
*
display
()
const
{
return
mDisplay
; }
147
QWaylandShellSurface
*
shellSurface
()
const
;
148
std
::
any
_surfaceRole
()
const
override
;
149
QWaylandSubSurface
*
subSurfaceWindow
()
const
;
150
QWaylandScreen
*
waylandScreen
()
const
;
151
152
void
handleContentOrientationChange
(
Qt
::
ScreenOrientation
orientation
)
override
;
153
void
updateBufferTransform
();
154
void
setOrientationMask
(
Qt
::
ScreenOrientations
mask
);
155
156
ToplevelWindowTilingStates
toplevelWindowTilingStates
()
const
;
157
void
handleToplevelWindowTilingStatesChanged
(
ToplevelWindowTilingStates
states
);
158
159
Qt
::
WindowStates
windowStates
()
const
;
160
void
setWindowState
(
Qt
::
WindowStates
states
)
override
;
161
void
setWindowFlags
(
Qt
::
WindowFlags
flags
)
override
;
162
Qt
::
WindowFlags
windowFlags
()
const
;
163
void
handleWindowStatesChanged
(
Qt
::
WindowStates
states
);
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
;
174
qreal
devicePixelRatio
()
const
override
;
175
176
void
requestActivateWindow
()
override
;
177
bool
isExposed
()
const
override
;
178
bool
isActive
()
const
override
;
179
180
QWaylandAbstractDecoration
*
decoration
()
const
;
181
182
void
handleMouse
(
QWaylandInputDevice
*
inputDevice
,
const
QWaylandPointerEvent
&
e
);
183
#
ifndef
QT_NO_GESTURES
184
void
handleSwipeGesture
(
QWaylandInputDevice
*
inputDevice
,
185
const
QWaylandPointerGestureSwipeEvent
&
e
);
186
void
handlePinchGesture
(
QWaylandInputDevice
*
inputDevice
,
187
const
QWaylandPointerGesturePinchEvent
&
e
);
188
#
endif
189
190
bool
touchDragDecoration
(
QWaylandInputDevice
*
inputDevice
,
const
QPointF
&
local
,
const
QPointF
&
global
,
191
QEventPoint
::
State
state
,
Qt
::
KeyboardModifiers
mods
);
192
bool
handleTabletEventDecoration
(
QWaylandInputDevice
*
inputDevice
,
const
QPointF
&
local
,
193
const
QPointF
&
global
,
Qt
::
MouseButtons
buttons
,
194
Qt
::
KeyboardModifiers
modifiers
);
195
196
virtual
bool
createDecoration
();
197
198
#
if
QT_CONFIG
(
cursor
)
199
void
restoreMouseCursor
(
QWaylandInputDevice
*
device
);
200
void
setStoredCursor
(
const
QCursor
&
cursor
);
201
void
resetStoredCursor
();
202
void
applyCursor
(
QWaylandInputDevice
*
device
,
const
QCursor
&
cursor
);
203
#
endif
204
205
QWaylandWindow
*
transientParent
()
const
;
206
207
bool
setMouseGrabEnabled
(
bool
grab
)
override
;
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
;
214
QVariant
property
(
const
QString
&
name
);
215
QVariant
property
(
const
QString
&
name
,
const
QVariant
&
defaultValue
);
216
217
#
ifdef
QT_PLATFORM_WINDOW_HAS_VIRTUAL_SET_BACKING_STORE
218
void
setBackingStore
(
QPlatformBackingStore
*
store
)
override
;
219
#
else
220
void
setBackingStore
(
QWaylandShmBackingStore
*
backingStore
) {
mBackingStore
=
backingStore
; }
221
#
endif
222
QWaylandShmBackingStore
*
backingStore
()
const
{
return
mBackingStore
; }
223
224
void
setShellIntegration
(
QWaylandShellIntegration
*
shellIntegration
);
225
QWaylandShellIntegration
*
shellIntegration
()
const
{
return
mShellIntegration
; }
226
227
bool
setKeyboardGrabEnabled
(
bool
)
override
{
return
false
; }
228
void
propagateSizeHints
()
override
;
229
void
addAttachOffset
(
const
QPoint
point
);
230
231
bool
startSystemResize
(
Qt
::
Edges
edges
)
override
;
232
bool
startSystemMove
()
override
;
233
234
void
timerEvent
(
QTimerEvent
*
event
)
override
;
235
void
requestUpdate
()
override
;
236
void
handleUpdate
();
237
void
deliverUpdateRequest
()
override
;
238
239
void
setXdgActivationToken
(
const
QString
&
token
);
240
void
requestXdgActivationToken
(
uint
serial
)
override
;
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
255
void
initializeColorSpace
();
256
257
bool
windowEvent
(
QEvent
*
event
)
override
;
258
259
QSurfaceFormat
format
()
const
override
;
260
void
setSessionRestoreId
(
const
QString
&
role
)
override
;
261
QString
sessionRestoreId
()
const
;
262
263
void
setExtendedWindowType
(
QNativeInterface
::
Private
::
QWaylandWindow
::
WindowType
)
override
;
264
QNativeInterface
::
Private
::
QWaylandWindow
::
WindowType
extendedWindowType
()
const
;
265
void
setParentControlGeometry
(
const
QRect
&
parentAnchor
)
override
;
266
QRect
parentControlGeometry
()
const
;
267
268
public
Q_SLOTS
:
269
void
applyConfigure
();
270
271
Q_SIGNALS
:
272
void
wlSurfaceCreated
();
273
void
wlSurfaceDestroyed
();
274
275
protected
:
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
284
QWaylandDisplay
*
mDisplay
=
nullptr
;
285
286
// mSurface can be written by the main thread. Other threads should claim a read lock for access
287
mutable
QReadWriteLock
mSurfaceLock
;
288
std
::
unique_ptr
<
QWaylandSurface
>
mSurface
;
289
std
::
unique_ptr
<
QWaylandFractionalScale
>
mFractionalScale
;
290
std
::
unique_ptr
<
QWaylandViewport
>
mViewport
;
291
292
QWaylandShellIntegration
*
mShellIntegration
=
nullptr
;
293
QWaylandShellSurface
*
mShellSurface
=
nullptr
;
294
QWaylandSubSurface
*
mSubSurfaceWindow
=
nullptr
;
295
QList
<
QWaylandSubSurface
*>
mChildren
;
296
297
std
::
unique_ptr
<
QWaylandAbstractDecoration
>
mWindowDecoration
;
298
bool
mWindowDecorationEnabled
=
false
;
299
bool
mMouseEventsInContentArea
=
false
;
300
Qt
::
MouseButtons
mMousePressedInContentArea
=
Qt
::
NoButton
;
301
302
#
ifndef
QT_NO_GESTURES
303
enum
GestureState
{
304
GestureNotActive
,
305
GestureActiveInContentArea
,
306
GestureActiveInDecoration
307
};
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
316
GestureState
mGestureState
=
GestureNotActive
;
317
#
endif
318
319
std
::
atomic_bool
mFrameCallbackTimedOut
=
false
;
// Whether the frame callback has timed out
320
int
mFrameCallbackCheckIntervalTimerId
= -1;
321
QAtomicInt
mWaitingForUpdateDelivery
=
false
;
322
323
QElapsedTimer
mFrameCallbackElapsedTimer
;
// Protected by mFrameSyncMutex
324
struct
::
wl_callback
*
mFrameCallback
=
nullptr
;
// Protected by mFrameSyncMutex
325
QMutex
mFrameSyncMutex
;
326
QWaitCondition
mFrameSyncWait
;
327
328
bool
mExposed
=
false
;
329
std
::
atomic_bool
mExposeEventNeedsAttachedBuffer
=
false
;
330
331
// written from the main thread, read by the render thread
332
std
::
atomic_bool
mWaitingToApplyConfigure
=
false
;
333
// written from the render thread, read by the main thread
334
std
::
atomic_bool
mInFrameRender
=
false
;
335
336
int
mFrameCallbackTimeout
= 100;
337
QVariantMap
m_properties
;
338
339
QPoint
mOffset
;
340
std
::
optional
<
qreal
>
mScale
=
std
::
nullopt
;
341
342
QString
mWindowTitle
;
343
QIcon
mWindowIcon
;
344
345
Qt
::
WindowFlags
mFlags
;
346
QRegion
mMask
;
347
348
// Empty QRegion maps to "infinite" input region, needs a dedicated "deliberately empty" state.
349
QRegion
mInputRegion
;
350
bool
mTransparentInputRegion
=
false
;
351
352
QRegion
mOpaqueArea
;
353
Qt
::
WindowStates
mLastReportedWindowStates
=
Qt
::
WindowNoState
;
354
ToplevelWindowTilingStates
mLastReportedToplevelWindowTilingStates
=
WindowNoState
;
355
356
QWaylandShmBackingStore
*
mBackingStore
=
nullptr
;
357
358
QMargins
mCustomMargins
;
359
QString
mSessionRestoreId
;
360
361
QPointer
<
QWaylandWindow
>
mTransientParent
;
362
QList
<
QPointer
<
QWaylandWindow
>>
mChildPopups
;
363
364
Qt
::
ScreenOrientation
mLastReportedContentOrientation
=
Qt
::
PrimaryOrientation
;
365
366
std
::
unique_ptr
<
ColorManagementSurface
>
mColorManagementSurface
;
367
QSurfaceFormat
mSurfaceFormat
;
368
369
#
if
QT_CONFIG
(
cursor
)
370
QCursor
mStoredCursor
;
371
bool
mHasStoredCursor
=
false
;
372
#
endif
373
374
private
:
375
void
setGeometry_helper
(
const
QRect
&
rect
);
376
void
synthesizeExposeOnGeometryChange
();
377
void
initWindow
();
378
bool
shouldCreateShellSurface
()
const
;
379
bool
shouldCreateSubSurface
()
const
;
380
void
resetSurfaceRole
();
381
void
resetFrameCallback
();
382
QPlatformScreen
*
calculateScreenFromSurfaceEvents
()
const
;
383
void
setOpaqueArea
(
const
QRegion
&
opaqueArea
);
384
bool
isOpaque
()
const
;
385
void
updateInputRegion
();
386
void
updateViewport
();
387
bool
calculateExposure
()
const
;
388
void
setPendingImageDescription
();
389
390
void
handleMouseEventWithDecoration
(
QWaylandInputDevice
*
inputDevice
,
const
QWaylandPointerEvent
&
e
);
391
void
handleScreensChanged
();
392
void
updateScale
();
393
void
setScale
(
qreal
newScale
);
394
395
QWaylandWindow
*
guessTransientParent
()
const
;
396
void
addChildPopup
(
QWaylandWindow
*
child
);
397
void
removeChildPopup
(
QWaylandWindow
*
child
);
398
399
bool
mInResizeFromApplyConfigure
=
false
;
400
bool
lastVisible
=
false
;
401
QRect
mLastExposeGeometry
;
402
std
::
unique_ptr
<
ImageDescription
>
mPendingImageDescription
;
403
404
static
const
wl_callback_listener
callbackListener
;
405
void
handleFrameCallback
(
struct
::
wl_callback
*
callback
);
406
const
QPlatformWindow
*
lastParent
=
nullptr
;
407
408
struct
{
409
QRect
parentControlGeometry
;
410
QNativeInterface
::
Private
::
QWaylandWindow
::
WindowType
extendedWindowType
=
QNativeInterface
::
Private
::
QWaylandWindow
::
Default
;
411
}
m_popupInfo
;
412
413
static
QWaylandWindow
*
mMouseGrab
;
414
static
QWaylandWindow
*
mTopPopup
;
415
416
friend
class
QWaylandSubSurface
;
417
};
418
419
Q_DECLARE_OPERATORS_FOR_FLAGS
(
QWaylandWindow
::
ToplevelWindowTilingStates
)
420
421
inline
QIcon
QWaylandWindow
::
windowIcon
()
const
422
{
423
return
mWindowIcon
;
424
}
425
426
inline
QPoint
QWaylandWindow
::
attachOffset
()
const
427
{
428
return
mOffset
;
429
}
430
431
}
432
433
QT_END_NAMESPACE
434
435
#
endif
// QWAYLANDWINDOW_H
QPaintEngine::QPainter
friend class QPainter
Definition
qpaintengine.h:220
QtWaylandClient::ColorManagementSurface
Definition
qwaylandcolormanagement_p.h:136
QtWaylandClient::ImageDescription
Definition
qwaylandcolormanagement_p.h:102
QtWaylandClient::QWaylandAbstractDecorationPrivate
Definition
qwaylandabstractdecoration.cpp:21
QtWaylandClient::QWaylandAbstractDecorationPrivate::m_isDirty
bool m_isDirty
Definition
qwaylandabstractdecoration.cpp:31
QtWaylandClient::QWaylandAbstractDecorationPrivate::m_wayland_window
QWaylandWindow * m_wayland_window
Definition
qwaylandabstractdecoration.cpp:29
QtWaylandClient::QWaylandAbstractDecorationPrivate::m_mouseButtons
Qt::MouseButtons m_mouseButtons
Definition
qwaylandabstractdecoration.cpp:34
QtWaylandClient::QWaylandAbstractDecorationPrivate::~QWaylandAbstractDecorationPrivate
~QWaylandAbstractDecorationPrivate() override
Definition
qwaylandabstractdecoration.cpp:42
QtWaylandClient::QWaylandAbstractDecorationPrivate::m_window
QWindow * m_window
Definition
qwaylandabstractdecoration.cpp:28
QtWaylandClient::QWaylandAbstractDecorationPrivate::m_decorationContentImage
QImage m_decorationContentImage
Definition
qwaylandabstractdecoration.cpp:32
QtWaylandClient::QWaylandAbstractDecoration
Definition
qwaylandabstractdecoration_p.h:48
QtWaylandClient::QWaylandFractionalScale
Definition
qwaylandfractionalscale_p.h:31
QtWaylandClient::QWaylandPointerEvent
Definition
qwaylandinputdevice_p.h:440
QtWaylandClient::QWaylandPointerGesturePinchEvent
Definition
qwaylandinputdevice_p.h:517
QtWaylandClient::QWaylandPointerGestureSwipeEvent
Definition
qwaylandinputdevice_p.h:492
QtWaylandClient::QWaylandSurface
Definition
qwaylandsurface_p.h:33
QtWaylandClient::QWaylandViewport
Definition
qwaylandviewport_p.h:29
QtWaylandClient::QWaylandWindow
Definition
qwaylandwindow_p.h:71
QT_BEGIN_NAMESPACE
Combined button and popup list for selecting options.
Definition
qrandomaccessasyncfile_darwin.mm:17
QtWaylandClient
Definition
qwaylandclientextension.h:16
QtWaylandClient::marginsRegion
static QRegion marginsRegion(const QSize &size, const QMargins &margins)
Definition
qwaylandabstractdecoration.cpp:73
qtbase
src
plugins
platforms
wayland
qwaylandwindow_p.h
Generated on
for Qt by
1.16.1