XdgToplevel QML Type
XdgToplevel represents the toplevel window specific parts of an xdg surface. More...
Import Statement: | import QtWayland.Compositor 1.15 |
Since: | Qt 5.12 |
Instantiates: | QWaylandXdgToplevel |
Properties
- activated : bool
- appId : string
- decorationMode : enumeration
- fullscreen : bool
- maxSize : size
- maximized : bool
- minSize : size
- parentToplevel : XdgToplevel
- resizing : bool
- title : string
- xdgSurface : XdgSurface
Methods
- void sendClose()
- int sendConfigure(size size, list<int> states)
- void sendFullscreen(size size)
- void sendMaximized(size size)
- void sendResizing(size maxSize)
- void sendUnmaximized(size size)
- size sizeForResize(size size, point delta, uint edges)
Detailed Description
This type is part of the XdgShell extension and provides a way to extend the functionality of an XdgSurface with features specific to desktop-style windows.
It corresponds to the Wayland interface xdg_toplevel
.
Property Documentation
This property holds the app id of the XdgToplevel.
This property holds the current window decoration mode for this toplevel.
The possible values are:
Constant | Description |
---|---|
XdgToplevel.ServerSideDecoration | The compositor should draw window decorations. |
XdgToplevel.ClientSideDecoration | The client should draw window decorations. |
See also XdgDecorationManagerV1.
This property holds whether the client has acknowledged that it should be fullscreen.
This property holds the maximum size of the XdgToplevel as requested by the client.
The compositor is free to ignore this value and request a larger size.
This property holds whether the client has acknowledged that it should be maximized.
This property holds the minimum size of the XdgToplevel as requested by the client.
The compositor is free to ignore this value and request a smaller size.
parentToplevel : XdgToplevel |
This property holds the XdgToplevel parent of this XdgToplevel.
This property holds the title of the XdgToplevel.
xdgSurface : XdgSurface |
This property holds the XdgSurface for this XdgToplevel.
Method Documentation
Sends a configure event to the client. size contains the pixel size of the surface. A size of zero means the client is free to decide the size. Known states are enumerated in XdgToplevel::State.
Convenience for sending a configure event with the fullscreen state set, and maximized and resizing removed. The activated state is left in its current state.
size is the new size of the window.
See also sendUnmaximized.
Convenience for sending a configure event with the maximized state set, and fullscreen and resizing removed. The activated state is left in its current state.
size is the new size of the window.
Convenience for sending a configure event with the resizing state set, and maximized and fullscreen removed. The activated state is left in its current state.
maxSize is the new size of the window.
Convenience for sending a configure event with the maximized, fullscreen and resizing states removed, and fullscreen and resizing removed. The activated state is left in its current state.
size is the new size of the window. If size is zero, the client decides the size.
Convenience for computing the new size given the current size, a delta, and the edges active in the drag.