zuzu-rust 0.5.0

Rust implementation of ZuzuScript
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
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
=encoding utf8

=head1 NAME

std/gui - User-facing GUI constructor helpers.

=head1 SYNOPSIS

  from std/gui import *;

  let w := Window(
  	title: "Demo",
  	VBox(
  		Label( text: "Name:" ),
  		Input( id: "name" ),
  		Button( text: "OK", id: "submit" ),
  	),
  );

=head1 IMPLEMENTATION SUPPORT

This module is supported by zuzu.pl, zuzu-rust, and zuzu-js on Electron.
It is not supported by zuzu-js on Node. It is partially supported by
zuzu-js in the browser: core GUI and widget lifecycle coverage passes,
but filesystem-backed file and directory dialogue coverage is unsupported.

=head1 DESCRIPTION

This module provides thin constructor helpers over C<std/gui/objects>.
Host runtimes expose the shared widget, object tree, event, and window
lifecycle APIs when GUI support is available. It also re-exports
backend-native file and directory dialogue hooks for C<std/gui/dialogue>.

The module exports C<EM>, the standard UI font height in logical
pixels, derived from C<std/gui/objects> metadata.

=head1 EXPORTS

=head2 Constants

=over

=item C<EM>

Type: C<Number>. Standard UI font height in logical pixels.

=item C<GUI_XML_NS>

Type: C<String>. XML namespace URI used by GUI XML serialization and
parsing.

=back

=head2 Functions

=over

=item C<< Window(... PairList p, Array c) >>, C<< VBox(... PairList p, Array c) >>, C<< HBox(... PairList p, Array c) >>, C<< Frame(... PairList p, Array c) >>

Parameters: C<p> are widget properties and C<c> contains child widgets.
Returns: widget object. Constructs window and layout widgets.

=item C<< Label(... PairList p, Array c) >>, C<< Text(... PairList p, Array c) >>, C<< RichText(... PairList p, Array c) >>, C<< Image(... PairList p, Array c) >>

Parameters: C<p> are widget properties and C<c> contains child widgets.
Returns: widget object. Constructs content widgets.

=item C<< Input(... PairList p, Array c) >>, C<< DatePicker(... PairList p, Array c) >>, C<< Checkbox(... PairList p, Array c) >>, C<< Radio(... PairList p, Array c) >>, C<< RadioGroup(... PairList p, Array c) >>, C<< Select(... PairList p, Array c) >>

Parameters: C<p> are widget properties and C<c> contains child widgets.
Returns: widget object. Constructs input widgets.

=item C<< Menu(... PairList p, Array c) >>, C<< MenuItem(... PairList p, Array c) >>, C<< Button(... PairList p, Array c) >>, C<< Separator(... PairList p, Array c) >>, C<< Slider(... PairList p, Array c) >>, C<< Progress(... PairList p, Array c) >>

Parameters: C<p> are widget properties and C<c> contains child widgets.
Returns: widget object. Constructs command and control widgets.

=item C<< Tabs(... PairList p, Array c) >>, C<< Tab(... PairList p, Array c) >>, C<< ListView(... PairList p, Array c) >>, C<< TreeView(... PairList p, Array c) >>

Parameters: C<p> are widget properties and C<c> contains child widgets.
Returns: widget object. Constructs tabular and collection widgets.

=item C<< unbind(BindingToken token) >>

Parameters: C<token> is a binding token. Returns: C<null>. Removes a GUI
binding.

=item C<< gui_from_xml(String xml) >>, C<< gui_from_xml_file(path) >>

Parameters: C<xml> is GUI XML text and C<path> is a file path. Returns:
widget object. Builds a GUI object tree from XML.

=item C<< gui_to_xml(Widget root) >>

Parameters: C<root> is a GUI widget. Returns: C<String>. Serializes a
GUI object tree to XML.

=back

=head2 Classes

=over

=item C<BindingToken>

Represents a model/widget binding.

=over

=item C<< token.is_active() >>

Parameters: none. Returns: C<Boolean>. Returns true while the binding is
active.

=item C<< token.set_listener(token) >>

Parameters: C<token> is a listener token. Returns: C<BindingToken>.
Stores the listener token associated with the binding.

=item C<< token.sync_model_to_widget() >>, C<< token.sync_widget_to_model() >>

Parameters: none. Returns: C<null>. Synchronizes the bound values.

=item C<< token.unbind() >>

Parameters: none. Returns: C<null>. Removes the binding.

=back

=back

=head1 COPYRIGHT AND LICENCE

B<< std/gui >> is copyright Toby Inkster.

It is free software; you may redistribute it and/or modify it under
the terms of either the Artistic License 1.0 or the GNU General Public
License version 2.

=cut

from std/gui/objects import
	Window as _WindowClass,
	VBox as _VBoxClass,
	HBox as _HBoxClass,
	Frame as _FrameClass,
	Label as _LabelClass,
	Text as _TextClass,
	RichText as _RichTextClass,
	Image as _ImageClass,
	Input as _InputClass,
	DatePicker as _DatePickerClass,
	Checkbox as _CheckboxClass,
	Radio as _RadioClass,
	RadioGroup as _RadioGroupClass,
	Select as _SelectClass,
	Menu as _MenuClass,
	MenuItem as _MenuItemClass,
	Button as _ButtonClass,
	Separator as _SeparatorClass,
	Slider as _SliderClass,
	Progress as _ProgressClass,
	Tabs as _TabsClass,
	Tab as _TabClass,
	ListView as _ListViewClass,
	TreeView as _TreeViewClass,
	Widget,
	Event,
	ListenerToken,
	native_file_open,
	native_file_save,
	native_directory_open,
	native_directory_save,
	native_colour_picker,
	meta as _gui_meta;

from std/gui/objects try import
	native_alert,
	native_confirm,
	native_prompt;

from std/data/xml import XML;
from std/data/xml/escape import escape_xml;
from std/internals import getupperprop;
from std/path/zz import ZZPath;
from std/string import join, split, substr, trim;


const Number EM := _gui_meta{font_size_pixels};

function _assert_known_props ( String ctor, PairList props, Array allowed ) {
	let geometry := [
		"width",
		"height",
		"minwidth",
		"minheight",
		"maxwidth",
		"maxheight",
	];
	for ( let key in props.keys() ) {
		if ( key ∉ allowed and key ∉ geometry ) {
			die `GUI_PROP_UNKNOWN: ${ctor} does not accept property '${key}'`;
		}
	}
}

function _assert_prop_value ( String ctor, String prop, value, Array allowed ) {
	if ( value ∉ allowed ) {
		die `GUI_PROP_TYPE: ${ctor} property '${prop}' has invalid value`;
	}
}

function _assert_prop_array ( String ctor, String prop, value ) {
	if ( not( value instanceof Array ) ) {
		die `GUI_PROP_TYPE: ${ctor} property '${prop}' expects Array`;
	}
}

function _with_geometry_props ( Array allowed ) {
	for ( let key in [
		"width",
		"height",
		"minwidth",
		"minheight",
		"maxwidth",
		"maxheight",
	] ) {
		allowed.push(key) unless key ∈ allowed;
	}
	return allowed;
}

