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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
|
// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qqstylekitcontrol_p.h"
#include "qqstylekitstyle_p.h"
#include "qqstylekittheme_p.h"
#include "qqstylekitcontrolproperties_p.h"
#include "qqstylekitpropertyresolver_p.h"
QT_BEGIN_NAMESPACE
// ************* QQStyleKitPropertyGroup ****************
QHash<PropertyPathId_t, QString> QQStyleKitPropertyGroup::s_pathStrings;
QQStyleKitPropertyGroup::QQStyleKitPropertyGroup(QQSK::PropertyGroup, QObject *parent)
: QObject(parent)
{
}
PropertyPathId QQStyleKitPropertyGroup::propertyPathId(QQSK::Property property, PropertyPathId::Flag flag) const
{
if (flag == PropertyPathId::Flag::IncludeSubtype) {
if (m_pathFlags.testFlag(QQSK::PropertyPathFlag::DelegateSubtype1))
return PropertyPathId(property, m_groupSpace.start, QQSK::PropertyGroup::DelegateSubtype1);
else if (m_pathFlags.testFlag(QQSK::PropertyPathFlag::DelegateSubtype2))
return PropertyPathId(property, m_groupSpace.start, QQSK::PropertyGroup::DelegateSubtype2);
}
return PropertyPathId(property, m_groupSpace.start, QQSK::PropertyGroup::DelegateSubtype0);
}
QString QQStyleKitPropertyGroup::pathToString() const
{
/* Start from the root of the path and build the path down to this group. This
* mirrors how the groups were originally created and avoids rounding issues
* that can arise if attempting to reconstruct the path “backwards”.
* Note: For each group, m_groupSpace.start is stored relative to the root,
* while m_groupSpace.size is relative to the parent group. However, when
* calculating the group index, the group-space start must be computed
* relative to the parent group.
* We cache the requested paths, as the same paths are typically requested
* repeatedly. The number of possible paths (and thus leaf groups) is well below
* 100, and in practice the cache usually ends up with fewer than 20 entries. */
if (s_pathStrings.contains(m_groupSpace.start))
return s_pathStrings[m_groupSpace.start];
constexpr PropertyPathId_t rootGroupsSize = nestedGroupsStartSize / nestedGroupCount;
const auto metaEnum = QMetaEnum::fromType<QQSK::PropertyGroup>();
PropertyPathId_t nestedGroupStart = m_groupSpace.start;
PropertyPathId_t nestedGroupSize = rootGroupsSize;
PropertyPathId_t nestedGroupIndex = nestedGroupStart / nestedGroupSize;
auto groupType = QQSK::PropertyGroup(nestedGroupIndex);
if (groupType == QQSK::PropertyGroup::Control)
return {};
QString groupName = QString::fromLatin1(metaEnum.valueToKey(static_cast<int>(groupType)));
groupName[0] = groupName[0].toLower();
QString pathString = groupName;
while (true) {
nestedGroupStart -= nestedGroupIndex * nestedGroupSize;
nestedGroupSize /= nestedGroupCount;
nestedGroupIndex = nestedGroupStart / nestedGroupSize;
groupType = QQSK::PropertyGroup(nestedGroupIndex);
if (groupType == QQSK::PropertyGroup::Control)
break;
QString groupName = QString::fromLatin1(metaEnum.valueToKey(static_cast<int>(groupType)));
groupName[0] = groupName[0].toLower();
pathString += '.'_L1 + groupName;
}
return pathString;
}
QQStyleKitControlProperties *QQStyleKitPropertyGroup::controlProperties() const
{
if (isControlProperties()) {
Q_ASSERT(qobject_cast<const QQStyleKitControlProperties *>(this));
auto *self = const_cast<QQStyleKitPropertyGroup *>(this);
return static_cast<QQStyleKitControlProperties *>(self);
}
Q_ASSERT(qobject_cast<const QQStyleKitControlProperties *>(parent()));
return static_cast<QQStyleKitControlProperties *>(parent());
}
template<typename T>
T *QQStyleKitPropertyGroup::lazyCreateGroup(T * const &ptr, QQSK::PropertyGroup group) const
{
T *nestedGroup = QQSK::lazyCreate(ptr, controlProperties(), group);
// Nested groups inherit path flags from their parents
nestedGroup->m_pathFlags = m_pathFlags;
if (group == QQSK::PropertyGroup::DelegateSubtype1) {
/* Subtypes, like states, are not part of a property's path ID—they belong to the
* storage ID instead. They are therefore prefixed later, during lookup, when
* propagation determines which value to read.
* For now, we simply record which subtype this group (and any nested groups) is
* associated with. The subtype will then be taken into account later when reading
* properties from the group. Setting aside space for the sub types was already
* taken care of during the construction of the root QQStyleKitControlProperties. */
nestedGroup->m_pathFlags.setFlag(QQSK::PropertyPathFlag::DelegateSubtype1);
nestedGroup->m_groupSpace = m_groupSpace;
} else if (group == QQSK::PropertyGroup::DelegateSubtype2) {
nestedGroup->m_pathFlags.setFlag(QQSK::PropertyPathFlag::DelegateSubtype2);
nestedGroup->m_groupSpace = m_groupSpace;
} else {
/* Calculate the available property ID space for the nested group. This is done by
* dividing the available space inside _this_ group on the number of potential groups
* that _this_ group can potentially contain. */
const PropertyPathId_t nestedGroupIndex = PropertyPathId_t(group);
const PropertyPathId_t nestedGroupSize = m_groupSpace.size / nestedGroupCount;
nestedGroup->m_groupSpace.size = nestedGroupSize;
nestedGroup->m_groupSpace.start = m_groupSpace.start + (nestedGroupIndex * nestedGroupSize);
/* Ensure that we haven’t exhausted the available PropertyPathId space. There must be
* enough room remaining to assign IDs for all properties defined in QQSK::Property.
* If this assertion triggers, consider switching to a wider PropertyPathId_t type or
* optimizing how the space is allocated. For example, certain nested paths (such as
* control.handle.indicator) can never occur, yet we currently reserve INNER_GROUP_COUNT
* for every nesting level, which is wasteful. */
Q_ASSERT(nestedGroupSize >= PropertyPathId_t(QQSK::Property::COUNT));
}
return nestedGroup;
}
/* This macro will check if the caller has the same group path as \a GROUP_PATH.
* This is needed since a QQSK::Property (e.g Color) can sometimes be a
* property in several different subclasses of QQStyleKitPropertyGroup.
* For example, both control.background.color and control.indicator.color has a
* color property. But the group path differs, so they are in reality two completely
* different properties. And in that case, when the former changes value, we want to
* emit changes globally only to that property, and not the latter.
* The caller of this macro will therefore need to go through all the usages of its
* subclass in the API, to figure out which group itself is an instance of. For the
* one that is a match, the macro will go through all readers and emit the same
* signal for them. */
#define CONDITIONALLY_EMIT_SIGNALS_GLOBALLY_FOR(CONTROL_PROPERTIES, GROUP_PATH) \
if (this == CONTROL_PROPERTIES -> GROUP_PATH ) { \
for (QQStyleKitReader *reader : QQStyleKitReader::s_allReaders) { \
const auto baseTypes = QQStyleKitPropertyResolver::baseTypesForType(reader->type()); \
if (reader->type() != controlType && !baseTypes.contains(controlType)) \
continue; \
reader->clearLocalStorage(); \
((reader-> GROUP_PATH ->*changedSignals)(), ...); \
} \
return; \
}
template<typename SUBCLASS>
void QQStyleKitPropertyGroup::handleStylePropertyChanged(void (SUBCLASS::*changedSignal)()) {
handleStylePropertiesChanged<SUBCLASS>(changedSignal);
}
template <typename SUBCLASS, typename... CHANGED_SIGNALS>
void QQStyleKitPropertyGroup::handleStylePropertiesChanged(CHANGED_SIGNALS... changedSignals)
{
/* This function will check which subclass of QQStyleKitProperties this
* group is (nested) inside. Based on that, it will decide if the signals
* should be emitted locally or not, and if the changed properties affects
* all existing QQStyleKitReaders, and therefore will need to be
* emitted 'globally'. Note that it only makes sense to call this function
* for changed properties that are available from a QQStyleKitReader.
* Properities only available from e.g QQStyleKitControl (such as
* variations), are anyway not readable from a QQStyleKitReader. */
static_assert(std::is_base_of<QQStyleKitPropertyGroup, SUBCLASS>::value,
"SUBCLASS must inherit QQStyleKitPropertyGroup");
auto *group = static_cast<SUBCLASS *>(this);
const QQSK::Subclass objectWrittenTo = controlProperties()->subclass();
if (objectWrittenTo == QQSK::Subclass::QQStyleKitState) {
((group->*changedSignals)(), ...);
if (shouldEmitGlobally()) {
const QQStyleKitControl *control = controlProperties()->asQQStyleKitState()->control();
const QQStyleKitExtendableControlType type = control->controlType();
group->emitGlobally(type, changedSignals...);
}
return;
}
if (objectWrittenTo == QQSK::Subclass::QQStyleKitReader) {
/* Unless the StyleReader has told us not to emit any signals (because it's only
* syncing it's own local storage with old values before starting a transition), we
* emit the signal like normal. This will cause the control to repaint (perhaps
* using a transition). */
if (shouldEmitLocally())
((group->*changedSignals)(), ...);
return;
}
Q_UNREACHABLE();
}
void QQStyleKitPropertyGroup::emitChangedForAllStylePropertiesRecursive()
{
/* This function will emit changed signals for all style properties in the
* StyleKit API (for a single QQStyleKitReader), which is needed after
* doing a style-, or theme change. */
const int startIndex = QQStyleKitPropertyGroup::staticMetaObject.propertyOffset();
const QMetaObject* meta = metaObject();
for (int i = startIndex; i < meta->propertyCount(); ++i) {
const QMetaProperty prop = meta->property(i);
const QMetaObject* metaObject = QMetaType::fromName(prop.typeName()).metaObject();
if (metaObject) {
if (metaObject->inherits(&QQStyleKitDelegateProperties::staticMetaObject)) {
/* Skip recursing into QQStyleKitDelegateProperties, because those are lazy
* created when read, and reading them from here would accidentally
* create them. */
continue;
}
if (metaObject->inherits(&QQStyleKitPropertyGroup::staticMetaObject)) {
// The property is of type QQStyleKitPropertyGroup, so recurse into it
QObject *childObj = qvariant_cast<QObject *>(property(prop.name()));
if (auto *child = qobject_cast<QQStyleKitPropertyGroup *>(childObj))
child->emitChangedForAllStylePropertiesRecursive();
continue;
}
}
// Emit the changed signal for the property
Q_ASSERT(prop.hasNotifySignal());
QMetaMethod notify = prop.notifySignal();
notify.invoke(this, Qt::DirectConnection);
}
}
bool QQStyleKitPropertyGroup::shouldEmitLocally()
{
return !controlProperties()->asQQStyleKitReader()->dontEmitChangedSignals();
}
bool QQStyleKitPropertyGroup::shouldEmitGlobally()
{
QQStyleKitStyle *parentStyle = controlProperties()->style();
if (!parentStyle)
return false;
if (parentStyle->loaded() && !parentStyle->m_isUpdatingPalette) {
/* When a property has changed in the 'global' QQStyleKitStyle itself, it can
* potentially affect all control instances. We therefore need to go through all
* QQStyleKitReaders and inform that their own local property that matches the
* 'global' property needs to be re-read. We emit the signals directly, omitting any
* applied transitions in the QQStyleKitReaders, to optimize for speed. The exception
* is if we're just updating the palette in the Style to match the palette in the current
* control / QQStyleKitReader. Such a change will only affect a single control. */
return parentStyle == QQStyleKitStyle::current();
}
return false;
}
// ************* QQStyleKitImageProperties ****************
QQStyleKitImageProperties::QQStyleKitImageProperties(QQSK::PropertyGroup group, QQStyleKitControlProperties *parent)
: QQStyleKitPropertyGroup(group, parent)
{
}
template <typename... CHANGED_SIGNALS>
void QQStyleKitImageProperties::emitGlobally(
QQStyleKitExtendableControlType controlType, CHANGED_SIGNALS... changedSignals) const
{
// Go through all instances of QQStyleKitImageProperties
const QQStyleKitControlProperties *cp = controlProperties();
CONDITIONALLY_EMIT_SIGNALS_GLOBALLY_FOR(cp, background()->image());
CONDITIONALLY_EMIT_SIGNALS_GLOBALLY_FOR(cp, handle()->image());
CONDITIONALLY_EMIT_SIGNALS_GLOBALLY_FOR(cp, indicator()->image());
CONDITIONALLY_EMIT_SIGNALS_GLOBALLY_FOR(cp, indicator()->foreground()->image());
}
QUrl QQStyleKitImageProperties::source() const
{
return styleProperty<QUrl>(QQSK::Property::Source);
}
void QQStyleKitImageProperties::setSource(const QUrl &source)
{
if (setStyleProperty(QQSK::Property::Source, source))
handleStylePropertyChanged(&QQStyleKitImageProperties::sourceChanged);
}
QColor QQStyleKitImageProperties::color() const
{
return styleProperty<QColor>(QQSK::Property::Color);
}
void QQStyleKitImageProperties::setColor(const QColor &color)
{
if (setStyleProperty(QQSK::Property::Color, color))
handleStylePropertyChanged(&QQStyleKitImageProperties::colorChanged);
}
QQuickImage::FillMode QQStyleKitImageProperties::fillMode() const
{
return styleProperty<QQuickImage::FillMode>(QQSK::Property::FillMode);
}
void QQStyleKitImageProperties::setFillMode(QQuickImage::FillMode fillMode)
{
if (setStyleProperty(QQSK::Property::FillMode, fillMode))
handleStylePropertyChanged(&QQStyleKitImageProperties::fillModeChanged);
}
// ************* QQStyleKitBorderProperties ****************
QQStyleKitBorderProperties::QQStyleKitBorderProperties(QQSK::PropertyGroup group, QQStyleKitControlProperties *parent)
: QQStyleKitPropertyGroup(group, parent)
{
}
template <typename... CHANGED_SIGNALS>
void QQStyleKitBorderProperties::emitGlobally(
QQStyleKitExtendableControlType controlType, CHANGED_SIGNALS... changedSignals) const
{
// Go through all instances of QQStyleKitBorderProperties
const QQStyleKitControlProperties *cp = controlProperties();
CONDITIONALLY_EMIT_SIGNALS_GLOBALLY_FOR(cp, background()->border());
CONDITIONALLY_EMIT_SIGNALS_GLOBALLY_FOR(cp, handle()->border());
CONDITIONALLY_EMIT_SIGNALS_GLOBALLY_FOR(cp, indicator()->border());
CONDITIONALLY_EMIT_SIGNALS_GLOBALLY_FOR(cp, indicator()->foreground()->border());
}
qreal QQStyleKitBorderProperties::width() const
{
return styleProperty<qreal>(QQSK::Property::Width);
}
void QQStyleKitBorderProperties::setWidth(qreal width)
{
if (setStyleProperty(QQSK::Property::Width, width))
handleStylePropertyChanged(&QQStyleKitBorderProperties::widthChanged);
}
QColor QQStyleKitBorderProperties::color() const
{
return styleProperty<QColor>(QQSK::Property::Color, Qt::transparent);
}
void QQStyleKitBorderProperties::setColor(const QColor &color)
{
if (setStyleProperty(QQSK::Property::Color, color))
handleStylePropertyChanged(&QQStyleKitBorderProperties::colorChanged);
}
// ************* QQStyleKitShadowProperties ****************
QQStyleKitShadowProperties::QQStyleKitShadowProperties(QQSK::PropertyGroup group, QQStyleKitControlProperties *parent)
: QQStyleKitPropertyGroup(group, parent)
{
}
template <typename... CHANGED_SIGNALS>
void QQStyleKitShadowProperties::emitGlobally(
QQStyleKitExtendableControlType controlType, CHANGED_SIGNALS... changedSignals) const
{
// Go through all instances of QQStyleKitShadowProperties
const QQStyleKitControlProperties *cp = controlProperties();
CONDITIONALLY_EMIT_SIGNALS_GLOBALLY_FOR(cp, background()->shadow());
CONDITIONALLY_EMIT_SIGNALS_GLOBALLY_FOR(cp, handle()->shadow());
CONDITIONALLY_EMIT_SIGNALS_GLOBALLY_FOR(cp, indicator()->shadow());
CONDITIONALLY_EMIT_SIGNALS_GLOBALLY_FOR(cp, indicator()->foreground()->shadow());
}
QColor QQStyleKitShadowProperties::color() const
{
return styleProperty<QColor>(QQSK::Property::Color, Qt::transparent);
}
void QQStyleKitShadowProperties::setColor(QColor color)
{
if (setStyleProperty(QQSK::Property::Color, color))
handleStylePropertyChanged(&QQStyleKitShadowProperties::colorChanged);
}
qreal QQStyleKitShadowProperties::opacity() const
{
return styleProperty<qreal>(QQSK::Property::Opacity, 1.0);
}
void QQStyleKitShadowProperties::setOpacity(qreal opacity)
{
if (setStyleProperty(QQSK::Property::Opacity, opacity))
handleStylePropertyChanged(&QQStyleKitShadowProperties::opacityChanged);
}
qreal QQStyleKitShadowProperties::scale() const
{
return styleProperty<qreal>(QQSK::Property::Scale, 1.0);
}
void QQStyleKitShadowProperties::setScale(qreal scale)
{
if (setStyleProperty(QQSK::Property::Scale, scale))
handleStylePropertyChanged(&QQStyleKitShadowProperties::scaleChanged);
}
qreal QQStyleKitShadowProperties::verticalOffset() const
{
return styleProperty<qreal>(QQSK::Property::VOffset);
}
void QQStyleKitShadowProperties::setVerticalOffset(qreal verticalOffset)
{
if (setStyleProperty(QQSK::Property::VOffset, verticalOffset))
handleStylePropertyChanged(&QQStyleKitShadowProperties::verticalOffsetChanged);
}
qreal QQStyleKitShadowProperties::horizontalOffset() const
{
return styleProperty<qreal>(QQSK::Property::HOffset);
}
void QQStyleKitShadowProperties::setHorizontalOffset(qreal horizontalOffset)
{
if (setStyleProperty(QQSK::Property::HOffset, horizontalOffset))
handleStylePropertyChanged(&QQStyleKitShadowProperties::horizontalOffsetChanged);
}
qreal QQStyleKitShadowProperties::blur() const
{
return styleProperty<qreal>(QQSK::Property::Blur, 10.0);
}
void QQStyleKitShadowProperties::setBlur(qreal blur)
{
if (setStyleProperty(QQSK::Property::Blur, blur))
handleStylePropertyChanged(&QQStyleKitShadowProperties::blurChanged);
}
bool QQStyleKitShadowProperties::visible() const
{
return styleProperty<bool>(QQSK::Property::Visible, true);
}
void QQStyleKitShadowProperties::setVisible(bool visible)
{
if (setStyleProperty(QQSK::Property::Visible, visible))
handleStylePropertyChanged(&QQStyleKitShadowProperties::visibleChanged);
}
QQmlComponent *QQStyleKitShadowProperties::delegate() const
{
return styleProperty<QQmlComponent *>(QQSK::Property::Delegate);
}
void QQStyleKitShadowProperties::setDelegate(QQmlComponent *delegate)
{
if (setStyleProperty(QQSK::Property::Delegate, delegate))
handleStylePropertyChanged(&QQStyleKitShadowProperties::delegateChanged);
}
// ************* QQStyleKitDelegateProperties ****************
QQStyleKitDelegateProperties::QQStyleKitDelegateProperties(QQSK::PropertyGroup group, QQStyleKitControlProperties *parent)
: QQStyleKitPropertyGroup(group, parent)
{
}
template <typename... CHANGED_SIGNALS>
void QQStyleKitDelegateProperties::emitGlobally(
QQStyleKitExtendableControlType controlType, CHANGED_SIGNALS... changedSignals) const
{
// Go through all instances of QQStyleKitDelegateProperties
const QQStyleKitControlProperties *cp = controlProperties();
CONDITIONALLY_EMIT_SIGNALS_GLOBALLY_FOR(cp, background());
CONDITIONALLY_EMIT_SIGNALS_GLOBALLY_FOR(cp, handle());
CONDITIONALLY_EMIT_SIGNALS_GLOBALLY_FOR(cp, indicator());
CONDITIONALLY_EMIT_SIGNALS_GLOBALLY_FOR(cp, indicator()->foreground());
}
qreal QQStyleKitDelegateProperties::radius() const
{
return styleProperty<qreal>(QQSK::Property::Radius);
}
void QQStyleKitDelegateProperties::setRadius(qreal radius)
{
if (setStyleProperty(QQSK::Property::Radius, radius))
handleStylePropertiesChanged<QQStyleKitDelegateProperties>(
&QQStyleKitDelegateProperties::radiusChanged,
&QQStyleKitDelegateProperties::topLeftRadiusChanged,
&QQStyleKitDelegateProperties::topRightRadiusChanged,
&QQStyleKitDelegateProperties::bottomLeftRadiusChanged,
&QQStyleKitDelegateProperties::bottomRightRadiusChanged);
}
qreal QQStyleKitDelegateProperties::topLeftRadius() const
{
return styleProperty<qreal>(QQSK::Property::TopLeftRadius, QQSK::Property::Radius);
}
void QQStyleKitDelegateProperties::setTopLeftRadius(qreal radius)
{
if (setStyleProperty(QQSK::Property::TopLeftRadius, radius))
handleStylePropertyChanged(&QQStyleKitDelegateProperties::topLeftRadiusChanged);
}
qreal QQStyleKitDelegateProperties::topRightRadius() const
{
return styleProperty<qreal>(QQSK::Property::TopRightRadius, QQSK::Property::Radius);
}
void QQStyleKitDelegateProperties::setTopRightRadius(qreal radius)
{
if (setStyleProperty(QQSK::Property::TopRightRadius, radius))
handleStylePropertyChanged(&QQStyleKitDelegateProperties::topRightRadiusChanged);
}
qreal QQStyleKitDelegateProperties::bottomLeftRadius() const
{
return styleProperty<qreal>(QQSK::Property::BottomLeftRadius, QQSK::Property::Radius);
}
void QQStyleKitDelegateProperties::setBottomLeftRadius(qreal radius)
{
if (setStyleProperty(QQSK::Property::BottomLeftRadius, radius))
handleStylePropertyChanged(&QQStyleKitDelegateProperties::bottomLeftRadiusChanged);
}
qreal QQStyleKitDelegateProperties::bottomRightRadius() const
{
return styleProperty<qreal>(QQSK::Property::BottomRightRadius, QQSK::Property::Radius);
}
void QQStyleKitDelegateProperties::setBottomRightRadius(qreal radius)
{
if (setStyleProperty(QQSK::Property::BottomRightRadius, radius))
handleStylePropertyChanged(&QQStyleKitDelegateProperties::bottomRightRadiusChanged);
}
qreal QQStyleKitDelegateProperties::scale() const
{
return styleProperty<qreal>(QQSK::Property::Scale, 1.0);
}
void QQStyleKitDelegateProperties::setScale(qreal scale)
{
if (setStyleProperty(QQSK::Property::Scale, scale))
handleStylePropertyChanged(&QQStyleKitDelegateProperties::scaleChanged);
}
qreal QQStyleKitDelegateProperties::rotation() const
{
return styleProperty<qreal>(QQSK::Property::Rotation);
}
void QQStyleKitDelegateProperties::setRotation(qreal rotation)
{
if (setStyleProperty(QQSK::Property::Rotation, rotation))
handleStylePropertyChanged(&QQStyleKitDelegateProperties::rotationChanged);
}
qreal QQStyleKitDelegateProperties::implicitWidth() const
{
return styleProperty<qreal>(QQSK::Property::ImplicitWidth);
}
void QQStyleKitDelegateProperties::setImplicitWidth(qreal width)
{
if (setStyleProperty(QQSK::Property::ImplicitWidth, width))
handleStylePropertyChanged(&QQStyleKitDelegateProperties::implicitWidthChanged);
}
qreal QQStyleKitDelegateProperties::implicitHeight() const
{
return styleProperty<qreal>(QQSK::Property::ImplicitHeight);
}
void QQStyleKitDelegateProperties::setImplicitHeight(qreal height)
{
if (setStyleProperty(QQSK::Property::ImplicitHeight, height))
handleStylePropertyChanged(&QQStyleKitDelegateProperties::implicitHeightChanged);
}
qreal QQStyleKitDelegateProperties::minimumWidth() const
{
return styleProperty<qreal>(QQSK::Property::MinimumWidth);
}
void QQStyleKitDelegateProperties::setMinimumWidth(qreal width)
{
if (setStyleProperty(QQSK::Property::MinimumWidth, width))
handleStylePropertyChanged(&QQStyleKitDelegateProperties::minimumWidthChanged);
}
qreal QQStyleKitDelegateProperties::margins() const
{
return styleProperty<qreal>(QQSK::Property::Margins);
}
void QQStyleKitDelegateProperties::setMargins(qreal margins)
{
if (setStyleProperty(QQSK::Property::Margins, margins))
handleStylePropertiesChanged<QQStyleKitDelegateProperties>(
&QQStyleKitDelegateProperties::marginsChanged,
&QQStyleKitDelegateProperties::leftMarginChanged,
&QQStyleKitDelegateProperties::rightMarginChanged,
&QQStyleKitDelegateProperties::topMarginChanged,
&QQStyleKitDelegateProperties::bottomMarginChanged);
}
qreal QQStyleKitDelegateProperties::leftMargin() const
{
return styleProperty<qreal>(QQSK::Property::LeftMargin, QQSK::Property::Margins);
}
void QQStyleKitDelegateProperties::setLeftMargin(qreal margin)
{
if (setStyleProperty(QQSK::Property::LeftMargin, margin))
handleStylePropertyChanged(&QQStyleKitDelegateProperties::leftMarginChanged);
}
qreal QQStyleKitDelegateProperties::rightMargin() const
{
return styleProperty<qreal>(QQSK::Property::RightMargin, QQSK::Property::Margins);
}
void QQStyleKitDelegateProperties::setRightMargin(qreal margin)
{
if (setStyleProperty(QQSK::Property::RightMargin, margin))
handleStylePropertyChanged(&QQStyleKitDelegateProperties::rightMarginChanged);
}
qreal QQStyleKitDelegateProperties::topMargin() const
{
return styleProperty<qreal>(QQSK::Property::TopMargin, QQSK::Property::Margins);
}
void QQStyleKitDelegateProperties::setTopMargin(qreal margin)
{
if (setStyleProperty(QQSK::Property::TopMargin, margin))
handleStylePropertyChanged(&QQStyleKitDelegateProperties::topMarginChanged);
}
qreal QQStyleKitDelegateProperties::bottomMargin() const
{
return styleProperty<qreal>(QQSK::Property::BottomMargin, QQSK::Property::Margins);
}
void QQStyleKitDelegateProperties::setBottomMargin(qreal margin)
{
if (setStyleProperty(QQSK::Property::BottomMargin, margin))
handleStylePropertyChanged(&QQStyleKitDelegateProperties::bottomMarginChanged);
}
Qt::Alignment QQStyleKitDelegateProperties::alignment() const
{
return styleProperty<Qt::Alignment>(QQSK::Property::Alignment, Qt::AlignLeft | Qt::AlignVCenter);
}
void QQStyleKitDelegateProperties::setAlignment(Qt::Alignment alignment)
{
if (setStyleProperty(QQSK::Property::Alignment, alignment))
handleStylePropertyChanged(&QQStyleKitDelegateProperties::alignmentChanged);
}
qreal QQStyleKitDelegateProperties::opacity() const
{
return styleProperty<qreal>(QQSK::Property::Opacity, 1.0);
}
void QQStyleKitDelegateProperties::setOpacity(qreal opacity)
{
if (setStyleProperty(QQSK::Property::Opacity, opacity))
handleStylePropertyChanged(&QQStyleKitDelegateProperties::opacityChanged);
}
QColor QQStyleKitDelegateProperties::color() const
{
return styleProperty<QColor>(QQSK::Property::Color, Qt::transparent);
}
void QQStyleKitDelegateProperties::setColor(const QColor &color)
{
if (setStyleProperty(QQSK::Property::Color, color))
handleStylePropertyChanged(&QQStyleKitDelegateProperties::colorChanged);
}
bool QQStyleKitDelegateProperties::visible() const
{
return styleProperty<bool>(QQSK::Property::Visible, true);
}
void QQStyleKitDelegateProperties::setVisible(bool visible)
{
if (setStyleProperty(QQSK::Property::Visible, visible))
handleStylePropertyChanged(&QQStyleKitDelegateProperties::visibleChanged);
}
bool QQStyleKitDelegateProperties::clip() const
{
return styleProperty<bool>(QQSK::Property::Clip, false);
}
void QQStyleKitDelegateProperties::setClip(bool clip)
{
if (setStyleProperty(QQSK::Property::Clip, clip))
handleStylePropertyChanged(&QQStyleKitDelegateProperties::clipChanged);
}
QQuickGradient *QQStyleKitDelegateProperties::gradient() const
{
return styleProperty<QQuickGradient *>(QQSK::Property::Gradient);
}
void QQStyleKitDelegateProperties::setGradient(QQuickGradient *gradient)
{
if (setStyleProperty(QQSK::Property::Gradient, gradient))
handleStylePropertyChanged(&QQStyleKitDelegateProperties::gradientChanged);
}
QObject *QQStyleKitDelegateProperties::data() const
{
return styleProperty<QObject *>(QQSK::Property::Data);
}
void QQStyleKitDelegateProperties::setData(QObject *data)
{
if (setStyleProperty(QQSK::Property::Data, data))
handleStylePropertyChanged(&QQStyleKitDelegateProperties::dataChanged);
}
QQmlComponent *QQStyleKitDelegateProperties::delegate() const
{
return styleProperty<QQmlComponent *>(QQSK::Property::Delegate);
}
void QQStyleKitDelegateProperties::setDelegate(QQmlComponent *delegate)
{
if (setStyleProperty(QQSK::Property::Delegate, delegate))
handleStylePropertyChanged(&QQStyleKitDelegateProperties::delegateChanged);
}
QQStyleKitBorderProperties *QQStyleKitDelegateProperties::border() const
{
return lazyCreateGroup(m_border, QQSK::PropertyGroup::Border);
}
QQStyleKitShadowProperties *QQStyleKitDelegateProperties::shadow() const
{
return lazyCreateGroup(m_shadow, QQSK::PropertyGroup::Shadow);
}
QQStyleKitImageProperties *QQStyleKitDelegateProperties::image() const
{
return lazyCreateGroup(m_image, QQSK::PropertyGroup::Image);
}
// ************* QQStyleKitHandleProperties ****************
QQStyleKitHandleProperties::QQStyleKitHandleProperties(QQSK::PropertyGroup group, QQStyleKitControlProperties *parent)
: QQStyleKitDelegateProperties(group, parent)
{
}
QQStyleKitDelegateProperties *QQStyleKitHandleProperties::first() const
{
return lazyCreateGroup(m_first, QQSK::PropertyGroup::DelegateSubtype1);
}
QQStyleKitDelegateProperties *QQStyleKitHandleProperties::second() const
{
return lazyCreateGroup(m_second, QQSK::PropertyGroup::DelegateSubtype2);
}
// ************* QQStyleKitIndicatorProperties ****************
QQStyleKitIndicatorProperties::QQStyleKitIndicatorProperties(
QQSK::PropertyGroup group, QQStyleKitControlProperties *parent)
: QQStyleKitDelegateProperties(group, parent)
{
}
template <typename... CHANGED_SIGNALS>
void QQStyleKitIndicatorProperties::emitGlobally(
QQStyleKitExtendableControlType controlType, CHANGED_SIGNALS... changedSignals) const
{
// Go through all instances of QQStyleKitIndicatorProperties
const QQStyleKitControlProperties *cp = controlProperties();
CONDITIONALLY_EMIT_SIGNALS_GLOBALLY_FOR(cp, indicator()->up());
CONDITIONALLY_EMIT_SIGNALS_GLOBALLY_FOR(cp, indicator()->down());
}
QQStyleKitDelegateProperties *QQStyleKitIndicatorProperties::foreground() const
{
return lazyCreateGroup(m_foreground, QQSK::PropertyGroup::Foreground);
}
// ************* QQStyleKitIndicatorWithSubTypes ****************
QQStyleKitIndicatorWithSubTypes::QQStyleKitIndicatorWithSubTypes(
QQSK::PropertyGroup group, QQStyleKitControlProperties *parent)
: QQStyleKitDelegateProperties(group, parent)
{
}
template <typename... CHANGED_SIGNALS>
void QQStyleKitIndicatorWithSubTypes::emitGlobally(
QQStyleKitExtendableControlType controlType, CHANGED_SIGNALS... changedSignals) const
{
// Go through all instances of QQStyleKitIndicatorWithSubTypes
const QQStyleKitControlProperties *cp = controlProperties();
CONDITIONALLY_EMIT_SIGNALS_GLOBALLY_FOR(cp, indicator());
}
QQStyleKitDelegateProperties *QQStyleKitIndicatorWithSubTypes::foreground() const
{
return lazyCreateGroup(m_foreground, QQSK::PropertyGroup::Foreground);
}
QQStyleKitIndicatorProperties *QQStyleKitIndicatorWithSubTypes::up() const
{
return lazyCreateGroup(m_up, QQSK::PropertyGroup::DelegateSubtype1);
}
QQStyleKitIndicatorProperties *QQStyleKitIndicatorWithSubTypes::down() const
{
return lazyCreateGroup(m_down, QQSK::PropertyGroup::DelegateSubtype2);
}
// ************* QQStyleKitTextProperties ****************
QQStyleKitTextProperties::QQStyleKitTextProperties(QQSK::PropertyGroup group, QQStyleKitControlProperties *parent)
: QQStyleKitPropertyGroup(group, parent)
{
}
template <typename... CHANGED_SIGNALS>
void QQStyleKitTextProperties::emitGlobally(
QQStyleKitExtendableControlType controlType, CHANGED_SIGNALS... changedSignals) const
{
const QQStyleKitControlProperties *cp = controlProperties();
CONDITIONALLY_EMIT_SIGNALS_GLOBALLY_FOR(cp, text());
}
QColor QQStyleKitTextProperties::color() const
{
return styleProperty<QColor>(QQSK::Property::Color);
}
void QQStyleKitTextProperties::setColor(const QColor &color)
{
if (setStyleProperty(QQSK::Property::Color, color))
handleStylePropertyChanged(&QQStyleKitTextProperties::colorChanged);
}
Qt::Alignment QQStyleKitTextProperties::alignment() const
{
return styleProperty<Qt::Alignment>(QQSK::Property::Alignment);
}
void QQStyleKitTextProperties::setAlignment(Qt::Alignment alignment)
{
if (setStyleProperty(QQSK::Property::Alignment, alignment))
handleStylePropertyChanged(&QQStyleKitTextProperties::alignmentChanged);
}
bool QQStyleKitTextProperties::bold() const
{
return styleProperty<bool>(QQSK::Property::Bold, false);
}
void QQStyleKitTextProperties::setBold(bool bold)
{
if (setStyleProperty(QQSK::Property::Bold, bold))
handleStylePropertyChanged(&QQStyleKitTextProperties::boldChanged);
}
bool QQStyleKitTextProperties::italic() const
{
return styleProperty<bool>(QQSK::Property::Italic, false);
}
void QQStyleKitTextProperties::setItalic(bool italic)
{
if (setStyleProperty(QQSK::Property::Italic, italic))
handleStylePropertyChanged(&QQStyleKitTextProperties::italicChanged);
}
qreal QQStyleKitTextProperties::pointSize() const
{
return styleProperty<qreal>(QQSK::Property::PointSize);
}
void QQStyleKitTextProperties::setPointSize(qreal pointSize)
{
if (setStyleProperty(QQSK::Property::PointSize, pointSize))
handleStylePropertyChanged(&QQStyleKitTextProperties::pointSizeChanged);
}
qreal QQStyleKitTextProperties::padding() const
{
return styleProperty<qreal>(QQSK::Property::Padding);
}
void QQStyleKitTextProperties::setPadding(qreal padding)
{
if (setStyleProperty(QQSK::Property::Padding, padding))
handleStylePropertiesChanged<QQStyleKitTextProperties>(
&QQStyleKitTextProperties::paddingChanged,
&QQStyleKitTextProperties::leftPaddingChanged,
&QQStyleKitTextProperties::rightPaddingChanged,
&QQStyleKitTextProperties::topPaddingChanged,
&QQStyleKitTextProperties::bottomPaddingChanged);
}
qreal QQStyleKitTextProperties::leftPadding() const
{
return styleProperty<qreal>(QQSK::Property::LeftPadding, QQSK::Property::Padding);
}
void QQStyleKitTextProperties::setLeftPadding(qreal padding)
{
if (setStyleProperty(QQSK::Property::LeftPadding, padding))
handleStylePropertyChanged(&QQStyleKitTextProperties::leftPaddingChanged);
}
qreal QQStyleKitTextProperties::rightPadding() const
{
return styleProperty<qreal>(QQSK::Property::RightPadding, QQSK::Property::Padding);
}
void QQStyleKitTextProperties::setRightPadding(qreal padding)
{
if (setStyleProperty(QQSK::Property::RightPadding, padding))
handleStylePropertyChanged(&QQStyleKitTextProperties::rightPaddingChanged);
}
qreal QQStyleKitTextProperties::topPadding() const
{
return styleProperty<qreal>(QQSK::Property::TopPadding, QQSK::Property::Padding);
}
void QQStyleKitTextProperties::setTopPadding(qreal padding)
{
if (setStyleProperty(QQSK::Property::TopPadding, padding))
handleStylePropertyChanged(&QQStyleKitTextProperties::topPaddingChanged);
}
qreal QQStyleKitTextProperties::bottomPadding() const
{
return styleProperty<qreal>(QQSK::Property::BottomPadding, QQSK::Property::Padding);
}
void QQStyleKitTextProperties::setBottomPadding(qreal padding)
{
if (setStyleProperty(QQSK::Property::BottomPadding, padding))
handleStylePropertyChanged(&QQStyleKitTextProperties::bottomPaddingChanged);
}
// ************* QQStyleKitControlProperties ****************
QQStyleKitControlProperties::QQStyleKitControlProperties(QQSK::PropertyGroup group, QObject *parent)
: QQStyleKitPropertyGroup(group, parent)
{
/* Calculate the free space storage ID space that can accommodate all unique style
* properties that may be applied to a control. Since we'll prepend different states
* and subtypes during the property propagation lookup phase later, we need to reserve
* ID space for them both already now. More docs about the property space is written in
* the implementation of PropertyPathId. */
m_groupSpace.size = nestedGroupsStartSize;
m_groupSpace.start = 0;
if (group == QQSK::PropertyGroup::GlobalFlag) {
/* A property path may include pseudo-groups that offers a convenient API for
* reading properties with specific options applied. The 'global' group is one such
* pseudo-group. When it is prefixed to a property path, it indicates that the property
* should be read directly from the style, bypassing any active transitions that might
* otherwise affect its value.
* Note: The global group should be ignored when computing a PropertyPathId_t, as it
* only affect _where_ the property should be read from, not its ID. */
m_pathFlags.setFlag(QQSK::PropertyPathFlag::Global);
}
}
QQStyleKitStyle *QQStyleKitControlProperties::style() const
{
if (subclass() == QQSK::Subclass::QQStyleKitState) {
/* A QQStyleKitControlState (and its subclasses) should always be a (grand)child of a
* QQStyleKitStyle. And it belongs to that style, even it that style is not the
* currently active application style. This is opposed to a QQStyleKitReader,
* that normally belongs / communicates with the currently active style.
* NOTE: a style can also be a fallback style for another style (which can be recursive,
* meaning that a fallback style can also have its own fallback style, and so on). But
* this function will return the nearest style, and not the root style */
QObject *obj = parent();
while (obj && !obj->metaObject()->inherits(&QQStyleKitStyle::staticMetaObject))
obj = obj->parent();
return obj ? static_cast<QQStyleKitStyle *>(obj) : nullptr;
}
/* A style reader belongs to the currently active application style. We could in theory
* support being able to point a QQStyleKitReader to any style, which would basically
* mean that you could mix controls from several styles inside the same application. But
* there is currently no API (or use-case?) in Controls that lets you to do that, so its
* disabled for now. */
return QQStyleKitStyle::current();
}
QQSK::Subclass QQStyleKitControlProperties::subclass() const
{
/* QQStyleKitControlProperties is subclassed by several different classes in this
* framework. As such, it's basically just an interface because it only declares the
* different properties that can be read or written to in a QQStyleKitStyle, such as
* hovered.background.color or pressed.indicator.foreground.color. It says nothing
* about how those properties are stored, instead that is up to each individual
* subclass to decide */
if (metaObject()->inherits(&QQStyleKitReader::staticMetaObject))
return QQSK::Subclass::QQStyleKitReader;
if (metaObject()->inherits(&QQStyleKitControlState::staticMetaObject))
return QQSK::Subclass::QQStyleKitState;
Q_UNREACHABLE();
}
QQStyleKitReader *QQStyleKitControlProperties::asQQStyleKitReader() const
{
Q_ASSERT(subclass() == QQSK::Subclass::QQStyleKitReader);
return static_cast<QQStyleKitReader *>(const_cast<QQStyleKitControlProperties *>(this));
}
QQStyleKitControlState *QQStyleKitControlProperties::asQQStyleKitState() const
{
Q_ASSERT(subclass() == QQSK::Subclass::QQStyleKitState);
Q_ASSERT(metaObject()->inherits(&QQStyleKitControlState::staticMetaObject));
return static_cast<QQStyleKitControlState *>(const_cast<QQStyleKitControlProperties *>(this));
}
void QQStyleKitControlProperties::forEachUsedDelegate(
std::function<void (QQStyleKitDelegateProperties *, QQSK::Delegate, const QString &)> f)
{
// If adding more delegates here, remember to keep StyleKitAnimation.qml in sync
if (m_background)
f(m_background, QQSK::Delegate::Background, "background"_L1);
if (m_indicator) {
f(m_indicator, QQSK::Delegate::Indicator, "indicator"_L1);
if (m_indicator->m_foreground)
f(m_indicator->m_foreground, QQSK::Delegate::IndicatorForeground, "indicator.foreground"_L1);
if (m_indicator->m_up) {
f(m_indicator->m_up, QQSK::Delegate::IndicatorUp, "indicator.up"_L1);
if (m_indicator->m_up->m_foreground)
f(m_indicator->m_up->m_foreground, QQSK::Delegate::IndicatorUpForeground, "indicator.up.foreground"_L1);
}
if (m_indicator->m_down) {
f(m_indicator->m_down, QQSK::Delegate::IndicatorDown, "indicator.down"_L1);
if (m_indicator->m_down->m_foreground)
f(m_indicator->m_down->m_foreground, QQSK::Delegate::IndicatorDownForeground, "indicator.down.foreground"_L1);
}
}
if (m_handle) {
f(m_handle, QQSK::Delegate::Handle, "handle"_L1);
if (m_handle->m_first)
f(m_handle->m_first, QQSK::Delegate::HandleFirst, "handle.first"_L1);
if (m_handle->m_second)
f(m_handle->m_second, QQSK::Delegate::HandleSecond, "handle.second"_L1);
}
}
void QQStyleKitControlProperties::emitChangedForAllStyleProperties()
{
/* This brute-force function will emit update signals for _all_ style properties
* in the QQStyleKitStyle API. Doing so is typically needed after a style-, or theme
* change, as we don't know which properties are affected by such a big change. */
emit leftPaddingChanged();
emit rightPaddingChanged();
emit topPaddingChanged();
emit bottomPaddingChanged();
emit spacingChanged();
emit transitionChanged();
emit textChanged();
forEachUsedDelegate([](QQStyleKitDelegateProperties *delegate, QQSK::Delegate, const QString &){
delegate->emitChangedForAllStylePropertiesRecursive();
});
}
template <typename... CHANGED_SIGNALS>
void QQStyleKitControlProperties::emitGlobally(
QQStyleKitExtendableControlType controlType, CHANGED_SIGNALS... changedSignals) const
{
for (QQStyleKitReader *reader : QQStyleKitReader::s_allReaders) {
if (reader->type() != controlType)
continue;
((reader->*changedSignals)(), ...);
}
}
qreal QQStyleKitControlProperties::spacing() const
{
return styleProperty<qreal>(QQSK::Property::Spacing);
}
void QQStyleKitControlProperties::setSpacing(qreal spacing)
{
if (setStyleProperty(QQSK::Property::Spacing, spacing))
handleStylePropertyChanged(&QQStyleKitControlProperties::spacingChanged);
}
qreal QQStyleKitControlProperties::padding() const
{
return styleProperty<qreal>(QQSK::Property::Padding);
}
void QQStyleKitControlProperties::setPadding(qreal padding)
{
if (setStyleProperty(QQSK::Property::Padding, padding))
handleStylePropertiesChanged<QQStyleKitControlProperties>(
&QQStyleKitControlProperties::paddingChanged,
&QQStyleKitControlProperties::leftPaddingChanged,
&QQStyleKitControlProperties::rightPaddingChanged,
&QQStyleKitControlProperties::topPaddingChanged,
&QQStyleKitControlProperties::bottomPaddingChanged);
}
qreal QQStyleKitControlProperties::leftPadding() const
{
return styleProperty<qreal>(QQSK::Property::LeftPadding, QQSK::Property::Padding);
}
void QQStyleKitControlProperties::setLeftPadding(qreal leftPadding)
{
if (setStyleProperty(QQSK::Property::LeftPadding, leftPadding))
handleStylePropertyChanged(&QQStyleKitControlProperties::leftPaddingChanged);
}
qreal QQStyleKitControlProperties::rightPadding() const
{
return styleProperty<qreal>(QQSK::Property::RightPadding, QQSK::Property::Padding);
}
void QQStyleKitControlProperties::setRightPadding(qreal rightPadding)
{
if (setStyleProperty(QQSK::Property::RightPadding, rightPadding))
handleStylePropertyChanged(&QQStyleKitControlProperties::rightPaddingChanged);
}
qreal QQStyleKitControlProperties::topPadding() const
{
return styleProperty<qreal>(QQSK::Property::TopPadding, QQSK::Property::Padding);
}
void QQStyleKitControlProperties::setTopPadding(qreal topPadding)
{
if (setStyleProperty(QQSK::Property::TopPadding, topPadding))
handleStylePropertyChanged(&QQStyleKitControlProperties::topPaddingChanged);
}
qreal QQStyleKitControlProperties::bottomPadding() const
{
return styleProperty<qreal>(QQSK::Property::BottomPadding, QQSK::Property::Padding);
}
void QQStyleKitControlProperties::setBottomPadding(qreal bottomPadding)
{
if (setStyleProperty(QQSK::Property::BottomPadding, bottomPadding))
handleStylePropertyChanged(&QQStyleKitControlProperties::bottomPaddingChanged);
}
QQuickTransition *QQStyleKitControlProperties::transition() const
{
return styleProperty<QQuickTransition *>(QQSK::Property::Transition);
}
void QQStyleKitControlProperties::setTransition(QQuickTransition *transition)
{
if (setStyleProperty(QQSK::Property::Transition, transition))
handleStylePropertyChanged(&QQStyleKitControlProperties::transitionChanged);
}
QQStyleKitTextProperties *QQStyleKitControlProperties::text() const
{
return lazyCreateGroup(m_text, QQSK::PropertyGroup::Text);
}
QQStyleKitDelegateProperties *QQStyleKitControlProperties::background() const
{
return lazyCreateGroup(m_background, QQSK::PropertyGroup::Background);
}
QQStyleKitHandleProperties *QQStyleKitControlProperties::handle() const
{
return lazyCreateGroup(m_handle, QQSK::PropertyGroup::Handle);
}
QQStyleKitIndicatorWithSubTypes *QQStyleKitControlProperties::indicator() const
{
return lazyCreateGroup(m_indicator, QQSK::PropertyGroup::Indicator);
}
QT_END_NAMESPACE
#include "moc_qqstylekitcontrolproperties_p.cpp"
|