summaryrefslogtreecommitdiff
path: root/examples/wayland/custom-extension/qml-client/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/wayland/custom-extension/qml-client/main.qml')
-rw-r--r--examples/wayland/custom-extension/qml-client/main.qml9
1 files changed, 7 insertions, 2 deletions
diff --git a/examples/wayland/custom-extension/qml-client/main.qml b/examples/wayland/custom-extension/qml-client/main.qml
index 3b051578..6ceefda2 100644
--- a/examples/wayland/custom-extension/qml-client/main.qml
+++ b/examples/wayland/custom-extension/qml-client/main.qml
@@ -7,12 +7,17 @@ import io.qt.examples.customextension
Window {
id: topLevelWindow
+
+ property alias textItem: bounceText
+
+ title: "QML Client"
visible: true
+
Rectangle {
anchors.fill: parent
color: "#f1eece"
}
- property alias textItem: bounceText
+
Text {
id: bounceText
text: "press here to bounce"
@@ -49,7 +54,7 @@ Window {
console.log("Custom extension is active:", active)
registerWindow(topLevelWindow)
}
- onFontSize: {
+ onFontSize: (window, pixelSize) => {
// signal arguments: window and pixelSize
// we are free to interpret the protocol as we want, so
// let's change the font size of just one of the text items