-
Notifications
You must be signed in to change notification settings - Fork 0
/
qswipecheckbox.cpp
2258 lines (1769 loc) · 63.5 KB
/
qswipecheckbox.cpp
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
#include "qswipecheckbox.h"
#include <QPainter>
#include <QPropertyAnimation>
#include <QParallelAnimationGroup>
#include <QEvent>
#include <QMouseEvent>
#include <QDebug>
#include <QGraphicsDropShadowEffect>
#include <QtMath>
QSwipeCheckbox::QSwipeCheckbox(QWidget *parent) : QWidget(parent) {
/*!
\class QSwipeCheckbox
\brief Flippable-Style Checkbox for the Qt Framework.
\ingroup basicwidgets
\inmodule QtWidgets
\startpage index.html
\nextpage {propertiestable.html}{Properties per Style}
\previouspage index.html
Flippable-Style Checkbox for the Qt Framework supporting different styles and lots of customization options.
*/
/*!
\enum QSwipeCheckbox::DisplayStyle
This enum sets the widgets base style.
\value Classic
The "Classic" QSwipeCheckbox style.
\value iOS
The "iOS" QSwipeCheckbox style.
\value Material
The "Material" QSwipeCheckbox style.
\value Windows
The "Windows" QSwipeCheckbox style.
*/
/*!
\enum QSwipeCheckbox::ClickableArea
This enum specifies which part of the widget is supposed to react to mouse events.
\value Full
The whole widget area is receiving mouse events.
\value Handle
The widget's knob/handle is receiving mouse events.
\value Custom
The area within the \l{QPainterPath} specified using the \l{setCustomClickableArea()} is receiving mouse events.
*/
/*!
\property QSwipeCheckbox::activeBackgroundColor
\brief This property holds the Background Color for the active state.
\sa inactiveBackgroundColor
*/
/*!
\property QSwipeCheckbox::inactiveBackgroundColor
\brief This property holds the Background Color for the inactive state.
\sa activeBackgroundColor
*/
/*!
\property QSwipeCheckbox::activeTextColor
\brief This property holds the Text Color for the active state.
\sa inactiveTextColor
*/
/*!
\property QSwipeCheckbox::inactiveTextColor
\brief This property holds the Text Color for the inactive state.
\sa activeTextColor
*/
/*!
\property QSwipeCheckbox::activeBorderColor
\brief This property holds the Border Color for the active state.
*/
/*!
\property QSwipeCheckbox::inactiveBorderColor
\brief This property holds the Border Color for the inactive state.
*/
/*!
\property QSwipeCheckbox::activeSwitchKnobColor
\brief This property holds the inner Knob/Handle Color for the active state.
\sa inactiveSwitchKnobColor
*/
/*!
\property QSwipeCheckbox::inactiveSwitchKnobColor
\brief This property holds the inner knob/handle color for the inactive state.
\sa activeSwitchKnobColor
*/
/*!
\property QSwipeCheckbox::activeText
\brief This property holds the text for the active state.
\sa inactiveText
*/
/*!
\property QSwipeCheckbox::inactiveText
\brief This property holds the text for the inactive state.
\sa activeText
*/
/*!
\property QSwipeCheckbox::borderWidth
\brief This property holds the width of the QSwipeCheckbox border.
This property's default is 2.
*/
/*!
\property QSwipeCheckbox::switchKnobSize
\brief This property holds the size (diameter) of the QSwipeCheckbox knob/handle.
*/
/*!
\property QSwipeCheckbox::animationSpeed
\brief This property holds the speed (duration) of the animation.
Setting this value to 0 disables the animation (instant switch flip).
*/
/*!
\property QSwipeCheckbox::activeTextFont
\brief This property holds the font style for the active state.
\sa inactiveTextFont
*/
/*!
\property QSwipeCheckbox::inactiveTextFont
\brief This property holds the font style for the inactive state.
\sa activeTextFont
*/
/*!
\property QSwipeCheckbox::enabled
\brief Whether the QSwipeCheckbox is enabled.
This property's default is true.
*/
/*!
\property QSwipeCheckbox::activeSwitchBorderColor
\brief This property holds the border color of the knob/handle for the active state.
\sa QSwipeCheckbox::inactiveSwitchBorderColor
*/
/*!
\property QSwipeCheckbox::inactiveSwitchBorderColor
\brief This property holds the border color of the knob/handle for the inactive state.
\sa QSwipeCheckbox::activeSwitchBorderColor
*/
/*!
\property QSwipeCheckbox::activePaddingColor
\brief This property holds the color of the padded area for the active state.
\sa QSwipeCheckbox::inactivePaddingColor
*/
/*!
\property QSwipeCheckbox::inactivePaddingColor
\brief This property holds the color of the padded area for the inactive state.
\sa QSwipeCheckbox::activePaddingColor
*/
/*!
\property QSwipeCheckbox::shadowColor
\brief This property holds the shadow color of the knob/handle for styles that support a shadow-effect.
\note The alpha component of this color is ignored, as the opacity of the shadow-effect is set separately using the \l{setShadowOpacity()}-function.
\sa setShadowOpacity() shadowOpacity()
*/
/*!
\property QSwipeCheckbox::paddingWidth
\brief This property holds the width in pixels of the padded area.
\sa setPaddingWidth()
*/
/*!
\property QSwipeCheckbox::shadowOpacity
\brief This property holds the opacity of the shadow-effect.
\sa QSwipeCheckbox::setShadowOpacity()
*/
/*!
\property QSwipeCheckbox::shadowAngle
\brief This property holds the angle od the shadow-effect in degrees.
\sa QSwipeCheckbox::setShadowAngle()
*/
/*!
\property QSwipeCheckbox::shadowSize
\brief This property holds the size of the shadow-effect.
\sa setShadowSize()
*/
/*!
\property QSwipeCheckbox::shadowEnabled
\brief This property holds whether the shadow-effect is enabled.
*/
/*!
\property QSwipeCheckbox::size
\brief This property holds the widget's size.
*/
/*!
\property QSwipeCheckbox::checked
\brief This property holds whether the QSwipeCheckbox' state is checked.
\note Any QSwipeCheckox can only be either checked (\c{true})or unchecked (\{false}). A tri-state option is \b{not supported}.
*/
/*!
\property QSwipeCheckbox::displayStyle
\brief This property holds the DisplayStyle of the widget.
*/
/*!
\property QSwipeCheckbox::clickableArea
\brief This property holds the ClickableArea setting of the widget.
*/
this->setMouseTracking(true);
m_shadowWidget = new ShadowWidget(this);
m_shadowWidget->hide();
m_shadowWidget->setEnabled(false);
this->initialize();
}
QSwipeCheckbox::~QSwipeCheckbox() {
this->setMouseTracking(false);
}
QSize QSwipeCheckbox::sizeHint() const
{
/*!
\fn QSize QSwipeCheckbox::sizeHint() const
Returns the recommended size for the widget.
\sa size
\sa minimumSize
\sa minimumSizeHint
*/
return QSize(64,28);
}
QSize QSwipeCheckbox::minimumSizeHint() const
{
/*!
\fn QSize QSwipeCheckbox::minimumSizeHint() const
This function returns the widget's minimum size.
\sa sizeHint()
*/
return QSize(42,18);
}
bool QSwipeCheckbox::checkState() const
{
/*!
\fn bool QSwipeCheckbox::checkState() const
This function returns the widget's check state.
\sa isChecked()
*/
return m_checkState;
}
void QSwipeCheckbox::setCheckState(bool state)
{
/*!
\fn void QSwipeCheckbox::setCheckState(bool state)
This function sets the \a state of the widget.
\sa checkState()
*/
m_checkState = state;
}
void QSwipeCheckbox::setCheckState(Qt::CheckState state)
{
/*!
\fn void QSwipeCheckbox::setCheckState(Qt::CheckState state)
\overload setCheckState(bool);
*/
if (state == Qt::Checked) {
this->setChecked(true);
} else if (state == Qt::Unchecked) {
this->setChecked(false);
} else {
return;
}
}
void QSwipeCheckbox::setCheckState(int state)
{
/*!
\fn void QSwipeCheckbox::setCheckState(int state)
\overload setCheckState(bool);
*/
if (state == Qt::Unchecked) {
this->setChecked(false);
} else if (state == Qt::Checked) {
this->setChecked(true);
} else {
return;
}
}
void QSwipeCheckbox::setChecked(bool checked)
{
/*!
\fn void QSwipeCheckbox::setChecked(bool checked)
This function sets wether the widget's state is \a{checked}.
*/
m_checkState = checked;
m_initialized = false;
if (checked == true) {
m_animationState = 100.00;
} else {
m_animationState = 0.00;
}
this->repaint();
}
bool QSwipeCheckbox::isChecked() const {
/*!
\overload checked(void)
\sa QSwipeCheckbox::checked()
*/
return m_checkState;
}
bool QSwipeCheckbox::checked() const
{
/*!
\fn bool QSwipeCheckbox::checked() const
This function returns the widget's check state.
*/
return m_checkState;
}
void QSwipeCheckbox::setEnabled(bool enabled)
{
/*!
\fn void QSwipeCheckbox::setEnabled(bool enabled)
This functions sets whether the widget is \a{enabled}.
*/
m_enabled = enabled;
}
bool QSwipeCheckbox::isEnabled() const
{
/*!
\overload enabled(void)
\sa QSwipeCheckbox::enabled()
*/
return m_enabled;
}
bool QSwipeCheckbox::enabled() const
{
/*!
\fn bool QSwipeCheckbox::enabled(void) const
This function returns whether the widget is enabled.
*/
return m_enabled;
}
void QSwipeCheckbox::setActiveText(QString str) {
/*!
\fn void QSwipeCheckbox::setActiveText(QString str)
This function sets the text string \a str for the active state.
*/
m_activeText = str;
}
void QSwipeCheckbox::setInactiveText(QString str) {
/*!
\fn void QSwipeCheckbox::setInactiveText(QString str)
This function sets the text string \a str for the inactive state.
*/
m_inactiveText = str;
}
void QSwipeCheckbox::setBorderWidth(int width)
{
/*!
\fn void QSwipeCheckbox::setBorderWidth(int width = 1)
This function sets the border \a width in pixels.
*/
if (width >= 0) {
m_borderWidth = width;
}
}
int QSwipeCheckbox::paddingWidth() const
{
/*!
\fn int QSwipeCheckbox::paddingWidth(void) const
This function returns the padding width in pixels.
*/
return m_paddingWidth;
}
void QSwipeCheckbox::setPaddingWidth(int width)
{
/*!
\fn void QSwipeCheckbox::setPaddingWidth(int width = 1)
This function sets the padding \a width in pixels.
*/
if (width >= 0) {
m_paddingWidth = width;
}
}
int QSwipeCheckbox::switchKnobSize() const
{
/*!
\fn int QSwipeCheckbox::switchKnobSize(void) const
This function returns the knob/handle's size in pixels.
*/
return m_switchKnobSize;
}
void QSwipeCheckbox::setSwitchKnobSize(int diameter)
{
/*!
\fn void QSwipeCheckbox::setSwitchKnobSize(int diameter = 18)
This function returns the knob/handle's size (\a{diameter}) in pixels.
*/
if (diameter > 0) {
m_switchKnobSize = diameter;
}
}
QString QSwipeCheckbox::activeText(void) const {
/*!
\fn QString QSwipeCheckbox::activeText(void) const
This function returns the text string for the active state.
*/
return m_activeText;
}
QString QSwipeCheckbox::inactiveText(void) const {
/*!
\fn QString QSwipeCheckbox::inactiveText(void) const
This function returns the text string for the inactive state.
*/
return m_inactiveText;
}
int QSwipeCheckbox::borderWidth() const
{
/*!
\fn int QSwipeCheckbox::borderWidth(void) const
This function returns the border width in pixels.
*/
return m_borderWidth;
}
void QSwipeCheckbox::setActiveBackgroundColor(QColor color)
{
/*!
\fn void QSwipeCheckbox::setActiveBackgroundColor(QColor color)
This function sets the background \a color for the active state.
*/
if (color.isValid()) {
m_activeBackgroundColor = color;
resetColors();
}
}
void QSwipeCheckbox::setInactiveBackgroundColor(QColor color)
{
/*!
\fn void QSwipeCheckbox::setInactiveBackgroundColor(QColor color)
This function sets the background \a color for the inactive state.
*/
if (color.isValid()) {
m_inactiveBackgroundColor = color;
resetColors();
}
}
void QSwipeCheckbox::setActiveTextColor(QColor color)
{
/*!
\fn void QSwipeCheckbox::setActiveTextColor(QColor color)
This function sets the text \a color for the active state.
*/
if (color.isValid()) {
m_activeTextColor = color;
resetColors();
}
}
void QSwipeCheckbox::setInactiveTextColor(QColor color)
{
/*!
\fn void QSwipeCheckbox::setInactiveTextColor(QColor color)
This function sets the text \a color for the inactive state.
*/
if (color.isValid()) {
m_inactiveTextColor = color;
resetColors();
}
}
void QSwipeCheckbox::setActiveBorderColor(QColor color) {
/*!
\fn void QSwipeCheckbox::setActiveBorderColor(QColor color)
This function sets the border \a color for the active state.
*/
if (color.isValid()) {
m_activeBorderColor = color;
resetColors();
}
}
void QSwipeCheckbox::setInactiveBorderColor(QColor color) {
/*!
\fn void QSwipeCheckbox::setInactiveBorderColor(QColor color)
This function sets the border \a color for the inactive state.
*/
if (color.isValid()) {
m_inactiveBorderColor = color;
resetColors();
}
}
void QSwipeCheckbox::setActiveSwitchBorderColor(QColor color)
{
/*!
\fn void QSwipeCheckbox::setActiveSwitchBorderColor(QColor color)
This function sets the border \a color of the knob/handle for the active state.
*/
if (color.isValid()) {
m_activeSwitchBorderColor = color;
resetColors();
}
}
void QSwipeCheckbox::setInactiveSwitchBorderColor(QColor color)
{
/*!
\fn void QSwipeCheckbox::setInactiveSwitchBorderColor(QColor color)
This function sets the border \a color of the knob/handle for the inactive state.
*/
if (color.isValid()) {
m_inactiveSwitchBorderColor = color;
resetColors();
}
}
void QSwipeCheckbox::setActiveSwitchKnobColor(QColor color)
{
/*!
\fn void QSwipeCheckbox::setActiveSwitchKnobColor(QColor color)
This function sets the \a color of the knob/handle for the active state.
*/
if (color.isValid()) {
m_activeSwitchKnobColor = color;
resetColors();
}
}
void QSwipeCheckbox::setInactiveSwitchKnobColor(QColor color)
{
/*!
\fn void QSwipeCheckbox::setInactiveSwitchKnobColor(QColor color)
This function sets the \a color of the knob/handle for the inactive state.
*/
if (color.isValid()) {
m_inactiveSwitchKnobColor = color;
resetColors();
}
}
void QSwipeCheckbox::setActivePaddingColor(QColor color)
{
/*!
\fn void QSwipeCheckbox::setActivePaddingColor(QColor color)
This function sets the \a color of the padding area for the active state.
*/
if (color.isValid()) {
m_activePaddingColor = color;
resetColors();
}
}
void QSwipeCheckbox::setInactivePaddingColor(QColor color)
{
/*!
\fn void QSwipeCheckbox::setInactivePaddingColor(QColor color)
This function sets the \a color of the padding area for the inactive state.
*/
if (color.isValid()) {
m_inactivePaddingColor = color;
resetColors();
}
}
void QSwipeCheckbox::setShadowColor(QColor color)
{
/*!
\fn void QSwipeCheckbox::setShadowColor(QColor color)
This function sets the \a color of the shadow-effect.
\note The alpha component of this color is ignored, as the opacity of the shadow-effect is set separately using the \l{setShadowOpacity()}-function.
*/
if (color.isValid()) {
m_shadowColor = color;
}
}
void QSwipeCheckbox::setBackgroundColors(QColor active, QColor inactive)
{
/*!
\fn void QSwipeCheckbox::setBackgroundColors(QColor active, QColor inactive)
This function is provided for convenience to combine \l{setActiveBackgroundColor()} and \l{setInactiveBackgroundColor()}.
\sa setActiveBackgroundColor()
\sa setInactiveBackgroundColor()
*/
if (active.isValid()) {
m_activeBackgroundColor = active;
}
if (inactive.isValid()) {
m_inactiveBackgroundColor = inactive;
}
if (active.isValid() or inactive.isValid()) {
resetColors();
}
}
void QSwipeCheckbox::setTextColors(QColor active, QColor inactive)
{
/*!
\fn void QSwipeCheckbox::setTextColors(QColor active, QColor inactive)
This function is provided for convenience to combine \l{setActiveTextColor()} and \l{setInactiveTextColor()}.
\sa setActiveTextColor()
\sa setInactiveTextColor()
*/
if (active.isValid()) {
m_activeTextColor = active;
}
if (inactive.isValid()) {
m_inactiveTextColor = inactive;
}
if (active.isValid() or inactive.isValid()) {
resetColors();
}
}
void QSwipeCheckbox::setBorderColors(QColor active, QColor inactive)
{
/*!
\fn void QSwipeCheckbox::setBorderColors(QColor active, QColor inactive)
This function is provided for convenience to combine \l{setActiveBorderColor()} and \l{setInactiveBorderColor()}.
\sa setActiveBorderColor()
\sa setInactiveBorderColor()
*/
if (active.isValid()) {
m_activeBorderColor = active;
}
if (inactive.isValid()) {
m_inactiveBorderColor = inactive;
}
if (active.isValid() or inactive.isValid()) {
resetColors();
}
}
void QSwipeCheckbox::setSwitchBorderColors(QColor active, QColor inactive)
{
/*!
\fn void QSwipeCheckbox::setSwitchBorderColors(QColor active, QColor inactive)
This function is provided for convenience to combine \l{setActiveSwitchBorderColor()} and \l{setInactiveSwitchBorderColor()}.
\sa setActiveSwitchBorderColor()
\sa setInactiveSwitchBorderColor()
*/
if (active.isValid()) {
m_activeSwitchBorderColor = active;
}
if (inactive.isValid()) {
m_inactiveSwitchBorderColor = inactive;
}
if (active.isValid() or inactive.isValid()) {
resetColors();
}
}
void QSwipeCheckbox::setSwitchKnobColors(QColor active, QColor inactive)
{
/*!
\fn void QSwipeCheckbox::setSwitchKnobColors(QColor active, QColor inactive)
This function is provided for convenience to combine \l{setActiveSwitchKnobColor()} and \l{setInactiveSwitchKnobColor()}.
\sa setActiveSwitchKnobColor()
\sa setInactiveSwitchKnobColor()
*/
if (active.isValid()) {
m_activeSwitchKnobColor = active;
}
if (inactive.isValid()) {
m_inactiveSwitchKnobColor = inactive;
}
if (active.isValid() or inactive.isValid()) {
resetColors();
}
}
void QSwipeCheckbox::setPaddingColors(QColor active, QColor inactive)
{
/*!
\fn void QSwipeCheckbox::setPaddingColors(QColor active, QColor inactive)
This function is provided for convenience to combine \l{setActivePaddingColor()} and \l{setInactivePaddingColor()}.
\sa setActivePaddingColor()
\sa setInactivePaddingColor()
*/
if (active.isValid()) {
m_activePaddingColor = active;
}
if (inactive.isValid()) {
m_inactivePaddingColor = inactive;
}
if (active.isValid() or inactive.isValid()) {
resetColors();
}
}
void QSwipeCheckbox::setRenderBackgroundColor(QColor color)
{
m_renderBackgroundColor = color;
}
void QSwipeCheckbox::setRenderKnobColor(QColor color)
{
m_renderKnobColor = color;
}
void QSwipeCheckbox::setRenderKnobBorderColor(QColor color)
{
m_renderKnobBorderColor = color;
}
void QSwipeCheckbox::setRenderBorderColor(QColor color)
{
m_renderBorderColor = color;
}
void QSwipeCheckbox::setRenderPaddingColor(QColor color)
{
m_renderPaddingColor = color;
}
QColor QSwipeCheckbox::getActiveBackgroundColor() const
{
/*!
\fn QColor QSwipeCheckbox::getActiveBackgroundColor(void) const
This function returns the background color for the active state.
*/
return m_activeBackgroundColor;
}
QColor QSwipeCheckbox::getActiveTextColor() const
{
/*!
\fn QColor QSwipeCheckbox::getActiveTextColor(void) const
This function returns the text color for the active state.
*/
return m_activeTextColor;
}
QColor QSwipeCheckbox::getInactiveBackgroundColor() const
{
/*!
\fn QColor QSwipeCheckbox::getInactiveBackgroundColor(void) const
This function returns the background color for the inactive state.
*/
return m_inactiveBackgroundColor;
}
QColor QSwipeCheckbox::getInactiveTextColor() const
{
/*!
\fn QColor QSwipeCheckbox::getInactiveTextColor(void) const
This function returns the text color for the inactive state.
*/
return m_inactiveTextColor;
}
QColor QSwipeCheckbox::getActiveBorderColor() const
{
/*!
\fn QColor QSwipeCheckbox::getActiveBorderColor(void) const
This function returns the border color for the active state.
*/
return m_activeBorderColor;
}
QColor QSwipeCheckbox::getInactiveBorderColor() const
{
/*!
\fn QColor QSwipeCheckbox::getInactiveBorderColor(void) const
This function returns the border color for the inactive state.
*/
return m_inactiveBorderColor;
}
QColor QSwipeCheckbox::getActiveSwitchBorderColor() const
{
/*!
\fn QColor QSwipeCheckbox::getActiveSwitchBorderColor(void) const
This function returns the border color of the knob/handle for the active state.
*/
return m_activeSwitchBorderColor;
}
QColor QSwipeCheckbox::getInactiveSwitchBorderColor() const
{
/*!
\fn QColor QSwipeCheckbox::getInactiveSwitchBorderColor(void) const
This function returns the border color of the knob/handle for the inactive state.
*/
return m_inactiveSwitchBorderColor;
}
QColor QSwipeCheckbox::getActiveSwitchKnobColor() const
{
/*!
\fn QColor QSwipeCheckbox::getActiveSwitchKnobColor(void) const
This function returns the color of the knob/handle for the active state.
*/
return m_activeSwitchKnobColor;
}
QColor QSwipeCheckbox::getInactiveSwitchKnobColor() const
{
/*!
\fn QColor QSwipeCheckbox::getInactiveSwitchKnobColor(void) const
This function returns the color of the knob/handle for the inactive state.
*/
return m_inactiveSwitchKnobColor;
}
QColor QSwipeCheckbox::getActivePaddingColor() const
{
/*!
\fn QColor QSwipeCheckbox::getActivePaddingColor(void) const
This function returns the color of the padded area for the active state.
*/
return m_activePaddingColor;
}
QColor QSwipeCheckbox::getInactivePaddingColor() const
{
/*!
\fn QColor QSwipeCheckbox::getInactivePaddingColor(void) const
This function returns the color of the padded area for the inactive state.
*/
return m_inactivePaddingColor;
}
QColor QSwipeCheckbox::getShadowColor() const
{
/*!
\fn QColor QSwipeCheckbox::getShadowColor(void) const
This function returns the color of the shadow-effect.
*/
return m_shadowColor;
}
QColor QSwipeCheckbox::renderBackgroundColor() const
{
return m_renderBackgroundColor;
}
QColor QSwipeCheckbox::renderKnobColor() const
{
return m_renderKnobColor;
}
QColor QSwipeCheckbox::renderBorderColor() const
{
return m_renderBorderColor;
}
QColor QSwipeCheckbox::renderKnobBorderColor() const
{
return m_renderKnobBorderColor;
}
QColor QSwipeCheckbox::renderPaddingColor() const
{
return m_renderPaddingColor;
}
void QSwipeCheckbox::setAnimationSpeed(int milliseconds) {