- Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathqcolor.go
2945 lines (2362 loc) · 93.1 KB
/
qcolor.go
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
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package qtgui
// /usr/include/qt/QtGui/qcolor.h
// #include <qcolor.h>
// #include <QtGui>
// header block end
// main block begin
// main block end
// use block begin
// use block end
// ext block begin
/*
#include <stdlib.h>
// extern C begin: 24
*/
// import "C"
import"unsafe"
import"reflect"
import"fmt"
import"log"
import"github.com/kitech/qt.go/qtrt"
import"github.com/kitech/qt.go/qtcore"
// ext block end
// body block begin
/*
*/
typeQColorstruct {
*qtrt.CObject
}
typeQColor_ITFinterface {
QColor_PTR() *QColor
}
func (ptr*QColor) QColor_PTR() *QColor { returnptr }
func (this*QColor) GetCthis() unsafe.Pointer {
ifthis==nil {
returnnil
} else {
returnthis.Cthis
}
}
func (this*QColor) SetCthis(cthis unsafe.Pointer) {
ifthis.CObject==nil {
this.CObject=&qtrt.CObject{cthis}
} else {
this.CObject.Cthis=cthis
}
}
funcNewQColorFromPointer(cthis unsafe.Pointer) *QColor {
return&QColor{&qtrt.CObject{cthis}}
}
func (*QColor) NewFromPointer(cthis unsafe.Pointer) *QColor {
returnNewQColorFromPointer(cthis)
}
// /usr/include/qt/QtGui/qcolor.h:70
// index:0
// Public inline Visibility=Default Availability=Available
// [-2] void QColor()
/*
Constructs an invalid color with the RGB value (0, 0, 0). An invalid color is a color that is not properly set up for the underlying window system.
The alpha value of an invalid color is unspecified.
See also isValid().
*/
func (*QColor) NewForInherit() *QColor {
returnNewQColor()
}
funcNewQColor() *QColor {
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColorC2Ev", qtrt.FFI_TYPE_POINTER)
qtrt.ErrPrint(err, rv)
gothis:=NewQColorFromPointer(unsafe.Pointer(uintptr(rv)))
qtrt.SetFinalizer(gothis, DeleteQColor)
returngothis
}
// /usr/include/qt/QtGui/qcolor.h:71
// index:1
// Public Visibility=Default Availability=Available
// [-2] void QColor(Qt::GlobalColor)
/*
Constructs an invalid color with the RGB value (0, 0, 0). An invalid color is a color that is not properly set up for the underlying window system.
The alpha value of an invalid color is unspecified.
See also isValid().
*/
func (*QColor) NewForInherit1(colorint) *QColor {
returnNewQColor1(color)
}
funcNewQColor1(colorint) *QColor {
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColorC2EN2Qt11GlobalColorE", qtrt.FFI_TYPE_POINTER, color)
qtrt.ErrPrint(err, rv)
gothis:=NewQColorFromPointer(unsafe.Pointer(uintptr(rv)))
qtrt.SetFinalizer(gothis, DeleteQColor)
returngothis
}
// /usr/include/qt/QtGui/qcolor.h:72
// index:2
// Public inline Visibility=Default Availability=Available
// [-2] void QColor(int, int, int, int)
/*
Constructs an invalid color with the RGB value (0, 0, 0). An invalid color is a color that is not properly set up for the underlying window system.
The alpha value of an invalid color is unspecified.
See also isValid().
*/
func (*QColor) NewForInherit2(rint, gint, bint, aint) *QColor {
returnNewQColor2(r, g, b, a)
}
funcNewQColor2(rint, gint, bint, aint) *QColor {
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColorC2Eiiii", qtrt.FFI_TYPE_POINTER, r, g, b, a)
qtrt.ErrPrint(err, rv)
gothis:=NewQColorFromPointer(unsafe.Pointer(uintptr(rv)))
qtrt.SetFinalizer(gothis, DeleteQColor)
returngothis
}
// /usr/include/qt/QtGui/qcolor.h:72
// index:2
// Public inline Visibility=Default Availability=Available
// [-2] void QColor(int, int, int, int)
/*
Constructs an invalid color with the RGB value (0, 0, 0). An invalid color is a color that is not properly set up for the underlying window system.
The alpha value of an invalid color is unspecified.
See also isValid().
*/
func (*QColor) NewForInherit2p(rint, gint, bint) *QColor {
returnNewQColor2p(r, g, b)
}
funcNewQColor2p(rint, gint, bint) *QColor {
// arg: 3, int=Int, =Invalid, , Invalid
a:=int(255)
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColorC2Eiiii", qtrt.FFI_TYPE_POINTER, r, g, b, a)
qtrt.ErrPrint(err, rv)
gothis:=NewQColorFromPointer(unsafe.Pointer(uintptr(rv)))
qtrt.SetFinalizer(gothis, DeleteQColor)
returngothis
}
// /usr/include/qt/QtGui/qcolor.h:73
// index:3
// Public Visibility=Default Availability=Available
// [-2] void QColor(QRgb)
/*
Constructs an invalid color with the RGB value (0, 0, 0). An invalid color is a color that is not properly set up for the underlying window system.
The alpha value of an invalid color is unspecified.
See also isValid().
*/
func (*QColor) NewForInherit3(rgbuint) *QColor {
returnNewQColor3(rgb)
}
funcNewQColor3(rgbuint) *QColor {
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColorC2Ej", qtrt.FFI_TYPE_POINTER, rgb)
qtrt.ErrPrint(err, rv)
gothis:=NewQColorFromPointer(unsafe.Pointer(uintptr(rv)))
qtrt.SetFinalizer(gothis, DeleteQColor)
returngothis
}
// /usr/include/qt/QtGui/qcolor.h:74
// index:4
// Public Visibility=Default Availability=Available
// [-2] void QColor(QRgba64)
/*
Constructs an invalid color with the RGB value (0, 0, 0). An invalid color is a color that is not properly set up for the underlying window system.
The alpha value of an invalid color is unspecified.
See also isValid().
*/
func (*QColor) NewForInherit4(rgba64QRgba64_ITF/*123*/) *QColor {
returnNewQColor4(rgba64)
}
funcNewQColor4(rgba64QRgba64_ITF/*123*/) *QColor {
varconvArg0 unsafe.Pointer
ifrgba64!=nil&&rgba64.QRgba64_PTR() !=nil {
convArg0=rgba64.QRgba64_PTR().GetCthis()
}
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColorC2E7QRgba64", qtrt.FFI_TYPE_POINTER, convArg0)
qtrt.ErrPrint(err, rv)
gothis:=NewQColorFromPointer(unsafe.Pointer(uintptr(rv)))
qtrt.SetFinalizer(gothis, DeleteQColor)
returngothis
}
// /usr/include/qt/QtGui/qcolor.h:76
// index:5
// Public inline Visibility=Default Availability=Available
// [-2] void QColor(const QString &)
/*
Constructs an invalid color with the RGB value (0, 0, 0). An invalid color is a color that is not properly set up for the underlying window system.
The alpha value of an invalid color is unspecified.
See also isValid().
*/
func (*QColor) NewForInherit5(namestring) *QColor {
returnNewQColor5(name)
}
funcNewQColor5(namestring) *QColor {
vartmpArg0=qtcore.NewQString5(name)
varconvArg0=tmpArg0.GetCthis()
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColorC2ERK7QString", qtrt.FFI_TYPE_POINTER, convArg0)
qtrt.ErrPrint(err, rv)
gothis:=NewQColorFromPointer(unsafe.Pointer(uintptr(rv)))
qtrt.SetFinalizer(gothis, DeleteQColor)
returngothis
}
// /usr/include/qt/QtGui/qcolor.h:78
// index:6
// Public inline Visibility=Default Availability=Available
// [-2] void QColor(QStringView)
/*
Constructs an invalid color with the RGB value (0, 0, 0). An invalid color is a color that is not properly set up for the underlying window system.
The alpha value of an invalid color is unspecified.
See also isValid().
*/
func (*QColor) NewForInherit6(name qtcore.QStringView_ITF/*123*/) *QColor {
returnNewQColor6(name)
}
funcNewQColor6(name qtcore.QStringView_ITF/*123*/) *QColor {
varconvArg0 unsafe.Pointer
ifname!=nil&&name.QStringView_PTR() !=nil {
convArg0=name.QStringView_PTR().GetCthis()
}
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColorC2E11QStringView", qtrt.FFI_TYPE_POINTER, convArg0)
qtrt.ErrPrint(err, rv)
gothis:=NewQColorFromPointer(unsafe.Pointer(uintptr(rv)))
qtrt.SetFinalizer(gothis, DeleteQColor)
returngothis
}
// /usr/include/qt/QtGui/qcolor.h:79
// index:7
// Public inline Visibility=Default Availability=Available
// [-2] void QColor(const char *)
/*
Constructs an invalid color with the RGB value (0, 0, 0). An invalid color is a color that is not properly set up for the underlying window system.
The alpha value of an invalid color is unspecified.
See also isValid().
*/
func (*QColor) NewForInherit7(anamestring) *QColor {
returnNewQColor7(aname)
}
funcNewQColor7(anamestring) *QColor {
varconvArg0=qtrt.CString(aname)
deferqtrt.FreeMem(convArg0)
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColorC2EPKc", qtrt.FFI_TYPE_POINTER, convArg0)
qtrt.ErrPrint(err, rv)
gothis:=NewQColorFromPointer(unsafe.Pointer(uintptr(rv)))
qtrt.SetFinalizer(gothis, DeleteQColor)
returngothis
}
// /usr/include/qt/QtGui/qcolor.h:80
// index:8
// Public inline Visibility=Default Availability=Available
// [-2] void QColor(QLatin1String)
/*
Constructs an invalid color with the RGB value (0, 0, 0). An invalid color is a color that is not properly set up for the underlying window system.
The alpha value of an invalid color is unspecified.
See also isValid().
*/
func (*QColor) NewForInherit8(name qtcore.QLatin1String_ITF/*123*/) *QColor {
returnNewQColor8(name)
}
funcNewQColor8(name qtcore.QLatin1String_ITF/*123*/) *QColor {
varconvArg0 unsafe.Pointer
ifname!=nil&&name.QLatin1String_PTR() !=nil {
convArg0=name.QLatin1String_PTR().GetCthis()
}
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColorC2E13QLatin1String", qtrt.FFI_TYPE_POINTER, convArg0)
qtrt.ErrPrint(err, rv)
gothis:=NewQColorFromPointer(unsafe.Pointer(uintptr(rv)))
qtrt.SetFinalizer(gothis, DeleteQColor)
returngothis
}
// /usr/include/qt/QtGui/qcolor.h:81
// index:9
// Public Visibility=Default Availability=Available
// [-2] void QColor(QColor::Spec)
/*
Constructs an invalid color with the RGB value (0, 0, 0). An invalid color is a color that is not properly set up for the underlying window system.
The alpha value of an invalid color is unspecified.
See also isValid().
*/
func (*QColor) NewForInherit9(specint) *QColor {
returnNewQColor9(spec)
}
funcNewQColor9(specint) *QColor {
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColorC2ENS_4SpecE", qtrt.FFI_TYPE_POINTER, spec)
qtrt.ErrPrint(err, rv)
gothis:=NewQColorFromPointer(unsafe.Pointer(uintptr(rv)))
qtrt.SetFinalizer(gothis, DeleteQColor)
returngothis
}
// /usr/include/qt/QtGui/qcolor.h:87
// index:0
// Public inline Visibility=Default Availability=Available
// [16] QColor & operator=(QColor &&)
/*
*/
func (this*QColor) Operator_equal(other unsafe.Pointer/*333*/) *QColor {
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColoraSEOS_", qtrt.FFI_TYPE_POINTER, this.GetCthis(), other)
qtrt.ErrPrint(err, rv)
rv2:=/*==*/NewQColorFromPointer(unsafe.Pointer(uintptr(rv))) // 4441
qtrt.SetFinalizer(rv2/*==*/, DeleteQColor)
returnrv2
}
// /usr/include/qt/QtGui/qcolor.h:90
// index:1
// Public Visibility=Default Availability=Available
// [16] QColor & operator=(const QColor &)
/*
*/
func (this*QColor) Operator_equal1(arg0QColor_ITF) *QColor {
varconvArg0 unsafe.Pointer
ifarg0!=nil&&arg0.QColor_PTR() !=nil {
convArg0=arg0.QColor_PTR().GetCthis()
}
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColoraSERKS_", qtrt.FFI_TYPE_POINTER, this.GetCthis(), convArg0)
qtrt.ErrPrint(err, rv)
rv2:=/*==*/NewQColorFromPointer(unsafe.Pointer(uintptr(rv))) // 4441
qtrt.SetFinalizer(rv2/*==*/, DeleteQColor)
returnrv2
}
// /usr/include/qt/QtGui/qcolor.h:93
// index:2
// Public Visibility=Default Availability=Available
// [16] QColor & operator=(Qt::GlobalColor)
/*
*/
func (this*QColor) Operator_equal2(colorint) *QColor {
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColoraSEN2Qt11GlobalColorE", qtrt.FFI_TYPE_POINTER, this.GetCthis(), color)
qtrt.ErrPrint(err, rv)
rv2:=/*==*/NewQColorFromPointer(unsafe.Pointer(uintptr(rv))) // 4441
qtrt.SetFinalizer(rv2/*==*/, DeleteQColor)
returnrv2
}
// /usr/include/qt/QtGui/qcolor.h:95
// index:0
// Public Visibility=Default Availability=Available
// [1] bool isValid() const
/*
Returns true if the color is valid; otherwise returns false.
*/
func (this*QColor) IsValid() bool {
rv, err:=qtrt.InvokeQtFunc6("_ZNK6QColor7isValidEv", qtrt.FFI_TYPE_POINTER, this.GetCthis())
qtrt.ErrPrint(err, rv)
returnrv!=0
}
// /usr/include/qt/QtGui/qcolor.h:98
// index:0
// Public Visibility=Default Availability=Available
// [8] QString name() const
/*
Returns the name of the color in the format "#RRGGBB"; i.e. a "#" character followed by three two-digit hexadecimal numbers.
See also setNamedColor().
*/
func (this*QColor) Name() string {
rv, err:=qtrt.InvokeQtFunc6("_ZNK6QColor4nameEv", qtrt.FFI_TYPE_POINTER, this.GetCthis())
qtrt.ErrPrint(err, rv)
rv2:=qtcore.NewQStringFromPointer(unsafe.Pointer(uintptr(rv)))
rv3:=rv2.ToUtf8().Data()
qtcore.DeleteQString(rv2)
returnrv3
}
// /usr/include/qt/QtGui/qcolor.h:99
// index:1
// Public Visibility=Default Availability=Available
// [8] QString name(QColor::NameFormat) const
/*
Returns the name of the color in the format "#RRGGBB"; i.e. a "#" character followed by three two-digit hexadecimal numbers.
See also setNamedColor().
*/
func (this*QColor) Name1(formatint) string {
rv, err:=qtrt.InvokeQtFunc6("_ZNK6QColor4nameENS_10NameFormatE", qtrt.FFI_TYPE_POINTER, this.GetCthis(), format)
qtrt.ErrPrint(err, rv)
rv2:=qtcore.NewQStringFromPointer(unsafe.Pointer(uintptr(rv)))
rv3:=rv2.ToUtf8().Data()
qtcore.DeleteQString(rv2)
returnrv3
}
// /usr/include/qt/QtGui/qcolor.h:102
// index:0
// Public Visibility=Default Availability=Available
// [-2] void setNamedColor(const QString &)
/*
Sets the RGB value of this QColor to name, which may be in one of these formats:
#RGB (each of R, G, and B is a single hex digit)
#RRGGBB
#AARRGGBB (Since 5.2)
#RRRGGGBBB
#RRRRGGGGBBBB
A name from the list of colors defined in the list of SVG color keyword names provided by the World Wide Web Consortium; for example, "steelblue" or "gainsboro". These color names work on all platforms. Note that these color names are not the same as defined by the Qt::GlobalColor enums, e.g. "green" and Qt::green does not refer to the same color.
transparent - representing the absence of a color.
The color is invalid if name cannot be parsed.
See also QColor(), name(), and isValid().
*/
func (this*QColor) SetNamedColor(namestring) {
vartmpArg0=qtcore.NewQString5(name)
varconvArg0=tmpArg0.GetCthis()
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColor13setNamedColorERK7QString", qtrt.FFI_TYPE_POINTER, this.GetCthis(), convArg0)
qtrt.ErrPrint(err, rv)
}
// /usr/include/qt/QtGui/qcolor.h:104
// index:1
// Public Visibility=Default Availability=Available
// [-2] void setNamedColor(QStringView)
/*
Sets the RGB value of this QColor to name, which may be in one of these formats:
#RGB (each of R, G, and B is a single hex digit)
#RRGGBB
#AARRGGBB (Since 5.2)
#RRRGGGBBB
#RRRRGGGGBBBB
A name from the list of colors defined in the list of SVG color keyword names provided by the World Wide Web Consortium; for example, "steelblue" or "gainsboro". These color names work on all platforms. Note that these color names are not the same as defined by the Qt::GlobalColor enums, e.g. "green" and Qt::green does not refer to the same color.
transparent - representing the absence of a color.
The color is invalid if name cannot be parsed.
See also QColor(), name(), and isValid().
*/
func (this*QColor) SetNamedColor1(name qtcore.QStringView_ITF/*123*/) {
varconvArg0 unsafe.Pointer
ifname!=nil&&name.QStringView_PTR() !=nil {
convArg0=name.QStringView_PTR().GetCthis()
}
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColor13setNamedColorE11QStringView", qtrt.FFI_TYPE_POINTER, this.GetCthis(), convArg0)
qtrt.ErrPrint(err, rv)
}
// /usr/include/qt/QtGui/qcolor.h:105
// index:2
// Public Visibility=Default Availability=Available
// [-2] void setNamedColor(QLatin1String)
/*
Sets the RGB value of this QColor to name, which may be in one of these formats:
#RGB (each of R, G, and B is a single hex digit)
#RRGGBB
#AARRGGBB (Since 5.2)
#RRRGGGBBB
#RRRRGGGGBBBB
A name from the list of colors defined in the list of SVG color keyword names provided by the World Wide Web Consortium; for example, "steelblue" or "gainsboro". These color names work on all platforms. Note that these color names are not the same as defined by the Qt::GlobalColor enums, e.g. "green" and Qt::green does not refer to the same color.
transparent - representing the absence of a color.
The color is invalid if name cannot be parsed.
See also QColor(), name(), and isValid().
*/
func (this*QColor) SetNamedColor2(name qtcore.QLatin1String_ITF/*123*/) {
varconvArg0 unsafe.Pointer
ifname!=nil&&name.QLatin1String_PTR() !=nil {
convArg0=name.QLatin1String_PTR().GetCthis()
}
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColor13setNamedColorE13QLatin1String", qtrt.FFI_TYPE_POINTER, this.GetCthis(), convArg0)
qtrt.ErrPrint(err, rv)
}
// /usr/include/qt/QtGui/qcolor.h:107
// index:0
// Public static Visibility=Default Availability=Available
// [8] QStringList colorNames()
/*
Returns a QStringList containing the color names Qt knows about.
See also Predefined Colors.
*/
func (this*QColor) ColorNames() *qtcore.QStringList/*123*/ {
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColor10colorNamesEv", qtrt.FFI_TYPE_POINTER)
qtrt.ErrPrint(err, rv)
rv2:=qtcore.NewQStringListFromPointer(unsafe.Pointer(uintptr(rv))) // 333
qtrt.SetFinalizer(rv2, qtcore.DeleteQStringList)
returnrv2
}
funcQColor_ColorNames() *qtcore.QStringList/*123*/ {
varnilthis*QColor
rv:=nilthis.ColorNames()
returnrv
}
// /usr/include/qt/QtGui/qcolor.h:109
// index:0
// Public inline Visibility=Default Availability=Available
// [4] QColor::Spec spec() const
/*
Returns how the color was specified.
See also Spec and convertTo().
*/
func (this*QColor) Spec() int {
rv, err:=qtrt.InvokeQtFunc6("_ZNK6QColor4specEv", qtrt.FFI_TYPE_POINTER, this.GetCthis())
qtrt.ErrPrint(err, rv)
returnint(rv)
}
// /usr/include/qt/QtGui/qcolor.h:112
// index:0
// Public Visibility=Default Availability=Available
// [4] int alpha() const
/*
Returns the alpha color component of this color.
See also setAlpha(), alphaF(), and Alpha-Blended Drawing.
*/
func (this*QColor) Alpha() int {
rv, err:=qtrt.InvokeQtFunc6("_ZNK6QColor5alphaEv", qtrt.FFI_TYPE_POINTER, this.GetCthis())
qtrt.ErrPrint(err, rv)
returnqtrt.Cretval2go("int", rv).(int) // 1111
}
// /usr/include/qt/QtGui/qcolor.h:113
// index:0
// Public Visibility=Default Availability=Available
// [-2] void setAlpha(int)
/*
Sets the alpha of this color to alpha. Integer alpha is specified in the range 0-255.
See also alpha(), alphaF(), and Alpha-Blended Drawing.
*/
func (this*QColor) SetAlpha(alphaint) {
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColor8setAlphaEi", qtrt.FFI_TYPE_POINTER, this.GetCthis(), alpha)
qtrt.ErrPrint(err, rv)
}
// /usr/include/qt/QtGui/qcolor.h:115
// index:0
// Public Visibility=Default Availability=Available
// [8] qreal alphaF() const
/*
Returns the alpha color component of this color.
See also setAlphaF(), alpha(), and Alpha-Blended Drawing.
*/
func (this*QColor) AlphaF() float64 {
rv, err:=qtrt.InvokeQtFunc6("_ZNK6QColor6alphaFEv", qtrt.FFI_TYPE_DOUBLE, this.GetCthis())
qtrt.ErrPrint(err, rv)
returnqtrt.Cretval2go("float64", rv).(float64) // 1111
}
// /usr/include/qt/QtGui/qcolor.h:116
// index:0
// Public Visibility=Default Availability=Available
// [-2] void setAlphaF(qreal)
/*
Sets the alpha of this color to alpha. qreal alpha is specified in the range 0.0-1.0.
See also alphaF(), alpha(), and Alpha-Blended Drawing.
*/
func (this*QColor) SetAlphaF(alphafloat64) {
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColor9setAlphaFEd", qtrt.FFI_TYPE_POINTER, this.GetCthis(), alpha)
qtrt.ErrPrint(err, rv)
}
// /usr/include/qt/QtGui/qcolor.h:118
// index:0
// Public Visibility=Default Availability=Available
// [4] int red() const
/*
Returns the red color component of this color.
See also setRed(), redF(), and getRgb().
*/
func (this*QColor) Red() int {
rv, err:=qtrt.InvokeQtFunc6("_ZNK6QColor3redEv", qtrt.FFI_TYPE_POINTER, this.GetCthis())
qtrt.ErrPrint(err, rv)
returnqtrt.Cretval2go("int", rv).(int) // 1111
}
// /usr/include/qt/QtGui/qcolor.h:119
// index:0
// Public Visibility=Default Availability=Available
// [4] int green() const
/*
Returns the green color component of this color.
See also setGreen(), greenF(), and getRgb().
*/
func (this*QColor) Green() int {
rv, err:=qtrt.InvokeQtFunc6("_ZNK6QColor5greenEv", qtrt.FFI_TYPE_POINTER, this.GetCthis())
qtrt.ErrPrint(err, rv)
returnqtrt.Cretval2go("int", rv).(int) // 1111
}
// /usr/include/qt/QtGui/qcolor.h:120
// index:0
// Public Visibility=Default Availability=Available
// [4] int blue() const
/*
Returns the blue color component of this color.
See also setBlue(), blueF(), and getRgb().
*/
func (this*QColor) Blue() int {
rv, err:=qtrt.InvokeQtFunc6("_ZNK6QColor4blueEv", qtrt.FFI_TYPE_POINTER, this.GetCthis())
qtrt.ErrPrint(err, rv)
returnqtrt.Cretval2go("int", rv).(int) // 1111
}
// /usr/include/qt/QtGui/qcolor.h:121
// index:0
// Public Visibility=Default Availability=Available
// [-2] void setRed(int)
/*
Sets the red color component of this color to red. Integer components are specified in the range 0-255.
See also red(), redF(), and setRgb().
*/
func (this*QColor) SetRed(redint) {
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColor6setRedEi", qtrt.FFI_TYPE_POINTER, this.GetCthis(), red)
qtrt.ErrPrint(err, rv)
}
// /usr/include/qt/QtGui/qcolor.h:122
// index:0
// Public Visibility=Default Availability=Available
// [-2] void setGreen(int)
/*
Sets the green color component of this color to green. Integer components are specified in the range 0-255.
See also green(), greenF(), and setRgb().
*/
func (this*QColor) SetGreen(greenint) {
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColor8setGreenEi", qtrt.FFI_TYPE_POINTER, this.GetCthis(), green)
qtrt.ErrPrint(err, rv)
}
// /usr/include/qt/QtGui/qcolor.h:123
// index:0
// Public Visibility=Default Availability=Available
// [-2] void setBlue(int)
/*
Sets the blue color component of this color to blue. Integer components are specified in the range 0-255.
See also blue(), blueF(), and setRgb().
*/
func (this*QColor) SetBlue(blueint) {
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColor7setBlueEi", qtrt.FFI_TYPE_POINTER, this.GetCthis(), blue)
qtrt.ErrPrint(err, rv)
}
// /usr/include/qt/QtGui/qcolor.h:125
// index:0
// Public Visibility=Default Availability=Available
// [8] qreal redF() const
/*
Returns the red color component of this color.
See also setRedF(), red(), and getRgbF().
*/
func (this*QColor) RedF() float64 {
rv, err:=qtrt.InvokeQtFunc6("_ZNK6QColor4redFEv", qtrt.FFI_TYPE_DOUBLE, this.GetCthis())
qtrt.ErrPrint(err, rv)
returnqtrt.Cretval2go("float64", rv).(float64) // 1111
}
// /usr/include/qt/QtGui/qcolor.h:126
// index:0
// Public Visibility=Default Availability=Available
// [8] qreal greenF() const
/*
Returns the green color component of this color.
See also setGreenF(), green(), and getRgbF().
*/
func (this*QColor) GreenF() float64 {
rv, err:=qtrt.InvokeQtFunc6("_ZNK6QColor6greenFEv", qtrt.FFI_TYPE_DOUBLE, this.GetCthis())
qtrt.ErrPrint(err, rv)
returnqtrt.Cretval2go("float64", rv).(float64) // 1111
}
// /usr/include/qt/QtGui/qcolor.h:127
// index:0
// Public Visibility=Default Availability=Available
// [8] qreal blueF() const
/*
Returns the blue color component of this color.
See also setBlueF(), blue(), and getRgbF().
*/
func (this*QColor) BlueF() float64 {
rv, err:=qtrt.InvokeQtFunc6("_ZNK6QColor5blueFEv", qtrt.FFI_TYPE_DOUBLE, this.GetCthis())
qtrt.ErrPrint(err, rv)
returnqtrt.Cretval2go("float64", rv).(float64) // 1111
}
// /usr/include/qt/QtGui/qcolor.h:128
// index:0
// Public Visibility=Default Availability=Available
// [-2] void setRedF(qreal)
/*
Sets the red color component of this color to red. Float components are specified in the range 0.0-1.0.
See also redF(), red(), and setRgbF().
*/
func (this*QColor) SetRedF(redfloat64) {
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColor7setRedFEd", qtrt.FFI_TYPE_POINTER, this.GetCthis(), red)
qtrt.ErrPrint(err, rv)
}
// /usr/include/qt/QtGui/qcolor.h:129
// index:0
// Public Visibility=Default Availability=Available
// [-2] void setGreenF(qreal)
/*
Sets the green color component of this color to green. Float components are specified in the range 0.0-1.0.
See also greenF(), green(), and setRgbF().
*/
func (this*QColor) SetGreenF(greenfloat64) {
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColor9setGreenFEd", qtrt.FFI_TYPE_POINTER, this.GetCthis(), green)
qtrt.ErrPrint(err, rv)
}
// /usr/include/qt/QtGui/qcolor.h:130
// index:0
// Public Visibility=Default Availability=Available
// [-2] void setBlueF(qreal)
/*
Sets the blue color component of this color to blue. Float components are specified in the range 0.0-1.0.
See also blueF(), blue(), and setRgbF().
*/
func (this*QColor) SetBlueF(bluefloat64) {
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColor8setBlueFEd", qtrt.FFI_TYPE_POINTER, this.GetCthis(), blue)
qtrt.ErrPrint(err, rv)
}
// /usr/include/qt/QtGui/qcolor.h:132
// index:0
// Public Visibility=Default Availability=Available
// [-2] void getRgb(int *, int *, int *, int *) const
/*
Sets the contents pointed to by r, g, b, and a, to the red, green, blue, and alpha-channel (transparency) components of the color's RGB value.
These components can be retrieved individually using the red(), green(), blue() and alpha() functions.
See also rgb() and setRgb().
*/
func (this*QColor) GetRgb(r unsafe.Pointer/*666*/, g unsafe.Pointer/*666*/, b unsafe.Pointer/*666*/, a unsafe.Pointer/*666*/) {
rv, err:=qtrt.InvokeQtFunc6("_ZNK6QColor6getRgbEPiS0_S0_S0_", qtrt.FFI_TYPE_POINTER, this.GetCthis(), r, g, b, a)
qtrt.ErrPrint(err, rv)
}
// /usr/include/qt/QtGui/qcolor.h:132
// index:0
// Public Visibility=Default Availability=Available
// [-2] void getRgb(int *, int *, int *, int *) const
/*
Sets the contents pointed to by r, g, b, and a, to the red, green, blue, and alpha-channel (transparency) components of the color's RGB value.
These components can be retrieved individually using the red(), green(), blue() and alpha() functions.
See also rgb() and setRgb().
*/
func (this*QColor) GetRgbp(r unsafe.Pointer/*666*/, g unsafe.Pointer/*666*/, b unsafe.Pointer/*666*/) {
// arg: 3, int *=Pointer, =Invalid, , Invalid
vara unsafe.Pointer
rv, err:=qtrt.InvokeQtFunc6("_ZNK6QColor6getRgbEPiS0_S0_S0_", qtrt.FFI_TYPE_POINTER, this.GetCthis(), r, g, b, a)
qtrt.ErrPrint(err, rv)
}
// /usr/include/qt/QtGui/qcolor.h:133
// index:0
// Public Visibility=Default Availability=Available
// [-2] void setRgb(int, int, int, int)
/*
Sets the RGB value to r, g, b and the alpha value to a.
All the values must be in the range 0-255.
See also rgb(), getRgb(), and setRgbF().
*/
func (this*QColor) SetRgb(rint, gint, bint, aint) {
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColor6setRgbEiiii", qtrt.FFI_TYPE_POINTER, this.GetCthis(), r, g, b, a)
qtrt.ErrPrint(err, rv)
}
// /usr/include/qt/QtGui/qcolor.h:133
// index:0
// Public Visibility=Default Availability=Available
// [-2] void setRgb(int, int, int, int)
/*
Sets the RGB value to r, g, b and the alpha value to a.
All the values must be in the range 0-255.
See also rgb(), getRgb(), and setRgbF().
*/
func (this*QColor) SetRgbp(rint, gint, bint) {
// arg: 3, int=Int, =Invalid, , Invalid
a:=int(255)
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColor6setRgbEiiii", qtrt.FFI_TYPE_POINTER, this.GetCthis(), r, g, b, a)
qtrt.ErrPrint(err, rv)
}
// /usr/include/qt/QtGui/qcolor.h:145
// index:1
// Public Visibility=Default Availability=Available
// [-2] void setRgb(QRgb)
/*
Sets the RGB value to r, g, b and the alpha value to a.
All the values must be in the range 0-255.
See also rgb(), getRgb(), and setRgbF().
*/
func (this*QColor) SetRgb1(rgbuint) {
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColor6setRgbEj", qtrt.FFI_TYPE_POINTER, this.GetCthis(), rgb)
qtrt.ErrPrint(err, rv)
}
// /usr/include/qt/QtGui/qcolor.h:135
// index:0
// Public Visibility=Default Availability=Available
// [-2] void getRgbF(qreal *, qreal *, qreal *, qreal *) const
/*
Sets the contents pointed to by r, g, b, and a, to the red, green, blue, and alpha-channel (transparency) components of the color's RGB value.
These components can be retrieved individually using the redF(), greenF(), blueF() and alphaF() functions.
See also rgb() and setRgb().
*/
func (this*QColor) GetRgbF(r unsafe.Pointer/*666*/, g unsafe.Pointer/*666*/, b unsafe.Pointer/*666*/, a unsafe.Pointer/*666*/) {
rv, err:=qtrt.InvokeQtFunc6("_ZNK6QColor7getRgbFEPdS0_S0_S0_", qtrt.FFI_TYPE_POINTER, this.GetCthis(), r, g, b, a)
qtrt.ErrPrint(err, rv)
}
// /usr/include/qt/QtGui/qcolor.h:135
// index:0
// Public Visibility=Default Availability=Available
// [-2] void getRgbF(qreal *, qreal *, qreal *, qreal *) const
/*
Sets the contents pointed to by r, g, b, and a, to the red, green, blue, and alpha-channel (transparency) components of the color's RGB value.
These components can be retrieved individually using the redF(), greenF(), blueF() and alphaF() functions.
See also rgb() and setRgb().
*/
func (this*QColor) GetRgbFp(r unsafe.Pointer/*666*/, g unsafe.Pointer/*666*/, b unsafe.Pointer/*666*/) {
// arg: 3, qreal *=Pointer, qreal=Typedef, double, Double
a:=unsafe.Pointer(nil)
rv, err:=qtrt.InvokeQtFunc6("_ZNK6QColor7getRgbFEPdS0_S0_S0_", qtrt.FFI_TYPE_POINTER, this.GetCthis(), r, g, b, a)
qtrt.ErrPrint(err, rv)
}
// /usr/include/qt/QtGui/qcolor.h:136
// index:0
// Public Visibility=Default Availability=Available
// [-2] void setRgbF(qreal, qreal, qreal, qreal)
/*
Sets the color channels of this color to r (red), g (green), b (blue) and a (alpha, transparency).
All values must be in the range 0.0-1.0.
See also rgb(), getRgbF(), and setRgb().
*/
func (this*QColor) SetRgbF(rfloat64, gfloat64, bfloat64, afloat64) {
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColor7setRgbFEdddd", qtrt.FFI_TYPE_POINTER, this.GetCthis(), r, g, b, a)
qtrt.ErrPrint(err, rv)
}
// /usr/include/qt/QtGui/qcolor.h:136
// index:0
// Public Visibility=Default Availability=Available
// [-2] void setRgbF(qreal, qreal, qreal, qreal)
/*
Sets the color channels of this color to r (red), g (green), b (blue) and a (alpha, transparency).
All values must be in the range 0.0-1.0.
See also rgb(), getRgbF(), and setRgb().
*/
func (this*QColor) SetRgbFp(rfloat64, gfloat64, bfloat64) {
// arg: 3, qreal=Typedef, qreal=Typedef, double, Double
a:=float64(1.0)
rv, err:=qtrt.InvokeQtFunc6("_ZN6QColor7setRgbFEdddd", qtrt.FFI_TYPE_POINTER, this.GetCthis(), r, g, b, a)
qtrt.ErrPrint(err, rv)
}
// /usr/include/qt/QtGui/qcolor.h:138
// index:0
// Public Visibility=Default Availability=Available
// [8] QRgba64 rgba64() const
/*
Returns the RGB64 value of the color, including its alpha.
For an invalid color, the alpha value of the returned color is unspecified.
This function was introduced in Qt 5.6.
See also setRgba64(), rgba(), and rgb().
*/
func (this*QColor) Rgba64() *QRgba64/*123*/ {
rv, err:=qtrt.InvokeQtFunc6("_ZNK6QColor6rgba64Ev", qtrt.FFI_TYPE_POINTER, this.GetCthis())
qtrt.ErrPrint(err, rv)
rv2:=/*==*/NewQRgba64FromPointer(unsafe.Pointer(uintptr(rv))) // 333
qtrt.SetFinalizer(rv2/*==*/, DeleteQRgba64)