summaryrefslogtreecommitdiffstats
path: root/src/imports/compositor/plugins.qmltypes
blob: db104c05aed7495375232e08ad7d36e7c2d6b27f (plain)
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
import QtQuick.tooling 1.2

// This file describes the plugin-supplied types contained in the library.
// It is used for QML tooling purposes only.
//
// This file was auto-generated by:
// 'qmlplugindump -nonrelocatable QtWayland.Compositor 1.0'

Module {
    dependencies: ["QtQuick 2.0", "QtQuick.Window 2.2"]
    Component {
        name: "QWaylandClient"
        prototype: "QObject"
        exports: ["QtWayland.Compositor/WaylandClient 1.0"]
        isCreatable: false
        exportMetaObjectRevisions: [0]
        Property { name: "userId"; type: "qlonglong"; isReadonly: true }
        Property { name: "groupId"; type: "qlonglong"; isReadonly: true }
        Property { name: "processId"; type: "qlonglong"; isReadonly: true }
        Method { name: "close" }
        Method {
            name: "kill"
            Parameter { name: "signal"; type: "int" }
        }
        Method { name: "kill" }
    }
    Component {
        name: "QWaylandCompositor"
        prototype: "QObject"
        exports: ["QtWayland.Compositor/WaylandCompositorBase 1.0"]
        isCreatable: false
        exportMetaObjectRevisions: [0]
        Property { name: "socketName"; type: "QByteArray" }
        Property { name: "retainedSelection"; type: "bool" }
        Property { name: "defaultOutput"; type: "QWaylandOutput"; isPointer: true }
        Property { name: "useHardwareIntegrationExtension"; type: "bool" }
        Property {
            name: "defaultInputDevice"
            type: "QWaylandInputDevice"
            isReadonly: true
            isPointer: true
        }
        Signal {
            name: "createSurface"
            Parameter { name: "client"; type: "QWaylandClient"; isPointer: true }
            Parameter { name: "id"; type: "uint" }
            Parameter { name: "version"; type: "int" }
        }
        Signal {
            name: "surfaceCreated"
            Parameter { name: "surface"; type: "QWaylandSurface"; isPointer: true }
        }
        Signal {
            name: "surfaceAboutToBeDestroyed"
            Parameter { name: "surface"; type: "QWaylandSurface"; isPointer: true }
        }
        Signal {
            name: "subsurfaceChanged"
            Parameter { name: "child"; type: "QWaylandSurface"; isPointer: true }
            Parameter { name: "parent"; type: "QWaylandSurface"; isPointer: true }
        }
        Signal {
            name: "defaultInputDeviceChanged"
            Parameter { name: "newDevice"; type: "QWaylandInputDevice"; isPointer: true }
            Parameter { name: "oldDevice"; type: "QWaylandInputDevice"; isPointer: true }
        }
        Method { name: "processWaylandEvents" }
        Method {
            name: "destroyClientForSurface"
            Parameter { name: "surface"; type: "QWaylandSurface"; isPointer: true }
        }
        Method {
            name: "destroyClient"
            Parameter { name: "client"; type: "QWaylandClient"; isPointer: true }
        }
        Method {
            name: "outputFor"
            type: "QWaylandOutput*"
            Parameter { name: "window"; type: "QWindow"; isPointer: true }
        }
    }
    Component {
        name: "QWaylandCompositorExtension"
        prototype: "QObject"
        exports: ["QtWayland.Compositor/WaylandExtension 1.0"]
        isCreatable: false
        exportMetaObjectRevisions: [0]
    }
    Component {
        name: "QWaylandInputDevice"
        prototype: "QObject"
        exports: ["QtWayland.Compositor/WaylandInputDevice 1.0"]
        isCreatable: false
        exportMetaObjectRevisions: [0]
        Enum {
            name: "CapabilityFlags"
            values: {
                "Pointer": 1,
                "Keyboard": 2,
                "Touch": 4,
                "DefaultCapabilities": 7
            }
        }
        Signal {
            name: "mouseFocusChanged"
            Parameter { name: "newFocus"; type: "QWaylandView"; isPointer: true }
            Parameter { name: "oldFocus"; type: "QWaylandView"; isPointer: true }
        }
        Signal {
            name: "keyboardFocusChanged"
            Parameter { name: "newFocus"; type: "QWaylandSurface"; isPointer: true }
            Parameter { name: "oldFocus"; type: "QWaylandSurface"; isPointer: true }
        }
        Signal {
            name: "cursorSurfaceRequest"
            Parameter { name: "surface"; type: "QWaylandSurface"; isPointer: true }
            Parameter { name: "hotspotX"; type: "int" }
            Parameter { name: "hotspotY"; type: "int" }
        }
    }
    Component {
        name: "QWaylandMouseTracker"
        defaultProperty: "data"
        prototype: "QQuickItem"
        exports: ["QtWayland.Compositor/WaylandMouseTracker 1.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "mouseX"; type: "double"; isReadonly: true }
        Property { name: "mouseY"; type: "double"; isReadonly: true }
        Property { name: "enableWSCursor"; type: "bool" }
    }
    Component {
        name: "QWaylandOutput"
        prototype: "QObject"
        Enum {
            name: "Subpixel"
            values: {
                "SubpixelUnknown": 0,
                "SubpixelNone": 1,
                "SubpixelHorizontalRgb": 2,
                "SubpixelHorizontalBgr": 3,
                "SubpixelVerticalRgb": 4,
                "SubpixelVerticalBgr": 5
            }
        }
        Enum {
            name: "Transform"
            values: {
                "TransformNormal": 0,
                "Transform90": 1,
                "Transform180": 2,
                "Transform270": 3,
                "TransformFlipped": 4,
                "TransformFlipped90": 5,
                "TransformFlipped180": 6,
                "TransformFlipped270": 7
            }
        }
        Property { name: "compositor"; type: "QWaylandCompositor"; isPointer: true }
        Property { name: "window"; type: "QWindow"; isPointer: true }
        Property { name: "manufacturer"; type: "string" }
        Property { name: "model"; type: "string" }
        Property { name: "position"; type: "QPoint" }
        Property { name: "mode"; type: "QWaylandOutput::Mode" }
        Property { name: "geometry"; type: "QRect"; isReadonly: true }
        Property { name: "availableGeometry"; type: "QRect" }
        Property { name: "physicalSize"; type: "QSize" }
        Property { name: "subpixel"; type: "QWaylandOutput::Subpixel" }
        Property { name: "transform"; type: "QWaylandOutput::Transform" }
        Property { name: "scaleFactor"; type: "int" }
        Property { name: "sizeFollowsWindow"; type: "bool" }
        Signal { name: "physicalSizeFollowsSizeChanged" }
        Signal { name: "windowDestroyed" }
    }
    Component { name: "QWaylandQuickCompositor"; prototype: "QWaylandCompositor" }
    Component {
        name: "QWaylandQuickCompositorQuickExtensionContainer"
        defaultProperty: "data"
        prototype: "QWaylandQuickCompositor"
        exports: ["QtWayland.Compositor/WaylandCompositor 1.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "extensions"; type: "QWaylandCompositorExtension"; isList: true; isReadonly: true }
        Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
    }
    Component {
        name: "QWaylandQuickItem"
        defaultProperty: "data"
        prototype: "QQuickItem"
        exports: ["QtWayland.Compositor/WaylandQuickItem 1.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "view"; type: "QWaylandView"; isReadonly: true; isPointer: true }
        Property { name: "compositor"; type: "QWaylandCompositor"; isReadonly: true; isPointer: true }
        Property { name: "surface"; type: "QWaylandSurface"; isPointer: true }
        Property { name: "paintEnabled"; type: "bool" }
        Property { name: "touchEventsEnabled"; type: "bool" }
        Property { name: "origin"; type: "QWaylandSurface::Origin"; isReadonly: true }
        Property { name: "inputEventsEnabled"; type: "bool" }
        Property { name: "focusOnClick"; type: "bool" }
        Property { name: "sizeFollowsSurface"; type: "bool" }
        Property { name: "subsurfaceHandler"; type: "QObject"; isPointer: true }
        Signal { name: "surfaceDestroyed" }
        Signal {
            name: "mouseMove"
            Parameter { name: "windowPosition"; type: "QPointF" }
        }
        Signal { name: "mouseRelease" }
        Method {
            name: "takeFocus"
            Parameter { name: "device"; type: "QWaylandInputDevice"; isPointer: true }
        }
        Method { name: "takeFocus" }
        Method {
            name: "setPaintEnabled"
            Parameter { name: "paintEnabled"; type: "bool" }
        }
        Method { name: "raise" }
        Method { name: "lower" }
        Method {
            name: "inputMethodQuery"
            type: "QVariant"
            Parameter { name: "query"; type: "Qt::InputMethodQuery" }
            Parameter { name: "argument"; type: "QVariant" }
        }
    }
    Component {
        name: "QWaylandQuickOutput"
        prototype: "QWaylandOutput"
        exports: ["QtWayland.Compositor/WaylandOutput 1.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "automaticFrameCallback"; type: "bool" }
        Method { name: "updateStarted" }
    }
    Component {
        name: "QWaylandQuickSurface"
        prototype: "QWaylandSurface"
        exports: ["QtWayland.Compositor/WaylandSurface 1.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "useTextureAlpha"; type: "bool" }
        Property { name: "clientRenderingEnabled"; type: "bool" }
    }
    Component {
        name: "QWaylandQuickWlShellSurfaceItem"
        defaultProperty: "data"
        prototype: "QWaylandQuickItem"
        exports: ["QtWayland.Compositor/WlShellSurfaceItem 1.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "shellSurface"; type: "QWaylandWlShellSurface"; isPointer: true }
        Property { name: "moveItem"; type: "QQuickItem"; isPointer: true }
    }
    Component {
        name: "QWaylandQuickXdgSurfaceItem"
        defaultProperty: "data"
        prototype: "QWaylandQuickItem"
        exports: ["QtWayland.Compositor/XdgSurfaceItem 1.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "xdgSurface"; type: "QWaylandXdgSurface"; isPointer: true }
        Property { name: "moveItem"; type: "QQuickItem"; isPointer: true }
    }
    Component {
        name: "QWaylandResource"
        exports: ["QtWayland.Compositor/WaylandResource 1.0"]
        isCreatable: false
        exportMetaObjectRevisions: [0]
    }
    Component {
        name: "QWaylandSurface"
        prototype: "QObject"
        exports: ["QtWayland.Compositor/WaylandSurfaceBase 1.0"]
        isCreatable: false
        exportMetaObjectRevisions: [0]
        Enum {
            name: "Origin"
            values: {
                "OriginTopLeft": 0,
                "OriginBottomLeft": 1
            }
        }
        Property { name: "client"; type: "QWaylandClient"; isReadonly: true; isPointer: true }
        Property { name: "size"; type: "QSize"; isReadonly: true }
        Property { name: "contentOrientation"; type: "Qt::ScreenOrientation"; isReadonly: true }
        Property { name: "origin"; type: "QWaylandSurface::Origin"; isReadonly: true }
        Property { name: "isMapped"; type: "bool"; isReadonly: true }
        Property { name: "cursorSurface"; type: "bool" }
        Signal { name: "mappedChanged" }
        Signal {
            name: "damaged"
            Parameter { name: "rect"; type: "QRegion" }
        }
        Signal {
            name: "parentChanged"
            Parameter { name: "newParent"; type: "QWaylandSurface"; isPointer: true }
            Parameter { name: "oldParent"; type: "QWaylandSurface"; isPointer: true }
        }
        Signal {
            name: "childAdded"
            Parameter { name: "child"; type: "QWaylandSurface"; isPointer: true }
        }
        Signal {
            name: "offsetForNextFrame"
            Parameter { name: "offset"; type: "QPoint" }
        }
        Signal { name: "surfaceDestroyed" }
        Signal {
            name: "subsurfacePositionChanged"
            Parameter { name: "position"; type: "QPoint" }
        }
        Signal {
            name: "subsurfacePlaceAbove"
            Parameter { name: "sibling"; type: "QWaylandSurface"; isPointer: true }
        }
        Signal {
            name: "subsurfacePlaceBelow"
            Parameter { name: "sibling"; type: "QWaylandSurface"; isPointer: true }
        }
        Signal {
            name: "configure"
            Parameter { name: "hasBuffer"; type: "bool" }
        }
        Signal { name: "redraw" }
        Method { name: "updateSelection" }
        Method {
            name: "initialize"
            Parameter { name: "compositor"; type: "QWaylandCompositor"; isPointer: true }
            Parameter { name: "client"; type: "QWaylandClient"; isPointer: true }
            Parameter { name: "id"; type: "uint" }
            Parameter { name: "version"; type: "int" }
        }
        Method { name: "destroy" }
        Method { name: "isDestroyed"; type: "bool" }
        Method { name: "frameStarted" }
        Method { name: "sendFrameCallbacks" }
    }
    Component { name: "QWaylandTextInputManager"; prototype: "QWaylandCompositorExtension" }
    Component {
        name: "QWaylandTextInputManagerQuickExtension"
        defaultProperty: "data"
        prototype: "QWaylandTextInputManager"
        exports: ["QtWayland.Compositor/TextInputManager 1.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
    }
    Component {
        name: "QWaylandView"
        prototype: "QObject"
        exports: ["QtWayland.Compositor/WaylandView 1.0"]
        isCreatable: false
        exportMetaObjectRevisions: [0]
        Property { name: "renderObject"; type: "QObject"; isReadonly: true; isPointer: true }
        Property { name: "surface"; type: "QWaylandSurface"; isPointer: true }
        Property { name: "output"; type: "QWaylandOutput"; isPointer: true }
        Property { name: "bufferLock"; type: "bool" }
        Property { name: "discardFrontBuffers"; type: "bool" }
        Signal { name: "surfaceDestroyed" }
    }
    Component {
        name: "QWaylandWindowManagerExtension"
        prototype: "QWaylandCompositorExtension"
        Property { name: "showIsFullScreen"; type: "bool" }
        Signal {
            name: "openUrl"
            Parameter { name: "client"; type: "QWaylandClient"; isPointer: true }
            Parameter { name: "url"; type: "QUrl" }
        }
    }
    Component {
        name: "QWaylandWindowManagerExtensionQuickExtension"
        defaultProperty: "data"
        prototype: "QWaylandWindowManagerExtension"
        exports: ["QtWayland.Compositor/WindowManager 1.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
    }
    Component {
        name: "QWaylandWlShell"
        prototype: "QWaylandCompositorExtension"
        Signal {
            name: "createShellSurface"
            Parameter { name: "surface"; type: "QWaylandSurface"; isPointer: true }
            Parameter { name: "resource"; type: "QWaylandResource" }
        }
        Signal {
            name: "shellSurfaceCreated"
            Parameter { name: "shellSurface"; type: "QWaylandWlShellSurface"; isPointer: true }
        }
    }
    Component {
        name: "QWaylandWlShellQuickExtension"
        defaultProperty: "data"
        prototype: "QWaylandWlShell"
        exports: ["QtWayland.Compositor/WlShell 1.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
    }
    Component {
        name: "QWaylandWlShellSurface"
        prototype: "QWaylandCompositorExtension"
        exports: [
            "QtWayland.Compositor/WlShellSurface 1.0",
            "QtWayland.Compositor/WlShellSurfaceBase 1.0"
        ]
        isCreatable: false
        exportMetaObjectRevisions: [0, 0]
        Enum {
            name: "FullScreenMethod"
            values: {
                "DefaultFullScreen": 0,
                "ScaleFullScreen": 1,
                "DriverFullScreen": 2,
                "FillFullScreen": 3
            }
        }
        Enum {
            name: "ResizeEdge"
            values: {
                "NoneEdge": 0,
                "TopEdge": 1,
                "BottomEdge": 2,
                "LeftEdge": 4,
                "TopLeftEdge": 5,
                "BottomLeftEdge": 6,
                "RightEdge": 8,
                "TopRightEdge": 9,
                "BottomRightEdge": 10
            }
        }
        Enum {
            name: "FocusPolicy"
            values: {
                "DefaultFocus": 0,
                "NoKeyboardFocus": 1
            }
        }
        Property { name: "surface"; type: "QWaylandSurface"; isReadonly: true; isPointer: true }
        Property { name: "title"; type: "string"; isReadonly: true }
        Property { name: "className"; type: "string"; isReadonly: true }
        Property { name: "focusPolicy"; type: "FocusPolicy"; isReadonly: true }
        Signal { name: "pong" }
        Signal {
            name: "startMove"
            Parameter { name: "inputDevice"; type: "QWaylandInputDevice"; isPointer: true }
        }
        Signal {
            name: "startResize"
            Parameter { name: "inputDevice"; type: "QWaylandInputDevice"; isPointer: true }
            Parameter { name: "edges"; type: "ResizeEdge" }
        }
        Signal { name: "setDefaultToplevel" }
        Signal {
            name: "setTransient"
            Parameter { name: "parentSurface"; type: "QWaylandSurface"; isPointer: true }
            Parameter { name: "relativeToParent"; type: "QPoint" }
            Parameter { name: "focusPolicy"; type: "FocusPolicy" }
        }
        Signal {
            name: "setFullScreen"
            Parameter { name: "method"; type: "FullScreenMethod" }
            Parameter { name: "framerate"; type: "uint" }
            Parameter { name: "output"; type: "QWaylandOutput"; isPointer: true }
        }
        Signal {
            name: "setPopup"
            Parameter { name: "inputDevice"; type: "QWaylandInputDevice"; isPointer: true }
            Parameter { name: "parentSurface"; type: "QWaylandSurface"; isPointer: true }
            Parameter { name: "relativeToParent"; type: "QPoint" }
        }
        Signal {
            name: "setMaximized"
            Parameter { name: "output"; type: "QWaylandOutput"; isPointer: true }
        }
        Method { name: "ping" }
        Method {
            name: "initialize"
            Parameter { name: "shell"; type: "QWaylandWlShell"; isPointer: true }
            Parameter { name: "surface"; type: "QWaylandSurface"; isPointer: true }
            Parameter { name: "resource"; type: "QWaylandResource" }
        }
        Method {
            name: "sizeForResize"
            type: "QSize"
            Parameter { name: "size"; type: "QSizeF" }
            Parameter { name: "delta"; type: "QPointF" }
            Parameter { name: "edges"; type: "ResizeEdge" }
        }
        Method {
            name: "sendConfigure"
            Parameter { name: "size"; type: "QSize" }
            Parameter { name: "edges"; type: "ResizeEdge" }
        }
        Method { name: "sendPopupDone" }
    }
    Component {
        name: "QWaylandXdgShell"
        prototype: "QWaylandCompositorExtension"
        Signal {
            name: "createXdgSurface"
            Parameter { name: "surface"; type: "QWaylandSurface"; isPointer: true }
            Parameter { name: "resource"; type: "QWaylandResource" }
        }
        Signal {
            name: "xdgSurfaceCreated"
            Parameter { name: "xdgSurface"; type: "QWaylandXdgSurface"; isPointer: true }
        }
        Signal {
            name: "xdgPopupCreated"
            Parameter { name: "xdgPopup"; type: "QWaylandXdgPopup"; isPointer: true }
        }
        Signal {
            name: "createXdgPopup"
            Parameter { name: "surface"; type: "QWaylandSurface"; isPointer: true }
            Parameter { name: "parent"; type: "QWaylandSurface"; isPointer: true }
            Parameter { name: "seat"; type: "QWaylandInputDevice"; isPointer: true }
            Parameter { name: "position"; type: "QPoint" }
            Parameter { name: "resource"; type: "QWaylandResource" }
        }
        Signal {
            name: "pong"
            Parameter { name: "serial"; type: "uint" }
        }
        Method {
            name: "ping"
            type: "uint"
            Parameter { name: "client"; type: "QWaylandClient"; isPointer: true }
        }
        Method { name: "closeAllPopups" }
    }
    Component {
        name: "QWaylandXdgShellQuickExtension"
        defaultProperty: "data"
        prototype: "QWaylandXdgShell"
        exports: ["QtWayland.Compositor/XdgShell 1.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
    }
    Component {
        name: "QWaylandXdgSurface"
        prototype: "QWaylandCompositorExtension"
        exports: [
            "QtWayland.Compositor/XdgSurface 1.0",
            "QtWayland.Compositor/XdgSurfaceBase 1.0"
        ]
        isCreatable: false
        exportMetaObjectRevisions: [0, 0]
        Enum {
            name: "State"
            values: {
                "MaximizedState": 1,
                "FullscreenState": 2,
                "ResizingState": 3,
                "ActivatedState": 4
            }
        }
        Enum {
            name: "ResizeEdge"
            values: {
                "NoneEdge": 0,
                "TopEdge": 1,
                "BottomEdge": 2,
                "LeftEdge": 4,
                "TopLeftEdge": 5,
                "BottomLeftEdge": 6,
                "RightEdge": 8,
                "TopRightEdge": 9,
                "BottomRightEdge": 10
            }
        }
        Property { name: "surface"; type: "QWaylandSurface"; isReadonly: true; isPointer: true }
        Property { name: "parentSurface"; type: "QWaylandXdgSurface"; isReadonly: true; isPointer: true }
        Property { name: "title"; type: "string"; isReadonly: true }
        Property { name: "appId"; type: "string"; isReadonly: true }
        Property { name: "windowGeometry"; type: "QRect"; isReadonly: true }
        Property { name: "states"; type: "QList<int>"; isReadonly: true }
        Property { name: "maximized"; type: "bool"; isReadonly: true }
        Property { name: "fullscreen"; type: "bool"; isReadonly: true }
        Property { name: "resizing"; type: "bool"; isReadonly: true }
        Property { name: "activated"; type: "bool"; isReadonly: true }
        Signal {
            name: "showWindowMenu"
            Parameter { name: "inputDevice"; type: "QWaylandInputDevice"; isPointer: true }
            Parameter { name: "localSurfacePosition"; type: "QPoint" }
        }
        Signal {
            name: "startMove"
            Parameter { name: "inputDevice"; type: "QWaylandInputDevice"; isPointer: true }
        }
        Signal {
            name: "startResize"
            Parameter { name: "inputDevice"; type: "QWaylandInputDevice"; isPointer: true }
            Parameter { name: "edges"; type: "ResizeEdge" }
        }
        Signal { name: "setMaximized" }
        Signal { name: "unsetMaximized" }
        Signal {
            name: "setFullscreen"
            Parameter { name: "output"; type: "QWaylandOutput"; isPointer: true }
        }
        Signal { name: "unsetFullscreen" }
        Signal { name: "setMinimized" }
        Signal {
            name: "ackConfigure"
            Parameter { name: "serial"; type: "uint" }
        }
        Method {
            name: "initialize"
            Parameter { name: "xdgShell"; type: "QWaylandXdgShell"; isPointer: true }
            Parameter { name: "surface"; type: "QWaylandSurface"; isPointer: true }
            Parameter { name: "resource"; type: "QWaylandResource" }
        }
        Method {
            name: "sizeForResize"
            type: "QSize"
            Parameter { name: "size"; type: "QSizeF" }
            Parameter { name: "delta"; type: "QPointF" }
            Parameter { name: "edge"; type: "ResizeEdge" }
        }
        Method {
            name: "sendConfigure"
            type: "uint"
            Parameter { name: "size"; type: "QSize" }
            Parameter { name: "states"; type: "QVector<uint>" }
        }
        Method {
            name: "sendConfigure"
            type: "uint"
            Parameter { name: "size"; type: "QSize" }
            Parameter { name: "states"; type: "QVector<State>" }
        }
        Method { name: "sendClose" }
        Method {
            name: "requestMaximized"
            type: "uint"
            Parameter { name: "size"; type: "QSize" }
        }
        Method {
            name: "requestUnMaximized"
            type: "uint"
            Parameter { name: "size"; type: "QSize" }
        }
        Method { name: "requestUnMaximized"; type: "uint" }
        Method {
            name: "requestFullscreen"
            type: "uint"
            Parameter { name: "size"; type: "QSize" }
        }
        Method {
            name: "requestResizing"
            type: "uint"
            Parameter { name: "maxSize"; type: "QSize" }
        }
    }
    Component {
        prototype: "QQuickItem"
        name: "QtWayland.Compositor/WaylandCursorItem 1.0"
        exports: ["QtWayland.Compositor/WaylandCursorItem 1.0"]
        exportMetaObjectRevisions: [0]
        isComposite: true
        defaultProperty: "data"
        Property { name: "inputDevice"; type: "QObject"; isPointer: true }
        Property { name: "hotspotX"; type: "int" }
        Property { name: "hotspotY"; type: "int" }
        Method {
            name: "setCursorSurface"
            type: "QVariant"
            Parameter { name: "surface"; type: "QVariant" }
            Parameter { name: "hotspotX"; type: "QVariant" }
            Parameter { name: "hotspotY"; type: "QVariant" }
        }
        Property { name: "view"; type: "QWaylandView"; isReadonly: true; isPointer: true }
        Property { name: "compositor"; type: "QWaylandCompositor"; isReadonly: true; isPointer: true }
        Property { name: "surface"; type: "QWaylandSurface"; isPointer: true }
        Property { name: "paintEnabled"; type: "bool" }
        Property { name: "touchEventsEnabled"; type: "bool" }
        Property { name: "origin"; type: "QWaylandSurface::Origin"; isReadonly: true }
        Property { name: "inputEventsEnabled"; type: "bool" }
        Property { name: "focusOnClick"; type: "bool" }
        Property { name: "sizeFollowsSurface"; type: "bool" }
        Property { name: "subsurfaceHandler"; type: "QObject"; isPointer: true }
        Signal { name: "surfaceDestroyed" }
        Signal {
            name: "mouseMove"
            Parameter { name: "windowPosition"; type: "QPointF" }
        }
        Signal { name: "mouseRelease" }
        Method {
            name: "takeFocus"
            Parameter { name: "device"; type: "QWaylandInputDevice"; isPointer: true }
        }
        Method { name: "takeFocus" }
        Method {
            name: "setPaintEnabled"
            Parameter { name: "paintEnabled"; type: "bool" }
        }
        Method { name: "raise" }
        Method { name: "lower" }
        Method {
            name: "inputMethodQuery"
            type: "QVariant"
            Parameter { name: "query"; type: "Qt::InputMethodQuery" }
            Parameter { name: "argument"; type: "QVariant" }
        }
    }
    Component {
        prototype: "QQuickWindowQmlImpl"
        name: "QtWayland.Compositor/WaylandOutputWindow 1.0"
        exports: ["QtWayland.Compositor/WaylandOutputWindow 1.0"]
        exportMetaObjectRevisions: [0]
        isComposite: true
        defaultProperty: "data"
        Property { name: "compositor"; type: "QObject"; isPointer: true }
        Property { name: "output"; type: "QObject"; isPointer: true }
        Property { name: "automaticFrameCallback"; type: "bool" }
    }
}