function _apply_geometry ( Widget widget, PairList p ) {
	for ( let key in [
		"width",
		"height",
		"minwidth",
		"minheight",
		"maxwidth",
		"maxheight",
	] ) {
		if ( p.has(key) ) {
			widget.(key)( p.get(key) );
		}
	}
	return widget;
}

function Window ( ... PairList p, Array c ) {
	_assert_known_props(
		"Window",
		p,
		_with_geometry_props( [
			"id",
			"title",
			"width",
			"height",
			"resizable",
			"modal",
			"visible",
			"enabled",
			"disabled",
		] ),
	);

	return new _WindowClass(
		id: p.get( "id", null ),
		title: p.get( "title", "" ),
		width: p.get( "width", 800 ),
		height: p.get( "height", 600 ),
		minwidth: p.get( "minwidth", null ),
		minheight: p.get( "minheight", null ),
		maxwidth: p.get( "maxwidth", null ),
		maxheight: p.get( "maxheight", null ),
		resizable: p.get( "resizable", true ),
		modal: p.get( "modal", false ),
		visible: p.get( "visible", true ),
		enabled: p.get( "enabled", true ),
		disabled: p.get( "disabled", false ),
		children: c,
	);
}

function VBox ( ... PairList p, Array c ) {
	_assert_known_props(
		"VBox",
		p,
		[
			"id",
			"align",
			"gap",
			"padding",
			"visible",
			"enabled",
			"disabled",
		],
	);

	_assert_prop_value(
		"VBox",
		"align",
		p.get( "align", "top" ),
		[ "top", "centre", "bottom", "stretch" ],
	);

	return _apply_geometry( new _VBoxClass(
		id: p.get( "id", null ),
		align: p.get( "align", "top" ),
		gap: p.get( "gap", 0 ),
		padding: p.get( "padding", 0 ),
		visible: p.get( "visible", true ),
		enabled: p.get( "enabled", true ),
		disabled: p.get( "disabled", false ),
		children: c,
	), p );
}

function HBox ( ... PairList p, Array c ) {
	_assert_known_props(
		"HBox",
		p,
		_with_geometry_props( [
			"id",
			"align",
			"gap",
			"padding",
			"visible",
			"enabled",
			"disabled",
		] ),
	);

	_assert_prop_value(
		"HBox",
		"align",
		p.get( "align", "left" ),
		[ "left", "centre", "right", "stretch" ],
	);

	return new _HBoxClass(
		id: p.get( "id", null ),
		align: p.get( "align", "left" ),
		gap: p.get( "gap", 0 ),
		padding: p.get( "padding", 0 ),
		width: p.get( "width", null ),
		height: p.get( "height", null ),
		minwidth: p.get( "minwidth", null ),
		minheight: p.get( "minheight", null ),
		maxwidth: p.get( "maxwidth", null ),
		maxheight: p.get( "maxheight", null ),
		visible: p.get( "visible", true ),
		enabled: p.get( "enabled", true ),
		disabled: p.get( "disabled", false ),
		children: c,
	);
}

function Frame ( ... PairList p, Array c ) {
	_assert_known_props(
		"Frame",
		p,
		[
			"id",
			"label",
			"collapsible",
			"collapsed",
			"visible",
			"enabled",
			"disabled",
		],
	);

	return _apply_geometry( new _FrameClass(
		id: p.get( "id", null ),
		label: p.get( "label", "" ),
		collapsible: p.get( "collapsible", false ),
		collapsed: p.get( "collapsed", false ),
		visible: p.get( "visible", true ),
		enabled: p.get( "enabled", true ),
		disabled: p.get( "disabled", false ),
		children: c,
	), p );
}

function Label ( ... PairList p, Array c ) {
	_assert_known_props(
		"Label",
		p,
		[ "id", "text", "for", "visible", "enabled", "disabled" ],
	);

	let label := new _LabelClass(
		id: p.get( "id", null ),
		text: p.get( "text", "" ),
		visible: p.get( "visible", true ),
		enabled: p.get( "enabled", true ),
		disabled: p.get( "disabled", false ),
		children: c,
	);
	if ( p.has("for") ) {
		label.set_for_id( p.get( "for", null ) );
	}

	return _apply_geometry( label, p );
}

function Text ( ... PairList p, Array c ) {
	_assert_known_props(
		"Text",
		p,
		[
			"id",
			"value",
			"multiline",
			"readonly",
			"wrap",
			"visible",
			"enabled",
			"disabled",
		],
	);

	return _apply_geometry( new _TextClass(
		id: p.get( "id", null ),
		value: p.get( "value", "" ),
		multiline: p.get( "multiline", false ),
		readonly: p.get( "readonly", false ),
		wrap: p.get( "wrap", true ),
		visible: p.get( "visible", true ),
		enabled: p.get( "enabled", true ),
		disabled: p.get( "disabled", false ),
		children: c,
	), p );
}

function RichText ( ... PairList p, Array c ) {
	_assert_known_props(
		"RichText",
		p,
		[
			"id",
			"value",
			"multiline",
			"readonly",
			"visible",
			"enabled",
			"disabled",
		],
	);

	return _apply_geometry( new _RichTextClass(
		id: p.get( "id", null ),
		value: p.get( "value", "" ),
		multiline: p.get( "multiline", true ),
		readonly: p.get( "readonly", true ),
		visible: p.get( "visible", true ),
		enabled: p.get( "enabled", true ),
		disabled: p.get( "disabled", false ),
		children: c,
	), p );
}

function Image ( ... PairList p, Array c ) {
	_assert_known_props(
		"Image",
		p,
		[ "id", "src", "alt", "fit", "visible", "enabled", "disabled" ],
	);

	_assert_prop_value(
		"Image",
		"fit",
		p.get( "fit", "none" ),
		[ "none", "contain", "cover", "stretch" ],
	);

	return _apply_geometry( new _ImageClass(
		id: p.get( "id", null ),
		src: p.get( "src", "" ),
		alt: p.get( "alt", "" ),
		fit: p.get( "fit", "none" ),
		visible: p.get( "visible", true ),
		enabled: p.get( "enabled", true ),
		disabled: p.get( "disabled", false ),
		children: c,
	), p );
}

function Input ( ... PairList p, Array c ) {
	_assert_known_props(
		"Input",
		p,
		[
			"id",
			"value",
			"placeholder",
			"multiline",
			"readonly",
			"password",
			"required",
			"visible",
			"enabled",
			"disabled",
		],
	);

	return _apply_geometry( new _InputClass(
		id: p.get( "id", null ),
		value: p.get( "value", "" ),
		placeholder: p.get( "placeholder", "" ),
		multiline: p.get( "multiline", false ),
		readonly: p.get( "readonly", false ),
		password: p.get( "password", false ),
		required: p.get( "required", false ),
		visible: p.get( "visible", true ),
		enabled: p.get( "enabled", true ),
		disabled: p.get( "disabled", false ),
		children: c,
	), p );
}

