XdgShellV6 QML Type

Provides an extension for desktop-style user interfaces. 更多...

导入语句: import QtWayland.Compositor 1.15
Since: Qt 5.10

信号

方法

  • void ping (WaylandClient client )

详细描述

The XdgShellV6 extension provides a way to associate a XdgToplevelV6 or XdgPopupV6 与常规 Waylnd 表面。使用 XdgToplevelV6 interface, the client can request that the surface is resized, moved, and so on.

XdgShellV6 corresponds to the Wayland interface, zxdg_shell_v6 .

To provide the functionality of the shell extension in a compositor, create an instance of the XdgShellV6 component and add it to the list of extensions supported by the compositor:

import QtWayland.Compositor 1.15
WaylandCompositor {
    XdgShellV6 {
        // ...
    }
}
					

信号文档编制

pong ( int serial )

This signal is emitted when the client has responded to a ping event with serial, serial .

注意: 相应处理程序是 onPong .

另请参阅 ping() .


popupCreated ( XdgPopupV6 popup , XdgSurfaceV6 xdgSurface )

This signal is emitted when the client has created a zxdg_popup_v6 . A common use case is to let the handler of this signal instantiate a ShellSurfaceItem or WaylandQuickItem for displaying popup QtQuick scene.

xdgSurface is the XdgSurfaceV6 popup is the role object for.

注意: 相应处理程序是 onPopupCreated .


toplevelCreated ( XdgToplevelV6 toplevel , XdgSurfaceV6 xdgSurface )

This signal is emitted when the client has created a zxdg_toplevel_v6 . A common use case is to let the handler of this signal instantiate a ShellSurfaceItem or WaylandQuickItem for displaying toplevel QtQuick scene.

xdgSurface is the XdgSurfaceV6 toplevel is the role object for.

注意: 相应处理程序是 onToplevelCreated .


xdgSurfaceCreated ( XdgSurfaceV6 xdgSurface )

This signal is emitted when the client has created a zxdg_surface_v6 。注意, xdgSurface is not mapped, i.e. according to the xdg-shell protocol it should not be displayed, until it has received a role object.

注意: 相应处理程序是 onXdgSurfaceCreated .

另请参阅 toplevelCreated() and popupCreated() .


方法文档编制

void ping ( WaylandClient client )

Sends a ping event to client . If the client replies to the event the pong signal will be emitted.