WlShell QML Type

Provides an extension for desktop-style user interfaces. More...

Import Statement: import QtWayland.Compositor 1.0

Signals

Detailed Description

The WlShell extension provides a way to assiociate a ShellSurface with a regular Wayland surface. Using the shell surface interface, the client can request that the surface is resized, moved, and so on.

WlShell corresponds to the Wayland interface wl_shell.

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

import QtWayland.Compositor 1.0

WaylandCompositor {
    extensions: WlShell {
        // ...
    }
}

Signal Documentation

void createShellSurface(object surface, object client, int id)

This signal is emitted when the client has requested a wl_shell_surface to be associated with surface, which is identified by id. The handler for this signal is expected to create the shell surface and initialize it within the scope of the signal emission.


© 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.