function DatePicker ( ... PairList p, Array c ) {
	_assert_known_props(
		"DatePicker",
		p,
		[
			"id",
			"value",
			"min",
			"max",
			"first_day_of_week",
			"visible",
			"enabled",
			"disabled",
		],
	);

	return _apply_geometry( new _DatePickerClass(
		id: p.get( "id", null ),
		value: p.get( "value", null ),
		min: p.get( "min", null ),
		max: p.get( "max", null ),
		first_day_of_week: p.get( "first_day_of_week", 0 ),
		visible: p.get( "visible", true ),
		enabled: p.get( "enabled", true ),
		disabled: p.get( "disabled", false ),
		children: c,
	), p );
}

function Checkbox ( ... PairList p, Array c ) {
	_assert_known_props(
		"Checkbox",
		p,
		[
			"id",
			"label",
			"checked",
			"indeterminate",
			"visible",
			"enabled",
			"disabled",
		],
	);

	return _apply_geometry( new _CheckboxClass(
		id: p.get( "id", null ),
		label: p.get( "label", "" ),
		checked: p.get( "checked", false ),
		indeterminate: p.get( "indeterminate", false ),
		visible: p.get( "visible", true ),
		enabled: p.get( "enabled", true ),
		disabled: p.get( "disabled", false ),
		children: c,
	), p );
}

function Radio ( ... PairList p, Array c ) {
	_assert_known_props(
		"Radio",
		p,
		[
			"id",
			"label",
			"value",
			"group",
			"checked",
			"visible",
			"enabled",
			"disabled",
		],
	);

	return _apply_geometry( new _RadioClass(
		id: p.get( "id", null ),
		label: p.get( "label", "" ),
		value: p.get( "value", "" ),
		group: p.get( "group", null ),
		checked: p.get( "checked", false ),
		visible: p.get( "visible", true ),
		enabled: p.get( "enabled", true ),
		disabled: p.get( "disabled", false ),
		children: c,
	), p );
}

function RadioGroup ( ... PairList p, Array c ) {
	_assert_known_props(
		"RadioGroup",
		p,
		[
			"id",
			"name",
			"value",
			"visible",
			"enabled",
			"disabled",
		],
	);

	return _apply_geometry( new _RadioGroupClass(
		id: p.get( "id", null ),
		name: p.get( "name", "" ),
		value: p.get( "value", null ),
		visible: p.get( "visible", true ),
		enabled: p.get( "enabled", true ),
		disabled: p.get( "disabled", false ),
		children: c,
	), p );
}

function Select ( ... PairList p, Array c ) {
	_assert_known_props(
		"Select",
		p,
		[
			"id",
			"value",
			"options",
			"multiple",
			"visible",
			"enabled",
			"disabled",
		],
	);

	if ( p.has("options") ) {
		_assert_prop_array( "Select", "options", p.get("options") );
	}

	return _apply_geometry( new _SelectClass(
		id: p.get( "id", null ),
		value: p.get( "value", null ),
		options: p.get( "options", [] ),
		multiple: p.get( "multiple", false ),
		visible: p.get( "visible", true ),
		enabled: p.get( "enabled", true ),
		disabled: p.get( "disabled", false ),
		children: c,
	), p );
}

function Menu ( ... PairList p, Array c ) {
	_assert_known_props(
		"Menu",
		p,
		[ "id", "text", "visible", "enabled", "disabled" ],
	);

	return _apply_geometry( new _MenuClass(
		id: p.get( "id", null ),
		text: p.get( "text", "" ),
		visible: p.get( "visible", true ),
		enabled: p.get( "enabled", true ),
		disabled: p.get( "disabled", false ),
		children: c,
	), p );
}

function MenuItem ( ... PairList p, Array c ) {
	_assert_known_props(
		"MenuItem",
		p,
		[ "id", "text", "disabled", "visible", "enabled" ],
	);

	return _apply_geometry( new _MenuItemClass(
		id: p.get( "id", null ),
		text: p.get( "text", "" ),
		visible: p.get( "visible", true ),
		enabled: p.get( "enabled", true ),
		disabled: p.get( "disabled", false ),
		children: c,
	), p );
}

function Button ( ... PairList p, Array c ) {
	_assert_known_props(
		"Button",
		p,
		_with_geometry_props( [
			"id",
			"text",
			"variant",
			"visible",
			"enabled",
			"disabled",
		] ),
	);

	_assert_prop_value(
		"Button",
		"variant",
		p.get( "variant", "default" ),
		[ "default", "primary", "danger" ],
	);

	return new _ButtonClass(
		id: p.get( "id", null ),
		text: p.get( "text", "" ),
		variant: p.get( "variant", "default" ),
		width: p.get( "width", null ),
		height: p.get( "height", null ),
		minwidth: p.get( "minwidth", null ),
		minheight: p.get( "minheight", null ),
		maxwidth: p.get( "maxwidth", null ),
		maxheight: p.get( "maxheight", null ),
		visible: p.get( "visible", true ),
		enabled: p.get( "enabled", true ),
		disabled: p.get( "disabled", false ),
		children: c,
	);
}

function Separator ( ... PairList p, Array c ) {
	_assert_known_props(
		"Separator",
		p,
		[ "id", "orientation", "visible", "enabled", "disabled" ],
	);

	_assert_prop_value(
		"Separator",
		"orientation",
		p.get( "orientation", "horizontal" ),
		[ "horizontal", "vertical" ],
	);

	return _apply_geometry( new _SeparatorClass(
		id: p.get( "id", null ),
		orientation: p.get( "orientation", "horizontal" ),
		visible: p.get( "visible", true ),
		enabled: p.get( "enabled", true ),
		disabled: p.get( "disabled", false ),
		children: c,
	), p );
}

function Slider ( ... PairList p, Array c ) {
	_assert_known_props(
		"Slider",
		p,
		[
			"id",
			"value",
			"min",
			"max",
			"step",
			"orientation",
			"readonly",
			"visible",
			"enabled",
			"disabled",
		],
	);

	_assert_prop_value(
		"Slider",
		"orientation",
		p.get( "orientation", "horizontal" ),
		[ "horizontal", "vertical" ],
	);

	return _apply_geometry( new _SliderClass(
		id: p.get( "id", null ),
		value: p.get( "value", 0 ),
		min: p.get( "min", 0 ),
		max: p.get( "max", 100 ),
		step: p.get( "step", 1 ),
		orientation: p.get( "orientation", "horizontal" ),
		readonly: p.get( "readonly", false ),
		visible: p.get( "visible", true ),
		enabled: p.get( "enabled", true ),
		disabled: p.get( "disabled", false ),
		children: c,
	), p );
}

function Progress ( ... PairList p, Array c ) {
	_assert_known_props(
		"Progress",
		p,
		[
			"id",
			"value",
			"min",
			"max",
			"indeterminate",
			"show_text",
			"visible",
			"enabled",
			"disabled",
		],
	);

	return _apply_geometry( new _ProgressClass(
		id: p.get( "id", null ),
		value: p.get( "value", 0 ),
		min: p.get( "min", 0 ),
		max: p.get( "max", 100 ),
		indeterminate: p.get( "indeterminate", false ),
		show_text: p.get( "show_text", false ),
		visible: p.get( "visible", true ),
		enabled: p.get( "enabled", true ),
		disabled: p.get( "disabled", false ),
		children: c,
	), p );
}

