-
Notifications
You must be signed in to change notification settings - Fork 4
/
ColorPicker.qml
551 lines (437 loc) · 19 KB
/
ColorPicker.qml
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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
import QtQuick 1.1
import "components"
Rectangle {
id: colorPicker
height: 340
width: 740
SystemPalette { id: palette }
color: palette.window
property color previousColor: "transparent"
property alias currentColor: currentColorComponents.color
ColorComponents {
id: currentColorComponents
color: "black"
onHueChanged: txtHue.text = Math.round(hue * 360);
onSaturationChanged: txtSaturation.text = Math.round(saturation * 100);
onValueChanged: txtValue.text = Math.round(value * 100);
onRedChanged: txtRed.text = Math.round(red * 255);
onGreenChanged: txtGreen.text = Math.round(green * 255);
onBlueChanged: txtBlue.text = Math.round(blue * 255);
onAlphaChanged: txtAlpha.text = Math.round(alpha * 255);
onColorChanged: txtHex.text = fullName;
}
ColorSlider2D {
id: sbSlider
anchors.top: parent.top
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.margins: 20
width: height
xValue: currentColorComponents.saturation
yValue: 1.0 - currentColorComponents.value
Rectangle {
anchors.fill: parent
rotation: -90
gradient: Gradient {
GradientStop { position: 0.0; color: "white" }
GradientStop { position: 1.0; color: Qt.hsla(currentColorComponents.hue, 1.0, 0.5, 1.0) }
}
}
Rectangle {
anchors.fill: parent
gradient: Gradient {
GradientStop { position: 1.0; color: "black" }
GradientStop { position: 0.0; color: "transparent" }
}
}
onMousePositionChanged: {
currentColorComponents.saturation = Math.max(0.0, Math.min(sbSlider.mouseX / sbSlider.width, 1.0));
currentColorComponents.value = Math.max(0.0, Math.min(1.0 - sbSlider.mouseY / sbSlider.height, 1.0));
}
}
ColorSlider {
id: hSlider
anchors.top: parent.top
anchors.bottom: parent.bottom
anchors.left: sbSlider.right
anchors.margins: 20
anchors.leftMargin: 15
value: 1.0 - currentColorComponents.hue
gradient: Gradient {
GradientStop { position: 0/6; color: "red" }
GradientStop { position: 1/6; color: "magenta" }
GradientStop { position: 2/6; color: "blue" }
GradientStop { position: 3/6; color: "cyan" }
GradientStop { position: 4/6; color: "lime" }
GradientStop { position: 5/6; color: "yellow" }
GradientStop { position: 6/6; color: "red" }
}
onMouseYChanged: currentColorComponents.hue = Math.max(0.0, Math.min(1.0 - mouseY / height, 1.0));
}
Item {
id: previewItem
anchors.top: parent.top
anchors.left: hSlider.right
anchors.margins: 20
anchors.leftMargin: anchors.margins + 17
height: 55
width: 160
Text {
text: "Current"
}
Text {
text: "Previous"
anchors.right: parent.right
}
Item {
anchors.fill: parent
anchors.topMargin: 15
TransparentBackground {
anchors.fill: parent
}
Rectangle {
anchors.fill: parent
anchors.rightMargin: parent.width / 2
color: currentColor
}
Rectangle {
anchors.fill: parent
anchors.leftMargin: parent.width / 2
color: previousColor
MouseArea {
anchors.fill: parent
onClicked: currentColorComponents.color = previousColor
}
}
}
}
Column {
id: buttonColumn
anchors.top: parent.top
anchors.topMargin: 20
anchors.right: sliderColumn.right
anchors.rightMargin: 14
spacing: 5
Button {
id: btnOk
text: "OK"
onClicked: previousColor = currentColorComponents.color
KeyNavigation.backtab: txtHex
KeyNavigation.tab: btnReset
}
Button {
id: btnReset
text: "Reset"
onClicked: {
currentColor = "black";
previousColor = "transparent";
}
KeyNavigation.backtab: btnOk
KeyNavigation.tab: txtHue
}
}
Column {
id: sliderColumn
anchors.top: previewItem.bottom
anchors.left: hSlider.right
anchors.margins: 20
spacing: 15
Column {
spacing: 5
Row {
spacing: 10
Text {
text: "H"
width: 7
anchors.verticalCenter: parent.verticalCenter
anchors.verticalCenterOffset: 5
}
ColorSlider {
orientation: Qt.Horizontal
style: "compact"
value: currentColorComponents.hue
gradient: Gradient {
GradientStop { position: 0/6; color: currentColorComponents.hsva(0 / 6, currentColorComponents.saturation, currentColorComponents.value, currentColorComponents.alpha) }
GradientStop { position: 1/6; color: currentColorComponents.hsva(1 / 6, currentColorComponents.saturation, currentColorComponents.value, currentColorComponents.alpha) }
GradientStop { position: 2/6; color: currentColorComponents.hsva(2 / 6, currentColorComponents.saturation, currentColorComponents.value, currentColorComponents.alpha) }
GradientStop { position: 3/6; color: currentColorComponents.hsva(3 / 6, currentColorComponents.saturation, currentColorComponents.value, currentColorComponents.alpha) }
GradientStop { position: 4/6; color: currentColorComponents.hsva(4 / 6, currentColorComponents.saturation, currentColorComponents.value, currentColorComponents.alpha) }
GradientStop { position: 5/6; color: currentColorComponents.hsva(5 / 6, currentColorComponents.saturation, currentColorComponents.value, currentColorComponents.alpha) }
GradientStop { position: 6/6; color: currentColorComponents.hsva(6 / 6, currentColorComponents.saturation, currentColorComponents.value, currentColorComponents.alpha) }
}
onMouseXChanged: currentColorComponents.hue = Math.max(0.0, Math.min(mouseX / width, 1.0));
}
Row {
anchors.verticalCenter: parent.verticalCenter
anchors.verticalCenterOffset: 4
TextField {
id: txtHue
text: Math.round(currentColorComponents.hue * 360)
validator: IntValidator {
bottom: 0
top: 360
}
onTextChanged: {
if(Math.round(currentColorComponents.hue * 360) !== parseInt(txtHue.text, 10))
currentColorComponents.hue = txtHue.text / 360;
}
KeyNavigation.backtab: btnReset
KeyNavigation.tab: txtSaturation
}
Text { text: " °" }
}
}
Row {
spacing: 10
Text {
text: "S"
width: 7
anchors.verticalCenter: parent.verticalCenter
anchors.verticalCenterOffset: 5
}
ColorSlider {
orientation: Qt.Horizontal
style: "compact"
value: currentColorComponents.saturation
gradient: Gradient {
GradientStop { position: 0.0; color: currentColorComponents.hsva(currentColorComponents.hue, 0.0, currentColorComponents.value, currentColorComponents.alpha) }
GradientStop { position: 1.0; color: currentColorComponents.hsva(currentColorComponents.hue, 1.0, currentColorComponents.value, currentColorComponents.alpha) }
}
onMouseXChanged: currentColorComponents.saturation = Math.max(0.0, Math.min(mouseX / width, 1.0));
}
Row {
anchors.verticalCenter: parent.verticalCenter
anchors.verticalCenterOffset: 4
TextField {
id: txtSaturation
text: Math.round(currentColorComponents.saturation * 100)
validator: IntValidator {
bottom: 0
top: 100
}
onTextChanged: {
if(Math.round(currentColorComponents.saturation * 100) !== parseInt(txtSaturation.text, 10))
currentColorComponents.saturation = txtSaturation.text / 100
}
KeyNavigation.tab: txtValue
KeyNavigation.backtab: txtHue
}
Text { text: " %" }
}
}
Row {
spacing: 10
Text {
text: "V"
width: 7
anchors.verticalCenter: parent.verticalCenter
anchors.verticalCenterOffset: 5
}
ColorSlider {
orientation: Qt.Horizontal
style: "compact"
value: currentColorComponents.value
gradient: Gradient {
GradientStop { position: 0.0; color: currentColorComponents.hsva(currentColorComponents.hue, currentColorComponents.saturation, 0.0, currentColorComponents.alpha) }
GradientStop { position: 1.0; color: currentColorComponents.hsva(currentColorComponents.hue, currentColorComponents.saturation, 1.0, currentColorComponents.alpha) }
}
onMouseXChanged: currentColorComponents.value = Math.max(0.0, Math.min(mouseX / width, 1.0));
}
Row {
anchors.verticalCenter: parent.verticalCenter
anchors.verticalCenterOffset: 4
TextField {
id: txtValue
text: Math.round(currentColorComponents.value * 100)
validator: IntValidator {
bottom: 0
top: 100
}
onTextChanged: {
if(Math.round(currentColorComponents.value * 100) !== parseInt(txtValue.text, 10))
currentColorComponents.value = txtValue.text / 100
}
KeyNavigation.tab: txtRed
KeyNavigation.backtab: txtSaturation
}
Text { text: " %" }
}
}
}
Column {
spacing: 5
Row {
spacing: 10
Text {
text: "R"
width: 7
anchors.verticalCenter: parent.verticalCenter
anchors.verticalCenterOffset: 5
}
ColorSlider {
orientation: Qt.Horizontal
style: "compact"
value: currentColorComponents.red
gradient: Gradient {
GradientStop { position: 0.0; color: Qt.rgba(0.0, currentColorComponents.green, currentColorComponents.blue, currentColorComponents.alpha) }
GradientStop { position: 1.0; color: Qt.rgba(1.0, currentColorComponents.green, currentColorComponents.blue, currentColorComponents.alpha) }
}
onMouseXChanged: currentColorComponents.red = Math.max(0.0, Math.min(mouseX / width, 1.0));
}
TextField {
id: txtRed
text: Math.round(currentColorComponents.red * 255)
anchors.verticalCenter: parent.verticalCenter
anchors.verticalCenterOffset: 4
validator: IntValidator {
bottom: 0
top: 255
}
onTextChanged: {
if(Math.round(currentColorComponents.red * 255) !== parseInt(txtRed.text, 10))
currentColorComponents.red = txtRed.text / 255;
}
KeyNavigation.tab: txtGreen
KeyNavigation.backtab: txtValue
}
}
Row {
spacing: 10
Text {
text: "G"
width: 7
anchors.verticalCenter: parent.verticalCenter
anchors.verticalCenterOffset: 5
}
ColorSlider {
orientation: Qt.Horizontal
style: "compact"
value: currentColorComponents.green
gradient: Gradient {
GradientStop { position: 0.0; color: Qt.rgba(currentColorComponents.red, 0.0, currentColorComponents.blue, currentColorComponents.alpha) }
GradientStop { position: 1.0; color: Qt.rgba(currentColorComponents.red, 1.0, currentColorComponents.blue, currentColorComponents.alpha) }
}
onMouseXChanged: currentColorComponents.green = Math.max(0.0, Math.min(mouseX / width, 1.0));
}
TextField {
id: txtGreen
text: Math.round(currentColorComponents.green * 255)
anchors.verticalCenter: parent.verticalCenter
anchors.verticalCenterOffset: 4
validator: IntValidator {
bottom: 0
top: 255
}
onTextChanged: {
if(Math.round(currentColorComponents.green * 255) !== parseInt(txtGreen.text, 10))
currentColorComponents.green = txtGreen.text / 255;
}
KeyNavigation.tab: txtBlue
KeyNavigation.backtab: txtRed
}
}
Row {
spacing: 10
Text {
text: "B"
width: 7
anchors.verticalCenter: parent.verticalCenter
anchors.verticalCenterOffset: 5
}
ColorSlider {
orientation: Qt.Horizontal
style: "compact"
value: currentColorComponents.blue
gradient: Gradient {
GradientStop { position: 0.0; color: Qt.rgba(currentColorComponents.red, currentColorComponents.green, 0.0, currentColorComponents.alpha) }
GradientStop { position: 1.0; color: Qt.rgba(currentColorComponents.red, currentColorComponents.green, 1.0, currentColorComponents.alpha) }
}
onMouseXChanged: currentColorComponents.blue = Math.max(0.0, Math.min(mouseX / width, 1.0));
}
TextField {
id: txtBlue
text: Math.round(currentColorComponents.blue * 255)
anchors.verticalCenter: parent.verticalCenter
anchors.verticalCenterOffset: 4
validator: IntValidator {
bottom: 0
top: 255
}
onTextChanged: {
if(Math.round(currentColorComponents.blue * 255) !== parseInt(txtBlue.text, 10))
currentColorComponents.blue = txtBlue.text / 255;
}
KeyNavigation.backtab: txtGreen
KeyNavigation.tab: txtAlpha
}
}
}
Row {
spacing: 10
Text {
text: "A"
width: 7
anchors.verticalCenter: parent.verticalCenter
anchors.verticalCenterOffset: 5
}
ColorSlider {
orientation: Qt.Horizontal
style: "compact"
value: currentColorComponents.alpha
gradient: Gradient {
GradientStop { position: 0.0; color: Qt.rgba(currentColorComponents.red, currentColorComponents.green, currentColorComponents.blue, 0.0) }
GradientStop { position: 1.0; color: Qt.rgba(currentColorComponents.red, currentColorComponents.green, currentColorComponents.blue, 1.0) }
}
onMouseXChanged: currentColorComponents.alpha = Math.max(0.0, Math.min(mouseX / width, 1.0));
}
TextField {
id: txtAlpha
text: Math.round(currentColorComponents.alpha * 255)
anchors.verticalCenter: parent.verticalCenter
anchors.verticalCenterOffset: 4
validator: IntValidator {
bottom: 0
top: 255
}
onTextChanged: {
if(Math.round(currentColorComponents.alpha * 255) !== parseInt(txtAlpha.text, 10))
currentColorComponents.alpha = txtAlpha.text / 255;
}
KeyNavigation.backtab: txtBlue
KeyNavigation.tab: txtHex
}
}
}
Row {
id: hexadecimalRow
spacing: 5
anchors.top: sliderColumn.bottom
anchors.topMargin: 3 + sliderColumn.spacing
anchors.right: sliderColumn.right
anchors.rightMargin: 14
Text {
text: "Hexadecimal"
anchors.verticalCenter: parent.verticalCenter
}
TextField {
id: txtHex
text: currentColorComponents.fullName
anchors.verticalCenter: parent.verticalCenter
width: 65
maximumLength: 9
validator: RegExpValidator{
regExp: /#?[0-9a-fA-F]*/
}
onTextChanged: {
if(txtHex.text[0] !== '#')
txtHex.text = '#' + txtHex.text;
if(txtHex.text.length !== 7 && txtHex.text.length !== 9)
return;
if(currentColorComponents.fullName !== txtHex.text)
currentColorComponents.color = txtHex.text;
}
KeyNavigation.backtab: txtAlpha
KeyNavigation.tab: btnOk
}
}
}