blob: 73a5bb442549048092253e8f3a9aa37b6ffb9a68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick
import QtWayland.Compositor.IviApplication
import QtWayland.Compositor.PresentationTime
import QtWayland.Compositor.QtShell
import QtWayland.Compositor.WlShell
import QtWayland.Compositor.XdgShell
import QtWayland.Compositor.TextureSharingExtension
Item {
property var p1: IviApplication {}
property var p2: PresentationTime {}
property var p3: QtShellChrome {}
property var p4: WlShellSurface {}
property var p5: XdgPopup {}
property var p6: TextureSharingExtension {}
}
|