function Tabs ( ... PairList p, Array c ) {
	_assert_known_props(
		"Tabs",
		p,
		[
			"id",
			"selected",
			"placement",
			"visible",
			"enabled",
			"disabled",
		],
	);

	_assert_prop_value(
		"Tabs",
		"placement",
		p.get( "placement", "top" ),
		[ "top", "bottom", "left", "right" ],
	);

	return _apply_geometry( new _TabsClass(
		id: p.get( "id", null ),
		selected: p.get( "selected", null ),
		placement: p.get( "placement", "top" ),
		visible: p.get( "visible", true ),
		enabled: p.get( "enabled", true ),
		disabled: p.get( "disabled", false ),
		children: c,
	), p );
}

function Tab ( ... PairList p, Array c ) {
	_assert_known_props(
		"Tab",
		p,
		[
			"id",
			"title",
			"value",
			"selected",
			"closable",
			"icon",
			"visible",
			"enabled",
			"disabled",
		],
	);

	return _apply_geometry( new _TabClass(
		id: p.get( "id", null ),
		title: p.get( "title", "" ),
		value: p.get( "value", "" ),
		selected: p.get( "selected", false ),
		closable: p.get( "closable", false ),
		icon: p.get( "icon", null ),
		visible: p.get( "visible", true ),
		enabled: p.get( "enabled", true ),
		disabled: p.get( "disabled", false ),
		children: c,
	), p );
}

function ListView ( ... PairList p, Array c ) {
	_assert_known_props(
		"ListView",
		p,
		[
			"id",
			"items",
			"selected_index",
			"multiple",
			"visible",
			"enabled",
			"disabled",
		],
	);

	if ( p.has("items") ) {
		_assert_prop_array( "ListView", "items", p.get("items") );
	}

	return _apply_geometry( new _ListViewClass(
		id: p.get( "id", null ),
		items: p.get( "items", [] ),
		selected_index: p.get( "selected_index", null ),
		multiple: p.get( "multiple", false ),
		visible: p.get( "visible", true ),
		enabled: p.get( "enabled", true ),
		disabled: p.get( "disabled", false ),
		children: c,
	), p );
}

function TreeView ( ... PairList p, Array c ) {
	_assert_known_props(
		"TreeView",
		p,
		[
			"id",
			"items",
			"selected_path",
			"multiple",
			"visible",
			"enabled",
			"disabled",
		],
	);

	if ( p.has("items") ) {
		_assert_prop_array( "TreeView", "items", p.get("items") );
	}
	if ( p.has("selected_path") ) {
		_assert_prop_array( "TreeView", "selected_path", p.get("selected_path") );
	}

	return _apply_geometry( new _TreeViewClass(
		id: p.get( "id", null ),
		items: p.get( "items", [] ),
		selected_path: p.get( "selected_path", [] ),
		multiple: p.get( "multiple", false ),
		visible: p.get( "visible", true ),
		enabled: p.get( "enabled", true ),
		disabled: p.get( "disabled", false ),
		children: c,
	), p );
}

function _binding_path_class ( path_class ) {
	if ( path_class ≡ null ) {
		return ZZPath;
	}
	if ( not( path_class instanceof Class ) ) {
		die "GUI_BIND_PATH: paths special property must be Class or null";
	}
	return path_class;
}

function _binding_compile_path ( String path_text, path_class ) {
	if ( path_class ≡ null ) {
		try {
			return new ZZPath( path: path_text );
		}
		catch ( Exception e ) {
			die `GUI_BIND_PATH: ${e{message}}`;
		}
	}

	let path_type := _binding_path_class(path_class);
	try {
		return new path_type( path: path_text );
	}
	catch ( Exception e ) {
		die `GUI_BIND_PATH: ${e{message}}`;
	}
}

function _binding_path ( pathish, path_class ) {
	if ( pathish instanceof String ) {
		return _binding_compile_path( pathish, path_class );
	}
	if (
		pathish can first
		and ( pathish can assign_first or pathish can ref_first )
	) {
		return pathish;
	}

	die "GUI_BIND_PATH: binding path must be String or path-like Object";
}

function _binding_get ( model, path ) {
	return path.first( model, null );
}

function _binding_set ( model, path, value ) {
	if ( path can assign_first ) {
		return path.assign_first( model, value );
	}

	let ref := path.ref_first(model);
	return ref(value);
}

class BindingToken {
	let Widget widget but weak;
	let String widget_prop;
	let model;
	let model_path;
	let String event := "change";
	let listener := null;
	let Boolean _active := true;

	method is_active () {
		return _active;
	}

	method set_listener ( token ) {
		listener := token;
		return self;
	}

	method sync_model_to_widget () {
		widget.(widget_prop)( _binding_get( model, model_path ) );
		return self;
	}

	method sync_widget_to_model () {
		_binding_set( model, model_path, widget.(widget_prop)() );
		return self;
	}

	method unbind () {
		if ( _active and listener ≢ null ) {
			widget.off(listener);
		}
		_active := false;
		return self;
	}
}

function bind (
	Widget widget,
	String widget_prop,
	model,
	model_path,
	... PairList p
) {
	let path := _binding_path( model_path, getupperprop( 1, "paths" ) );

	let token := new BindingToken(
		widget: widget,
		widget_prop: widget_prop,
		model: model,
		model_path: path,
		event: p.get( "event", "change" ),
	);
	let event_name := p.get( "event", "change" );

	switch ( p.get( "initial", "model" ): eq ) {
		case "model":
			token.sync_model_to_widget();
		case "widget":
			token.sync_widget_to_model();
		case "none":
			// No initial sync.
		default:
			die "GUI_BIND_INITIAL: initial must be model, widget, or none";
	}

	token.set_listener(
		widget.on( event_name, function () {
			if ( token.is_active() ) {
				token.sync_widget_to_model();
			}
		} ),
	);
	return token;
}

function unbind ( BindingToken token ) {
	return token.unbind();
}

let GUI_XML_NS := "https://zuzulang.org/ns/std/gui";

function _xml_error ( String code, String message ) {
	die `${code}: ${message}`;
}

function _xml_tag_name ( node ) {
	return node.localName() ?: node.nodeName();
}

function _xml_assert_namespace ( node ) {
	let ns := node.namespaceURI();
	if ( ns ≢ null and ns ≢ "" and ns ≢ GUI_XML_NS ) {
		_xml_error(
			"GUI_XML_STRUCTURE",
			`unsupported GUI XML namespace '${ns}'`,
		);
	}
}

function _xml_common_allowed ( Array extra ) {
	let out := [
		"id",
		"visible",
		"enabled",
		"disabled",
		"width",
		"height",
		"minwidth",
		"minheight",
		"maxwidth",
		"maxheight",
	];
	for ( let attr in extra ) {
		out.push(attr);
	}
	return out;
}

