summaryrefslogtreecommitdiff
path: root/modules/controlcenter/appearance/AppearancePane.qml
blob: dec260d0ee7f3c1519638adb4f07ca8ef5fef566 (plain)
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
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
pragma ComponentBehavior: Bound

import ".."
import "../components"
import "../../launcher/services"
import qs.components
import qs.components.controls
import qs.components.effects
import qs.components.containers
import qs.components.images
import qs.services
import qs.config
import qs.utils
import Caelestia.Models
import Quickshell
import Quickshell.Widgets
import QtQuick
import QtQuick.Layouts

Item {
    id: root

    required property Session session

    property real animDurationsScale: Config.appearance.anim.durations.scale ?? 1
    property string fontFamilyMaterial: Config.appearance.font.family.material ?? "Material Symbols Rounded"
    property string fontFamilyMono: Config.appearance.font.family.mono ?? "CaskaydiaCove NF"
    property string fontFamilySans: Config.appearance.font.family.sans ?? "Rubik"
    property real fontSizeScale: Config.appearance.font.size.scale ?? 1
    property real paddingScale: Config.appearance.padding.scale ?? 1
    property real roundingScale: Config.appearance.rounding.scale ?? 1
    property real spacingScale: Config.appearance.spacing.scale ?? 1
    property bool transparencyEnabled: Config.appearance.transparency.enabled ?? false
    property real transparencyBase: Config.appearance.transparency.base ?? 0.85
    property real transparencyLayers: Config.appearance.transparency.layers ?? 0.4
    property real borderRounding: Config.border.rounding ?? 1
    property real borderThickness: Config.border.thickness ?? 1

    property bool desktopClockEnabled: Config.background.desktopClock.enabled ?? false
    property bool backgroundEnabled: Config.background.enabled ?? true
    property bool visualiserEnabled: Config.background.visualiser.enabled ?? false
    property bool visualiserAutoHide: Config.background.visualiser.autoHide ?? true
    property real visualiserRounding: Config.background.visualiser.rounding ?? 1
    property real visualiserSpacing: Config.background.visualiser.spacing ?? 1

    anchors.fill: parent

    function saveConfig() {
        Config.appearance.anim.durations.scale = root.animDurationsScale;

        Config.appearance.font.family.material = root.fontFamilyMaterial;
        Config.appearance.font.family.mono = root.fontFamilyMono;
        Config.appearance.font.family.sans = root.fontFamilySans;
        Config.appearance.font.size.scale = root.fontSizeScale;

        Config.appearance.padding.scale = root.paddingScale;
        Config.appearance.rounding.scale = root.roundingScale;
        Config.appearance.spacing.scale = root.spacingScale;

        Config.appearance.transparency.enabled = root.transparencyEnabled;
        Config.appearance.transparency.base = root.transparencyBase;
        Config.appearance.transparency.layers = root.transparencyLayers;

        Config.background.desktopClock.enabled = root.desktopClockEnabled;
        Config.background.enabled = root.backgroundEnabled;

        Config.background.visualiser.enabled = root.visualiserEnabled;
        Config.background.visualiser.autoHide = root.visualiserAutoHide;
        Config.background.visualiser.rounding = root.visualiserRounding;
        Config.background.visualiser.spacing = root.visualiserSpacing;

        Config.border.rounding = root.borderRounding;
        Config.border.thickness = root.borderThickness;

        Config.save();
    }

    Component {
        id: appearanceRightContentComponent

        StyledFlickable {
            id: rightAppearanceFlickable
            flickableDirection: Flickable.VerticalFlick
            contentHeight: contentLayout.height

            StyledScrollBar.vertical: StyledScrollBar {
                flickable: rightAppearanceFlickable
            }

            ColumnLayout {
                id: contentLayout

                anchors.left: parent.left
                anchors.right: parent.right
                anchors.top: parent.top
                spacing: Appearance.spacing.normal

                SettingsHeader {
                    icon: "palette"
                    title: qsTr("Appearance Settings")
                }

                StyledText {
                    Layout.topMargin: Appearance.spacing.large
                    Layout.alignment: Qt.AlignHCenter
                    text: qsTr("Wallpaper")
                    font.pointSize: Appearance.font.size.extraLarge
                    font.weight: 600
                }

                StyledText {
                    Layout.alignment: Qt.AlignHCenter
                    text: qsTr("Select a wallpaper")
                    font.pointSize: Appearance.font.size.normal
                    color: Colours.palette.m3onSurfaceVariant
                }

                Item {
                    Layout.fillWidth: true
                    Layout.topMargin: Appearance.spacing.large
                    Layout.preferredHeight: wallpaperLoader.item ? wallpaperLoader.item.layoutPreferredHeight : 0
                    
                    Loader {
                        id: wallpaperLoader
                        anchors.fill: parent
                        asynchronous: true
                        active: {
                            const isActive = root.session.activeIndex === 3;
                            const isAdjacent = Math.abs(root.session.activeIndex - 3) === 1;
                            const splitLayout = root.children[0];
                            const loader = splitLayout && splitLayout.rightLoader ? splitLayout.rightLoader : null;
                            const shouldActivate = loader && loader.item !== null && (isActive || isAdjacent);
                            return shouldActivate;
                        }
                        
                        onStatusChanged: {
                            if (status === Loader.Error) {
                                console.error("[AppearancePane] Wallpaper loader error!");
                            }
                        }
                        
                        // Stop lazy loading when loader becomes inactive
                        onActiveChanged: {
                            if (!active && wallpaperLoader.item) {
                                const container = wallpaperLoader.item;
                                if (container && container.wallpaperGrid) {
                                    const grid = container.wallpaperGrid;
                                    if (grid.imageUpdateTimer) {
                                        grid.imageUpdateTimer.stop();
                                    }
                                }
                            }
                        }
                        
                        sourceComponent: Item {
                            id: wallpaperGridContainer
                            property alias layoutPreferredHeight: wallpaperGrid.layoutPreferredHeight
                            
                            // Find and store reference to parent Flickable for scroll monitoring
                            property var parentFlickable: {
                                let item = parent;
                                while (item) {
                                    if (item.flickableDirection !== undefined) {
                                        return item;
                                    }
                                    item = item.parent;
                                }
                                return null;
                            }
                            
                            // Cleanup when component is destroyed
                            Component.onDestruction: {
                                if (wallpaperGrid) {
                                    if (wallpaperGrid.scrollCheckTimer) {
                                        wallpaperGrid.scrollCheckTimer.stop();
                                    }
                                    wallpaperGrid._expansionInProgress = false;
                                }
                            }
                            
                            QtObject {
                                id: lazyModel
                                
                                property var sourceList: null
                                property int loadedCount: 0
                                property int visibleCount: 0
                                property int totalCount: 0
                                
                                function initialize(list) {
                                    sourceList = list;
                                    totalCount = list ? list.length : 0;
                                    const initialRows = 3;
                                    const cols = wallpaperGrid.columnsCount > 0 ? wallpaperGrid.columnsCount : 3;
                                    const initialCount = Math.min(initialRows * cols, totalCount);
                                    loadedCount = initialCount;
                                    visibleCount = initialCount;
                                }
                                
                                function loadOneRow() {
                                    if (loadedCount < totalCount) {
                                        const cols = wallpaperGrid.columnsCount > 0 ? wallpaperGrid.columnsCount : 1;
                                        const itemsToLoad = Math.min(cols, totalCount - loadedCount);
                                        loadedCount += itemsToLoad;
                                    }
                                }
                                
                                function updateVisibleCount(neededCount) {
                                    const cols = wallpaperGrid.columnsCount > 0 ? wallpaperGrid.columnsCount : 1;
                                    const maxVisible = Math.min(neededCount, loadedCount);
                                    const rows = Math.ceil(maxVisible / cols);
                                    const newVisibleCount = Math.min(rows * cols, loadedCount);
                                    
                                    if (newVisibleCount > visibleCount) {
                                        visibleCount = newVisibleCount;
                                    }
                                }
                            }
                            
                            GridView {
                                id: wallpaperGrid
                                anchors.fill: parent
                                
                                property int _delegateCount: 0
                                
                                readonly property int minCellWidth: 200 + Appearance.spacing.normal
                                readonly property int columnsCount: Math.max(1, Math.floor(parent.width / minCellWidth))
                                
                                readonly property int layoutPreferredHeight: {
                                    if (!lazyModel || lazyModel.visibleCount === 0 || columnsCount === 0) {
                                        return 0;
                                    }
                                    const calculated = Math.ceil(lazyModel.visibleCount / columnsCount) * cellHeight;
                                    return calculated;
                                }
                                
                                height: layoutPreferredHeight
                                cellWidth: width / columnsCount
                                cellHeight: 140 + Appearance.spacing.normal
                                
                                leftMargin: 0
                                rightMargin: 0
                                topMargin: 0
                                bottomMargin: 0

                                ListModel {
                                    id: wallpaperListModel
                                }
                                
                                model: wallpaperListModel
                                
                                Connections {
                                    target: lazyModel
                                    function onVisibleCountChanged(): void {
                                        if (!lazyModel || !lazyModel.sourceList) return;
                                        
                                        const newCount = lazyModel.visibleCount;
                                        const currentCount = wallpaperListModel.count;
                                        
                                        if (newCount > currentCount) {
                                            const flickable = wallpaperGridContainer.parentFlickable;
                                            const oldScrollY = flickable ? flickable.contentY : 0;
                                            
                                            for (let i = currentCount; i < newCount; i++) {
                                                wallpaperListModel.append({modelData: lazyModel.sourceList[i]});
                                            }
                                            
                                            if (flickable) {
                                                Qt.callLater(function() {
                                                    if (Math.abs(flickable.contentY - oldScrollY) < 1) {
                                                        flickable.contentY = oldScrollY;
                                                    }
                                                });
                                            }
                                        }
                                    }
                                }
                                
                                Component.onCompleted: {
                                    Qt.callLater(function() {
                                        const isActive = root.session.activeIndex === 3;
                                        if (width > 0 && parent && parent.visible && isActive && Wallpapers.list) {
                                            lazyModel.initialize(Wallpapers.list);
                                            wallpaperListModel.clear();
                                            for (let i = 0; i < lazyModel.visibleCount; i++) {
                                                wallpaperListModel.append({modelData: lazyModel.sourceList[i]});
                                            }
                                        }
                                    });
                                }
                                
                                Connections {
                                    target: root.session
                                    function onActiveIndexChanged(): void {
                                        const isActive = root.session.activeIndex === 3;
                                        
                                        // Stop lazy loading when switching away from appearance pane
                                        if (!isActive) {
                                            if (scrollCheckTimer) {
                                                scrollCheckTimer.stop();
                                            }
                                            if (wallpaperGrid) {
                                                wallpaperGrid._expansionInProgress = false;
                                            }
                                            return;
                                        }
                                        
                                        // Initialize if needed when switching to appearance pane
                                        if (isActive && width > 0 && !lazyModel.sourceList && parent && parent.visible && Wallpapers.list) {
                                            lazyModel.initialize(Wallpapers.list);
                                            wallpaperListModel.clear();
                                            for (let i = 0; i < lazyModel.visibleCount; i++) {
                                                wallpaperListModel.append({modelData: lazyModel.sourceList[i]});
                                            }
                                        }
                                    }
                                }
                                
                                onWidthChanged: {
                                    const isActive = root.session.activeIndex === 3;
                                    if (width > 0 && !lazyModel.sourceList && parent && parent.visible && isActive && Wallpapers.list) {
                                        lazyModel.initialize(Wallpapers.list);
                                        wallpaperListModel.clear();
                                        for (let i = 0; i < lazyModel.visibleCount; i++) {
                                            wallpaperListModel.append({modelData: lazyModel.sourceList[i]});
                                        }
                                    }
                                }
                                
                                // Force true lazy loading: only create delegates for visible items
                                displayMarginBeginning: 0
                                displayMarginEnd: 0
                                cacheBuffer: 0
                                
                                // Debounce expansion to avoid too frequent checks
                                property bool _expansionInProgress: false
                                
                                Connections {
                                    target: wallpaperGridContainer.parentFlickable
                                    function onContentYChanged(): void {
                                        // Don't process scroll events if appearance pane is not active
                                        const isActive = root.session.activeIndex === 3;
                                        if (!isActive) return;
                                        
                                        if (!lazyModel || !lazyModel.sourceList || lazyModel.loadedCount >= lazyModel.totalCount || wallpaperGrid._expansionInProgress) {
                                            return;
                                        }
                                        
                                        const flickable = wallpaperGridContainer.parentFlickable;
                                        if (!flickable) return;
                                        
                                        const gridY = wallpaperGridContainer.y;
                                        const scrollY = flickable.contentY;
                                        const viewportHeight = flickable.height;
                                        
                                        const topY = scrollY - gridY;
                                        const bottomY = scrollY + viewportHeight - gridY;
                                        
                                        if (bottomY < 0) return;
                                        
                                        const topRow = Math.max(0, Math.floor(topY / wallpaperGrid.cellHeight));
                                        const bottomRow = Math.floor(bottomY / wallpaperGrid.cellHeight);
                                        
                                        // Update visible count with 1 row buffer ahead
                                        const bufferRows = 1;
                                        const neededBottomRow = bottomRow + bufferRows;
                                        const neededCount = Math.min((neededBottomRow + 1) * wallpaperGrid.columnsCount, lazyModel.loadedCount);
                                        lazyModel.updateVisibleCount(neededCount);
                                        
                                        const loadedRows = Math.ceil(lazyModel.loadedCount / wallpaperGrid.columnsCount);
                                        const rowsRemaining = loadedRows - (bottomRow + 1);
                                        
                                        if (rowsRemaining <= 1 && lazyModel.loadedCount < lazyModel.totalCount) {
                                            if (!wallpaperGrid._expansionInProgress) {
                                                wallpaperGrid._expansionInProgress = true;
                                                lazyModel.loadOneRow();
                                                Qt.callLater(function() {
                                                    wallpaperGrid._expansionInProgress = false;
                                                });
                                            }
                                        }
                                    }
                                }
                                
                                // Fallback timer to check scroll position periodically
                                Timer {
                                    id: scrollCheckTimer
                                    interval: 100
                                    running: {
                                        const isActive = root.session.activeIndex === 3;
                                        return isActive && lazyModel && lazyModel.sourceList && lazyModel.loadedCount < lazyModel.totalCount;
                                    }
                                    repeat: true
                                    onTriggered: {
                                        // Double-check that appearance pane is still active
                                        const isActive = root.session.activeIndex === 3;
                                        if (!isActive) {
                                            stop();
                                            return;
                                        }
                                        
                                        const flickable = wallpaperGridContainer.parentFlickable;
                                        if (!flickable || !lazyModel || !lazyModel.sourceList) return;
                                        
                                        const gridY = wallpaperGridContainer.y;
                                        const scrollY = flickable.contentY;
                                        const viewportHeight = flickable.height;
                                        
                                        const topY = scrollY - gridY;
                                        const bottomY = scrollY + viewportHeight - gridY;
                                        if (bottomY < 0) return;
                                        
                                        const topRow = Math.max(0, Math.floor(topY / wallpaperGrid.cellHeight));
                                        const bottomRow = Math.floor(bottomY / wallpaperGrid.cellHeight);
                                        
                                        const bufferRows = 1;
                                        const neededBottomRow = bottomRow + bufferRows;
                                        const neededCount = Math.min((neededBottomRow + 1) * wallpaperGrid.columnsCount, lazyModel.loadedCount);
                                        lazyModel.updateVisibleCount(neededCount);
                                        
                                        const loadedRows = Math.ceil(lazyModel.loadedCount / wallpaperGrid.columnsCount);
                                        const rowsRemaining = loadedRows - (bottomRow + 1);
                                        
                                        if (rowsRemaining <= 1 && lazyModel.loadedCount < lazyModel.totalCount) {
                                            if (!wallpaperGrid._expansionInProgress) {
                                                wallpaperGrid._expansionInProgress = true;
                                                lazyModel.loadOneRow();
                                                Qt.callLater(function() {
                                                    wallpaperGrid._expansionInProgress = false;
                                                });
                                            }
                                        }
                                    }
                                }
                                
                                interactive: false


                    delegate: Item {
                        required property var modelData

                        width: wallpaperGrid.cellWidth
                        height: wallpaperGrid.cellHeight

                        readonly property bool isCurrent: modelData.path === Wallpapers.actualCurrent
                        readonly property real itemMargin: Appearance.spacing.normal / 2
                        readonly property real itemRadius: Appearance.rounding.normal
                        
                        Component.onCompleted: {
                            wallpaperGrid._delegateCount++;
                        }

                        StateLayer {
                            anchors.fill: parent
                            anchors.leftMargin: itemMargin
                            anchors.rightMargin: itemMargin
                            anchors.topMargin: itemMargin
                            anchors.bottomMargin: itemMargin
                            radius: itemRadius

                            function onClicked(): void {
                                Wallpapers.setWallpaper(modelData.path);
                            }
                        }

                        StyledClippingRect {
                            id: image

                            anchors.fill: parent
                            anchors.leftMargin: itemMargin
                            anchors.rightMargin: itemMargin
                            anchors.topMargin: itemMargin
                            anchors.bottomMargin: itemMargin
                            color: Colours.tPalette.m3surfaceContainer
                            radius: itemRadius
                            antialiasing: true
                            layer.enabled: true
                            layer.smooth: true

                            CachingImage {
                                id: cachingImage

                                path: modelData.path
                                anchors.fill: parent
                                fillMode: Image.PreserveAspectCrop
                                cache: true
                                visible: opacity > 0
                                antialiasing: true
                                smooth: true

                                opacity: status === Image.Ready ? 1 : 0

                                Behavior on opacity {
                                    NumberAnimation {
                                        duration: 1000
                                        easing.type: Easing.OutQuad
                                    }
                                }
                            }

                            // Fallback if CachingImage fails to load
                            Image {
                                id: fallbackImage

                                anchors.fill: parent
                                source: fallbackTimer.triggered && cachingImage.status !== Image.Ready ? modelData.path : ""
                                asynchronous: true
                                fillMode: Image.PreserveAspectCrop
                                cache: true
                                visible: opacity > 0
                                antialiasing: true
                                smooth: true

                                opacity: status === Image.Ready && cachingImage.status !== Image.Ready ? 1 : 0

                                Behavior on opacity {
                                    NumberAnimation {
                                        duration: 1000
                                        easing.type: Easing.OutQuad
                                    }
                                }
                            }

                            Timer {
                                id: fallbackTimer

                                property bool triggered: false
                                interval: 800
                                running: cachingImage.status === Image.Loading || cachingImage.status === Image.Null
                                onTriggered: triggered = true
                            }

                            // Gradient overlay for filename
                            Rectangle {
                                id: filenameOverlay

                                anchors.left: parent.left
                                anchors.right: parent.right
                                anchors.bottom: parent.bottom

                                implicitHeight: filenameText.implicitHeight + Appearance.padding.normal * 1.5
                                radius: 0
                                
                                gradient: Gradient {
                                    GradientStop {
                                        position: 0.0
                                        color: Qt.rgba(Colours.palette.m3surfaceContainer.r, 
                                                      Colours.palette.m3surfaceContainer.g, 
                                                      Colours.palette.m3surfaceContainer.b, 0)
                                    }
                                    GradientStop {
                                        position: 0.3
                                        color: Qt.rgba(Colours.palette.m3surfaceContainer.r, 
                                                      Colours.palette.m3surfaceContainer.g, 
                                                      Colours.palette.m3surfaceContainer.b, 0.7)
                                    }
                                    GradientStop {
                                        position: 0.6
                                        color: Qt.rgba(Colours.palette.m3surfaceContainer.r, 
                                                      Colours.palette.m3surfaceContainer.g, 
                                                      Colours.palette.m3surfaceContainer.b, 0.9)
                                    }
                                    GradientStop {
                                        position: 1.0
                                        color: Qt.rgba(Colours.palette.m3surfaceContainer.r, 
                                                      Colours.palette.m3surfaceContainer.g, 
                                                      Colours.palette.m3surfaceContainer.b, 0.95)
                                    }
                                }

                                opacity: 0

                                Behavior on opacity {
                                    NumberAnimation {
                                        duration: 1000
                                        easing.type: Easing.OutCubic
                                    }
                                }

                                Component.onCompleted: {
                                    opacity = 1;
                                }
                            }
                        }

                        Rectangle {
                            anchors.fill: parent
                            anchors.leftMargin: itemMargin
                            anchors.rightMargin: itemMargin
                            anchors.topMargin: itemMargin
                            anchors.bottomMargin: itemMargin
                            color: "transparent"
                            radius: itemRadius + border.width
                            border.width: isCurrent ? 2 : 0
                            border.color: Colours.palette.m3primary
                            antialiasing: true
                            smooth: true

                            Behavior on border.width {
                                NumberAnimation {
                                    duration: 150
                                    easing.type: Easing.OutQuad
                                }
                            }

                            MaterialIcon {
                                anchors.right: parent.right
                                anchors.top: parent.top
                                anchors.margins: Appearance.padding.small

                                visible: isCurrent
                                text: "check_circle"
                                color: Colours.palette.m3primary
                                font.pointSize: Appearance.font.size.large
                            }
                        }

                        StyledText {
                            id: filenameText
                            anchors.left: parent.left
                            anchors.right: parent.right
                            anchors.bottom: parent.bottom
                            anchors.leftMargin: Appearance.padding.normal + Appearance.spacing.normal / 2
                            anchors.rightMargin: Appearance.padding.normal + Appearance.spacing.normal / 2
                            anchors.bottomMargin: Appearance.padding.normal

                            readonly property string fileName: {
                                const path = modelData.relativePath || "";
                                const parts = path.split("/");
                                return parts.length > 0 ? parts[parts.length - 1] : path;
                            }

                            text: fileName
                            font.pointSize: Appearance.font.size.smaller
                            font.weight: 500
                            color: isCurrent ? Colours.palette.m3primary : Colours.palette.m3onSurface
                            elide: Text.ElideMiddle
                            maximumLineCount: 1
                            horizontalAlignment: Text.AlignHCenter

                            opacity: 0

                            Behavior on opacity {
                                NumberAnimation {
                                    duration: 1000
                                    easing.type: Easing.OutCubic
                                }
                            }

                            Component.onCompleted: {
                                opacity = 1;
                            }
                        }
                    }
                            }
                        }
                    }
                }
            }
        }
    }

    SplitPaneLayout {
        anchors.fill: parent

        leftContent: Component {

            StyledFlickable {
                id: sidebarFlickable
                readonly property var rootPane: root
                flickableDirection: Flickable.VerticalFlick
                contentHeight: sidebarLayout.height


                StyledScrollBar.vertical: StyledScrollBar {
                    flickable: sidebarFlickable
                }

                ColumnLayout {
                    id: sidebarLayout
                    anchors.left: parent.left
                    anchors.right: parent.right
                    spacing: Appearance.spacing.small

                    readonly property bool allSectionsExpanded: 
                        themeModeSection.expanded &&
                        colorVariantSection.expanded &&
                        colorSchemeSection.expanded &&
                        animationsSection.expanded &&
                        fontsSection.expanded &&
                        scalesSection.expanded &&
                        transparencySection.expanded &&
                        borderSection.expanded &&
                        backgroundSection.expanded

                RowLayout {
                    spacing: Appearance.spacing.smaller

                    StyledText {
                        text: qsTr("Appearance")
                        font.pointSize: Appearance.font.size.large
                        font.weight: 500
                    }

                    Item {
                        Layout.fillWidth: true
                    }

                    IconButton {
                        icon: sidebarLayout.allSectionsExpanded ? "unfold_less" : "unfold_more"
                        type: IconButton.Text
                        label.animate: true
                        onClicked: {
                            const shouldExpand = !sidebarLayout.allSectionsExpanded;
                            themeModeSection.expanded = shouldExpand;
                            colorVariantSection.expanded = shouldExpand;
                            colorSchemeSection.expanded = shouldExpand;
                            animationsSection.expanded = shouldExpand;
                            fontsSection.expanded = shouldExpand;
                            scalesSection.expanded = shouldExpand;
                            transparencySection.expanded = shouldExpand;
                            borderSection.expanded = shouldExpand;
                            backgroundSection.expanded = shouldExpand;
                        }
                    }
                }

                CollapsibleSection {
                    id: themeModeSection
                    title: qsTr("Theme mode")
                    description: qsTr("Light or dark theme")
                    showBackground: true

                    SwitchRow {
                        label: qsTr("Dark mode")
                        checked: !Colours.currentLight
                        onToggled: checked => {
                            Colours.setMode(checked ? "dark" : "light");
                        }
                    }
                }

                CollapsibleSection {
                    id: colorVariantSection
                    title: qsTr("Color variant")
                    description: qsTr("Material theme variant")
                    showBackground: true

                    ColumnLayout {
                        Layout.fillWidth: true
                        spacing: Appearance.spacing.small / 2

                        Repeater {
                            model: M3Variants.list

                            delegate: StyledRect {
                                required property var modelData

                                Layout.fillWidth: true

                                color: Qt.alpha(Colours.tPalette.m3surfaceContainer, modelData.variant === Schemes.currentVariant ? Colours.tPalette.m3surfaceContainer.a : 0)
                                radius: Appearance.rounding.normal
                                border.width: modelData.variant === Schemes.currentVariant ? 1 : 0
                                border.color: Colours.palette.m3primary

                                StateLayer {
                                    function onClicked(): void {
                                        const variant = modelData.variant;

                                        Schemes.currentVariant = variant;
                                        Quickshell.execDetached(["caelestia", "scheme", "set", "-v", variant]);

                                        Qt.callLater(() => {
                                            reloadTimer.restart();
                                        });
                                    }
                                }

                                Timer {
                                    id: reloadTimer
                                    interval: 300
                                    onTriggered: {
                                        Schemes.reload();
                                    }
                                }

                                RowLayout {
                                    id: variantRow

                                    anchors.left: parent.left
                                    anchors.right: parent.right
                                    anchors.verticalCenter: parent.verticalCenter
                                    anchors.margins: Appearance.padding.normal

                                    spacing: Appearance.spacing.normal

                                    MaterialIcon {
                                        text: modelData.icon
                                        font.pointSize: Appearance.font.size.large
                                        fill: modelData.variant === Schemes.currentVariant ? 1 : 0
                                    }

                                    StyledText {
                                        Layout.fillWidth: true
                                        text: modelData.name
                                        font.weight: modelData.variant === Schemes.currentVariant ? 500 : 400
                                    }

                                    MaterialIcon {
                                        visible: modelData.variant === Schemes.currentVariant
                                        text: "check"
                                        color: Colours.palette.m3primary
                                        font.pointSize: Appearance.font.size.large
                                    }
                                }

                                implicitHeight: variantRow.implicitHeight + Appearance.padding.normal * 2
                            }
                        }
                    }
                }

                CollapsibleSection {
                    id: colorSchemeSection
                    title: qsTr("Color scheme")
                    description: qsTr("Available color schemes")
                    showBackground: true

                    ColumnLayout {
                        Layout.fillWidth: true
                        spacing: Appearance.spacing.small / 2

                        Repeater {
                            model: Schemes.list

                            delegate: StyledRect {
                                required property var modelData

                                Layout.fillWidth: true

                                readonly property string schemeKey: `${modelData.name} ${modelData.flavour}`
                                readonly property bool isCurrent: schemeKey === Schemes.currentScheme

                                color: Qt.alpha(Colours.tPalette.m3surfaceContainer, isCurrent ? Colours.tPalette.m3surfaceContainer.a : 0)
                                radius: Appearance.rounding.normal
                                border.width: isCurrent ? 1 : 0
                                border.color: Colours.palette.m3primary

                                StateLayer {
                                    function onClicked(): void {
                                        const name = modelData.name;
                                        const flavour = modelData.flavour;
                                        const schemeKey = `${name} ${flavour}`;

                                        Schemes.currentScheme = schemeKey;
                                        Quickshell.execDetached(["caelestia", "scheme", "set", "-n", name, "-f", flavour]);

                                        Qt.callLater(() => {
                                            reloadTimer.restart();
                                        });
                                    }
                                }

                                Timer {
                                    id: reloadTimer
                                    interval: 300
                                    onTriggered: {
                                        Schemes.reload();
                                    }
                                }

                                RowLayout {
                                    id: schemeRow

                                    anchors.fill: parent
                                    anchors.margins: Appearance.padding.normal

                                    spacing: Appearance.spacing.normal

                                    StyledRect {
                                        id: preview

                                        Layout.alignment: Qt.AlignVCenter

                                        border.width: 1
                                        border.color: Qt.alpha(`#${modelData.colours?.outline}`, 0.5)

                                        color: `#${modelData.colours?.surface}`
                                        radius: Appearance.rounding.full
                                        implicitWidth: iconPlaceholder.implicitWidth
                                        implicitHeight: iconPlaceholder.implicitWidth

                                        MaterialIcon {
                                            id: iconPlaceholder
                                            visible: false
                                            text: "circle"
                                            font.pointSize: Appearance.font.size.large
                                        }

                                        Item {
                                            anchors.top: parent.top
                                            anchors.bottom: parent.bottom
                                            anchors.right: parent.right

                                            implicitWidth: parent.implicitWidth / 2
                                            clip: true

                                            StyledRect {
                                                anchors.top: parent.top
                                                anchors.bottom: parent.bottom
                                                anchors.right: parent.right

                                                implicitWidth: preview.implicitWidth
                                                color: `#${modelData.colours?.primary}`
                                                radius: Appearance.rounding.full
                                            }
                                        }
                                    }

                                    Column {
                                        Layout.fillWidth: true
                                        spacing: 0

                                        StyledText {
                                            text: modelData.flavour ?? ""
                                            font.pointSize: Appearance.font.size.normal
                                        }

                                        StyledText {
                                            text: modelData.name ?? ""
                                            font.pointSize: Appearance.font.size.small
                                            color: Colours.palette.m3outline

                                            elide: Text.ElideRight
                                            anchors.left: parent.left
                                            anchors.right: parent.right
                                        }
                                    }

                                    Loader {
                                        active: isCurrent
                                        asynchronous: true

                                        sourceComponent: MaterialIcon {
                                            text: "check"
                                            color: Colours.palette.m3onSurfaceVariant
                                            font.pointSize: Appearance.font.size.large
                                        }
                                    }
                                }

                                implicitHeight: schemeRow.implicitHeight + Appearance.padding.normal * 2
                            }
                        }
                    }
                }

                CollapsibleSection {
                    id: animationsSection
                    title: qsTr("Animations")
                    showBackground: true

                    SectionContainer {
                        contentSpacing: Appearance.spacing.normal

                        SliderInput {
                            Layout.fillWidth: true
                            
                            label: qsTr("Animation duration scale")
                            value: rootPane.animDurationsScale
                            from: 0.1
                            to: 5.0
                            decimals: 1
                            suffix: "×"
                            validator: DoubleValidator { bottom: 0.1; top: 5.0 }
                            
                            onValueModified: (newValue) => {
                                rootPane.animDurationsScale = newValue;
                                rootPane.saveConfig();
                            }
                        }
                    }
                }

                CollapsibleSection {
                    id: fontsSection
                    title: qsTr("Fonts")
                    showBackground: true

                    CollapsibleSection {
                        id: materialFontSection
                        title: qsTr("Material font family")
                        expanded: true
                        showBackground: true
                        nested: true

                        Loader {
                            id: materialFontLoader
                            Layout.fillWidth: true
                            Layout.preferredHeight: item ? Math.min(item.contentHeight, 300) : 0
                            asynchronous: true
                            active: materialFontSection.expanded

                            sourceComponent: StyledListView {
                                id: materialFontList
                                property alias contentHeight: materialFontList.contentHeight

                                clip: true
                                spacing: Appearance.spacing.small / 2
                                model: Qt.fontFamilies()

                                StyledScrollBar.vertical: StyledScrollBar {
                                    flickable: materialFontList
                                }

                                delegate: StyledRect {
                                    required property string modelData
                                    required property int index

                                    width: ListView.view.width

                                    readonly property bool isCurrent: modelData === rootPane.fontFamilyMaterial
                                    color: Qt.alpha(Colours.tPalette.m3surfaceContainer, isCurrent ? Colours.tPalette.m3surfaceContainer.a : 0)
                                    radius: Appearance.rounding.normal
                                    border.width: isCurrent ? 1 : 0
                                    border.color: Colours.palette.m3primary

                                    StateLayer {
                                        function onClicked(): void {
                                            rootPane.fontFamilyMaterial = modelData;
                                            rootPane.saveConfig();
                                        }
                                    }

                                    RowLayout {
                                        id: fontFamilyMaterialRow

                                        anchors.left: parent.left
                                        anchors.right: parent.right
                                        anchors.verticalCenter: parent.verticalCenter
                                        anchors.margins: Appearance.padding.normal

                                        spacing: Appearance.spacing.normal

                                        StyledText {
                                            text: modelData
                                            font.pointSize: Appearance.font.size.normal
                                        }

                                        Item {
                                            Layout.fillWidth: true
                                        }

                                        Loader {
                                            active: isCurrent
                                            asynchronous: true

                                            sourceComponent: MaterialIcon {
                                                text: "check"
                                                color: Colours.palette.m3onSurfaceVariant
                                                font.pointSize: Appearance.font.size.large
                                            }
                                        }
                                    }

                                    implicitHeight: fontFamilyMaterialRow.implicitHeight + Appearance.padding.normal * 2
                                }
                            }

                        }
                    }

                    CollapsibleSection {
                        id: monoFontSection
                        title: qsTr("Monospace font family")
                        expanded: false
                        showBackground: true
                        nested: true

                        Loader {
                            Layout.fillWidth: true
                            Layout.preferredHeight: item ? Math.min(item.contentHeight, 300) : 0
                            asynchronous: true
                            active: monoFontSection.expanded

                            sourceComponent: StyledListView {
                                id: monoFontList
                                property alias contentHeight: monoFontList.contentHeight

                                clip: true
                                spacing: Appearance.spacing.small / 2
                                model: Qt.fontFamilies()

                                StyledScrollBar.vertical: StyledScrollBar {
                                    flickable: monoFontList
                                }

                                delegate: StyledRect {
                                    required property string modelData
                                    required property int index

                                    width: ListView.view.width

                                    readonly property bool isCurrent: modelData === rootPane.fontFamilyMono
                                    color: Qt.alpha(Colours.tPalette.m3surfaceContainer, isCurrent ? Colours.tPalette.m3surfaceContainer.a : 0)
                                    radius: Appearance.rounding.normal
                                    border.width: isCurrent ? 1 : 0
                                    border.color: Colours.palette.m3primary

                                    StateLayer {
                                        function onClicked(): void {
                                            rootPane.fontFamilyMono = modelData;
                                            rootPane.saveConfig();
                                        }
                                    }

                                    RowLayout {
                                        id: fontFamilyMonoRow

                                        anchors.left: parent.left
                                        anchors.right: parent.right
                                        anchors.verticalCenter: parent.verticalCenter
                                        anchors.margins: Appearance.padding.normal

                                        spacing: Appearance.spacing.normal

                                        StyledText {
                                            text: modelData
                                            font.pointSize: Appearance.font.size.normal
                                        }

                                        Item {
                                            Layout.fillWidth: true
                                        }

                                        Loader {
                                            active: isCurrent
                                            asynchronous: true

                                            sourceComponent: MaterialIcon {
                                                text: "check"
                                                color: Colours.palette.m3onSurfaceVariant
                                                font.pointSize: Appearance.font.size.large
                                            }
                                        }
                                    }

                                    implicitHeight: fontFamilyMonoRow.implicitHeight + Appearance.padding.normal * 2
                                }
                            }
                        }
                    }

                    CollapsibleSection {
                        id: sansFontSection
                        title: qsTr("Sans-serif font family")
                        expanded: false
                        showBackground: true
                        nested: true

                        Loader {
                            Layout.fillWidth: true
                            Layout.preferredHeight: item ? Math.min(item.contentHeight, 300) : 0
                            asynchronous: true
                            active: sansFontSection.expanded

                            sourceComponent: StyledListView {
                                id: sansFontList
                                property alias contentHeight: sansFontList.contentHeight

                                clip: true
                                spacing: Appearance.spacing.small / 2
                                model: Qt.fontFamilies()

                                StyledScrollBar.vertical: StyledScrollBar {
                                    flickable: sansFontList
                                }

                                delegate: StyledRect {
                                    required property string modelData
                                    required property int index

                                    width: ListView.view.width

                                    readonly property bool isCurrent: modelData === rootPane.fontFamilySans
                                    color: Qt.alpha(Colours.tPalette.m3surfaceContainer, isCurrent ? Colours.tPalette.m3surfaceContainer.a : 0)
                                    radius: Appearance.rounding.normal
                                    border.width: isCurrent ? 1 : 0
                                    border.color: Colours.palette.m3primary

                                    StateLayer {
                                        function onClicked(): void {
                                            rootPane.fontFamilySans = modelData;
                                            rootPane.saveConfig();
                                        }
                                    }

                                    RowLayout {
                                        id: fontFamilySansRow

                                        anchors.left: parent.left
                                        anchors.right: parent.right
                                        anchors.verticalCenter: parent.verticalCenter
                                        anchors.margins: Appearance.padding.normal

                                        spacing: Appearance.spacing.normal

                                        StyledText {
                                            text: modelData
                                            font.pointSize: Appearance.font.size.normal
                                        }

                                        Item {
                                            Layout.fillWidth: true
                                        }

                                        Loader {
                                            active: isCurrent
                                            asynchronous: true

                                            sourceComponent: MaterialIcon {
                                                text: "check"
                                                color: Colours.palette.m3onSurfaceVariant
                                                font.pointSize: Appearance.font.size.large
                                            }
                                        }
                                    }

                                    implicitHeight: fontFamilySansRow.implicitHeight + Appearance.padding.normal * 2
                                }
                            }
                        }
                    }

                    SectionContainer {
                        contentSpacing: Appearance.spacing.normal

                        SliderInput {
                            Layout.fillWidth: true
                            
                            label: qsTr("Font size scale")
                            value: rootPane.fontSizeScale
                            from: 0.7
                            to: 1.5
                            decimals: 2
                            suffix: "×"
                            validator: DoubleValidator { bottom: 0.7; top: 1.5 }
                            
                            onValueModified: (newValue) => {
                                rootPane.fontSizeScale = newValue;
                                rootPane.saveConfig();
                            }
                        }
                    }
                }

                CollapsibleSection {
                    id: scalesSection
                    title: qsTr("Scales")
                    showBackground: true

                    SectionContainer {
                        contentSpacing: Appearance.spacing.normal

                        SliderInput {
                            Layout.fillWidth: true
                            
                            label: qsTr("Padding scale")
                            value: rootPane.paddingScale
                            from: 0.5
                            to: 2.0
                            decimals: 1
                            suffix: "×"
                            validator: DoubleValidator { bottom: 0.5; top: 2.0 }
                            
                            onValueModified: (newValue) => {
                                rootPane.paddingScale = newValue;
                                rootPane.saveConfig();
                            }
                        }
                    }

                    SectionContainer {
                        contentSpacing: Appearance.spacing.normal

                        SliderInput {
                            Layout.fillWidth: true
                            
                            label: qsTr("Rounding scale")
                            value: rootPane.roundingScale
                            from: 0.1
                            to: 5.0
                            decimals: 1
                            suffix: "×"
                            validator: DoubleValidator { bottom: 0.1; top: 5.0 }
                            
                            onValueModified: (newValue) => {
                                rootPane.roundingScale = newValue;
                                rootPane.saveConfig();
                            }
                        }
                    }

                    SectionContainer {
                        contentSpacing: Appearance.spacing.normal

                        SliderInput {
                            Layout.fillWidth: true
                            
                            label: qsTr("Spacing scale")
                            value: rootPane.spacingScale
                            from: 0.1
                            to: 2.0
                            decimals: 1
                            suffix: "×"
                            validator: DoubleValidator { bottom: 0.1; top: 2.0 }
                            
                            onValueModified: (newValue) => {
                                rootPane.spacingScale = newValue;
                                rootPane.saveConfig();
                            }
                        }
                    }
                }

                CollapsibleSection {
                    id: transparencySection
                    title: qsTr("Transparency")
                    showBackground: true

                    SwitchRow {
                        label: qsTr("Transparency enabled")
                        checked: rootPane.transparencyEnabled
                        onToggled: checked => {
                            rootPane.transparencyEnabled = checked;
                            rootPane.saveConfig();
                        }
                    }

                    SectionContainer {
                        contentSpacing: Appearance.spacing.normal

                        SliderInput {
                            Layout.fillWidth: true
                            
                            label: qsTr("Transparency base")
                            value: rootPane.transparencyBase * 100
                            from: 0
                            to: 100
                            suffix: "%"
                            validator: IntValidator { bottom: 0; top: 100 }
                            formatValueFunction: (val) => Math.round(val).toString()
                            parseValueFunction: (text) => parseInt(text)
                            
                            onValueModified: (newValue) => {
                                rootPane.transparencyBase = newValue / 100;
                                rootPane.saveConfig();
                            }
                        }
                    }

                    SectionContainer {
                        contentSpacing: Appearance.spacing.normal

                        SliderInput {
                            Layout.fillWidth: true
                            
                            label: qsTr("Transparency layers")
                            value: rootPane.transparencyLayers * 100
                            from: 0
                            to: 100
                            suffix: "%"
                            validator: IntValidator { bottom: 0; top: 100 }
                            formatValueFunction: (val) => Math.round(val).toString()
                            parseValueFunction: (text) => parseInt(text)
                            
                            onValueModified: (newValue) => {
                                rootPane.transparencyLayers = newValue / 100;
                                rootPane.saveConfig();
                            }
                        }
                    }
                }

                CollapsibleSection {
                    id: borderSection
                    title: qsTr("Border")
                    showBackground: true

                    SectionContainer {
                        contentSpacing: Appearance.spacing.normal

                        SliderInput {
                            Layout.fillWidth: true
                            
                            label: qsTr("Border rounding")
                            value: rootPane.borderRounding
                            from: 0.1
                            to: 100
                            decimals: 1
                            suffix: "px"
                            validator: DoubleValidator { bottom: 0.1; top: 100 }
                            
                            onValueModified: (newValue) => {
                                rootPane.borderRounding = newValue;
                                rootPane.saveConfig();
                            }
                        }
                    }

                    SectionContainer {
                        contentSpacing: Appearance.spacing.normal

                        SliderInput {
                            Layout.fillWidth: true
                            
                            label: qsTr("Border thickness")
                            value: rootPane.borderThickness
                            from: 0.1
                            to: 100
                            decimals: 1
                            suffix: "px"
                            validator: DoubleValidator { bottom: 0.1; top: 100 }
                            
                            onValueModified: (newValue) => {
                                rootPane.borderThickness = newValue;
                                rootPane.saveConfig();
                            }
                        }
                    }
                }

                CollapsibleSection {
                    id: backgroundSection
                    title: qsTr("Background")
                    showBackground: true

                    SwitchRow {
                        label: qsTr("Desktop clock")
                        checked: rootPane.desktopClockEnabled
                        onToggled: checked => {
                            rootPane.desktopClockEnabled = checked;
                            rootPane.saveConfig();
                        }
                    }

                    SwitchRow {
                        label: qsTr("Background enabled")
                        checked: rootPane.backgroundEnabled
                        onToggled: checked => {
                            rootPane.backgroundEnabled = checked;
                            rootPane.saveConfig();
                        }
                    }

                    StyledText {
                        Layout.topMargin: Appearance.spacing.normal
                        text: qsTr("Visualiser")
                        font.pointSize: Appearance.font.size.larger
                        font.weight: 500
                    }

                    SwitchRow {
                        label: qsTr("Visualiser enabled")
                        checked: rootPane.visualiserEnabled
                        onToggled: checked => {
                            rootPane.visualiserEnabled = checked;
                            rootPane.saveConfig();
                        }
                    }

                    SwitchRow {
                        label: qsTr("Visualiser auto hide")
                        checked: rootPane.visualiserAutoHide
                        onToggled: checked => {
                            rootPane.visualiserAutoHide = checked;
                            rootPane.saveConfig();
                        }
                    }

                    SectionContainer {
                        contentSpacing: Appearance.spacing.normal

                        SliderInput {
                            Layout.fillWidth: true
                            
                            label: qsTr("Visualiser rounding")
                            value: rootPane.visualiserRounding
                            from: 0
                            to: 10
                            stepSize: 1
                            validator: IntValidator { bottom: 0; top: 10 }
                            formatValueFunction: (val) => Math.round(val).toString()
                            parseValueFunction: (text) => parseInt(text)
                            
                            onValueModified: (newValue) => {
                                rootPane.visualiserRounding = Math.round(newValue);
                                rootPane.saveConfig();
                            }
                        }
                    }

                    SectionContainer {
                        contentSpacing: Appearance.spacing.normal

                        SliderInput {
                            Layout.fillWidth: true
                            
                            label: qsTr("Visualiser spacing")
                            value: rootPane.visualiserSpacing
                            from: 0
                            to: 2
                            validator: DoubleValidator { bottom: 0; top: 2 }
                            
                            onValueModified: (newValue) => {
                                rootPane.visualiserSpacing = newValue;
                                rootPane.saveConfig();
                            }
                        }
                    }
                }
            }
        }
        }

        rightContent: appearanceRightContentComponent
    }
}