diff options
Diffstat (limited to 'examples/wayland/ivi-compositor/main.qml')
-rw-r--r-- | examples/wayland/ivi-compositor/main.qml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/wayland/ivi-compositor/main.qml b/examples/wayland/ivi-compositor/main.qml index 4383070a..954218d8 100644 --- a/examples/wayland/ivi-compositor/main.qml +++ b/examples/wayland/ivi-compositor/main.qml @@ -54,6 +54,7 @@ import QtWayland.Compositor.IviApplication import QtQuick.Window WaylandCompositor { + //! [wayland output] WaylandOutput { sizeFollowsWindow: true window: Window { @@ -84,18 +85,22 @@ WaylandCompositor { } } } + //! [wayland output] Component { id: chromeComponent ShellSurfaceItem { anchors.fill: parent onSurfaceDestroyed: destroy() + //! [resizing] onWidthChanged: handleResized() onHeightChanged: handleResized() function handleResized() { shellSurface.sendConfigure(Qt.size(width, height)); } + //! [resizing] } } + //! [connecting] IviApplication { onIviSurfaceCreated: { var surfaceArea = iviSurface.iviId === 1337 ? leftArea : rightArea; @@ -103,4 +108,5 @@ WaylandCompositor { item.handleResized(); } } + //! [connecting] } |