hyprlang 0.5.0

A scripting language interpreter and parser for Hyprlang and Hyprland configuration files.
Documentation
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
//! Hyprland-specific configuration wrapper
//!
//! This module provides a high-level interface for working with Hyprland configurations.
//! It automatically registers all Hyprland handlers, special categories, and provides
//! typed access to common configuration options.
//!
//! # Overview
//!
//! The [`Hyprland`] struct wraps the low-level [`Config`] API with Hyprland-specific
//! conveniences:
//!
//! - **Automatic Handler Registration**: All Hyprland handlers (bind, monitor, env, etc.)
//!   are pre-registered when you create a [`Hyprland`] instance
//! - **Typed Accessor Methods**: Instead of string-based key access, use typed methods
//!   like [`general_border_size()`](Hyprland::general_border_size) that return the correct type
//! - **Handler Arrays**: Access all binds, windowrules, etc. as arrays with methods like
//!   [`all_binds()`](Hyprland::all_binds)
//! - **Special Categories**: Device and monitor categories are pre-configured
//!
//! # When to Use This Module
//!
//! Use this module when:
//! - You're parsing Hyprland configuration files
//! - You want typed, convenient access to common config values
//! - You're building tools for Hyprland users (config editors, validators, etc.)
//!
//! Use the low-level [`Config`] API when:
//! - You're implementing a different config language
//! - You need full control over handler registration
//! - You want minimal dependencies
//!
//! # Quick Start
//!
//! ```rust
//! # #[cfg(feature = "hyprland")]
//! # {
//! use hyprlang::Hyprland;
//!
//! // Create instance - handlers are automatically registered
//! let mut hypr = Hyprland::new();
//!
//! // Parse configuration
//! hypr.parse(r#"
//!     general {
//!         border_size = 2
//!         gaps_in = 5
//!         col.active_border = rgba(33ccffee)
//!     }
//!
//!     bind = SUPER, Q, exec, kitty
//!     bind = SUPER, C, killactive
//! "#).unwrap();
//!
//! // Access with typed methods
//! let border = hypr.general_border_size().unwrap();
//! let color = hypr.general_active_border_color().unwrap();
//!
//! // Get all bindings as an array
//! let binds = hypr.all_binds();
//! assert_eq!(binds.len(), 2);
//! # }
//! ```
//!
//! # Configuration Categories
//!
//! ## General Settings
//!
//! ```rust
//! # #[cfg(feature = "hyprland")]
//! # {
//! # use hyprlang::Hyprland;
//! # fn example() -> Result<(), Box<dyn std::error::Error>> {
//! # let mut hypr = Hyprland::new();
//! # hypr.parse(r#"
//! # general {
//! #     border_size = 2
//! #     gaps_in = 5
//! #     gaps_out = 20
//! #     layout = dwindle
//! #     allow_tearing = false
//! #     col.active_border = rgba(33ccffee)
//! #     col.inactive_border = rgba(595959aa)
//! # }
//! # "#)?;
//! // Access general settings
//! let border_size = hypr.general_border_size()?;
//! let gaps_in = hypr.general_gaps_in()?;
//! let layout = hypr.general_layout()?;
//! let tearing = hypr.general_allow_tearing()?;
//!
//! // Access colors
//! let active = hypr.general_active_border_color()?;
//! let inactive = hypr.general_inactive_border_color()?;
//! # Ok(())
//! # }
//! # example().unwrap();
//! # }
//! ```
//!
//! ## Decoration Settings
//!
//! ```rust
//! # #[cfg(feature = "hyprland")]
//! # {
//! # use hyprlang::Hyprland;
//! # fn example() -> Result<(), Box<dyn std::error::Error>> {
//! # let mut hypr = Hyprland::new();
//! # hypr.parse(r#"
//! # decoration {
//! #     rounding = 10
//! #     active_opacity = 1.0
//! #     inactive_opacity = 0.9
//! #     blur {
//! #         enabled = true
//! #         size = 3
//! #         passes = 1
//! #     }
//! # }
//! # "#)?;
//! let rounding = hypr.decoration_rounding()?;
//! let active_opacity = hypr.decoration_active_opacity()?;
//! let blur_enabled = hypr.decoration_blur_enabled()?;
//! let blur_size = hypr.decoration_blur_size()?;
//! # Ok(())
//! # }
//! # example().unwrap();
//! # }
//! ```
//!
//! ## Animation Settings
//!
//! ```rust
//! # #[cfg(feature = "hyprland")]
//! # {
//! # use hyprlang::Hyprland;
//! # fn example() -> Result<(), Box<dyn std::error::Error>> {
//! # let mut hypr = Hyprland::new();
//! # hypr.parse(r#"
//! # animations {
//! #     enabled = true
//! #     animation = windows, 1, 4, default
//! #     animation = fade, 1, 3, quick
//! #     bezier = easeOut, 0.23, 1, 0.32, 1
//! # }
//! # "#)?;
//! if hypr.animations_enabled()? {
//!     // Get all animation definitions
//!     for anim in hypr.all_animations() {
//!         println!("Animation: {}", anim);
//!     }
//!
//!     // Get all bezier curves
//!     for bezier in hypr.all_beziers() {
//!         println!("Bezier: {}", bezier);
//!     }
//! }
//! # Ok(())
//! # }
//! # example().unwrap();
//! # }
//! ```
//!
//! ## Handler Arrays
//!
//! All Hyprland handlers (bind, windowrule, etc.) are collected into arrays:
//!
//! ```rust
//! # #[cfg(feature = "hyprland")]
//! # {
//! # use hyprlang::Hyprland;
//! # let mut hypr = Hyprland::new();
//! # hypr.parse(r#"
//! # bind = SUPER, Q, exec, kitty
//! # bind = SUPER, C, killactive
//! # windowrule = float, ^(kitty)$
//! # monitor = ,preferred,auto,1
//! # env = XCURSOR_SIZE,24
//! # exec-once = waybar
//! # "#).unwrap();
//! // Get all keybindings
//! let binds = hypr.all_binds();
//! for bind in binds {
//!     println!("Bind: {}", bind);
//! }
//!
//! // Get all window rules
//! let rules = hypr.all_windowrules();
//!
//! // Get all monitors
//! let monitors = hypr.all_monitors();
//!
//! // Get all environment variables
//! let envs = hypr.all_env();
//!
//! // Get all exec-once commands
//! let execs = hypr.all_exec_once();
//! # }
//! ```
//!
//! ## Variables
//!
//! ```rust
//! # #[cfg(feature = "hyprland")]
//! # {
//! # use hyprlang::Hyprland;
//! # let mut hypr = Hyprland::new();
//! # hypr.parse(r#"
//! # $terminal = kitty
//! # $mod = SUPER
//! # "#).unwrap();
//! // Get all variables
//! let vars = hypr.variables();
//! for (name, value) in vars {
//!     println!("${} = {}", name, value);
//! }
//!
//! // Get specific variable
//! if let Some(terminal) = hypr.get_variable("terminal") {
//!     println!("Terminal: {}", terminal);
//! }
//! # }
//! ```
//!
//! # Pre-Registered Handlers
//!
//! The following handlers are automatically registered:
//!
//! **Root-level handlers:**
//! - `monitor` - Monitor configuration
//! - `env` - Environment variables
//! - `bind`, `bindm`, `bindel`, `bindl`, `bindr`, `binde`, `bindn` - Keybindings
//! - `windowrule`, `windowrulev2` - Window rules
//! - `layerrule` - Layer rules
//! - `workspace` - Workspace configuration
//! - `exec`, `exec-once` - Commands
//! - `source` - File inclusion
//! - `blurls` - Blur layer surface
//! - `plugin` - Plugin loading
//!
//! **Category-specific handlers:**
//! - `animations:animation` - Animation definitions
//! - `animations:bezier` - Bezier curve definitions
//!
//! **Special categories:**
//! - `device[name]` - Per-device input configuration (keyed)
//! - `monitor[name]` - Per-monitor configuration (keyed)
//!
//! # Direct Config Access
//!
//! If you need access to the underlying [`Config`] API:
//!
//! ```rust
//! # #[cfg(feature = "hyprland")]
//! # {
//! # use hyprlang::Hyprland;
//! # let mut hypr = Hyprland::new();
//! // Immutable access
//! let config = hypr.config();
//! let value = config.get("custom:key");
//!
//! // Mutable access
//! let config = hypr.config_mut();
//! config.register_handler_fn("custom", |ctx| {
//!     println!("Custom: {}", ctx.value);
//!     Ok(())
//! });
//! # }
//! ```
//!
//! # Examples
//!
//! ## Parse a Hyprland Config File
//!
//! ```rust,no_run
//! # #[cfg(feature = "hyprland")]
//! # {
//! use hyprlang::Hyprland;
//! use std::path::Path;
//!
//! # fn example() -> Result<(), Box<dyn std::error::Error>> {
//! let mut hypr = Hyprland::new();
//! hypr.parse_file(Path::new("~/.config/hypr/hyprland.conf"))?;
//!
//! // Access any setting
//! println!("Border size: {}", hypr.general_border_size()?);
//! println!("Layout: {}", hypr.general_layout()?);
//!
//! // List all keybindings
//! for (i, bind) in hypr.all_binds().iter().enumerate() {
//!     println!("[{}] {}", i + 1, bind);
//! }
//! # Ok(())
//! # }
//! # }
//! ```
//!
//! ## Validate a Hyprland Config
//!
//! ```rust
//! # #[cfg(feature = "hyprland")]
//! # {
//! use hyprlang::Hyprland;
//!
//! fn validate_config(content: &str) -> Result<(), String> {
//!     let mut hypr = Hyprland::new();
//!
//!     hypr.parse(content).map_err(|e| format!("Parse error: {}", e))?;
//!
//!     // Validate required settings
//!     if hypr.general_layout().is_err() {
//!         return Err("Missing general:layout setting".to_string());
//!     }
//!
//!     // Check for recommended settings
//!     if hypr.all_binds().is_empty() {
//!         eprintln!("Warning: No keybindings defined");
//!     }
//!
//!     Ok(())
//! }
//! # }
//! ```
//!
//! ## Extract Config Values
//!
//! ```rust
//! # #[cfg(feature = "hyprland")]
//! # {
//! use hyprlang::Hyprland;
//!
//! # let mut hypr = Hyprland::new();
//! # hypr.parse(r#"
//! # general {
//! #     border_size = 2
//! #     gaps_in = 5
//! #     gaps_out = 20
//! # }
//! # decoration {
//! #     rounding = 10
//! # }
//! # "#).unwrap();
//! // Extract settings into a struct
//! struct Settings {
//!     border_size: i64,
//!     gaps_in: String,
//!     rounding: i64,
//! }
//!
//! let settings = Settings {
//!     border_size: hypr.general_border_size().unwrap_or(2),
//!     gaps_in: hypr.general_gaps_in().unwrap_or("5".to_string()),
//!     rounding: hypr.decoration_rounding().unwrap_or(0),
//! };
//! # }
//! ```
//!
//! [`Config`]: crate::Config