function _xml_allowed_attrs ( String tag ) {
	switch ( tag: eq ) {
		case "Window":
			return _xml_common_allowed(
				[ "title", "width", "height", "resizable", "modal" ],
			);
		case "VBox", "HBox":
			return _xml_common_allowed( [ "align", "gap", "padding" ] );
		case "Frame":
			return _xml_common_allowed( [ "label", "collapsible", "collapsed" ] );
		case "Label":
			return _xml_common_allowed( [ "text", "for" ] );
		case "Text":
			return _xml_common_allowed(
				[ "value", "multiline", "readonly", "wrap" ],
			);
		case "RichText":
			return _xml_common_allowed(
				[ "value", "multiline", "readonly" ],
			);
		case "Image":
			return _xml_common_allowed( [ "src", "alt", "fit" ] );
		case "Input":
			return _xml_common_allowed( [
				"value",
				"placeholder",
				"multiline",
				"readonly",
				"password",
				"required",
			] );
		case "DatePicker":
			return _xml_common_allowed(
				[ "value", "min", "max", "first_day_of_week" ],
			);
		case "Checkbox":
			return _xml_common_allowed( [ "label", "checked", "indeterminate" ] );
		case "Radio":
			return _xml_common_allowed( [ "label", "value", "group", "checked" ] );
		case "RadioGroup":
			return _xml_common_allowed( [ "name", "value" ] );
		case "Select":
			return _xml_common_allowed( [ "value", "multiple" ] );
		case "Menu":
			return _xml_common_allowed( [ "text" ] );
		case "MenuItem":
			return _xml_common_allowed( [ "text" ] );
		case "Button":
			return _xml_common_allowed( [ "text", "variant" ] );
		case "Separator":
			return _xml_common_allowed( [ "orientation" ] );
		case "Slider":
			return _xml_common_allowed( [
				"value",
				"min",
				"max",
				"step",
				"orientation",
				"readonly",
			] );
		case "Progress":
			return _xml_common_allowed( [
				"value",
				"min",
				"max",
				"indeterminate",
				"show_text",
			] );
		case "Tabs":
			return _xml_common_allowed( [ "selected", "placement" ] );
		case "Tab":
			return _xml_common_allowed(
				[ "title", "value", "selected", "closable", "icon" ],
			);
		case "ListView":
			return _xml_common_allowed( [ "selected_index", "multiple" ] );
		case "TreeView":
			return _xml_common_allowed( [ "selected_path", "multiple" ] );
	}

	_xml_error( "GUI_XML_STRUCTURE", `unsupported GUI XML element '${tag}'` );
}

function _xml_bool_attrs ( String tag ) {
	return [
		"visible",
		"enabled",
		"disabled",
		"resizable",
		"modal",
		"collapsible",
		"collapsed",
		"multiline",
		"readonly",
		"wrap",
		"password",
		"required",
		"checked",
		"indeterminate",
		"multiple",
		"show_text",
		"selected",
		"closable",
	];
}

function _xml_number_attrs ( String tag ) {
	return [
		"width",
		"height",
		"minwidth",
		"minheight",
		"maxwidth",
		"maxheight",
		"gap",
		"padding",
		"first_day_of_week",
		"selected_index",
		"value",
		"min",
		"max",
		"step",
	];
}

function _xml_bool ( String tag, String attr, String raw ) {
	switch ( lc(raw): eq ) {
		case "true", "1", "yes", "on": return true;
		case "false", "0", "no", "off": return false;
	}
	_xml_error(
		"GUI_XML_ATTR_TYPE",
		`${tag}.${attr} expects a boolean XML attribute`,
	);
}

function _xml_number ( String tag, String attr, String raw ) {
	if ( not ( raw ~ /^-?[0-9]+(\.[0-9]+)?$/ ) ) {
		_xml_error(
			"GUI_XML_ATTR_TYPE",
			`${tag}.${attr} expects a numeric XML attribute`,
		);
	}
	return 0 + raw;
}

function _xml_int_list ( String tag, String attr, String raw ) {
	let out := [];
	return out if raw eq "";
	for ( let part in split( raw, "," ) ) {
		let item := trim(part);
		if ( not ( item ~ /^-?[0-9]+$/ ) ) {
			_xml_error(
				"GUI_XML_ATTR_TYPE",
				`${tag}.${attr} expects comma-separated integers`,
			);
		}
		out.push( 0 + item );
	}
	return out;
}

function _xml_coerce_attr ( String tag, String attr, String raw ) {
	if ( attr eq "selected" and tag eq "Tabs" ) {
		return raw;
	}
	if ( attr eq "value" and tag ∉ [ "Slider", "Progress" ] ) {
		return raw;
	}
	if ( attr eq "min" and tag eq "DatePicker" ) {
		return raw;
	}
	if ( attr eq "max" and tag eq "DatePicker" ) {
		return raw;
	}
	if ( attr eq "selected_path" ) {
		return _xml_int_list( tag, attr, raw );
	}
	if ( attr ∈ _xml_bool_attrs(tag) ) {
		return _xml_bool( tag, attr, raw );
	}
	if ( attr ∈ _xml_number_attrs(tag) ) {
		return _xml_number( tag, attr, raw );
	}
	return raw;
}

function _xml_attrs ( node ) {
	let tag := _xml_tag_name(node);
	let props := {};
	let meta := {};
	let meta_keys := [];
	let style := {};
	let style_keys := [];
	let allowed := _xml_allowed_attrs(tag);

	for ( let attr in node.attributeNames() ) {
		next if attr eq "xmlns";
		next if substr( attr, 0, 6 ) eq "xmlns:";
		let value := node.getAttribute(attr);
		if ( substr( attr, 0, 5 ) eq "meta." ) {
			let key := substr( attr, 5 );
			_xml_error( "GUI_XML_ATTR_UNKNOWN", "empty meta attribute name" )
				if key eq "";
			meta{(key)} := value;
			meta_keys.push(key);
			next;
		}
		if ( substr( attr, 0, 6 ) eq "style." ) {
			let key := substr( attr, 6 );
			_xml_error( "GUI_XML_ATTR_UNKNOWN", "empty style attribute name" )
				if key eq "";
			style{(key)} := value;
			style_keys.push(key);
			next;
		}
		if ( attr ∉ allowed ) {
			_xml_error(
				"GUI_XML_ATTR_UNKNOWN",
				`${tag} does not accept XML attribute '${attr}'`,
			);
		}
		props{(attr)} := _xml_coerce_attr( tag, attr, value );
	}

	return {
		props: props,
		meta: meta,
		meta_keys: meta_keys,
		style: style,
		style_keys: style_keys,
	};
}

function _xml_apply_meta ( Widget widget, Dict meta, Array keys ) {
	for ( let key in keys ) {
		widget.meta( key, meta{(key)} );
	}
	if ( keys.length() > 0 ) {
		widget.meta( "__xml_meta_keys", keys );
	}
	return widget;
}

