aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmldesigner/data/merging/SliderStyle.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qmldesigner/data/merging/SliderStyle.qml')
-rw-r--r--tests/auto/qml/qmldesigner/data/merging/SliderStyle.qml65
1 files changed, 65 insertions, 0 deletions
diff --git a/tests/auto/qml/qmldesigner/data/merging/SliderStyle.qml b/tests/auto/qml/qmldesigner/data/merging/SliderStyle.qml
new file mode 100644
index 0000000000..8af1ab1e3f
--- /dev/null
+++ b/tests/auto/qml/qmldesigner/data/merging/SliderStyle.qml
@@ -0,0 +1,65 @@
+import QtQuick 2.12
+
+
+Item {
+ id: artboard
+ width: 640
+ height: 480
+
+ Rectangle {
+ id: sliderGroove
+ x: 78
+ y: 127
+ width: 200
+ height: 6
+ color: "#bdbebf"
+ }
+
+ Rectangle {
+ id: sliderGrooveLeft
+ x: 78
+ y: 165
+ width: 200
+ height: 6
+ color: "#21be2b"
+ radius: 2
+ }
+
+ Rectangle {
+ id: handleNormal
+ x: 130
+ y: 74
+ width: 32
+ height: 32
+ radius: 13
+ color: "#f6f6f6"
+ border.color: "#bdbebf"
+ }
+ Rectangle {
+ id: handlePressed
+ x: 78
+ y: 74
+ width: 32
+ height: 32
+ radius: 13
+ color: "#221bdb"
+ border.color: "#bdbebf"
+ }
+
+ Text {
+ id: element
+ x: 8
+ y: 320
+ color: "#eaeaea"
+ text: qsTrId("Some stuff for reference that is thrown away")
+ font.pixelSize: 32
+ }
+
+
+}
+
+/*##^##
+Designer {
+ D{i:0;formeditorColor:"#000000"}
+}
+##^##*/