use crate::config::{Config, ConfigOptions};
use crate::error::{ConfigError, ParseResult};
use crate::special_categories::SpecialCategoryDescriptor;
use crate::types::{Color, ConfigValue};
use std::collections::HashMap;
use std::path::Path;

/// Wrapper around a windowrule or layerrule instance with type-safe value accessors.
///
/// This struct provides convenient methods to access properties from windowrule v3
/// and layerrule v2 special category blocks.
///
/// # Example
///
/// ```rust
/// use hyprlang::Hyprland;
///
/// let mut hypr = Hyprland::new();
/// hypr.parse(r#"
///     windowrule[float-kitty] {
///         match:class = ^(kitty)$
///         float = true
///         size = 800 600
///         opacity = 0.9
///         border_color = rgba(33ccffee)
///     }
/// "#).unwrap();
///
/// let rule = hypr.get_windowrule("float-kitty").unwrap();
///
/// // Access different value types
/// let class_pattern = rule.get_string("match:class").unwrap();
/// let is_floating = rule.get_int("float").unwrap();  // 1 for true
/// let opacity = rule.get_float("opacity").unwrap();
/// let color = rule.get_color("border_color").unwrap();
///
/// assert_eq!(class_pattern, "^(kitty)$");
/// assert_eq!(is_floating, 1);
/// assert_eq!(opacity, 0.9);
/// assert_eq!(color.r, 51);  // 0x33
/// ```
pub struct RuleInstance<'a> {
    values: HashMap<String, &'a ConfigValue>,
}

