aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmldesigner/data/merging/ButtonStyleOutline.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmldesigner/data/merging/ButtonStyleOutline.qml')
-rw-r--r--tests/auto/qml/qmldesigner/data/merging/ButtonStyleOutline.qml83
1 files changed, 83 insertions, 0 deletions
diff --git a/tests/auto/qml/qmldesigner/data/merging/ButtonStyleOutline.qml b/tests/auto/qml/qmldesigner/data/merging/ButtonStyleOutline.qml
new file mode 100644
index 0000000000..a9a7021383
--- /dev/null
+++ b/tests/auto/qml/qmldesigner/data/merging/ButtonStyleOutline.qml
@@ -0,0 +1,83 @@
+import QtQuick 2.12
+
+
+Rectangle {
+ id: artboard
+ width: 640
+ height: 480
+ color: "#ee4040"
+
+ Rectangle {
+
+ id: buttonNormal
+ x: 286
+ y: 62
+ color: "#d4d4d4"
+ width: 100 //Bit of black magic to define the default size
+ height: 60
+
+ border.color: "gray"
+ border.width: 1
+ radius: 2
+ }
+
+ Text {
+ x: 319
+ y: 86
+ id: normalText //id only required to preserve binding
+ //binding has to be preserved
+
+ color: "gray"
+ text: "Normal"
+
+ horizontalAlignment: Text.AlignHCenter
+ //luckily enums are interpreted as variant properties and not bindings
+ verticalAlignment: Text.AlignVCenter
+ elide: Text.ElideRight
+ }
+
+ Rectangle {
+ id: buttonPressed
+ x: 123
+ y: 62
+ color: "#69b5ec"
+ width: 100 //Bit of black magic to define the default size
+ height: 60
+
+ border.color: "gray"
+ border.width: 1
+ radius: 2
+ }
+
+ Text {
+ x: 154
+ y: 86
+ id: pressedText //id only required to preserve binding
+ //binding has to be preserved
+ //anchors.fill: parent
+ color: "black"
+ text: "pressed"
+
+ horizontalAlignment: Text.AlignHCenter // should not be preserved -
+ //luckily enums are interpreted as variant properties and not bindings
+ verticalAlignment: Text.AlignVCenter // should not be preserved
+ elide: Text.ElideRight // should not be preserved
+ }
+
+ Text {
+ id: element
+ x: 1
+ y: 362
+ color: "#eaeaea"
+ text: qsTrId("Some stuff for reference that is thrown away")
+ font.pixelSize: 32
+ }
+
+
+}
+
+/*##^##
+Designer {
+ D{i:0;formeditorColor:"#000000"}
+}
+##^##*/