-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathExample_colorselector.qml
More file actions
451 lines (399 loc) · 14 KB
/
Example_colorselector.qml
File metadata and controls
451 lines (399 loc) · 14 KB
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
// SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later
import QtQuick 2.11
import org.deepin.dtk 1.0
Item {
Label {
id: changePaletteLabel
anchors.left: parent.left
anchors.top: parent.top
anchors.topMargin: 20
text: "Change Palette By object property"
font.pointSize: 14
font.bold: true
}
Control {
id: control1
anchors.left: parent.left
anchors.top: changePaletteLabel.bottom
anchors.topMargin: 20
width: 500
height: 50
property Palette backgroundColor: Palette {
normal: ("black")
}
property Palette backgroundColorClicked: Palette {
normal: ("blue")
}
property Palette textColorClicked: Palette {
normal: ("yellow")
}
Rectangle {
property Palette borderColor: Palette {
normal: ("red")
}
id: rect1
anchors.left: parent.left
anchors.top: control1.top
width: 250
height: 50
color: ColorSelector.backgroundColor
border.width: 1
border.color: ColorSelector.borderColor
Text {
property Palette textColor: Palette {
normal: ("white")
}
id: rect1Text
anchors.fill: parent
text: "Use it's control parent's palette.\n(Click to change.)"
color: ColorSelector.textColor
horizontalAlignment: Qt.AlignHCenter
verticalAlignment: Qt.AlignVCenter
MouseArea {
anchors.fill: parent
onClicked: {
control1.backgroundColor.normal = "red"
rect1Text.textColor.normal = "black"
}
}
}
}
Rectangle {
id: rect2
property Palette borderColor: Palette {
normal: ("red")
}
property Palette backgroundColor: Palette {
normal: ("black")
}
property Palette backgroundColorClicked: Palette {
normal: ("magenta")
}
anchors.left: rect1.right
anchors.leftMargin: 20
anchors.top: control1.top
width: 250
height: 50
color: ColorSelector.backgroundColor
border.width: 1
border.color: ColorSelector.borderColor
Text {
id: rect2Text
property Palette textColor: Palette {
normal: ("yellow")
}
property Palette textColorClicked: Palette {
normal: ("blue")
}
anchors.fill: parent
text: "Overwrite it's control parent palette.\n(Click to change.)"
color: ColorSelector.textColor
horizontalAlignment: Qt.AlignHCenter
verticalAlignment: Qt.AlignVCenter
MouseArea {
anchors.fill: parent
Palette {
id: otherBackgroundColor
normal: ("darkRed")
}
Palette {
id: othertextColor
normal: ("darkBlue")
}
onClicked: {
rect2.backgroundColor = otherBackgroundColor
rect2Text.textColor = othertextColor
}
}
}
}
}
Label {
id: changeObjectLabel
anchors.left: parent.left
anchors.top: control1.bottom
anchors.topMargin: 20
text: "Change Palette By color selector"
font.pointSize: 14
font.bold: true
}
Control {
id: control2
anchors.left: parent.left
anchors.top: changeObjectLabel.bottom
anchors.topMargin: 20
width: 500
height: 50
property Palette backgroundColor: Palette {
normal: ("black")
}
property Palette backgroundColorClicked: Palette {
normal: ("blue")
}
property Palette textColorClicked: Palette {
normal: ("cyan")
}
Rectangle {
property Palette borderColor: Palette {
normal: ("red")
}
id: rect3
anchors.left: parent.left
anchors.top: control2.top
width: 250
height: 50
color: ColorSelector.backgroundColor
border.width: 1
border.color: ColorSelector.borderColor
Text {
property Palette textColor: Palette {
normal: ("white")
}
id: rect3Text
anchors.fill: parent
text: "Use it's color seletor to change palette.\n(Click to change, double click restore)"
color: ColorSelector.textColor
horizontalAlignment: Qt.AlignHCenter
verticalAlignment: Qt.AlignVCenter
MouseArea {
anchors.fill: parent
onClicked: {
rect3.ColorSelector.backgroundColor = control2.backgroundColorClicked
rect3Text.ColorSelector.textColor = control2.textColorClicked
}
onDoubleClicked: {
rect3.ColorSelector.backgroundColor = undefined
rect3Text.ColorSelector.textColor = undefined
}
}
}
}
Rectangle {
id: rect4
anchors.left: rect3.right
anchors.top: control2.top
anchors.leftMargin: 20
width: 250
height: 50
color: ColorSelector.backgroundColor
property Palette backgroundColor: Palette {
normal: ("black")
}
property Palette backgroundColorClicked: Palette {
normal: ("magenta")
}
Text {
id: rect4Text
property Palette textColor: Palette {
normal: ("yellow")
}
property Palette textColorClicked: Palette {
normal: ("blue")
}
anchors.fill: parent
text: "Use CS to replace it's own palette.\n(Click to change, double click restore)"
color: ColorSelector.textColor
horizontalAlignment: Qt.AlignHCenter
verticalAlignment: Qt.AlignVCenter
MouseArea {
anchors.fill: parent
onClicked: {
rect4.ColorSelector.backgroundColor = rect4.backgroundColorClicked
rect4Text.ColorSelector.textColor = control2 .textColorClicked
}
onDoubleClicked: {
rect4.ColorSelector.backgroundColor = undefined
rect4Text.ColorSelector.textColor = undefined
}
}
}
}
Label {
id: changeParentLabel
anchors.left: parent.left
anchors.top: control2.bottom
anchors.topMargin: 20
text: "Change palette when parent changed"
font.pointSize: 14
font.bold: true
}
Rectangle {
id: changeParentRect
anchors.left: parent.left
anchors.top: changeParentLabel.bottom
anchors.topMargin: 20
width: 500
height: 50
Control {
id: control3
width: 220
height: 50
anchors.left: parent.left
anchors.top: parent.top
property Palette backgroundColor: Palette {
normal: ("gray")
}
Rectangle {
property Palette borderColor: Palette {
normal: ("red")
}
id: reparentRect1
width: 50
height: 50
color: ColorSelector.backgroundColor
border.width: 1
border.color: ColorSelector.borderColor
Text {
property Palette textColor: Palette {
normal: ("blue")
}
anchors.fill: parent
text: "Rect1"
color: ColorSelector.textColor
horizontalAlignment: Qt.AlignHCenter
verticalAlignment: Qt.AlignVCenter
MouseArea {
anchors.fill: parent
onClicked: {
if (reparentRect1.parent == control3)
reparentRect1.state = "reparent2"
else
reparentRect1.state = "reparent1"
}
}
}
states: [
State {
name: "reparent1"
ParentChange {
target: reparentRect1
parent: control3
x: 0
y: 0
}
},
State {
name: "reparent2"
ParentChange {
target: reparentRect1
parent: control4
x: 60
y: 0
}
}
]
}
}
Control {
id: control4
width: 220
height: 50
anchors.left: control3.right
anchors.leftMargin: 10
anchors.top: parent.top
property Palette backgroundColor: Palette {
normal: ("red")
}
Rectangle {
property Palette borderColor: Palette {
normal: ("gray")
}
id: reparentRect2
width: 50
height: 50
color: ColorSelector.backgroundColor
border.width: 1
border.color: ColorSelector.borderColor
Text {
property Palette textColor: Palette {
normal: ("yellow")
}
anchors.fill: parent
text: "Rect2"
color: ColorSelector.textColor
horizontalAlignment: Qt.AlignHCenter
verticalAlignment: Qt.AlignVCenter
MouseArea {
anchors.fill: parent
onClicked: {
if (reparentRect2.parent == control3)
reparentRect2.state = "reparent2"
else
reparentRect2.state = "reparent1"
}
}
}
states: [
State {
name: "reparent1"
ParentChange {
target: reparentRect2
parent: control3
x: 60
y: 0
}
},
State {
name: "reparent2"
ParentChange {
target: reparentRect2
parent: control4
x: 0
y: 0
}
}
]
}
}
}
Label {
id: customControlLabel
anchors.left: parent.left
anchors.top: changeParentRect.bottom
anchors.topMargin: 20
text: "Custom control which used the color selector"
font.pointSize: 14
font.bold: true
}
Row {
id: dontOverwriteControls
width: parent.width
height: 50
anchors.left: parent.left
anchors.top: customControlLabel.bottom
anchors.topMargin: 20
spacing: 5
Repeater {
model: 5
Example_customcontrolforcs {
width: 50
height: 50
text: modelData
}
}
}
Row {
id: overwriteControls
width: parent.width
height: 50
anchors.left: parent.left
anchors.top: dontOverwriteControls.bottom
anchors.topMargin: 20
spacing: 5
Repeater {
model: 5
Example_customcontrolforcs {
backgroundColor: Palette {
normal: Qt.hsla(Math.random(), 0.6, 0.6, 0.9)
hovered: Qt.hsla(Math.random(), 0.2, 0.2, 0.9)
}
width: 50
height: 50
text: modelData
}
}
}
}
}