function _xml_apply_style ( Widget widget, Dict style, Array keys ) {
	for ( let key in keys ) {
		widget.style( key, style{(key)} );
	}
	if ( keys.length() > 0 ) {
		widget.meta( "__xml_style_keys", keys );
	}
	return widget;
}

function _xml_widget_from_node ( node ) {
	_xml_assert_namespace(node);

	let tag := _xml_tag_name(node);
	let child_widgets := [];
	for ( let child in node.children() ) {
		child_widgets.push( _xml_widget_from_node(child) );
	}
	let parsed := _xml_attrs(node);
	let p := parsed{props};
	let widget;

	switch ( tag: eq ) {
		case "Window":
			widget := new _WindowClass(
				id: p.get( "id", null ),
				title: p.get( "title", "" ),
				width: p.get( "width", 800 ),
				height: p.get( "height", 600 ),
				resizable: p.get( "resizable", true ),
				modal: p.get( "modal", false ),
				visible: p.get( "visible", true ),
				enabled: p.get( "enabled", true ),
				disabled: p.get( "disabled", false ),
				children: child_widgets,
			);
		case "VBox":
			widget := new _VBoxClass(
				id: p.get( "id", null ),
				align: p.get( "align", "top" ),
				gap: p.get( "gap", 0 ),
				padding: p.get( "padding", 0 ),
				visible: p.get( "visible", true ),
				enabled: p.get( "enabled", true ),
				disabled: p.get( "disabled", false ),
				children: child_widgets,
			);
		case "HBox":
			widget := new _HBoxClass(
				id: p.get( "id", null ),
				align: p.get( "align", "left" ),
				gap: p.get( "gap", 0 ),
				padding: p.get( "padding", 0 ),
				visible: p.get( "visible", true ),
				enabled: p.get( "enabled", true ),
				disabled: p.get( "disabled", false ),
				children: child_widgets,
			);
		case "Frame":
			widget := new _FrameClass(
				id: p.get( "id", null ),
				label: p.get( "label", "" ),
				collapsible: p.get( "collapsible", false ),
				collapsed: p.get( "collapsed", false ),
				visible: p.get( "visible", true ),
				enabled: p.get( "enabled", true ),
				disabled: p.get( "disabled", false ),
				children: child_widgets,
			);
		case "Label":
			widget := Label(
				id: p.get( "id", null ),
				text: p.get( "text", "" ),
				("for"): p.get( "for", null ),
				visible: p.get( "visible", true ),
				enabled: p.get( "enabled", true ),
				disabled: p.get( "disabled", false ),
			);
		case "Text":
			widget := Text(
				id: p.get( "id", null ),
				value: p.get( "value", "" ),
				multiline: p.get( "multiline", false ),
				readonly: p.get( "readonly", false ),
				wrap: p.get( "wrap", true ),
				visible: p.get( "visible", true ),
				enabled: p.get( "enabled", true ),
				disabled: p.get( "disabled", false ),
			);
		case "RichText":
			widget := RichText(
				id: p.get( "id", null ),
				value: p.get( "value", "" ),
				multiline: p.get( "multiline", true ),
				readonly: p.get( "readonly", true ),
				visible: p.get( "visible", true ),
				enabled: p.get( "enabled", true ),
				disabled: p.get( "disabled", false ),
			);
		case "Image":
			widget := Image(
				id: p.get( "id", null ),
				src: p.get( "src", "" ),
				alt: p.get( "alt", "" ),
				fit: p.get( "fit", "none" ),
				visible: p.get( "visible", true ),
				enabled: p.get( "enabled", true ),
				disabled: p.get( "disabled", false ),
			);
		case "Input":
			widget := Input(
				id: p.get( "id", null ),
				value: p.get( "value", "" ),
				placeholder: p.get( "placeholder", "" ),
				multiline: p.get( "multiline", false ),
				readonly: p.get( "readonly", false ),
				password: p.get( "password", false ),
				required: p.get( "required", false ),
				visible: p.get( "visible", true ),
				enabled: p.get( "enabled", true ),
				disabled: p.get( "disabled", false ),
			);
		case "DatePicker":
			widget := DatePicker(
				id: p.get( "id", null ),
				value: p.get( "value", null ),
				min: p.get( "min", null ),
				max: p.get( "max", null ),
				first_day_of_week: p.get( "first_day_of_week", 0 ),
				visible: p.get( "visible", true ),
				enabled: p.get( "enabled", true ),
				disabled: p.get( "disabled", false ),
			);
		case "Checkbox":
			widget := Checkbox(
				id: p.get( "id", null ),
				label: p.get( "label", "" ),
				checked: p.get( "checked", false ),
				indeterminate: p.get( "indeterminate", false ),
				visible: p.get( "visible", true ),
				enabled: p.get( "enabled", true ),
				disabled: p.get( "disabled", false ),
			);
		case "Radio":
			widget := Radio(
				id: p.get( "id", null ),
				label: p.get( "label", "" ),
				value: p.get( "value", "" ),
				group: p.get( "group", null ),
				checked: p.get( "checked", false ),
				visible: p.get( "visible", true ),
				enabled: p.get( "enabled", true ),
				disabled: p.get( "disabled", false ),
			);
		case "RadioGroup":
			widget := new _RadioGroupClass(
				id: p.get( "id", null ),
				name: p.get( "name", "" ),
				value: p.get( "value", null ),
				visible: p.get( "visible", true ),
				enabled: p.get( "enabled", true ),
				disabled: p.get( "disabled", false ),
				children: child_widgets,
			);
		case "Select":
			widget := Select(
				id: p.get( "id", null ),
				value: p.get( "value", null ),
				multiple: p.get( "multiple", false ),
				visible: p.get( "visible", true ),
				enabled: p.get( "enabled", true ),
				disabled: p.get( "disabled", false ),
			);
		case "Menu":
			widget := new _MenuClass(
				id: p.get( "id", null ),
				text: p.get( "text", "" ),
				visible: p.get( "visible", true ),
				enabled: p.get( "enabled", true ),
				disabled: p.get( "disabled", false ),
				children: child_widgets,
			);
		case "MenuItem":
			widget := MenuItem(
				id: p.get( "id", null ),
				text: p.get( "text", "" ),
				visible: p.get( "visible", true ),
				enabled: p.get( "enabled", true ),
				disabled: p.get( "disabled", false ),
			);
		case "Button":
			widget := Button(
				id: p.get( "id", null ),
				text: p.get( "text", "" ),
				variant: p.get( "variant", "default" ),
				visible: p.get( "visible", true ),
				enabled: p.get( "enabled", true ),
				disabled: p.get( "disabled", false ),
			);
		case "Separator":
			widget := Separator(
				id: p.get( "id", null ),
				orientation: p.get( "orientation", "horizontal" ),
				visible: p.get( "visible", true ),
				enabled: p.get( "enabled", true ),
				disabled: p.get( "disabled", false ),
			);
		case "Slider":
			widget := Slider(
				id: p.get( "id", null ),
				value: p.get( "value", 0 ),
				min: p.get( "min", 0 ),
				max: p.get( "max", 100 ),
				step: p.get( "step", 1 ),
				orientation: p.get( "orientation", "horizontal" ),
				readonly: p.get( "readonly", false ),
				visible: p.get( "visible", true ),
				enabled: p.get( "enabled", true ),
				disabled: p.get( "disabled", false ),
			);
		case "Progress":
			widget := Progress(
				id: p.get( "id", null ),
				value: p.get( "value", 0 ),
				min: p.get( "min", 0 ),
				max: p.get( "max", 100 ),
				indeterminate: p.get( "indeterminate", false ),
				show_text: p.get( "show_text", false ),
				visible: p.get( "visible", true ),
				enabled: p.get( "enabled", true ),
				disabled: p.get( "disabled", false ),
			);
		case "Tabs":
			widget := new _TabsClass(
				id: p.get( "id", null ),
				selected: p.get( "selected", null ),
				placement: p.get( "placement", "top" ),
				visible: p.get( "visible", true ),
				enabled: p.get( "enabled", true ),
				disabled: p.get( "disabled", false ),
				children: child_widgets,
			);
		case "Tab":
			widget := new _TabClass(
				id: p.get( "id", null ),
				title: p.get( "title", "" ),
				value: p.get( "value", "" ),
				selected: p.get( "selected", false ),
				closable: p.get( "closable", false ),
				icon: p.get( "icon", null ),
				visible: p.get( "visible", true ),
				enabled: p.get( "enabled", true ),
				disabled: p.get( "disabled", false ),
				children: child_widgets,
			);
		case "ListView":
			widget := ListView(
				id: p.get( "id", null ),
				selected_index: p.get( "selected_index", null ),
				multiple: p.get( "multiple", false ),
				visible: p.get( "visible", true ),
				enabled: p.get( "enabled", true ),
				disabled: p.get( "disabled", false ),
			);
		case "TreeView":
			widget := TreeView(
				id: p.get( "id", null ),
				selected_path: p.get( "selected_path", [] ),
				multiple: p.get( "multiple", false ),
				visible: p.get( "visible", true ),
				enabled: p.get( "enabled", true ),
				disabled: p.get( "disabled", false ),
			);
		default:
			_xml_error(
				"GUI_XML_STRUCTURE",
				`unsupported GUI XML element '${tag}'`,
			);
	}

	_xml_apply_meta( widget, parsed{meta}, parsed{meta_keys} );
	return _xml_apply_style( widget, parsed{style}, parsed{style_keys} );
}