impl<'a> RuleInstance<'a> {
    fn new(values: HashMap<String, &'a ConfigValue>) -> Self {
        Self { values }
    }

    fn parse_color_string(key: &str, value: &str) -> ParseResult<Color> {
        if value.starts_with("rgba(") && value.ends_with(')') {
            let inner = &value[5..value.len() - 1];
            if !inner.contains(',') {
                return Color::from_hex(inner);
            }

            let parts: Vec<&str> = inner.split(',').map(|part| part.trim()).collect();
            if parts.len() != 4 {
                return Err(ConfigError::invalid_color(value, "rgba needs 4 components"));
            }

            let r = parts[0]
                .parse::<u8>()
                .map_err(|_| ConfigError::invalid_color(value, "invalid r"))?;
            let g = parts[1]
                .parse::<u8>()
                .map_err(|_| ConfigError::invalid_color(value, "invalid g"))?;
            let b = parts[2]
                .parse::<u8>()
                .map_err(|_| ConfigError::invalid_color(value, "invalid b"))?;
            let a = if parts[3].contains('.') {
                let alpha = parts[3]
                    .parse::<f64>()
                    .map_err(|_| ConfigError::invalid_color(value, "invalid a"))?;
                (alpha * 255.0).round() as u8
            } else {
                parts[3]
                    .parse::<u8>()
                    .map_err(|_| ConfigError::invalid_color(value, "invalid a"))?
            };

            return Ok(Color::from_rgba(r, g, b, a));
        }

        if value.starts_with("rgb(") && value.ends_with(')') {
            let inner = &value[4..value.len() - 1];
            let parts: Vec<&str> = inner.split(',').map(|part| part.trim()).collect();
            if parts.len() != 3 {
                return Err(ConfigError::invalid_color(value, "rgb needs 3 components"));
            }

            let r = parts[0]
                .parse::<u8>()
                .map_err(|_| ConfigError::invalid_color(value, "invalid r"))?;
            let g = parts[1]
                .parse::<u8>()
                .map_err(|_| ConfigError::invalid_color(value, "invalid g"))?;
            let b = parts[2]
                .parse::<u8>()
                .map_err(|_| ConfigError::invalid_color(value, "invalid b"))?;

            return Ok(Color::from_rgb(r, g, b));
        }

        Color::from_hex(value).map_err(|_| ConfigError::type_error(key, "Color", "String"))
    }

    /// Get a value by key
    pub fn get(&self, key: &str) -> ParseResult<&ConfigValue> {
        self.values
            .get(key)
            .copied()
            .ok_or_else(|| ConfigError::key_not_found(key))
    }

    /// Get a string value
    pub fn get_string(&self, key: &str) -> ParseResult<String> {
        match self.get(key)? {
            ConfigValue::String(s) => Ok(s.clone()),
            v => Err(ConfigError::type_error(key, "String", v.type_name())),
        }
    }

    /// Get an integer value
    pub fn get_int(&self, key: &str) -> ParseResult<i64> {
        match self.get(key)? {
            ConfigValue::Int(i) => Ok(*i),
            ConfigValue::String(s) => ConfigValue::parse_bool(s)
                .map(|b| if b { 1 } else { 0 })
                .or_else(|_| ConfigValue::parse_int(s))
                .map_err(|_| ConfigError::type_error(key, "Int", "String")),
            v => Err(ConfigError::type_error(key, "Int", v.type_name())),
        }
    }

    /// Get a float value
    pub fn get_float(&self, key: &str) -> ParseResult<f64> {
        match self.get(key)? {
            ConfigValue::Float(f) => Ok(*f),
            ConfigValue::Int(i) => Ok(*i as f64),
            ConfigValue::String(s) => ConfigValue::parse_float(s)
                .or_else(|_| ConfigValue::parse_int(s).map(|i| i as f64))
                .map_err(|_| ConfigError::type_error(key, "Float", "String")),
            v => Err(ConfigError::type_error(key, "Float", v.type_name())),
        }
    }

    /// Get a color value
    pub fn get_color(&self, key: &str) -> ParseResult<Color> {
        match self.get(key)? {
            ConfigValue::Color(c) => Ok(*c),
            ConfigValue::String(s) => Self::parse_color_string(key, s),
            v => Err(ConfigError::type_error(key, "Color", v.type_name())),
        }
    }
}

/// High-level wrapper for Hyprland configuration
///
/// This struct automatically registers all Hyprland-specific handlers and provides
/// convenient methods for accessing Hyprland configuration values.
///
/// # Example
///
/// ```no_run
/// # #[cfg(feature = "hyprland")]
/// # {
/// use hyprlang::Hyprland;
/// use std::path::Path;
///
/// let mut hypr = Hyprland::new();
/// hypr.parse_file(Path::new("~/.config/hypr/hyprland.conf")).unwrap();
///
/// // Access config values with typed methods
/// let border_size = hypr.general_border_size().unwrap_or(2);
/// let gaps_in = hypr.general_gaps_in().unwrap_or("5".to_string());
///
/// // Access all binds
/// let binds = hypr.all_binds();
/// for bind in binds {
///     println!("Bind: {}", bind);
/// }
/// # }
/// ```
pub struct Hyprland {
    config: Config,
}

impl Hyprland {
    /// Create a new Hyprland configuration with default options
    pub fn new() -> Self {
        let mut config = Config::new();
        Self::register_all_handlers(&mut config);
        Self::register_all_special_categories(&mut config);
        Self { config }
    }

    /// Create a new Hyprland configuration with custom options
    pub fn with_options(options: ConfigOptions) -> Self {
        let mut config = Config::with_options(options);
        Self::register_all_handlers(&mut config);
        Self::register_all_special_categories(&mut config);
        Self { config }
    }

    /// Get a reference to the underlying Config
    pub fn config(&self) -> &Config {
        &self.config
    }

