aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmldesigner/data/merging/SliderStyle.qml
blob: 8af1ab1e3f73735a8d8ce4db983691b359384231 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
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"}
}
##^##*/