function gui_from_xml ( String xml ) {
	return _xml_widget_from_node( XML.parse(xml).documentElement() );
}

function gui_from_xml_file ( path ) {
	die "XML.load is denied by runtime policy" if __system__{deny_fs};
	from std/io import Path;
	let file := path instanceof Path ? path : new Path(path);
	return _xml_widget_from_node( XML.load(file).documentElement() );
}

function _xml_tag_for_widget ( Widget widget ) {
	if ( widget instanceof _WindowClass ) { return "Window"; }
	if ( widget instanceof _VBoxClass ) { return "VBox"; }
	if ( widget instanceof _HBoxClass ) { return "HBox"; }
	if ( widget instanceof _FrameClass ) { return "Frame"; }
	if ( widget instanceof _LabelClass ) { return "Label"; }
	if ( widget instanceof _TextClass ) { return "Text"; }
	if ( widget instanceof _RichTextClass ) { return "RichText"; }
	if ( widget instanceof _ImageClass ) { return "Image"; }
	if ( widget instanceof _InputClass ) { return "Input"; }
	if ( widget instanceof _DatePickerClass ) { return "DatePicker"; }
	if ( widget instanceof _CheckboxClass ) { return "Checkbox"; }
	if ( widget instanceof _RadioClass ) { return "Radio"; }
	if ( widget instanceof _RadioGroupClass ) { return "RadioGroup"; }
	if ( widget instanceof _SelectClass ) { return "Select"; }
	if ( widget instanceof _MenuClass ) { return "Menu"; }
	if ( widget instanceof _MenuItemClass ) { return "MenuItem"; }
	if ( widget instanceof _ButtonClass ) { return "Button"; }
	if ( widget instanceof _SeparatorClass ) { return "Separator"; }
	if ( widget instanceof _SliderClass ) { return "Slider"; }
	if ( widget instanceof _ProgressClass ) { return "Progress"; }
	if ( widget instanceof _TabsClass ) { return "Tabs"; }
	if ( widget instanceof _TabClass ) { return "Tab"; }
	if ( widget instanceof _ListViewClass ) { return "ListView"; }
	if ( widget instanceof _TreeViewClass ) { return "TreeView"; }
	_xml_error( "GUI_XML_STRUCTURE", "unsupported widget for gui_to_xml" );
}

function _xml_attr ( String name, value ) {
	return "" if value ≡ null;
	return ` ${name}="${escape_xml(value)}"`;
}

function _xml_attr_if ( String name, value, fallback ) {
	return "" if value ≡ fallback;
	return _xml_attr( name, value );
}

function _xml_bool_attr_if ( String name, value, fallback ) {
	let normalized := value ? true : false;
	let normalized_fallback := fallback ? true : false;
	return "" if normalized ≡ normalized_fallback;
	return _xml_attr( name, normalized ? "true" : "false" );
}

function _xml_attr_nonempty ( String name, value ) {
	return "" if value ≡ null or value eq "";
	return _xml_attr( name, value );
}

function _xml_join_ints ( Array values ) {
	let out := [];
	for ( let value in values ) {
		out.push( "" _ value );
	}
	return join( ",", out );
}

function _xml_meta_attrs ( Widget widget ) {
	let keys := widget.meta( "__xml_meta_keys" ) ?: [];
	let out := "";
	for ( let key in keys ) {
		out _= _xml_attr( "meta." _ key, widget.meta(key) );
	}
	return out;
}

function _xml_style_attrs ( Widget widget ) {
	let keys := widget.meta( "__xml_style_keys" ) ?: [];
	let out := "";
	for ( let key in keys ) {
		out _= _xml_attr( "style." _ key, widget.style(key) );
	}
	return out;
}

function _xml_common_attrs ( Widget widget ) {
	let out := "";
	out _= _xml_attr( "id", widget.id() ) if widget.id() ≢ null;
	out _= _xml_bool_attr_if( "visible", widget.visible(), true );
	out _= _xml_bool_attr_if( "disabled", not widget.enabled(), false );
	out _= _xml_meta_attrs(widget);
	out _= _xml_style_attrs(widget);
	return out;
}