    /// Get a mutable reference to the underlying Config
    pub fn config_mut(&mut self) -> &mut Config {
        &mut self.config
    }

    /// Parse a configuration string
    pub fn parse(&mut self, content: &str) -> ParseResult<()> {
        self.config.parse(content)
    }

    /// Parse a configuration file
    pub fn parse_file(&mut self, path: &Path) -> ParseResult<()> {
        self.config.parse_file(path)
    }

    /// Register all Hyprland-specific handlers
    fn register_all_handlers(config: &mut Config) {
        // Root-level handlers
        let root_handlers = [
            "monitor",
            "env",
            "bind",
            "bindu", // Universal bind flag for submaps (new in 0.53.0)
            "bindm",
            "bindel",
            "bindl",
            "bindr",
            "binde",
            "bindn",
            "windowrule",
            "windowrulev2",
            "layerrule",
            "workspace",
            "exec",
            "exec-once",
            "source",
            "blurls",
            "plugin",
        ];

        for handler in root_handlers {
            config.register_handler_fn(handler, |_ctx| Ok(()));
        }

        // Category-specific handlers
        config.register_category_handler_fn("animations", "animation", |_ctx| Ok(()));
        config.register_category_handler_fn("animations", "bezier", |_ctx| Ok(()));
    }

    /// Register all Hyprland-specific special categories
    fn register_all_special_categories(config: &mut Config) {
        // Device is a keyed category: device[name] { ... }
        config.register_special_category(
            SpecialCategoryDescriptor::keyed("device", "name").with_ignore_missing(),
        );
        config.register_special_category_value("device", "enabled", ConfigValue::Int(0));
        config.register_special_category_value("device", "sensitivity", ConfigValue::Float(0.0));

        // Monitor is a keyed category: monitor[name] { ... } (for per-monitor settings)
        config.register_special_category(
            SpecialCategoryDescriptor::keyed("monitor", "name").with_ignore_missing(),
        );

        // Windowrule v3: windowrule { name = ... }
        config.register_special_category(SpecialCategoryDescriptor::keyed("windowrule", "name"));
        Self::register_windowrule_properties(config);

        // Layerrule v2: layerrule { name = ... }
        config.register_special_category(SpecialCategoryDescriptor::keyed("layerrule", "name"));
        Self::register_layerrule_properties(config);
    }

    /// Register all windowrule match and effect properties
    /// Based on Hyprland's Rule.hpp and WindowRuleEffectContainer.hpp
    fn register_windowrule_properties(config: &mut Config) {
        // Enable property (default: 1)
        config.register_special_category_value("windowrule", "enable", ConfigValue::Int(1));

        // Match properties (19 total from Rule.hpp enum eRuleProperty)
        let match_props = [
            "class",                    // Window class (regex)
            "title",                    // Window title (regex)
            "initial_class",            // Initial class on creation
            "initial_title",            // Initial title on creation
            "floating",                 // Is floating (bool)
            "tag",                      // Window tag
            "xwayland",                 // Is XWayland (bool)
            "fullscreen",               // Is fullscreen (bool)
            "pinned",                   // Is pinned (bool)
            "focus",                    // Is focused (bool)
            "group",                    // Is in group (bool)
            "modal",                    // Is modal (bool)
            "fullscreenstate_internal", // Internal fullscreen state
            "fullscreenstate_client",   // Client fullscreen state
            "on_workspace",             // On specific workspace
            "content",                  // Content type
            "xdg_tag",                  // XDG tag
            "namespace",                // Namespace (for layer surfaces)
            "exec_token",               // Exec token
        ];

        for prop in match_props {
            config.register_special_category_value(
                "windowrule",
                format!("match:{}", prop),
                ConfigValue::String(String::new()),
            );
        }

        // Match property aliases for Hyprland v3 naming (new in 0.53.0)
        // These provide alternative names that match Hyprland's actual property names
        let match_aliases = [
            "float",                   // Alias for "floating"
            "pin",                     // Alias for "pinned"
            "workspace",               // Alias for "on_workspace"
            "fullscreen_state_internal", // Alias for "fullscreenstate_internal"
            "fullscreen_state_client",   // Alias for "fullscreenstate_client"
        ];

        for alias in match_aliases {
            config.register_special_category_value(
                "windowrule",
                format!("match:{}", alias),
                ConfigValue::String(String::new()),
            );
        }

        // Effect properties (60+ from WindowRuleEffectContainer.hpp)
        // Note: Many properties have aliases (e.g., border_color / bordercolor)
        let effect_props = [
            // Static effects (applied once)
            "float",
            "tile",
            "fullscreen",
            "maximize",
            "fullscreenstate",
            "fullscreen_state", // Alias for fullscreenstate (new in 0.53.0)
            "move",
            "size",
            "center",
            "pseudo",
            "monitor",
            "workspace",
            "noinitialfocus",
            "no_initial_focus", // Alias for noinitialfocus (new in 0.53.0)
            "pin",
            "group",
            "suppressevent",
            "suppress_event", // Alias for suppressevent (new in 0.53.0)
            "content",
            "noclosefor",
            "no_close_for", // Alias for noclosefor (new in 0.53.0)
            // Dynamic effects (continuously applied)
            "rounding",
            "rounding_power",
            "persistent_size",
            "animation",
            "border_color",
            "bordercolor", // Aliases
            "idle_inhibit",
            "idleinhibit", // Aliases
            "opacity",
            "tag",
            "max_size",
            "maxsize", // Aliases
            "min_size",
            "minsize", // Aliases
            "border_size",
            "bordersize", // Aliases
            "allows_input",
            "dim_around",
            "decorate",
            "focus_on_activate",
            "keep_aspect_ratio",
            "keepaspectratio", // Aliases
            "nearest_neighbor",
            "nearestneighbor", // Aliases
            "no_anim",
            "noanim", // Aliases
            "no_blur",
            "noblur", // Aliases
            "no_dim",
            "nodim", // Aliases
            "no_focus",
            "nofocus", // Aliases
            "no_follow_mouse",
            "nofollowmouse", // Aliases
            "no_max_size",
            "nomaxsize", // Aliases
            "no_shadow",
            "noshadow", // Aliases
            "no_shortcuts_inhibit",
            "noshortcutsinhibit", // Aliases
            "opaque",
            "force_rgbx",
            "forcergbx", // Aliases
            "sync_fullscreen",
            "syncfullscreen", // Aliases
            "immediate",
            "xray",
            "render_unfocused",
            "renderunfocused", // Aliases
            "no_screen_share",
            "noscreenshare", // Aliases
            "no_vrr",
            "novrr", // Aliases
            "scroll_mouse",
            "scrollmouse", // Aliases
            "scroll_touchpad",
            "scrolltouchpad", // Aliases
            "stay_focused",
            "stayfocused", // Aliases
        ];

        for prop in effect_props {
            config.register_special_category_value(
                "windowrule",
                prop,
                ConfigValue::String(String::new()),
            );
        }
    }

