aboutsummaryrefslogtreecommitdiffstats
path: root/src/quickcontrols/doc/snippets/qtquickcontrols-popup-property-propagation.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/quickcontrols/doc/snippets/qtquickcontrols-popup-property-propagation.qml')
-rw-r--r--src/quickcontrols/doc/snippets/qtquickcontrols-popup-property-propagation.qml59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/quickcontrols/doc/snippets/qtquickcontrols-popup-property-propagation.qml b/src/quickcontrols/doc/snippets/qtquickcontrols-popup-property-propagation.qml
new file mode 100644
index 0000000000..7f34cd31e2
--- /dev/null
+++ b/src/quickcontrols/doc/snippets/qtquickcontrols-popup-property-propagation.qml
@@ -0,0 +1,59 @@
+// Copyright (C) 2023 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+
+//! [file]
+import QtQuick.Controls.Basic
+
+ApplicationWindow {
+ width: 500
+ height: 500
+ visible: true
+ font.pixelSize: 20
+ palette.windowText: "steelblue"
+
+ // This will have a pixelSize of 20 and be "steelblue" in color.
+ header: Label {
+ text: "ApplicationWindow Label"
+ leftPadding: 20
+ topPadding: 20
+ }
+
+ Pane {
+ width: 400
+ height: 400
+ anchors.centerIn: parent
+ palette.window: "#edf3f8"
+ palette.windowText: "tomato"
+
+ // This will have a pixelSize of 20 and be "tomato" in color.
+ Label {
+ text: "Pane Label"
+ }
+
+ Popup {
+ width: 300
+ height: 300
+ anchors.centerIn: parent
+ font.pixelSize: 10
+ visible: true
+
+ // This will have a pixelSize of 10 and "steelblue" in color.
+ Label {
+ text: "Popup Label"
+ }
+
+ Popup {
+ width: 200
+ height: 200
+ anchors.centerIn: parent
+ visible: true
+
+ // This will have a pixelSize of 20 and be "steelblue" in color.
+ Label {
+ text: "Child Popup Label"
+ }
+ }
+ }
+ }
+}
+//! [file]