function _xml_widget_attrs ( Widget widget ) {
	let out := _xml_common_attrs(widget);
	if ( widget instanceof _WindowClass ) {
		out _= _xml_attr_if( "title", widget.title(), "" );
	}
	else if ( widget instanceof _VBoxClass or widget instanceof _HBoxClass ) {
		let default_align := widget instanceof _VBoxClass ? "top" : "left";
		out _= _xml_attr_if( "align", widget.align(), default_align );
		out _= _xml_attr_if( "gap", widget.gap(), 0 );
		out _= _xml_attr_if( "padding", widget.padding(), 0 )
			unless widget.padding() instanceof Array;
	}
	else if ( widget instanceof _FrameClass ) {
		out _= _xml_attr_if( "label", widget.label(), "" );
		out _= _xml_bool_attr_if( "collapsible", widget.collapsible(), false );
		out _= _xml_bool_attr_if( "collapsed", widget.collapsed(), false );
	}
	else if ( widget instanceof _LabelClass ) {
		out _= _xml_attr_if( "text", widget.text(), "" );
		out _= _xml_attr_nonempty( "for", widget.for_id() );
	}
	else if ( widget instanceof _TextClass ) {
		out _= _xml_attr_if( "value", widget.value(), "" );
		out _= _xml_bool_attr_if( "multiline", widget.multiline(), false );
		out _= _xml_bool_attr_if( "readonly", widget.readonly(), false );
		out _= _xml_bool_attr_if( "wrap", widget.wrap(), true );
	}
	else if ( widget instanceof _RichTextClass ) {
		out _= _xml_attr_if( "value", widget.value(), "" );
		out _= _xml_bool_attr_if( "multiline", widget.multiline(), true );
		out _= _xml_bool_attr_if( "readonly", widget.readonly(), true );
	}
	else if ( widget instanceof _ImageClass ) {
		out _= _xml_attr_if( "src", widget.src(), "" );
		out _= _xml_attr_if( "alt", widget.alt(), "" );
		out _= _xml_attr_if( "fit", widget.fit(), "none" );
	}
	else if ( widget instanceof _InputClass ) {
		out _= _xml_attr_if( "value", widget.value(), "" );
		out _= _xml_attr_if( "placeholder", widget.placeholder(), "" );
		out _= _xml_bool_attr_if( "multiline", widget.multiline(), false );
		out _= _xml_bool_attr_if( "readonly", widget.readonly(), false );
		out _= _xml_bool_attr_if( "password", widget.password(), false );
		out _= _xml_bool_attr_if( "required", widget.required(), false );
	}
	else if ( widget instanceof _DatePickerClass ) {
		out _= _xml_attr( "value", widget.value() );
		out _= _xml_attr( "min", widget.min() ) if widget.min() ≢ null;
		out _= _xml_attr( "max", widget.max() ) if widget.max() ≢ null;
		out _= _xml_attr_if(
			"first_day_of_week",
			widget.first_day_of_week(),
			0,
		);
	}
	else if ( widget instanceof _CheckboxClass ) {
		out _= _xml_attr_if( "label", widget.label(), "" );
		out _= _xml_bool_attr_if( "checked", widget.checked(), false );
		out _= _xml_bool_attr_if( "indeterminate", widget.indeterminate(), false );
	}
	else if ( widget instanceof _RadioClass ) {
		out _= _xml_attr_if( "label", widget.label(), "" );
		out _= _xml_attr_if( "value", widget.value(), "" );
		out _= _xml_attr_nonempty( "group", widget.group() );
		out _= _xml_bool_attr_if( "checked", widget.checked(), false );
	}
	else if ( widget instanceof _RadioGroupClass ) {
		out _= _xml_attr_if( "name", widget.name(), "" );
		out _= _xml_attr( "value", widget.value() ) if widget.value() ≢ null;
	}
	else if ( widget instanceof _SelectClass ) {
		out _= _xml_attr( "value", widget.value() ) if widget.value() ≢ null;
		out _= _xml_bool_attr_if( "multiple", widget.multiple(), false );
	}
	else if ( widget instanceof _MenuClass ) {
		out _= _xml_attr_if( "text", widget.text(), "" );
	}
	else if ( widget instanceof _MenuItemClass ) {
		out _= _xml_attr_if( "text", widget.text(), "" );
	}
	else if ( widget instanceof _ButtonClass ) {
		out _= _xml_attr_if( "text", widget.text(), "" );
		out _= _xml_attr_if( "variant", widget.variant(), "default" );
	}
	else if ( widget instanceof _SeparatorClass ) {
		out _= _xml_attr_if( "orientation", widget.orientation(), "horizontal" );
	}
	else if ( widget instanceof _SliderClass ) {
		out _= _xml_attr_if( "value", widget.value(), 0 );
		out _= _xml_attr_if( "min", widget.min(), 0 );
		out _= _xml_attr_if( "max", widget.max(), 100 );
		out _= _xml_attr_if( "step", widget.step(), 1 );
		out _= _xml_attr_if( "orientation", widget.orientation(), "horizontal" );
		out _= _xml_bool_attr_if( "readonly", widget.readonly(), false );
	}
	else if ( widget instanceof _ProgressClass ) {
		out _= _xml_attr_if( "value", widget.value(), 0 );
		out _= _xml_attr_if( "min", widget.min(), 0 );
		out _= _xml_attr_if( "max", widget.max(), 100 );
		out _= _xml_bool_attr_if( "indeterminate", widget.indeterminate(), false );
		out _= _xml_bool_attr_if( "show_text", widget.show_text(), false );
	}
	else if ( widget instanceof _TabsClass ) {
		out _= _xml_attr( "selected", widget.selected() )
			if widget.selected() ≢ null;
		out _= _xml_attr_if( "placement", widget.placement(), "top" );
	}
	else if ( widget instanceof _TabClass ) {
		out _= _xml_attr_if( "title", widget.title(), "" );
		out _= _xml_attr_if( "value", widget.value(), "" );
		out _= _xml_attr( "icon", widget.icon() ) if widget.icon() ≢ null;
		out _= _xml_bool_attr_if( "selected", widget.selected(), false );
		out _= _xml_bool_attr_if( "closable", widget.closable(), false );
	}
	else if ( widget instanceof _ListViewClass ) {
		out _= _xml_attr( "selected_index", widget.selected_index() )
			if widget.selected_index() ≢ null;
		out _= _xml_bool_attr_if( "multiple", widget.multiple(), false );
	}
	else if ( widget instanceof _TreeViewClass ) {
		let selected_path := widget.selected_path();
		out _= _xml_attr( "selected_path", _xml_join_ints(selected_path) )
			if selected_path.length() > 0;
		out _= _xml_bool_attr_if( "multiple", widget.multiple(), false );
	}
	return out;
}

function _xml_serialize_widget ( Widget widget, Number depth ) {
	let indent := "";
	let i := 0;
	while ( i < depth ) {
		indent _= "\t";
		i++;
	}

	let tag := _xml_tag_for_widget(widget);
	let attrs := _xml_widget_attrs(widget);
	attrs _= _xml_attr( "xmlns", GUI_XML_NS ) if depth = 0;
	let children := widget.children();
	if ( children.length() = 0 ) {
		return indent _ "<" _ tag _ attrs _ " />";
	}

	let parts := [];
	for ( let child in children ) {
		parts.push( _xml_serialize_widget( child, depth + 1 ) );
	}

	return indent _ "<" _ tag _ attrs _ ">\n"
		_ join( "\n", parts )
		_ "\n" _ indent _ "</" _ tag _ ">";
}

function gui_to_xml ( Widget root ) {
	return _xml_serialize_widget( root, 0 ) _ "\n";
}