    /// Register all layerrule properties
    /// Based on Hyprland's LayerRule implementation
    fn register_layerrule_properties(config: &mut Config) {
        // Enable property (default: 1)
        config.register_special_category_value("layerrule", "enable", ConfigValue::Int(1));

        // Match properties for layer surfaces
        let match_props = [
            "namespace", // Layer namespace
            "address",   // Layer address
            "class",     // Associated class
            "title",     // Associated title
            "monitor",   // Monitor name
            "layer",     // Layer level (background, bottom, top, overlay)
        ];

        for prop in match_props {
            config.register_special_category_value(
                "layerrule",
                format!("match:{}", prop),
                ConfigValue::String(String::new()),
            );
        }

        // Effect properties for layer surfaces
        let effect_props = [
            "blur",           // Enable blur
            "blur_popups",    // Blur popups (new in 0.53.0)
            "ignorealpha",    // Ignore alpha
            "ignore_alpha",   // Alias for ignorealpha (new in 0.53.0)
            "ignorezero",     // Ignore zero alpha
            "animation",      // Animation style
            "noanim",         // Disable animations
            "no_anim",        // Alias for noanim (new in 0.53.0)
            "xray",           // X-ray mode
            "dim_around",     // Dim around layer (new in 0.53.0)
            "order",          // Layer order (new in 0.53.0)
            "above_lock",     // Display above lock screen (new in 0.53.0)
            "no_screen_share", // Exclude from screen share (new in 0.53.0)
            "noscreenshare",  // Alias for no_screen_share
        ];

        for prop in effect_props {
            config.register_special_category_value(
                "layerrule",
                prop,
                ConfigValue::String(String::new()),
            );
        }
    }

    // ==================== General Config ====================

    /// Get general:border_size
    pub fn general_border_size(&self) -> ParseResult<i64> {
        self.config.get_int("general:border_size")
    }

    /// Get general:gaps_in (supports CSS-style: "5" or "5 10 15 20")
    pub fn general_gaps_in(&self) -> ParseResult<String> {
        match self.config.get("general:gaps_in")? {
            ConfigValue::Int(i) => Ok(i.to_string()),
            ConfigValue::String(s) => Ok(s.clone()),
            _ => Ok("5".to_string()),
        }
    }

    /// Get general:gaps_out (supports CSS-style: "20" or "5 10 15 20")
    pub fn general_gaps_out(&self) -> ParseResult<String> {
        match self.config.get("general:gaps_out")? {
            ConfigValue::Int(i) => Ok(i.to_string()),
            ConfigValue::String(s) => Ok(s.clone()),
            _ => Ok("20".to_string()),
        }
    }

    /// Get general:col.active_border
    pub fn general_active_border_color(&self) -> ParseResult<Color> {
        self.config.get_color("general:col.active_border")
    }

    /// Get general:col.inactive_border
    pub fn general_inactive_border_color(&self) -> ParseResult<Color> {
        self.config.get_color("general:col.inactive_border")
    }

    /// Get general:layout
    pub fn general_layout(&self) -> ParseResult<&str> {
        self.config.get_string("general:layout")
    }

    /// Get general:allow_tearing
    pub fn general_allow_tearing(&self) -> ParseResult<bool> {
        match self.config.get("general:allow_tearing")? {
            ConfigValue::Int(i) => Ok(*i != 0),
            ConfigValue::String(s) => Ok(s == "true" || s == "yes" || s == "on" || s == "1"),
            _ => Ok(false),
        }
    }

    /// Get general:locale - overrides system locale (new in 0.53.0)
    ///
    /// Example: "en_US", "es", "de_DE"
    pub fn general_locale(&self) -> ParseResult<&str> {
        self.config.get_string("general:locale")
    }

    // ==================== Decoration Config ====================

    /// Get decoration:rounding
    pub fn decoration_rounding(&self) -> ParseResult<i64> {
        self.config.get_int("decoration:rounding")
    }

    /// Get decoration:active_opacity
    pub fn decoration_active_opacity(&self) -> ParseResult<f64> {
        self.config.get_float("decoration:active_opacity")
    }

    /// Get decoration:inactive_opacity
    pub fn decoration_inactive_opacity(&self) -> ParseResult<f64> {
        self.config.get_float("decoration:inactive_opacity")
    }

    /// Get decoration:blur:enabled
    pub fn decoration_blur_enabled(&self) -> ParseResult<bool> {
        match self.config.get("decoration:blur:enabled")? {
            ConfigValue::Int(i) => Ok(*i != 0),
            ConfigValue::String(s) => Ok(s == "true" || s == "yes" || s == "on" || s == "1"),
            _ => Ok(false),
        }
    }

    /// Get decoration:blur:size
    pub fn decoration_blur_size(&self) -> ParseResult<i64> {
        self.config.get_int("decoration:blur:size")
    }

    /// Get decoration:blur:passes
    pub fn decoration_blur_passes(&self) -> ParseResult<i64> {
        self.config.get_int("decoration:blur:passes")
    }

    // ==================== Animations Config ====================

    /// Get animations:enabled
    pub fn animations_enabled(&self) -> ParseResult<bool> {
        match self.config.get("animations:enabled")? {
            ConfigValue::Int(i) => Ok(*i != 0),
            ConfigValue::String(s) => Ok(s == "true" || s == "yes" || s == "on" || s == "1"),
            _ => Ok(false),
        }
    }

