aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/qmldesigner/studio_templates/files/customspinbox/file.qml.tpl
blob: f3bf12180194f54393cb3201a9ee0feba9aadda7 (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/*
This is a UI file (.ui.qml) that is intended to be edited in Qt Design Studio only.
It is supposed to be strictly declarative and only uses a subset of QML. If you edit
this file manually, you might introduce QML code that is not supported by Qt Design Studio.
Check out https://doc.qt.io/qtcreator/creator-quick-ui-forms.html for details on .ui.qml files.
*/

import QtQuick 2.12
import QtQuick.Controls 2.12

SpinBox {
    id: control
    value: 50
    editable: true

    contentItem: textInput
    TextInput {
        id: textInput
        z: 2
        text: control.value

        font: control.font
        color: "#047eff"
        selectionColor: "#047eff"
        selectedTextColor: "#ffffff"
        horizontalAlignment: Qt.AlignHCenter
        verticalAlignment: Qt.AlignVCenter

        readOnly: !control.editable
        validator: control.validator
        inputMethodHints: Qt.ImhFormattedNumbersOnly
    }

    up.indicator: upIndicator

    Rectangle {
        id: upIndicator
        x: control.mirrored ? 0 : parent.width - width
        height: parent.height
        color: "#00000000"
        implicitWidth: 40
        implicitHeight: 40
        border.color: "#047eff"

        Text {
            id: text1
            text: "+"
            font.pixelSize: control.font.pixelSize * 2
            color: "#047eff"
            anchors.fill: parent
            fontSizeMode: Text.Fit
            horizontalAlignment: Text.AlignHCenter
            verticalAlignment: Text.AlignVCenter
        }
    }

    down.indicator: downIndicator
    Rectangle {
        id: downIndicator
        x: control.mirrored ? parent.width - width : 0
        height: parent.height
        color: "#00000000"
        implicitWidth: 40
        implicitHeight: 40
        border.color: "#047eff"

        Text {
            id: text2
            text: "-"
            font.pixelSize: control.font.pixelSize * 2
            color: "#047eff"
            anchors.fill: parent
            fontSizeMode: Text.Fit
            horizontalAlignment: Text.AlignHCenter
            verticalAlignment: Text.AlignVCenter
        }
    }

    background: backgroundRect
    Rectangle {
        id: backgroundRect
        color: "#00000000"
        implicitWidth: 140
        border.color: "#047eff"
    }
    states: [
        State {
            name: "normal"
            when: !control.down.pressed && !control.up.pressed
                  && control.enabled

            PropertyChanges {
                target: upIndicator
                border.color: "#047eff"
            }

            PropertyChanges {
                target: downIndicator
                border.color: "#047eff"
            }

            PropertyChanges {
                target: backgroundRect
                border.color: "#047eff"
            }

            PropertyChanges {
                target: textInput
                color: "#047eff"
                selectionColor: "#ffffff"
            }

            PropertyChanges {
                target: text1
                color: "#047eff"
            }

            PropertyChanges {
                target: text2
                color: "#047eff"
            }
        },
        State {
            name: "upPressed"
            when: control.up.pressed

            PropertyChanges {
                target: text1
                color: "#ffffff"
            }

            PropertyChanges {
                target: upIndicator
                color: "#047eff"
                border.color: "#047eff"
            }

            PropertyChanges {
                target: textInput
                color: "#047eff"
                selectionColor: "#ffffff"
            }

            PropertyChanges {
                target: downIndicator
                border.color: "#047eff"
            }

            PropertyChanges {
                target: text2
                color: "#047eff"
            }

            PropertyChanges {
                target: backgroundRect
                border.color: "#047eff"
            }
        },
        State {
            name: "downPressed"
            when: control.down.pressed

            PropertyChanges {
                target: text2
                color: "#ffffff"
            }

            PropertyChanges {
                target: downIndicator
                color: "#047eff"
                border.color: "#047eff"
            }

            PropertyChanges {
                target: textInput
                color: "#047eff"
                selectionColor: "#ffffff"
            }

            PropertyChanges {
                target: upIndicator
                border.color: "#047eff"
            }

            PropertyChanges {
                target: text1
                color: "#047eff"
            }

            PropertyChanges {
                target: backgroundRect
                border.color: "#047eff"
            }
        },
        State {
            name: "disabled"
            when: !control.enabled

            PropertyChanges {
                target: downIndicator
                border.color: "#b3047eff"
            }

            PropertyChanges {
                target: upIndicator
                border.color: "#b3047eff"
            }

            PropertyChanges {
                target: textInput
                color: "#b3047eff"
            }

            PropertyChanges {
                target: text1
                color: "#b3047eff"
            }

            PropertyChanges {
                target: text2
                color: "#b3047eff"
            }

            PropertyChanges {
                target: backgroundRect
                border.color: "#b3047eff"
            }
        }
    ]
}