    /// Get all animation definitions
    pub fn all_animations(&self) -> Vec<&String> {
        self.config
            .get_handler_calls("animations:animation")
            .map(|calls| calls.iter().collect())
            .unwrap_or_default()
    }

    /// Get all bezier curve definitions
    pub fn all_beziers(&self) -> Vec<&String> {
        self.config
            .get_handler_calls("animations:bezier")
            .map(|calls| calls.iter().collect())
            .unwrap_or_default()
    }

    // ==================== Input Config ====================

    /// Get input:kb_layout
    pub fn input_kb_layout(&self) -> ParseResult<&str> {
        self.config.get_string("input:kb_layout")
    }

    /// Get input:follow_mouse
    pub fn input_follow_mouse(&self) -> ParseResult<i64> {
        self.config.get_int("input:follow_mouse")
    }

    /// Get input:sensitivity
    pub fn input_sensitivity(&self) -> ParseResult<f64> {
        self.config.get_float("input:sensitivity")
    }

    /// Get input:touchpad:natural_scroll
    pub fn input_touchpad_natural_scroll(&self) -> ParseResult<bool> {
        match self.config.get("input:touchpad:natural_scroll")? {
            ConfigValue::Int(i) => Ok(*i != 0),
            ConfigValue::String(s) => Ok(s == "true" || s == "yes" || s == "on" || s == "1"),
            _ => Ok(false),
        }
    }

    // ==================== Misc Config ====================

    /// Get misc:disable_hyprland_logo
    pub fn misc_disable_hyprland_logo(&self) -> ParseResult<bool> {
        match self.config.get("misc:disable_hyprland_logo")? {
            ConfigValue::Int(i) => Ok(*i != 0),
            ConfigValue::String(s) => Ok(s == "true" || s == "yes" || s == "on" || s == "1"),
            _ => Ok(false),
        }
    }

    /// Get misc:force_default_wallpaper
    pub fn misc_force_default_wallpaper(&self) -> ParseResult<i64> {
        self.config.get_int("misc:force_default_wallpaper")
    }

    // ==================== Quirks Config (new in 0.53.0) ====================

    /// Get quirks:prefer_hdr - HDR preference (new in 0.53.0)
    ///
    /// Returns: 0 = off (default), 1 = always report HDR, 2 = gamescope only
    pub fn quirks_prefer_hdr(&self) -> ParseResult<i64> {
        self.config.get_int("quirks:prefer_hdr")
    }

    // ==================== Cursor Config ====================

    /// Get cursor:hide_on_tablet - hides cursor when last input was tablet (new in 0.53.0)
    pub fn cursor_hide_on_tablet(&self) -> ParseResult<bool> {
        match self.config.get("cursor:hide_on_tablet")? {
            ConfigValue::Int(i) => Ok(*i != 0),
            ConfigValue::String(s) => Ok(s == "true" || s == "yes" || s == "on" || s == "1"),
            _ => Ok(false),
        }
    }

    // ==================== Group Config ====================

    /// Get group:groupbar:blur - applies blur to groupbar (new in 0.53.0)
    pub fn group_groupbar_blur(&self) -> ParseResult<bool> {
        match self.config.get("group:groupbar:blur")? {
            ConfigValue::Int(i) => Ok(*i != 0),
            ConfigValue::String(s) => Ok(s == "true" || s == "yes" || s == "on" || s == "1"),
            _ => Ok(false),
        }
    }

    // ==================== Dwindle Layout ====================

    /// Get dwindle:pseudotile
    pub fn dwindle_pseudotile(&self) -> ParseResult<bool> {
        match self.config.get("dwindle:pseudotile")? {
            ConfigValue::Int(i) => Ok(*i != 0),
            ConfigValue::String(s) => Ok(s == "true" || s == "yes" || s == "on" || s == "1"),
            _ => Ok(false),
        }
    }

    /// Get dwindle:preserve_split
    pub fn dwindle_preserve_split(&self) -> ParseResult<bool> {
        match self.config.get("dwindle:preserve_split")? {
            ConfigValue::Int(i) => Ok(*i != 0),
            ConfigValue::String(s) => Ok(s == "true" || s == "yes" || s == "on" || s == "1"),
            _ => Ok(false),
        }
    }

    // ==================== Master Layout ====================

    /// Get master:new_status
    pub fn master_new_status(&self) -> ParseResult<&str> {
        self.config.get_string("master:new_status")
    }

    // ==================== Handler Calls ====================

    /// Get all bind definitions
    pub fn all_binds(&self) -> Vec<&String> {
        self.config
            .get_handler_calls("bind")
            .map(|calls| calls.iter().collect())
            .unwrap_or_default()
    }

    /// Get all bindm definitions
    pub fn all_bindm(&self) -> Vec<&String> {
        self.config
            .get_handler_calls("bindm")
            .map(|calls| calls.iter().collect())
            .unwrap_or_default()
    }

    /// Get all bindel definitions
    pub fn all_bindel(&self) -> Vec<&String> {
        self.config
            .get_handler_calls("bindel")
            .map(|calls| calls.iter().collect())
            .unwrap_or_default()
    }

    /// Get all bindl definitions
    pub fn all_bindl(&self) -> Vec<&String> {
        self.config
            .get_handler_calls("bindl")
            .map(|calls| calls.iter().collect())
            .unwrap_or_default()
    }

    /// Get all bindu definitions (universal submap bindings, new in 0.53.0)
    ///
    /// Universal binds remain active across all submaps.
    pub fn all_bindu(&self) -> Vec<&String> {
        self.config
            .get_handler_calls("bindu")
            .map(|calls| calls.iter().collect())
            .unwrap_or_default()
    }

    /// Get all windowrule definitions (v1 handler-based syntax)
    ///
    /// **DEPRECATED in Hyprland 0.53.0**: The `windowrule` handler syntax is deprecated.
    /// Use the new v3 special category syntax instead:
    /// ```conf
    /// windowrule[rule-name] {
    ///     match:class = ^(kitty)$
    ///     float = true
    /// }
    /// ```
    ///
    /// This returns windowrule handler calls from old configs using:
    /// ```conf
    /// windowrule = float, ^(kitty)$
    /// ```
    ///
    /// For new v3 syntax, use [`windowrule_names()`](Self::windowrule_names) and
    /// [`get_windowrule()`](Self::get_windowrule) instead.
    #[deprecated(
        since = "0.4.0",
        note = "Use windowrule v3 syntax via windowrule_names() and get_windowrule() instead"
    )]
    pub fn all_windowrules(&self) -> Vec<&String> {
        self.config
            .get_handler_calls("windowrule")
            .map(|calls| calls.iter().collect())
            .unwrap_or_default()
    }

    /// Get all windowrulev2 definitions (v2 handler-based syntax)
    ///
    /// **DEPRECATED in Hyprland 0.53.0**: The `windowrulev2` handler syntax is deprecated.
    /// Use the new v3 special category syntax instead:
    /// ```conf
    /// windowrule[rule-name] {
    ///     match:class = ^(kitty)$
    ///     float = true
    /// }
    /// ```
    ///
    /// This returns windowrulev2 handler calls from old configs using:
    /// ```conf
    /// windowrulev2 = float, class:^(kitty)$
    /// ```
    ///
    /// For new v3 syntax, use [`windowrule_names()`](Self::windowrule_names) and
    /// [`get_windowrule()`](Self::get_windowrule) instead.
    #[deprecated(
        since = "0.4.0",
        note = "Use windowrule v3 syntax via windowrule_names() and get_windowrule() instead"
    )]
    pub fn all_windowrulesv2(&self) -> Vec<&String> {
        self.config
            .get_handler_calls("windowrulev2")
            .map(|calls| calls.iter().collect())
            .unwrap_or_default()
    }

    /// Get all windowrule names (v3 special category syntax)
    ///
    /// Returns the names of all windowrule blocks defined in the config:
    /// ```conf
    /// windowrule[my-float-rule] {
    ///     match:class = ^(kitty)$
    ///     float = true
    /// }
    ///
    /// windowrule[center-dialogs] {
    ///     match:title = ^(Open File)$
    ///     center = true
    /// }
    /// ```
    ///
    /// Returns `vec!["my-float-rule", "center-dialogs"]`
    ///
    /// Use with [`get_windowrule()`](Self::get_windowrule) to iterate all rules:
    /// ```rust
    /// use hyprlang::Hyprland;
    ///
    /// let mut hypr = Hyprland::new();
    /// hypr.parse(r#"
    ///     windowrule[test] {
    ///         match:class = test
    ///     }
    /// "#).unwrap();
    ///
    /// for name in hypr.windowrule_names() {
    ///     let rule = hypr.get_windowrule(&name).unwrap();
    ///     // Access rule properties...
    /// }
    /// ```
    pub fn windowrule_names(&self) -> Vec<String> {
        self.config.list_special_category_keys("windowrule")
    }

    /// Get a specific windowrule by name (v3 special category syntax)
    ///
    /// Returns a [`RuleInstance`] with all properties of a windowrule block:
    /// ```conf
    /// windowrule[my-rule] {
    ///     match:class = ^(kitty)$
    ///     float = true
    ///     size = 800 600
    ///     opacity = 0.95
    ///     border_color = rgba(33ccffee)
    /// }
    /// ```
    ///
    /// Access properties with type-safe methods:
    /// ```rust
    /// # use hyprlang::Hyprland;
    /// # let mut hypr = Hyprland::new();
    /// # hypr.parse(r#"
    /// # windowrule[my-rule] {
    /// #     match:class = ^(kitty)$
    /// #     float = true
    /// #     size = 800 600
    /// #     opacity = 0.95
    /// #     border_color = rgba(33ccffee)
    /// # }
    /// # "#).unwrap();
    /// let rule = hypr.get_windowrule("my-rule").unwrap();
    ///
    /// // String values
    /// let class_match = rule.get_string("match:class").unwrap();
    /// assert_eq!(class_match, "^(kitty)$");
    ///
    /// // Integer values (booleans become 0/1)
    /// let is_float = rule.get_int("float").unwrap();
    /// assert_eq!(is_float, 1);
    ///
    /// // Float values
    /// let opacity = rule.get_float("opacity").unwrap();
    /// assert_eq!(opacity, 0.95);
    ///
    /// // Color values
    /// let color = rule.get_color("border_color").unwrap();
    /// assert_eq!(color.r, 51);  // 0x33
    /// ```
    pub fn get_windowrule(&self, name: &str) -> ParseResult<RuleInstance<'_>> {
        self.config
            .get_special_category("windowrule", name)
            .map(RuleInstance::new)
    }

    /// Get all layerrule definitions (v1 handler-based syntax)
    ///
    /// **DEPRECATED in Hyprland 0.53.0**: The `layerrule` handler syntax is deprecated.
    /// Use the new v2 special category syntax instead:
    /// ```conf
    /// layerrule[rule-name] {
    ///     match:namespace = waybar
    ///     blur = true
    /// }
    /// ```
    ///
    /// This returns layerrule handler calls from old configs.
    ///
    /// For new v2 syntax, use [`layerrule_names()`](Self::layerrule_names) and
    /// [`get_layerrule()`](Self::get_layerrule) instead.
    #[deprecated(
        since = "0.4.0",
        note = "Use layerrule v2 syntax via layerrule_names() and get_layerrule() instead"
    )]
    pub fn all_layerrules(&self) -> Vec<&String> {
        self.config
            .get_handler_calls("layerrule")
            .map(|calls| calls.iter().collect())
            .unwrap_or_default()
    }

    /// Get all layerrule names (v2 special category syntax)
    ///
    /// Returns the names of all layerrule blocks defined in the config:
    /// ```conf
    /// layerrule[blur-waybar] {
    ///     match:namespace = waybar
    ///     blur = true
    /// }
    ///
    /// layerrule[dim-notifications] {
    ///     match:namespace = ^(mako|dunst)$
    ///     dim_around = true
    /// }
    /// ```
    ///
    /// Returns `vec!["blur-waybar", "dim-notifications"]`
    ///
    /// Use with [`get_layerrule()`](Self::get_layerrule) to iterate all rules:
    /// ```rust
    /// use hyprlang::Hyprland;
    ///
    /// let mut hypr = Hyprland::new();
    /// hypr.parse(r#"
    ///     layerrule[test] {
    ///         match:namespace = test
    ///     }
    /// "#).unwrap();
    ///
    /// for name in hypr.layerrule_names() {
    ///     let rule = hypr.get_layerrule(&name).unwrap();
    ///     // Access rule properties...
    /// }
    /// ```
    pub fn layerrule_names(&self) -> Vec<String> {
        self.config.list_special_category_keys("layerrule")
    }

    /// Get a specific layerrule by name (v2 special category syntax)
    ///
    /// Returns a [`RuleInstance`] with all properties of a layerrule block:
    /// ```conf
    /// layerrule[blur-waybar] {
    ///     match:namespace = waybar
    ///     blur = true
    ///     ignorealpha = 0.5
    /// }
    /// ```
    ///
    /// Access properties:
    /// ```rust
    /// # use hyprlang::Hyprland;
    /// # let mut hypr = Hyprland::new();
    /// # hypr.parse(r#"
    /// # layerrule[blur-waybar] {
    /// #     match:namespace = waybar
    /// #     blur = true
    /// #     ignorealpha = 0.5
    /// # }
    /// # "#).unwrap();
    /// let rule = hypr.get_layerrule("blur-waybar").unwrap();
    /// let namespace = rule.get_string("match:namespace").unwrap();
    /// let is_blur = rule.get_int("blur").unwrap();
    /// let alpha = rule.get_float("ignorealpha").unwrap();
    /// ```
    pub fn get_layerrule(&self, name: &str) -> ParseResult<RuleInstance<'_>> {
        self.config
            .get_special_category("layerrule", name)
            .map(RuleInstance::new)
    }

    /// Get all workspace definitions
    pub fn all_workspaces(&self) -> Vec<&String> {
        self.config
            .get_handler_calls("workspace")
            .map(|calls| calls.iter().collect())
            .unwrap_or_default()
    }

    /// Get all monitor definitions
    pub fn all_monitors(&self) -> Vec<&String> {
        self.config
            .get_handler_calls("monitor")
            .map(|calls| calls.iter().collect())
            .unwrap_or_default()
    }

    /// Get all env definitions
    pub fn all_env(&self) -> Vec<&String> {
        self.config
            .get_handler_calls("env")
            .map(|calls| calls.iter().collect())
            .unwrap_or_default()
    }

    /// Get all exec-once definitions
    pub fn all_exec_once(&self) -> Vec<&String> {
        self.config
            .get_handler_calls("exec-once")
            .map(|calls| calls.iter().collect())
            .unwrap_or_default()
    }

    /// Get all exec definitions
    pub fn all_exec(&self) -> Vec<&String> {
        self.config
            .get_handler_calls("exec")
            .map(|calls| calls.iter().collect())
            .unwrap_or_default()
    }

    // ==================== Variables ====================

    /// Get all variables defined in the config
    pub fn variables(&self) -> &std::collections::HashMap<String, String> {
        self.config.variables()
    }

    /// Get a specific variable value
    pub fn get_variable(&self, name: &str) -> Option<&String> {
        self.variables().get(name)
    }
}

impl Default for Hyprland {
    fn default() -> Self {
        Self::new()
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_hyprland_basic_config() {
        let mut hypr = Hyprland::new();

        hypr.parse(
            r#"
            general {
                border_size = 2
                gaps_in = 5
                gaps_out = 20
                layout = dwindle
            }
        "#,
        )
        .unwrap();

        assert_eq!(hypr.general_border_size().unwrap(), 2);
        assert_eq!(hypr.general_gaps_in().unwrap(), "5".to_string());
        assert_eq!(hypr.general_gaps_out().unwrap(), "20".to_string());
        assert_eq!(hypr.general_layout().unwrap(), "dwindle");
    }

    #[test]
    fn test_hyprland_binds() {
        let mut hypr = Hyprland::new();

        hypr.parse(
            r#"
            bind = SUPER, Q, exec, kitty
            bind = SUPER, C, killactive
        "#,
        )
        .unwrap();

        let binds = hypr.all_binds();
        assert_eq!(binds.len(), 2);
        assert_eq!(binds[0], "SUPER, Q, exec, kitty");
        assert_eq!(binds[1], "SUPER, C, killactive");
    }

    #[test]
    fn test_hyprland_animations() {
        let mut hypr = Hyprland::new();

        hypr.parse(
            r#"
            animations {
                enabled = true
                animation = windows, 1, 4, default
                animation = fade, 1, 3, quick
                bezier = easeOut, 0.23, 1, 0.32, 1
            }
        "#,
        )
        .unwrap();

        assert!(hypr.animations_enabled().unwrap());

        let animations = hypr.all_animations();
        assert_eq!(animations.len(), 2);

        let beziers = hypr.all_beziers();
        assert_eq!(beziers.len(), 1);
    }

    #[test]
    fn test_hyprland_variables() {
        let mut hypr = Hyprland::new();

        hypr.parse(
            r#"
            $terminal = kitty
            $mod = SUPER
        "#,
        )
        .unwrap();

        let vars = hypr.variables();
        assert_eq!(vars.get("terminal"), Some(&"kitty".to_string()));
        assert_eq!(vars.get("mod"), Some(&"SUPER".to_string()));
    }

    #[test]
    fn test_hyprland_decoration() {
        let mut hypr = Hyprland::new();

        hypr.parse(
            r#"
            decoration {
                rounding = 10
                active_opacity = 1.0
                inactive_opacity = 0.8

                blur {
                    enabled = true
                    size = 3
                    passes = 1
                }
            }
        "#,
        )
        .unwrap();

        assert_eq!(hypr.decoration_rounding().unwrap(), 10);
        assert_eq!(hypr.decoration_active_opacity().unwrap(), 1.0);
        assert_eq!(hypr.decoration_inactive_opacity().unwrap(), 0.8);
        assert!(hypr.decoration_blur_enabled().unwrap());
        assert_eq!(hypr.decoration_blur_size().unwrap(), 3);
        assert_eq!(hypr.decoration_blur_passes().unwrap(), 1);
    }
}