package ocgtk

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file ocgtk_gtk__.ml

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
(* generated by dune *)

(** @canonical Ocgtk_gtk.About_dialog *)
module About_dialog = Ocgtk_gtk__About_dialog

(** @canonical Ocgtk_gtk.Accessible_list *)
module Accessible_list = Ocgtk_gtk__Accessible_list

(** @canonical Ocgtk_gtk.Accessible_range *)
module Accessible_range = Ocgtk_gtk__Accessible_range

(** @canonical Ocgtk_gtk.Accessible_text *)
module Accessible_text = Ocgtk_gtk__Accessible_text

(** @canonical Ocgtk_gtk.Accessible_text_range *)
module Accessible_text_range = Ocgtk_gtk__Accessible_text_range

(** @canonical Ocgtk_gtk.Action_bar *)
module Action_bar = Ocgtk_gtk__Action_bar

(** @canonical Ocgtk_gtk.Actionable *)
module Actionable = Ocgtk_gtk__Actionable

(** @canonical Ocgtk_gtk.Activate_action *)
module Activate_action = Ocgtk_gtk__Activate_action

(** @canonical Ocgtk_gtk.Adjustment *)
module Adjustment = Ocgtk_gtk__Adjustment

(** @canonical Ocgtk_gtk.Alert_dialog *)
module Alert_dialog = Ocgtk_gtk__Alert_dialog

(** @canonical Ocgtk_gtk.Alternative_trigger *)
module Alternative_trigger = Ocgtk_gtk__Alternative_trigger

(** @canonical Ocgtk_gtk.Any_filter *)
module Any_filter = Ocgtk_gtk__Any_filter

(** @canonical Ocgtk_gtk.App_chooser *)
module App_chooser = Ocgtk_gtk__App_chooser

(** @canonical Ocgtk_gtk.App_chooser_button *)
module App_chooser_button = Ocgtk_gtk__App_chooser_button

(** @canonical Ocgtk_gtk.App_chooser_dialog *)
module App_chooser_dialog = Ocgtk_gtk__App_chooser_dialog

(** @canonical Ocgtk_gtk.App_chooser_widget *)
module App_chooser_widget = Ocgtk_gtk__App_chooser_widget

(** @canonical Ocgtk_gtk.Application_and__window_and__window_group *)
module Application_and__window_and__window_group = Ocgtk_gtk__Application_and__window_and__window_group

(** @canonical Ocgtk_gtk.Application_window *)
module Application_window = Ocgtk_gtk__Application_window

(** @canonical Ocgtk_gtk.Aspect_frame *)
module Aspect_frame = Ocgtk_gtk__Aspect_frame

(** @canonical Ocgtk_gtk.Assistant *)
module Assistant = Ocgtk_gtk__Assistant

(** @canonical Ocgtk_gtk.Assistant_page *)
module Assistant_page = Ocgtk_gtk__Assistant_page

(** @canonical Ocgtk_gtk.At_context_and__accessible *)
module At_context_and__accessible = Ocgtk_gtk__At_context_and__accessible

(** @canonical Ocgtk_gtk.Bin_layout *)
module Bin_layout = Ocgtk_gtk__Bin_layout

(** @canonical Ocgtk_gtk.Bitset *)
module Bitset = Ocgtk_gtk__Bitset

(** @canonical Ocgtk_gtk.Bitset_iter *)
module Bitset_iter = Ocgtk_gtk__Bitset_iter

(** @canonical Ocgtk_gtk.Bookmark_list *)
module Bookmark_list = Ocgtk_gtk__Bookmark_list

(** @canonical Ocgtk_gtk.Bool_filter *)
module Bool_filter = Ocgtk_gtk__Bool_filter

(** @canonical Ocgtk_gtk.Border *)
module Border = Ocgtk_gtk__Border

(** @canonical Ocgtk_gtk.Box *)
module Box = Ocgtk_gtk__Box

(** @canonical Ocgtk_gtk.Box_layout *)
module Box_layout = Ocgtk_gtk__Box_layout

(** @canonical Ocgtk_gtk.Buildable *)
module Buildable = Ocgtk_gtk__Buildable

(** @canonical Ocgtk_gtk.Buildable_parse_context *)
module Buildable_parse_context = Ocgtk_gtk__Buildable_parse_context

(** @canonical Ocgtk_gtk.Buildable_parser *)
module Buildable_parser = Ocgtk_gtk__Buildable_parser

(** @canonical Ocgtk_gtk.Builder *)
module Builder = Ocgtk_gtk__Builder

(** @canonical Ocgtk_gtk.Builder_c_scope *)
module Builder_c_scope = Ocgtk_gtk__Builder_c_scope

(** @canonical Ocgtk_gtk.Builder_list_item_factory *)
module Builder_list_item_factory = Ocgtk_gtk__Builder_list_item_factory

(** @canonical Ocgtk_gtk.Builder_scope *)
module Builder_scope = Ocgtk_gtk__Builder_scope

(** @canonical Ocgtk_gtk.Button *)
module Button = Ocgtk_gtk__Button

(** @canonical Ocgtk_gtk.C_closure_expression *)
module C_closure_expression = Ocgtk_gtk__C_closure_expression

(** @canonical Ocgtk_gtk.Calendar *)
module Calendar = Ocgtk_gtk__Calendar

(** @canonical Ocgtk_gtk.Callback_action *)
module Callback_action = Ocgtk_gtk__Callback_action

(** @canonical Ocgtk_gtk.Cell_area_and__cell_area_context_and__cell_layout *)
module Cell_area_and__cell_area_context_and__cell_layout = Ocgtk_gtk__Cell_area_and__cell_area_context_and__cell_layout

(** @canonical Ocgtk_gtk.Cell_area_box *)
module Cell_area_box = Ocgtk_gtk__Cell_area_box

(** @canonical Ocgtk_gtk.Cell_editable *)
module Cell_editable = Ocgtk_gtk__Cell_editable

(** @canonical Ocgtk_gtk.Cell_renderer *)
module Cell_renderer = Ocgtk_gtk__Cell_renderer

(** @canonical Ocgtk_gtk.Cell_renderer_accel *)
module Cell_renderer_accel = Ocgtk_gtk__Cell_renderer_accel

(** @canonical Ocgtk_gtk.Cell_renderer_combo *)
module Cell_renderer_combo = Ocgtk_gtk__Cell_renderer_combo

(** @canonical Ocgtk_gtk.Cell_renderer_pixbuf *)
module Cell_renderer_pixbuf = Ocgtk_gtk__Cell_renderer_pixbuf

(** @canonical Ocgtk_gtk.Cell_renderer_progress *)
module Cell_renderer_progress = Ocgtk_gtk__Cell_renderer_progress

(** @canonical Ocgtk_gtk.Cell_renderer_spin *)
module Cell_renderer_spin = Ocgtk_gtk__Cell_renderer_spin

(** @canonical Ocgtk_gtk.Cell_renderer_spinner *)
module Cell_renderer_spinner = Ocgtk_gtk__Cell_renderer_spinner

(** @canonical Ocgtk_gtk.Cell_renderer_text *)
module Cell_renderer_text = Ocgtk_gtk__Cell_renderer_text

(** @canonical Ocgtk_gtk.Cell_renderer_toggle *)
module Cell_renderer_toggle = Ocgtk_gtk__Cell_renderer_toggle

(** @canonical Ocgtk_gtk.Cell_view *)
module Cell_view = Ocgtk_gtk__Cell_view

(** @canonical Ocgtk_gtk.Center_box *)
module Center_box = Ocgtk_gtk__Center_box

(** @canonical Ocgtk_gtk.Center_layout *)
module Center_layout = Ocgtk_gtk__Center_layout

(** @canonical Ocgtk_gtk.Check_button *)
module Check_button = Ocgtk_gtk__Check_button

(** @canonical Ocgtk_gtk.Closure_expression *)
module Closure_expression = Ocgtk_gtk__Closure_expression

(** @canonical Ocgtk_gtk.Color_button *)
module Color_button = Ocgtk_gtk__Color_button

(** @canonical Ocgtk_gtk.Color_chooser *)
module Color_chooser = Ocgtk_gtk__Color_chooser

(** @canonical Ocgtk_gtk.Color_chooser_dialog *)
module Color_chooser_dialog = Ocgtk_gtk__Color_chooser_dialog

(** @canonical Ocgtk_gtk.Color_chooser_widget *)
module Color_chooser_widget = Ocgtk_gtk__Color_chooser_widget

(** @canonical Ocgtk_gtk.Color_dialog *)
module Color_dialog = Ocgtk_gtk__Color_dialog

(** @canonical Ocgtk_gtk.Color_dialog_button *)
module Color_dialog_button = Ocgtk_gtk__Color_dialog_button

(** @canonical Ocgtk_gtk.Column_view_and__column_view_column *)
module Column_view_and__column_view_column = Ocgtk_gtk__Column_view_and__column_view_column

(** @canonical Ocgtk_gtk.Column_view_cell *)
module Column_view_cell = Ocgtk_gtk__Column_view_cell

(** @canonical Ocgtk_gtk.Column_view_row *)
module Column_view_row = Ocgtk_gtk__Column_view_row

(** @canonical Ocgtk_gtk.Column_view_sorter *)
module Column_view_sorter = Ocgtk_gtk__Column_view_sorter

(** @canonical Ocgtk_gtk.Combo_box *)
module Combo_box = Ocgtk_gtk__Combo_box

(** @canonical Ocgtk_gtk.Combo_box_text *)
module Combo_box_text = Ocgtk_gtk__Combo_box_text

(** @canonical Ocgtk_gtk.Constant_expression *)
module Constant_expression = Ocgtk_gtk__Constant_expression

(** @canonical Ocgtk_gtk.Constraint *)
module Constraint = Ocgtk_gtk__Constraint

(** @canonical Ocgtk_gtk.Constraint_guide *)
module Constraint_guide = Ocgtk_gtk__Constraint_guide

(** @canonical Ocgtk_gtk.Constraint_layout *)
module Constraint_layout = Ocgtk_gtk__Constraint_layout

(** @canonical Ocgtk_gtk.Constraint_layout_child *)
module Constraint_layout_child = Ocgtk_gtk__Constraint_layout_child

(** @canonical Ocgtk_gtk.Constraint_target *)
module Constraint_target = Ocgtk_gtk__Constraint_target

(** @canonical Ocgtk_gtk.Css_location *)
module Css_location = Ocgtk_gtk__Css_location

(** @canonical Ocgtk_gtk.Css_provider *)
module Css_provider = Ocgtk_gtk__Css_provider

(** @canonical Ocgtk_gtk.Css_section *)
module Css_section = Ocgtk_gtk__Css_section

(** @canonical Ocgtk_gtk.Css_style_change *)
module Css_style_change = Ocgtk_gtk__Css_style_change

(** @canonical Ocgtk_gtk.Custom_filter *)
module Custom_filter = Ocgtk_gtk__Custom_filter

(** @canonical Ocgtk_gtk.Custom_layout *)
module Custom_layout = Ocgtk_gtk__Custom_layout

(** @canonical Ocgtk_gtk.Custom_sorter *)
module Custom_sorter = Ocgtk_gtk__Custom_sorter

(** @canonical Ocgtk_gtk.Dialog *)
module Dialog = Ocgtk_gtk__Dialog

(** @canonical Ocgtk_gtk.Directory_list *)
module Directory_list = Ocgtk_gtk__Directory_list

(** @canonical Ocgtk_gtk.Drag_icon *)
module Drag_icon = Ocgtk_gtk__Drag_icon

(** @canonical Ocgtk_gtk.Drag_source *)
module Drag_source = Ocgtk_gtk__Drag_source

(** @canonical Ocgtk_gtk.Drawing_area *)
module Drawing_area = Ocgtk_gtk__Drawing_area

(** @canonical Ocgtk_gtk.Drop_controller_motion *)
module Drop_controller_motion = Ocgtk_gtk__Drop_controller_motion

(** @canonical Ocgtk_gtk.Drop_down *)
module Drop_down = Ocgtk_gtk__Drop_down

(** @canonical Ocgtk_gtk.Drop_target *)
module Drop_target = Ocgtk_gtk__Drop_target

(** @canonical Ocgtk_gtk.Drop_target_async *)
module Drop_target_async = Ocgtk_gtk__Drop_target_async

(** @canonical Ocgtk_gtk.Editable *)
module Editable = Ocgtk_gtk__Editable

(** @canonical Ocgtk_gtk.Editable_label *)
module Editable_label = Ocgtk_gtk__Editable_label

(** @canonical Ocgtk_gtk.Emoji_chooser *)
module Emoji_chooser = Ocgtk_gtk__Emoji_chooser

(** @canonical Ocgtk_gtk.Entry *)
module Entry = Ocgtk_gtk__Entry

(** @canonical Ocgtk_gtk.Entry_buffer *)
module Entry_buffer = Ocgtk_gtk__Entry_buffer

(** @canonical Ocgtk_gtk.Entry_completion *)
module Entry_completion = Ocgtk_gtk__Entry_completion

(** @canonical Ocgtk_gtk.Event_controller_and__layout_child_and__layout_manager_and__root_and__tooltip_and__widget *)
module Event_controller_and__layout_child_and__layout_manager_and__root_and__tooltip_and__widget = Ocgtk_gtk__Event_controller_and__layout_child_and__layout_manager_and__root_and__tooltip_and__widget

(** @canonical Ocgtk_gtk.Event_controller_and__layout_child_and__layout_manager_and__root_and__widget *)
module Event_controller_and__layout_child_and__layout_manager_and__root_and__widget = Ocgtk_gtk__Event_controller_and__layout_child_and__layout_manager_and__root_and__widget

(** @canonical Ocgtk_gtk.Event_controller_focus *)
module Event_controller_focus = Ocgtk_gtk__Event_controller_focus

(** @canonical Ocgtk_gtk.Event_controller_key *)
module Event_controller_key = Ocgtk_gtk__Event_controller_key

(** @canonical Ocgtk_gtk.Event_controller_legacy *)
module Event_controller_legacy = Ocgtk_gtk__Event_controller_legacy

(** @canonical Ocgtk_gtk.Event_controller_motion *)
module Event_controller_motion = Ocgtk_gtk__Event_controller_motion

(** @canonical Ocgtk_gtk.Event_controller_scroll *)
module Event_controller_scroll = Ocgtk_gtk__Event_controller_scroll

(** @canonical Ocgtk_gtk.Every_filter *)
module Every_filter = Ocgtk_gtk__Every_filter

(** @canonical Ocgtk_gtk.Expander *)
module Expander = Ocgtk_gtk__Expander

(** @canonical Ocgtk_gtk.Expression *)
module Expression = Ocgtk_gtk__Expression

(** @canonical Ocgtk_gtk.Expression_watch *)
module Expression_watch = Ocgtk_gtk__Expression_watch

(** @canonical Ocgtk_gtk.File_chooser *)
module File_chooser = Ocgtk_gtk__File_chooser

(** @canonical Ocgtk_gtk.File_chooser_dialog *)
module File_chooser_dialog = Ocgtk_gtk__File_chooser_dialog

(** @canonical Ocgtk_gtk.File_chooser_native *)
module File_chooser_native = Ocgtk_gtk__File_chooser_native

(** @canonical Ocgtk_gtk.File_chooser_widget *)
module File_chooser_widget = Ocgtk_gtk__File_chooser_widget

(** @canonical Ocgtk_gtk.File_dialog *)
module File_dialog = Ocgtk_gtk__File_dialog

(** @canonical Ocgtk_gtk.File_filter *)
module File_filter = Ocgtk_gtk__File_filter

(** @canonical Ocgtk_gtk.File_launcher *)
module File_launcher = Ocgtk_gtk__File_launcher

(** @canonical Ocgtk_gtk.Filter *)
module Filter = Ocgtk_gtk__Filter

(** @canonical Ocgtk_gtk.Filter_list_model *)
module Filter_list_model = Ocgtk_gtk__Filter_list_model

(** @canonical Ocgtk_gtk.Fixed *)
module Fixed = Ocgtk_gtk__Fixed

(** @canonical Ocgtk_gtk.Fixed_layout *)
module Fixed_layout = Ocgtk_gtk__Fixed_layout

(** @canonical Ocgtk_gtk.Fixed_layout_child *)
module Fixed_layout_child = Ocgtk_gtk__Fixed_layout_child

(** @canonical Ocgtk_gtk.Flatten_list_model *)
module Flatten_list_model = Ocgtk_gtk__Flatten_list_model

(** @canonical Ocgtk_gtk.Flow_box *)
module Flow_box = Ocgtk_gtk__Flow_box

(** @canonical Ocgtk_gtk.Flow_box_child *)
module Flow_box_child = Ocgtk_gtk__Flow_box_child

(** @canonical Ocgtk_gtk.Font_button *)
module Font_button = Ocgtk_gtk__Font_button

(** @canonical Ocgtk_gtk.Font_chooser *)
module Font_chooser = Ocgtk_gtk__Font_chooser

(** @canonical Ocgtk_gtk.Font_chooser_dialog *)
module Font_chooser_dialog = Ocgtk_gtk__Font_chooser_dialog

(** @canonical Ocgtk_gtk.Font_chooser_widget *)
module Font_chooser_widget = Ocgtk_gtk__Font_chooser_widget

(** @canonical Ocgtk_gtk.Font_dialog *)
module Font_dialog = Ocgtk_gtk__Font_dialog

(** @canonical Ocgtk_gtk.Font_dialog_button *)
module Font_dialog_button = Ocgtk_gtk__Font_dialog_button

(** @canonical Ocgtk_gtk.Frame *)
module Frame = Ocgtk_gtk__Frame

(** @canonical Ocgtk_gtk.GAbout_dialog *)
module GAbout_dialog = Ocgtk_gtk__GAbout_dialog

(** @canonical Ocgtk_gtk.GAccessible *)
module GAccessible = Ocgtk_gtk__GAccessible

(** @canonical Ocgtk_gtk.GAccessible_list *)
module GAccessible_list = Ocgtk_gtk__GAccessible_list

(** @canonical Ocgtk_gtk.GAccessible_range *)
module GAccessible_range = Ocgtk_gtk__GAccessible_range

(** @canonical Ocgtk_gtk.GAccessible_text *)
module GAccessible_text = Ocgtk_gtk__GAccessible_text

(** @canonical Ocgtk_gtk.GAccessible_text_range *)
module GAccessible_text_range = Ocgtk_gtk__GAccessible_text_range

(** @canonical Ocgtk_gtk.GAction_bar *)
module GAction_bar = Ocgtk_gtk__GAction_bar

(** @canonical Ocgtk_gtk.GActionable *)
module GActionable = Ocgtk_gtk__GActionable

(** @canonical Ocgtk_gtk.GActivate_action *)
module GActivate_action = Ocgtk_gtk__GActivate_action

(** @canonical Ocgtk_gtk.GAdjustment *)
module GAdjustment = Ocgtk_gtk__GAdjustment

(** @canonical Ocgtk_gtk.GAlert_dialog *)
module GAlert_dialog = Ocgtk_gtk__GAlert_dialog

(** @canonical Ocgtk_gtk.GAlternative_trigger *)
module GAlternative_trigger = Ocgtk_gtk__GAlternative_trigger

(** @canonical Ocgtk_gtk.GAny_filter *)
module GAny_filter = Ocgtk_gtk__GAny_filter

(** @canonical Ocgtk_gtk.GApp_chooser *)
module GApp_chooser = Ocgtk_gtk__GApp_chooser

(** @canonical Ocgtk_gtk.GApp_chooser_button *)
module GApp_chooser_button = Ocgtk_gtk__GApp_chooser_button

(** @canonical Ocgtk_gtk.GApp_chooser_dialog *)
module GApp_chooser_dialog = Ocgtk_gtk__GApp_chooser_dialog

(** @canonical Ocgtk_gtk.GApp_chooser_widget *)
module GApp_chooser_widget = Ocgtk_gtk__GApp_chooser_widget

(** @canonical Ocgtk_gtk.GApplication *)
module GApplication = Ocgtk_gtk__GApplication

(** @canonical Ocgtk_gtk.GApplication_and__window_and__window_group *)
module GApplication_and__window_and__window_group = Ocgtk_gtk__GApplication_and__window_and__window_group

(** @canonical Ocgtk_gtk.GApplication_window *)
module GApplication_window = Ocgtk_gtk__GApplication_window

(** @canonical Ocgtk_gtk.GAspect_frame *)
module GAspect_frame = Ocgtk_gtk__GAspect_frame

(** @canonical Ocgtk_gtk.GAssistant *)
module GAssistant = Ocgtk_gtk__GAssistant

(** @canonical Ocgtk_gtk.GAssistant_page *)
module GAssistant_page = Ocgtk_gtk__GAssistant_page

(** @canonical Ocgtk_gtk.GAt_context *)
module GAt_context = Ocgtk_gtk__GAt_context

(** @canonical Ocgtk_gtk.GAt_context_and__accessible *)
module GAt_context_and__accessible = Ocgtk_gtk__GAt_context_and__accessible

(** @canonical Ocgtk_gtk.GBin_layout *)
module GBin_layout = Ocgtk_gtk__GBin_layout

(** @canonical Ocgtk_gtk.GBitset *)
module GBitset = Ocgtk_gtk__GBitset

(** @canonical Ocgtk_gtk.GBitset_iter *)
module GBitset_iter = Ocgtk_gtk__GBitset_iter

(** @canonical Ocgtk_gtk.GBookmark_list *)
module GBookmark_list = Ocgtk_gtk__GBookmark_list

(** @canonical Ocgtk_gtk.GBool_filter *)
module GBool_filter = Ocgtk_gtk__GBool_filter

(** @canonical Ocgtk_gtk.GBorder *)
module GBorder = Ocgtk_gtk__GBorder

(** @canonical Ocgtk_gtk.GBox *)
module GBox = Ocgtk_gtk__GBox

(** @canonical Ocgtk_gtk.GBox_layout *)
module GBox_layout = Ocgtk_gtk__GBox_layout

(** @canonical Ocgtk_gtk.GBuildable *)
module GBuildable = Ocgtk_gtk__GBuildable

(** @canonical Ocgtk_gtk.GBuildable_parse_context *)
module GBuildable_parse_context = Ocgtk_gtk__GBuildable_parse_context

(** @canonical Ocgtk_gtk.GBuildable_parser *)
module GBuildable_parser = Ocgtk_gtk__GBuildable_parser

(** @canonical Ocgtk_gtk.GBuilder *)
module GBuilder = Ocgtk_gtk__GBuilder

(** @canonical Ocgtk_gtk.GBuilder_c_scope *)
module GBuilder_c_scope = Ocgtk_gtk__GBuilder_c_scope

(** @canonical Ocgtk_gtk.GBuilder_list_item_factory *)
module GBuilder_list_item_factory = Ocgtk_gtk__GBuilder_list_item_factory

(** @canonical Ocgtk_gtk.GBuilder_scope *)
module GBuilder_scope = Ocgtk_gtk__GBuilder_scope

(** @canonical Ocgtk_gtk.GButton *)
module GButton = Ocgtk_gtk__GButton

(** @canonical Ocgtk_gtk.GC_closure_expression *)
module GC_closure_expression = Ocgtk_gtk__GC_closure_expression

(** @canonical Ocgtk_gtk.GCalendar *)
module GCalendar = Ocgtk_gtk__GCalendar

(** @canonical Ocgtk_gtk.GCallback_action *)
module GCallback_action = Ocgtk_gtk__GCallback_action

(** @canonical Ocgtk_gtk.GCell_area *)
module GCell_area = Ocgtk_gtk__GCell_area

(** @canonical Ocgtk_gtk.GCell_area_and__cell_area_context_and__cell_layout *)
module GCell_area_and__cell_area_context_and__cell_layout = Ocgtk_gtk__GCell_area_and__cell_area_context_and__cell_layout

(** @canonical Ocgtk_gtk.GCell_area_box *)
module GCell_area_box = Ocgtk_gtk__GCell_area_box

(** @canonical Ocgtk_gtk.GCell_area_context *)
module GCell_area_context = Ocgtk_gtk__GCell_area_context

(** @canonical Ocgtk_gtk.GCell_editable *)
module GCell_editable = Ocgtk_gtk__GCell_editable

(** @canonical Ocgtk_gtk.GCell_layout *)
module GCell_layout = Ocgtk_gtk__GCell_layout

(** @canonical Ocgtk_gtk.GCell_renderer *)
module GCell_renderer = Ocgtk_gtk__GCell_renderer

(** @canonical Ocgtk_gtk.GCell_renderer_accel *)
module GCell_renderer_accel = Ocgtk_gtk__GCell_renderer_accel

(** @canonical Ocgtk_gtk.GCell_renderer_combo *)
module GCell_renderer_combo = Ocgtk_gtk__GCell_renderer_combo

(** @canonical Ocgtk_gtk.GCell_renderer_pixbuf *)
module GCell_renderer_pixbuf = Ocgtk_gtk__GCell_renderer_pixbuf

(** @canonical Ocgtk_gtk.GCell_renderer_progress *)
module GCell_renderer_progress = Ocgtk_gtk__GCell_renderer_progress

(** @canonical Ocgtk_gtk.GCell_renderer_spin *)
module GCell_renderer_spin = Ocgtk_gtk__GCell_renderer_spin

(** @canonical Ocgtk_gtk.GCell_renderer_spinner *)
module GCell_renderer_spinner = Ocgtk_gtk__GCell_renderer_spinner

(** @canonical Ocgtk_gtk.GCell_renderer_text *)
module GCell_renderer_text = Ocgtk_gtk__GCell_renderer_text

(** @canonical Ocgtk_gtk.GCell_renderer_toggle *)
module GCell_renderer_toggle = Ocgtk_gtk__GCell_renderer_toggle

(** @canonical Ocgtk_gtk.GCell_view *)
module GCell_view = Ocgtk_gtk__GCell_view

(** @canonical Ocgtk_gtk.GCenter_box *)
module GCenter_box = Ocgtk_gtk__GCenter_box

(** @canonical Ocgtk_gtk.GCenter_layout *)
module GCenter_layout = Ocgtk_gtk__GCenter_layout

(** @canonical Ocgtk_gtk.GCheck_button *)
module GCheck_button = Ocgtk_gtk__GCheck_button

(** @canonical Ocgtk_gtk.GClosure_expression *)
module GClosure_expression = Ocgtk_gtk__GClosure_expression

(** @canonical Ocgtk_gtk.GColor_button *)
module GColor_button = Ocgtk_gtk__GColor_button

(** @canonical Ocgtk_gtk.GColor_chooser *)
module GColor_chooser = Ocgtk_gtk__GColor_chooser

(** @canonical Ocgtk_gtk.GColor_chooser_dialog *)
module GColor_chooser_dialog = Ocgtk_gtk__GColor_chooser_dialog

(** @canonical Ocgtk_gtk.GColor_chooser_widget *)
module GColor_chooser_widget = Ocgtk_gtk__GColor_chooser_widget

(** @canonical Ocgtk_gtk.GColor_dialog *)
module GColor_dialog = Ocgtk_gtk__GColor_dialog

(** @canonical Ocgtk_gtk.GColor_dialog_button *)
module GColor_dialog_button = Ocgtk_gtk__GColor_dialog_button

(** @canonical Ocgtk_gtk.GColumn_view *)
module GColumn_view = Ocgtk_gtk__GColumn_view

(** @canonical Ocgtk_gtk.GColumn_view_and__column_view_column *)
module GColumn_view_and__column_view_column = Ocgtk_gtk__GColumn_view_and__column_view_column

(** @canonical Ocgtk_gtk.GColumn_view_cell *)
module GColumn_view_cell = Ocgtk_gtk__GColumn_view_cell

(** @canonical Ocgtk_gtk.GColumn_view_column *)
module GColumn_view_column = Ocgtk_gtk__GColumn_view_column

(** @canonical Ocgtk_gtk.GColumn_view_row *)
module GColumn_view_row = Ocgtk_gtk__GColumn_view_row

(** @canonical Ocgtk_gtk.GColumn_view_sorter *)
module GColumn_view_sorter = Ocgtk_gtk__GColumn_view_sorter

(** @canonical Ocgtk_gtk.GCombo_box *)
module GCombo_box = Ocgtk_gtk__GCombo_box

(** @canonical Ocgtk_gtk.GCombo_box_text *)
module GCombo_box_text = Ocgtk_gtk__GCombo_box_text

(** @canonical Ocgtk_gtk.GConstant_expression *)
module GConstant_expression = Ocgtk_gtk__GConstant_expression

(** @canonical Ocgtk_gtk.GConstraint *)
module GConstraint = Ocgtk_gtk__GConstraint

(** @canonical Ocgtk_gtk.GConstraint_guide *)
module GConstraint_guide = Ocgtk_gtk__GConstraint_guide

(** @canonical Ocgtk_gtk.GConstraint_layout *)
module GConstraint_layout = Ocgtk_gtk__GConstraint_layout

(** @canonical Ocgtk_gtk.GConstraint_layout_child *)
module GConstraint_layout_child = Ocgtk_gtk__GConstraint_layout_child

(** @canonical Ocgtk_gtk.GConstraint_target *)
module GConstraint_target = Ocgtk_gtk__GConstraint_target

(** @canonical Ocgtk_gtk.GCss_location *)
module GCss_location = Ocgtk_gtk__GCss_location

(** @canonical Ocgtk_gtk.GCss_provider *)
module GCss_provider = Ocgtk_gtk__GCss_provider

(** @canonical Ocgtk_gtk.GCss_section *)
module GCss_section = Ocgtk_gtk__GCss_section

(** @canonical Ocgtk_gtk.GCss_style_change *)
module GCss_style_change = Ocgtk_gtk__GCss_style_change

(** @canonical Ocgtk_gtk.GCustom_filter *)
module GCustom_filter = Ocgtk_gtk__GCustom_filter

(** @canonical Ocgtk_gtk.GCustom_layout *)
module GCustom_layout = Ocgtk_gtk__GCustom_layout

(** @canonical Ocgtk_gtk.GCustom_sorter *)
module GCustom_sorter = Ocgtk_gtk__GCustom_sorter

(** @canonical Ocgtk_gtk.GDialog *)
module GDialog = Ocgtk_gtk__GDialog

(** @canonical Ocgtk_gtk.GDirectory_list *)
module GDirectory_list = Ocgtk_gtk__GDirectory_list

(** @canonical Ocgtk_gtk.GDrag_icon *)
module GDrag_icon = Ocgtk_gtk__GDrag_icon

(** @canonical Ocgtk_gtk.GDrag_source *)
module GDrag_source = Ocgtk_gtk__GDrag_source

(** @canonical Ocgtk_gtk.GDrawing_area *)
module GDrawing_area = Ocgtk_gtk__GDrawing_area

(** @canonical Ocgtk_gtk.GDrop_controller_motion *)
module GDrop_controller_motion = Ocgtk_gtk__GDrop_controller_motion

(** @canonical Ocgtk_gtk.GDrop_down *)
module GDrop_down = Ocgtk_gtk__GDrop_down

(** @canonical Ocgtk_gtk.GDrop_target *)
module GDrop_target = Ocgtk_gtk__GDrop_target

(** @canonical Ocgtk_gtk.GDrop_target_async *)
module GDrop_target_async = Ocgtk_gtk__GDrop_target_async

(** @canonical Ocgtk_gtk.GEditable *)
module GEditable = Ocgtk_gtk__GEditable

(** @canonical Ocgtk_gtk.GEditable_label *)
module GEditable_label = Ocgtk_gtk__GEditable_label

(** @canonical Ocgtk_gtk.GEmoji_chooser *)
module GEmoji_chooser = Ocgtk_gtk__GEmoji_chooser

(** @canonical Ocgtk_gtk.GEntry *)
module GEntry = Ocgtk_gtk__GEntry

(** @canonical Ocgtk_gtk.GEntry_buffer *)
module GEntry_buffer = Ocgtk_gtk__GEntry_buffer

(** @canonical Ocgtk_gtk.GEntry_completion *)
module GEntry_completion = Ocgtk_gtk__GEntry_completion

(** @canonical Ocgtk_gtk.GEvent_controller *)
module GEvent_controller = Ocgtk_gtk__GEvent_controller

(** @canonical Ocgtk_gtk.GEvent_controller_and__layout_child_and__layout_manager_and__root_and__tooltip_and__widget *)
module GEvent_controller_and__layout_child_and__layout_manager_and__root_and__tooltip_and__widget = Ocgtk_gtk__GEvent_controller_and__layout_child_and__layout_manager_and__root_and__tooltip_and__widget

(** @canonical Ocgtk_gtk.GEvent_controller_and__layout_child_and__layout_manager_and__root_and__widget *)
module GEvent_controller_and__layout_child_and__layout_manager_and__root_and__widget = Ocgtk_gtk__GEvent_controller_and__layout_child_and__layout_manager_and__root_and__widget

(** @canonical Ocgtk_gtk.GEvent_controller_focus *)
module GEvent_controller_focus = Ocgtk_gtk__GEvent_controller_focus

(** @canonical Ocgtk_gtk.GEvent_controller_key *)
module GEvent_controller_key = Ocgtk_gtk__GEvent_controller_key

(** @canonical Ocgtk_gtk.GEvent_controller_legacy *)
module GEvent_controller_legacy = Ocgtk_gtk__GEvent_controller_legacy

(** @canonical Ocgtk_gtk.GEvent_controller_motion *)
module GEvent_controller_motion = Ocgtk_gtk__GEvent_controller_motion

(** @canonical Ocgtk_gtk.GEvent_controller_scroll *)
module GEvent_controller_scroll = Ocgtk_gtk__GEvent_controller_scroll

(** @canonical Ocgtk_gtk.GEvery_filter *)
module GEvery_filter = Ocgtk_gtk__GEvery_filter

(** @canonical Ocgtk_gtk.GExpander *)
module GExpander = Ocgtk_gtk__GExpander

(** @canonical Ocgtk_gtk.GExpression *)
module GExpression = Ocgtk_gtk__GExpression

(** @canonical Ocgtk_gtk.GExpression_watch *)
module GExpression_watch = Ocgtk_gtk__GExpression_watch

(** @canonical Ocgtk_gtk.GFile_chooser *)
module GFile_chooser = Ocgtk_gtk__GFile_chooser

(** @canonical Ocgtk_gtk.GFile_chooser_dialog *)
module GFile_chooser_dialog = Ocgtk_gtk__GFile_chooser_dialog

(** @canonical Ocgtk_gtk.GFile_chooser_native *)
module GFile_chooser_native = Ocgtk_gtk__GFile_chooser_native

(** @canonical Ocgtk_gtk.GFile_chooser_widget *)
module GFile_chooser_widget = Ocgtk_gtk__GFile_chooser_widget

(** @canonical Ocgtk_gtk.GFile_dialog *)
module GFile_dialog = Ocgtk_gtk__GFile_dialog

(** @canonical Ocgtk_gtk.GFile_filter *)
module GFile_filter = Ocgtk_gtk__GFile_filter

(** @canonical Ocgtk_gtk.GFile_launcher *)
module GFile_launcher = Ocgtk_gtk__GFile_launcher

(** @canonical Ocgtk_gtk.GFilter *)
module GFilter = Ocgtk_gtk__GFilter

(** @canonical Ocgtk_gtk.GFilter_list_model *)
module GFilter_list_model = Ocgtk_gtk__GFilter_list_model

(** @canonical Ocgtk_gtk.GFixed *)
module GFixed = Ocgtk_gtk__GFixed

(** @canonical Ocgtk_gtk.GFixed_layout *)
module GFixed_layout = Ocgtk_gtk__GFixed_layout

(** @canonical Ocgtk_gtk.GFixed_layout_child *)
module GFixed_layout_child = Ocgtk_gtk__GFixed_layout_child

(** @canonical Ocgtk_gtk.GFlatten_list_model *)
module GFlatten_list_model = Ocgtk_gtk__GFlatten_list_model

(** @canonical Ocgtk_gtk.GFlow_box *)
module GFlow_box = Ocgtk_gtk__GFlow_box

(** @canonical Ocgtk_gtk.GFlow_box_child *)
module GFlow_box_child = Ocgtk_gtk__GFlow_box_child

(** @canonical Ocgtk_gtk.GFont_button *)
module GFont_button = Ocgtk_gtk__GFont_button

(** @canonical Ocgtk_gtk.GFont_chooser *)
module GFont_chooser = Ocgtk_gtk__GFont_chooser

(** @canonical Ocgtk_gtk.GFont_chooser_dialog *)
module GFont_chooser_dialog = Ocgtk_gtk__GFont_chooser_dialog

(** @canonical Ocgtk_gtk.GFont_chooser_widget *)
module GFont_chooser_widget = Ocgtk_gtk__GFont_chooser_widget

(** @canonical Ocgtk_gtk.GFont_dialog *)
module GFont_dialog = Ocgtk_gtk__GFont_dialog

(** @canonical Ocgtk_gtk.GFont_dialog_button *)
module GFont_dialog_button = Ocgtk_gtk__GFont_dialog_button

(** @canonical Ocgtk_gtk.GFrame *)
module GFrame = Ocgtk_gtk__GFrame

(** @canonical Ocgtk_gtk.GGesture *)
module GGesture = Ocgtk_gtk__GGesture

(** @canonical Ocgtk_gtk.GGesture_click *)
module GGesture_click = Ocgtk_gtk__GGesture_click

(** @canonical Ocgtk_gtk.GGesture_drag *)
module GGesture_drag = Ocgtk_gtk__GGesture_drag

(** @canonical Ocgtk_gtk.GGesture_long_press *)
module GGesture_long_press = Ocgtk_gtk__GGesture_long_press

(** @canonical Ocgtk_gtk.GGesture_pan *)
module GGesture_pan = Ocgtk_gtk__GGesture_pan

(** @canonical Ocgtk_gtk.GGesture_rotate *)
module GGesture_rotate = Ocgtk_gtk__GGesture_rotate

(** @canonical Ocgtk_gtk.GGesture_single *)
module GGesture_single = Ocgtk_gtk__GGesture_single

(** @canonical Ocgtk_gtk.GGesture_stylus *)
module GGesture_stylus = Ocgtk_gtk__GGesture_stylus

(** @canonical Ocgtk_gtk.GGesture_swipe *)
module GGesture_swipe = Ocgtk_gtk__GGesture_swipe

(** @canonical Ocgtk_gtk.GGesture_zoom *)
module GGesture_zoom = Ocgtk_gtk__GGesture_zoom

(** @canonical Ocgtk_gtk.GGl_area *)
module GGl_area = Ocgtk_gtk__GGl_area

(** @canonical Ocgtk_gtk.GGraphics_offload *)
module GGraphics_offload = Ocgtk_gtk__GGraphics_offload

(** @canonical Ocgtk_gtk.GGrid *)
module GGrid = Ocgtk_gtk__GGrid

(** @canonical Ocgtk_gtk.GGrid_layout *)
module GGrid_layout = Ocgtk_gtk__GGrid_layout

(** @canonical Ocgtk_gtk.GGrid_layout_child *)
module GGrid_layout_child = Ocgtk_gtk__GGrid_layout_child

(** @canonical Ocgtk_gtk.GGrid_view *)
module GGrid_view = Ocgtk_gtk__GGrid_view

(** @canonical Ocgtk_gtk.GHeader_bar *)
module GHeader_bar = Ocgtk_gtk__GHeader_bar

(** @canonical Ocgtk_gtk.GIcon_paintable *)
module GIcon_paintable = Ocgtk_gtk__GIcon_paintable

(** @canonical Ocgtk_gtk.GIcon_theme *)
module GIcon_theme = Ocgtk_gtk__GIcon_theme

(** @canonical Ocgtk_gtk.GIcon_view *)
module GIcon_view = Ocgtk_gtk__GIcon_view

(** @canonical Ocgtk_gtk.GIm_context *)
module GIm_context = Ocgtk_gtk__GIm_context

(** @canonical Ocgtk_gtk.GIm_context_simple *)
module GIm_context_simple = Ocgtk_gtk__GIm_context_simple

(** @canonical Ocgtk_gtk.GIm_multicontext *)
module GIm_multicontext = Ocgtk_gtk__GIm_multicontext

(** @canonical Ocgtk_gtk.GImage *)
module GImage = Ocgtk_gtk__GImage

(** @canonical Ocgtk_gtk.GInfo_bar *)
module GInfo_bar = Ocgtk_gtk__GInfo_bar

(** @canonical Ocgtk_gtk.GInscription *)
module GInscription = Ocgtk_gtk__GInscription

(** @canonical Ocgtk_gtk.GKeyval_trigger *)
module GKeyval_trigger = Ocgtk_gtk__GKeyval_trigger

(** @canonical Ocgtk_gtk.GLabel *)
module GLabel = Ocgtk_gtk__GLabel

(** @canonical Ocgtk_gtk.GLayout_child *)
module GLayout_child = Ocgtk_gtk__GLayout_child

(** @canonical Ocgtk_gtk.GLayout_manager *)
module GLayout_manager = Ocgtk_gtk__GLayout_manager

(** @canonical Ocgtk_gtk.GLevel_bar *)
module GLevel_bar = Ocgtk_gtk__GLevel_bar

(** @canonical Ocgtk_gtk.GLink_button *)
module GLink_button = Ocgtk_gtk__GLink_button

(** @canonical Ocgtk_gtk.GList_base *)
module GList_base = Ocgtk_gtk__GList_base

(** @canonical Ocgtk_gtk.GList_box *)
module GList_box = Ocgtk_gtk__GList_box

(** @canonical Ocgtk_gtk.GList_box_row *)
module GList_box_row = Ocgtk_gtk__GList_box_row

(** @canonical Ocgtk_gtk.GList_header *)
module GList_header = Ocgtk_gtk__GList_header

(** @canonical Ocgtk_gtk.GList_item *)
module GList_item = Ocgtk_gtk__GList_item

(** @canonical Ocgtk_gtk.GList_item_factory *)
module GList_item_factory = Ocgtk_gtk__GList_item_factory

(** @canonical Ocgtk_gtk.GList_store *)
module GList_store = Ocgtk_gtk__GList_store

(** @canonical Ocgtk_gtk.GList_view *)
module GList_view = Ocgtk_gtk__GList_view

(** @canonical Ocgtk_gtk.GLock_button *)
module GLock_button = Ocgtk_gtk__GLock_button

(** @canonical Ocgtk_gtk.GMain *)
module GMain = Ocgtk_gtk__GMain

(** @canonical Ocgtk_gtk.GMap_list_model *)
module GMap_list_model = Ocgtk_gtk__GMap_list_model

(** @canonical Ocgtk_gtk.GMedia_controls *)
module GMedia_controls = Ocgtk_gtk__GMedia_controls

(** @canonical Ocgtk_gtk.GMedia_file *)
module GMedia_file = Ocgtk_gtk__GMedia_file

(** @canonical Ocgtk_gtk.GMedia_stream *)
module GMedia_stream = Ocgtk_gtk__GMedia_stream

(** @canonical Ocgtk_gtk.GMenu_button *)
module GMenu_button = Ocgtk_gtk__GMenu_button

(** @canonical Ocgtk_gtk.GMessage_dialog *)
module GMessage_dialog = Ocgtk_gtk__GMessage_dialog

(** @canonical Ocgtk_gtk.GMnemonic_action *)
module GMnemonic_action = Ocgtk_gtk__GMnemonic_action

(** @canonical Ocgtk_gtk.GMnemonic_trigger *)
module GMnemonic_trigger = Ocgtk_gtk__GMnemonic_trigger

(** @canonical Ocgtk_gtk.GMount_operation *)
module GMount_operation = Ocgtk_gtk__GMount_operation

(** @canonical Ocgtk_gtk.GMulti_filter *)
module GMulti_filter = Ocgtk_gtk__GMulti_filter

(** @canonical Ocgtk_gtk.GMulti_selection *)
module GMulti_selection = Ocgtk_gtk__GMulti_selection

(** @canonical Ocgtk_gtk.GMulti_sorter *)
module GMulti_sorter = Ocgtk_gtk__GMulti_sorter

(** @canonical Ocgtk_gtk.GNamed_action *)
module GNamed_action = Ocgtk_gtk__GNamed_action

(** @canonical Ocgtk_gtk.GNative *)
module GNative = Ocgtk_gtk__GNative

(** @canonical Ocgtk_gtk.GNative_dialog *)
module GNative_dialog = Ocgtk_gtk__GNative_dialog

(** @canonical Ocgtk_gtk.GNever_trigger *)
module GNever_trigger = Ocgtk_gtk__GNever_trigger

(** @canonical Ocgtk_gtk.GNo_selection *)
module GNo_selection = Ocgtk_gtk__GNo_selection

(** @canonical Ocgtk_gtk.GNotebook *)
module GNotebook = Ocgtk_gtk__GNotebook

(** @canonical Ocgtk_gtk.GNotebook_page *)
module GNotebook_page = Ocgtk_gtk__GNotebook_page

(** @canonical Ocgtk_gtk.GNothing_action *)
module GNothing_action = Ocgtk_gtk__GNothing_action

(** @canonical Ocgtk_gtk.GNumeric_sorter *)
module GNumeric_sorter = Ocgtk_gtk__GNumeric_sorter

(** @canonical Ocgtk_gtk.GObject_expression *)
module GObject_expression = Ocgtk_gtk__GObject_expression

(** @canonical Ocgtk_gtk.GOrientable *)
module GOrientable = Ocgtk_gtk__GOrientable

(** @canonical Ocgtk_gtk.GOverlay *)
module GOverlay = Ocgtk_gtk__GOverlay

(** @canonical Ocgtk_gtk.GOverlay_layout *)
module GOverlay_layout = Ocgtk_gtk__GOverlay_layout

(** @canonical Ocgtk_gtk.GOverlay_layout_child *)
module GOverlay_layout_child = Ocgtk_gtk__GOverlay_layout_child

(** @canonical Ocgtk_gtk.GPad_action_entry *)
module GPad_action_entry = Ocgtk_gtk__GPad_action_entry

(** @canonical Ocgtk_gtk.GPad_controller *)
module GPad_controller = Ocgtk_gtk__GPad_controller

(** @canonical Ocgtk_gtk.GPage_range *)
module GPage_range = Ocgtk_gtk__GPage_range

(** @canonical Ocgtk_gtk.GPage_setup *)
module GPage_setup = Ocgtk_gtk__GPage_setup

(** @canonical Ocgtk_gtk.GPaned *)
module GPaned = Ocgtk_gtk__GPaned

(** @canonical Ocgtk_gtk.GPaper_size *)
module GPaper_size = Ocgtk_gtk__GPaper_size

(** @canonical Ocgtk_gtk.GParam_spec_expression *)
module GParam_spec_expression = Ocgtk_gtk__GParam_spec_expression

(** @canonical Ocgtk_gtk.GPassword_entry *)
module GPassword_entry = Ocgtk_gtk__GPassword_entry

(** @canonical Ocgtk_gtk.GPassword_entry_buffer *)
module GPassword_entry_buffer = Ocgtk_gtk__GPassword_entry_buffer

(** @canonical Ocgtk_gtk.GPicture *)
module GPicture = Ocgtk_gtk__GPicture

(** @canonical Ocgtk_gtk.GPopover *)
module GPopover = Ocgtk_gtk__GPopover

(** @canonical Ocgtk_gtk.GPopover_menu *)
module GPopover_menu = Ocgtk_gtk__GPopover_menu

(** @canonical Ocgtk_gtk.GPopover_menu_bar *)
module GPopover_menu_bar = Ocgtk_gtk__GPopover_menu_bar

(** @canonical Ocgtk_gtk.GPrint_context *)
module GPrint_context = Ocgtk_gtk__GPrint_context

(** @canonical Ocgtk_gtk.GPrint_dialog *)
module GPrint_dialog = Ocgtk_gtk__GPrint_dialog

(** @canonical Ocgtk_gtk.GPrint_operation *)
module GPrint_operation = Ocgtk_gtk__GPrint_operation

(** @canonical Ocgtk_gtk.GPrint_operation_preview *)
module GPrint_operation_preview = Ocgtk_gtk__GPrint_operation_preview

(** @canonical Ocgtk_gtk.GPrint_settings *)
module GPrint_settings = Ocgtk_gtk__GPrint_settings

(** @canonical Ocgtk_gtk.GPrint_setup *)
module GPrint_setup = Ocgtk_gtk__GPrint_setup

(** @canonical Ocgtk_gtk.GProgress_bar *)
module GProgress_bar = Ocgtk_gtk__GProgress_bar

(** @canonical Ocgtk_gtk.GProperty_expression *)
module GProperty_expression = Ocgtk_gtk__GProperty_expression

(** @canonical Ocgtk_gtk.GRange *)
module GRange = Ocgtk_gtk__GRange

(** @canonical Ocgtk_gtk.GRecent_data *)
module GRecent_data = Ocgtk_gtk__GRecent_data

(** @canonical Ocgtk_gtk.GRecent_info *)
module GRecent_info = Ocgtk_gtk__GRecent_info

(** @canonical Ocgtk_gtk.GRecent_manager *)
module GRecent_manager = Ocgtk_gtk__GRecent_manager

(** @canonical Ocgtk_gtk.GRequested_size *)
module GRequested_size = Ocgtk_gtk__GRequested_size

(** @canonical Ocgtk_gtk.GRequisition *)
module GRequisition = Ocgtk_gtk__GRequisition

(** @canonical Ocgtk_gtk.GRevealer *)
module GRevealer = Ocgtk_gtk__GRevealer

(** @canonical Ocgtk_gtk.GRoot *)
module GRoot = Ocgtk_gtk__GRoot

(** @canonical Ocgtk_gtk.GScale *)
module GScale = Ocgtk_gtk__GScale

(** @canonical Ocgtk_gtk.GScale_button *)
module GScale_button = Ocgtk_gtk__GScale_button

(** @canonical Ocgtk_gtk.GScroll_info *)
module GScroll_info = Ocgtk_gtk__GScroll_info

(** @canonical Ocgtk_gtk.GScrollable *)
module GScrollable = Ocgtk_gtk__GScrollable

(** @canonical Ocgtk_gtk.GScrollbar *)
module GScrollbar = Ocgtk_gtk__GScrollbar

(** @canonical Ocgtk_gtk.GScrolled_window *)
module GScrolled_window = Ocgtk_gtk__GScrolled_window

(** @canonical Ocgtk_gtk.GSearch_bar *)
module GSearch_bar = Ocgtk_gtk__GSearch_bar

(** @canonical Ocgtk_gtk.GSearch_entry *)
module GSearch_entry = Ocgtk_gtk__GSearch_entry

(** @canonical Ocgtk_gtk.GSection_model *)
module GSection_model = Ocgtk_gtk__GSection_model

(** @canonical Ocgtk_gtk.GSelection_filter_model *)
module GSelection_filter_model = Ocgtk_gtk__GSelection_filter_model

(** @canonical Ocgtk_gtk.GSelection_model *)
module GSelection_model = Ocgtk_gtk__GSelection_model

(** @canonical Ocgtk_gtk.GSeparator *)
module GSeparator = Ocgtk_gtk__GSeparator

(** @canonical Ocgtk_gtk.GSettings *)
module GSettings = Ocgtk_gtk__GSettings

(** @canonical Ocgtk_gtk.GShortcut *)
module GShortcut = Ocgtk_gtk__GShortcut

(** @canonical Ocgtk_gtk.GShortcut_action *)
module GShortcut_action = Ocgtk_gtk__GShortcut_action

(** @canonical Ocgtk_gtk.GShortcut_controller *)
module GShortcut_controller = Ocgtk_gtk__GShortcut_controller

(** @canonical Ocgtk_gtk.GShortcut_label *)
module GShortcut_label = Ocgtk_gtk__GShortcut_label

(** @canonical Ocgtk_gtk.GShortcut_manager *)
module GShortcut_manager = Ocgtk_gtk__GShortcut_manager

(** @canonical Ocgtk_gtk.GShortcut_trigger *)
module GShortcut_trigger = Ocgtk_gtk__GShortcut_trigger

(** @canonical Ocgtk_gtk.GShortcuts_group *)
module GShortcuts_group = Ocgtk_gtk__GShortcuts_group

(** @canonical Ocgtk_gtk.GShortcuts_section *)
module GShortcuts_section = Ocgtk_gtk__GShortcuts_section

(** @canonical Ocgtk_gtk.GShortcuts_shortcut *)
module GShortcuts_shortcut = Ocgtk_gtk__GShortcuts_shortcut

(** @canonical Ocgtk_gtk.GShortcuts_window *)
module GShortcuts_window = Ocgtk_gtk__GShortcuts_window

(** @canonical Ocgtk_gtk.GSignal_action *)
module GSignal_action = Ocgtk_gtk__GSignal_action

(** @canonical Ocgtk_gtk.GSignal_list_item_factory *)
module GSignal_list_item_factory = Ocgtk_gtk__GSignal_list_item_factory

(** @canonical Ocgtk_gtk.GSingle_selection *)
module GSingle_selection = Ocgtk_gtk__GSingle_selection

(** @canonical Ocgtk_gtk.GSize_group *)
module GSize_group = Ocgtk_gtk__GSize_group

(** @canonical Ocgtk_gtk.GSlice_list_model *)
module GSlice_list_model = Ocgtk_gtk__GSlice_list_model

(** @canonical Ocgtk_gtk.GSnapshot *)
module GSnapshot = Ocgtk_gtk__GSnapshot

(** @canonical Ocgtk_gtk.GSort_list_model *)
module GSort_list_model = Ocgtk_gtk__GSort_list_model

(** @canonical Ocgtk_gtk.GSorter *)
module GSorter = Ocgtk_gtk__GSorter

(** @canonical Ocgtk_gtk.GSpin_button *)
module GSpin_button = Ocgtk_gtk__GSpin_button

(** @canonical Ocgtk_gtk.GSpinner *)
module GSpinner = Ocgtk_gtk__GSpinner

(** @canonical Ocgtk_gtk.GStack *)
module GStack = Ocgtk_gtk__GStack

(** @canonical Ocgtk_gtk.GStack_page *)
module GStack_page = Ocgtk_gtk__GStack_page

(** @canonical Ocgtk_gtk.GStack_sidebar *)
module GStack_sidebar = Ocgtk_gtk__GStack_sidebar

(** @canonical Ocgtk_gtk.GStack_switcher *)
module GStack_switcher = Ocgtk_gtk__GStack_switcher

(** @canonical Ocgtk_gtk.GStatusbar *)
module GStatusbar = Ocgtk_gtk__GStatusbar

(** @canonical Ocgtk_gtk.GString_filter *)
module GString_filter = Ocgtk_gtk__GString_filter

(** @canonical Ocgtk_gtk.GString_list *)
module GString_list = Ocgtk_gtk__GString_list

(** @canonical Ocgtk_gtk.GString_object *)
module GString_object = Ocgtk_gtk__GString_object

(** @canonical Ocgtk_gtk.GString_sorter *)
module GString_sorter = Ocgtk_gtk__GString_sorter

(** @canonical Ocgtk_gtk.GStyle_context *)
module GStyle_context = Ocgtk_gtk__GStyle_context

(** @canonical Ocgtk_gtk.GStyle_provider *)
module GStyle_provider = Ocgtk_gtk__GStyle_provider

(** @canonical Ocgtk_gtk.GSwitch *)
module GSwitch = Ocgtk_gtk__GSwitch

(** @canonical Ocgtk_gtk.GSymbolic_paintable *)
module GSymbolic_paintable = Ocgtk_gtk__GSymbolic_paintable

(** @canonical Ocgtk_gtk.GText *)
module GText = Ocgtk_gtk__GText

(** @canonical Ocgtk_gtk.GText_buffer *)
module GText_buffer = Ocgtk_gtk__GText_buffer

(** @canonical Ocgtk_gtk.GText_buffer_and__text_iter_and__text_mark *)
module GText_buffer_and__text_iter_and__text_mark = Ocgtk_gtk__GText_buffer_and__text_iter_and__text_mark

(** @canonical Ocgtk_gtk.GText_child_anchor *)
module GText_child_anchor = Ocgtk_gtk__GText_child_anchor

(** @canonical Ocgtk_gtk.GText_iter *)
module GText_iter = Ocgtk_gtk__GText_iter

(** @canonical Ocgtk_gtk.GText_mark *)
module GText_mark = Ocgtk_gtk__GText_mark

(** @canonical Ocgtk_gtk.GText_tag *)
module GText_tag = Ocgtk_gtk__GText_tag

(** @canonical Ocgtk_gtk.GText_tag_table *)
module GText_tag_table = Ocgtk_gtk__GText_tag_table

(** @canonical Ocgtk_gtk.GText_view *)
module GText_view = Ocgtk_gtk__GText_view

(** @canonical Ocgtk_gtk.GToggle_button *)
module GToggle_button = Ocgtk_gtk__GToggle_button

(** @canonical Ocgtk_gtk.GTooltip *)
module GTooltip = Ocgtk_gtk__GTooltip

(** @canonical Ocgtk_gtk.GTree_drag_dest *)
module GTree_drag_dest = Ocgtk_gtk__GTree_drag_dest

(** @canonical Ocgtk_gtk.GTree_drag_source *)
module GTree_drag_source = Ocgtk_gtk__GTree_drag_source

(** @canonical Ocgtk_gtk.GTree_expander *)
module GTree_expander = Ocgtk_gtk__GTree_expander

(** @canonical Ocgtk_gtk.GTree_iter *)
module GTree_iter = Ocgtk_gtk__GTree_iter

(** @canonical Ocgtk_gtk.GTree_list_model *)
module GTree_list_model = Ocgtk_gtk__GTree_list_model

(** @canonical Ocgtk_gtk.GTree_list_row *)
module GTree_list_row = Ocgtk_gtk__GTree_list_row

(** @canonical Ocgtk_gtk.GTree_list_row_sorter *)
module GTree_list_row_sorter = Ocgtk_gtk__GTree_list_row_sorter

(** @canonical Ocgtk_gtk.GTree_model *)
module GTree_model = Ocgtk_gtk__GTree_model

(** @canonical Ocgtk_gtk.GTree_model_filter *)
module GTree_model_filter = Ocgtk_gtk__GTree_model_filter

(** @canonical Ocgtk_gtk.GTree_model_sort *)
module GTree_model_sort = Ocgtk_gtk__GTree_model_sort

(** @canonical Ocgtk_gtk.GTree_path *)
module GTree_path = Ocgtk_gtk__GTree_path

(** @canonical Ocgtk_gtk.GTree_row_reference *)
module GTree_row_reference = Ocgtk_gtk__GTree_row_reference

(** @canonical Ocgtk_gtk.GTree_selection *)
module GTree_selection = Ocgtk_gtk__GTree_selection

(** @canonical Ocgtk_gtk.GTree_selection_and__tree_view *)
module GTree_selection_and__tree_view = Ocgtk_gtk__GTree_selection_and__tree_view

(** @canonical Ocgtk_gtk.GTree_sortable *)
module GTree_sortable = Ocgtk_gtk__GTree_sortable

(** @canonical Ocgtk_gtk.GTree_store *)
module GTree_store = Ocgtk_gtk__GTree_store

(** @canonical Ocgtk_gtk.GTree_view *)
module GTree_view = Ocgtk_gtk__GTree_view

(** @canonical Ocgtk_gtk.GTree_view_column *)
module GTree_view_column = Ocgtk_gtk__GTree_view_column

(** @canonical Ocgtk_gtk.GUri_launcher *)
module GUri_launcher = Ocgtk_gtk__GUri_launcher

(** @canonical Ocgtk_gtk.GVersion *)
module GVersion = Ocgtk_gtk__GVersion

(** @canonical Ocgtk_gtk.GVideo *)
module GVideo = Ocgtk_gtk__GVideo

(** @canonical Ocgtk_gtk.GViewport *)
module GViewport = Ocgtk_gtk__GViewport

(** @canonical Ocgtk_gtk.GVolume_button *)
module GVolume_button = Ocgtk_gtk__GVolume_button

(** @canonical Ocgtk_gtk.GWidget *)
module GWidget = Ocgtk_gtk__GWidget

(** @canonical Ocgtk_gtk.GWidget_paintable *)
module GWidget_paintable = Ocgtk_gtk__GWidget_paintable

(** @canonical Ocgtk_gtk.GWindow *)
module GWindow = Ocgtk_gtk__GWindow

(** @canonical Ocgtk_gtk.GWindow_controls *)
module GWindow_controls = Ocgtk_gtk__GWindow_controls

(** @canonical Ocgtk_gtk.GWindow_group *)
module GWindow_group = Ocgtk_gtk__GWindow_group

(** @canonical Ocgtk_gtk.GWindow_handle *)
module GWindow_handle = Ocgtk_gtk__GWindow_handle

(** @canonical Ocgtk_gtk.Gdk_enums *)
module Gdk_enums = Ocgtk_gtk__Gdk_enums

(** @canonical Ocgtk_gtk.Gdkpixbuf_enums *)
module Gdkpixbuf_enums = Ocgtk_gtk__Gdkpixbuf_enums

(** @canonical Ocgtk_gtk.Gesture *)
module Gesture = Ocgtk_gtk__Gesture

(** @canonical Ocgtk_gtk.Gesture_click *)
module Gesture_click = Ocgtk_gtk__Gesture_click

(** @canonical Ocgtk_gtk.Gesture_drag *)
module Gesture_drag = Ocgtk_gtk__Gesture_drag

(** @canonical Ocgtk_gtk.Gesture_long_press *)
module Gesture_long_press = Ocgtk_gtk__Gesture_long_press

(** @canonical Ocgtk_gtk.Gesture_pan *)
module Gesture_pan = Ocgtk_gtk__Gesture_pan

(** @canonical Ocgtk_gtk.Gesture_rotate *)
module Gesture_rotate = Ocgtk_gtk__Gesture_rotate

(** @canonical Ocgtk_gtk.Gesture_single *)
module Gesture_single = Ocgtk_gtk__Gesture_single

(** @canonical Ocgtk_gtk.Gesture_stylus *)
module Gesture_stylus = Ocgtk_gtk__Gesture_stylus

(** @canonical Ocgtk_gtk.Gesture_swipe *)
module Gesture_swipe = Ocgtk_gtk__Gesture_swipe

(** @canonical Ocgtk_gtk.Gesture_zoom *)
module Gesture_zoom = Ocgtk_gtk__Gesture_zoom

(** @canonical Ocgtk_gtk.Gl_area *)
module Gl_area = Ocgtk_gtk__Gl_area

(** @canonical Ocgtk_gtk.Gobject_enums *)
module Gobject_enums = Ocgtk_gtk__Gobject_enums

(** @canonical Ocgtk_gtk.Graphene_enums *)
module Graphene_enums = Ocgtk_gtk__Graphene_enums

(** @canonical Ocgtk_gtk.Graphics_offload *)
module Graphics_offload = Ocgtk_gtk__Graphics_offload

(** @canonical Ocgtk_gtk.Grid *)
module Grid = Ocgtk_gtk__Grid

(** @canonical Ocgtk_gtk.Grid_layout *)
module Grid_layout = Ocgtk_gtk__Grid_layout

(** @canonical Ocgtk_gtk.Grid_layout_child *)
module Grid_layout_child = Ocgtk_gtk__Grid_layout_child

(** @canonical Ocgtk_gtk.Grid_view *)
module Grid_view = Ocgtk_gtk__Grid_view

(** @canonical Ocgtk_gtk.Gsk_enums *)
module Gsk_enums = Ocgtk_gtk__Gsk_enums

(** @canonical Ocgtk_gtk.Gtk *)
module Gtk = Ocgtk_gtk__Gtk

(** @canonical Ocgtk_gtk.Gtk_enums *)
module Gtk_enums = Ocgtk_gtk__Gtk_enums

(** @canonical Ocgtk_gtk.Header_bar *)
module Header_bar = Ocgtk_gtk__Header_bar

(** @canonical Ocgtk_gtk.Icon_paintable *)
module Icon_paintable = Ocgtk_gtk__Icon_paintable

(** @canonical Ocgtk_gtk.Icon_theme *)
module Icon_theme = Ocgtk_gtk__Icon_theme

(** @canonical Ocgtk_gtk.Icon_view *)
module Icon_view = Ocgtk_gtk__Icon_view

(** @canonical Ocgtk_gtk.Im_context *)
module Im_context = Ocgtk_gtk__Im_context

(** @canonical Ocgtk_gtk.Im_context_simple *)
module Im_context_simple = Ocgtk_gtk__Im_context_simple

(** @canonical Ocgtk_gtk.Im_multicontext *)
module Im_multicontext = Ocgtk_gtk__Im_multicontext

(** @canonical Ocgtk_gtk.Image *)
module Image = Ocgtk_gtk__Image

(** @canonical Ocgtk_gtk.Info_bar *)
module Info_bar = Ocgtk_gtk__Info_bar

(** @canonical Ocgtk_gtk.Inscription *)
module Inscription = Ocgtk_gtk__Inscription

(** @canonical Ocgtk_gtk.Keyval_trigger *)
module Keyval_trigger = Ocgtk_gtk__Keyval_trigger

(** @canonical Ocgtk_gtk.Label *)
module Label = Ocgtk_gtk__Label

(** @canonical Ocgtk_gtk.Level_bar *)
module Level_bar = Ocgtk_gtk__Level_bar

(** @canonical Ocgtk_gtk.Link_button *)
module Link_button = Ocgtk_gtk__Link_button

(** @canonical Ocgtk_gtk.List_base *)
module List_base = Ocgtk_gtk__List_base

(** @canonical Ocgtk_gtk.List_box *)
module List_box = Ocgtk_gtk__List_box

(** @canonical Ocgtk_gtk.List_box_row *)
module List_box_row = Ocgtk_gtk__List_box_row

(** @canonical Ocgtk_gtk.List_header *)
module List_header = Ocgtk_gtk__List_header

(** @canonical Ocgtk_gtk.List_item *)
module List_item = Ocgtk_gtk__List_item

(** @canonical Ocgtk_gtk.List_item_factory *)
module List_item_factory = Ocgtk_gtk__List_item_factory

(** @canonical Ocgtk_gtk.List_store *)
module List_store = Ocgtk_gtk__List_store

(** @canonical Ocgtk_gtk.List_view *)
module List_view = Ocgtk_gtk__List_view

(** @canonical Ocgtk_gtk.Lock_button *)
module Lock_button = Ocgtk_gtk__Lock_button

(** @canonical Ocgtk_gtk.Map_list_model *)
module Map_list_model = Ocgtk_gtk__Map_list_model

(** @canonical Ocgtk_gtk.Media_controls *)
module Media_controls = Ocgtk_gtk__Media_controls

(** @canonical Ocgtk_gtk.Media_file *)
module Media_file = Ocgtk_gtk__Media_file

(** @canonical Ocgtk_gtk.Media_stream *)
module Media_stream = Ocgtk_gtk__Media_stream

(** @canonical Ocgtk_gtk.Menu_button *)
module Menu_button = Ocgtk_gtk__Menu_button

(** @canonical Ocgtk_gtk.Message_dialog *)
module Message_dialog = Ocgtk_gtk__Message_dialog

(** @canonical Ocgtk_gtk.Mnemonic_action *)
module Mnemonic_action = Ocgtk_gtk__Mnemonic_action

(** @canonical Ocgtk_gtk.Mnemonic_trigger *)
module Mnemonic_trigger = Ocgtk_gtk__Mnemonic_trigger

(** @canonical Ocgtk_gtk.Mount_operation *)
module Mount_operation = Ocgtk_gtk__Mount_operation

(** @canonical Ocgtk_gtk.Multi_filter *)
module Multi_filter = Ocgtk_gtk__Multi_filter

(** @canonical Ocgtk_gtk.Multi_selection *)
module Multi_selection = Ocgtk_gtk__Multi_selection

(** @canonical Ocgtk_gtk.Multi_sorter *)
module Multi_sorter = Ocgtk_gtk__Multi_sorter

(** @canonical Ocgtk_gtk.Named_action *)
module Named_action = Ocgtk_gtk__Named_action

(** @canonical Ocgtk_gtk.Native *)
module Native = Ocgtk_gtk__Native

(** @canonical Ocgtk_gtk.Native_dialog *)
module Native_dialog = Ocgtk_gtk__Native_dialog

(** @canonical Ocgtk_gtk.Never_trigger *)
module Never_trigger = Ocgtk_gtk__Never_trigger

(** @canonical Ocgtk_gtk.No_selection *)
module No_selection = Ocgtk_gtk__No_selection

(** @canonical Ocgtk_gtk.Notebook *)
module Notebook = Ocgtk_gtk__Notebook

(** @canonical Ocgtk_gtk.Notebook_page *)
module Notebook_page = Ocgtk_gtk__Notebook_page

(** @canonical Ocgtk_gtk.Nothing_action *)
module Nothing_action = Ocgtk_gtk__Nothing_action

(** @canonical Ocgtk_gtk.Numeric_sorter *)
module Numeric_sorter = Ocgtk_gtk__Numeric_sorter

(** @canonical Ocgtk_gtk.Object_expression *)
module Object_expression = Ocgtk_gtk__Object_expression

(** @canonical Ocgtk_gtk.Orientable *)
module Orientable = Ocgtk_gtk__Orientable

(** @canonical Ocgtk_gtk.Overlay *)
module Overlay = Ocgtk_gtk__Overlay

(** @canonical Ocgtk_gtk.Overlay_layout *)
module Overlay_layout = Ocgtk_gtk__Overlay_layout

(** @canonical Ocgtk_gtk.Overlay_layout_child *)
module Overlay_layout_child = Ocgtk_gtk__Overlay_layout_child

(** @canonical Ocgtk_gtk.Pad_action_entry *)
module Pad_action_entry = Ocgtk_gtk__Pad_action_entry

(** @canonical Ocgtk_gtk.Pad_controller *)
module Pad_controller = Ocgtk_gtk__Pad_controller

(** @canonical Ocgtk_gtk.Page_range *)
module Page_range = Ocgtk_gtk__Page_range

(** @canonical Ocgtk_gtk.Page_setup *)
module Page_setup = Ocgtk_gtk__Page_setup

(** @canonical Ocgtk_gtk.Paned *)
module Paned = Ocgtk_gtk__Paned

(** @canonical Ocgtk_gtk.Pango_enums *)
module Pango_enums = Ocgtk_gtk__Pango_enums

(** @canonical Ocgtk_gtk.Paper_size *)
module Paper_size = Ocgtk_gtk__Paper_size

(** @canonical Ocgtk_gtk.Param_spec_expression *)
module Param_spec_expression = Ocgtk_gtk__Param_spec_expression

(** @canonical Ocgtk_gtk.Password_entry *)
module Password_entry = Ocgtk_gtk__Password_entry

(** @canonical Ocgtk_gtk.Password_entry_buffer *)
module Password_entry_buffer = Ocgtk_gtk__Password_entry_buffer

(** @canonical Ocgtk_gtk.Picture *)
module Picture = Ocgtk_gtk__Picture

(** @canonical Ocgtk_gtk.Popover *)
module Popover = Ocgtk_gtk__Popover

(** @canonical Ocgtk_gtk.Popover_menu *)
module Popover_menu = Ocgtk_gtk__Popover_menu

(** @canonical Ocgtk_gtk.Popover_menu_bar *)
module Popover_menu_bar = Ocgtk_gtk__Popover_menu_bar

(** @canonical Ocgtk_gtk.Print_context *)
module Print_context = Ocgtk_gtk__Print_context

(** @canonical Ocgtk_gtk.Print_dialog *)
module Print_dialog = Ocgtk_gtk__Print_dialog

(** @canonical Ocgtk_gtk.Print_operation *)
module Print_operation = Ocgtk_gtk__Print_operation

(** @canonical Ocgtk_gtk.Print_operation_preview *)
module Print_operation_preview = Ocgtk_gtk__Print_operation_preview

(** @canonical Ocgtk_gtk.Print_settings *)
module Print_settings = Ocgtk_gtk__Print_settings

(** @canonical Ocgtk_gtk.Print_setup *)
module Print_setup = Ocgtk_gtk__Print_setup

(** @canonical Ocgtk_gtk.Progress_bar *)
module Progress_bar = Ocgtk_gtk__Progress_bar

(** @canonical Ocgtk_gtk.Property_expression *)
module Property_expression = Ocgtk_gtk__Property_expression

(** @canonical Ocgtk_gtk.Range *)
module Range = Ocgtk_gtk__Range

(** @canonical Ocgtk_gtk.Recent_data *)
module Recent_data = Ocgtk_gtk__Recent_data

(** @canonical Ocgtk_gtk.Recent_info *)
module Recent_info = Ocgtk_gtk__Recent_info

(** @canonical Ocgtk_gtk.Recent_manager *)
module Recent_manager = Ocgtk_gtk__Recent_manager

(** @canonical Ocgtk_gtk.Requested_size *)
module Requested_size = Ocgtk_gtk__Requested_size

(** @canonical Ocgtk_gtk.Requisition *)
module Requisition = Ocgtk_gtk__Requisition

(** @canonical Ocgtk_gtk.Revealer *)
module Revealer = Ocgtk_gtk__Revealer

(** @canonical Ocgtk_gtk.Scale *)
module Scale = Ocgtk_gtk__Scale

(** @canonical Ocgtk_gtk.Scale_button *)
module Scale_button = Ocgtk_gtk__Scale_button

(** @canonical Ocgtk_gtk.Scroll_info *)
module Scroll_info = Ocgtk_gtk__Scroll_info

(** @canonical Ocgtk_gtk.Scrollable *)
module Scrollable = Ocgtk_gtk__Scrollable

(** @canonical Ocgtk_gtk.Scrollbar *)
module Scrollbar = Ocgtk_gtk__Scrollbar

(** @canonical Ocgtk_gtk.Scrolled_window *)
module Scrolled_window = Ocgtk_gtk__Scrolled_window

(** @canonical Ocgtk_gtk.Search_bar *)
module Search_bar = Ocgtk_gtk__Search_bar

(** @canonical Ocgtk_gtk.Search_entry *)
module Search_entry = Ocgtk_gtk__Search_entry

(** @canonical Ocgtk_gtk.Section_model *)
module Section_model = Ocgtk_gtk__Section_model

(** @canonical Ocgtk_gtk.Selection_filter_model *)
module Selection_filter_model = Ocgtk_gtk__Selection_filter_model

(** @canonical Ocgtk_gtk.Selection_model *)
module Selection_model = Ocgtk_gtk__Selection_model

(** @canonical Ocgtk_gtk.Separator *)
module Separator = Ocgtk_gtk__Separator

(** @canonical Ocgtk_gtk.Settings *)
module Settings = Ocgtk_gtk__Settings

(** @canonical Ocgtk_gtk.Shortcut *)
module Shortcut = Ocgtk_gtk__Shortcut

(** @canonical Ocgtk_gtk.Shortcut_action *)
module Shortcut_action = Ocgtk_gtk__Shortcut_action

(** @canonical Ocgtk_gtk.Shortcut_controller *)
module Shortcut_controller = Ocgtk_gtk__Shortcut_controller

(** @canonical Ocgtk_gtk.Shortcut_label *)
module Shortcut_label = Ocgtk_gtk__Shortcut_label

(** @canonical Ocgtk_gtk.Shortcut_manager *)
module Shortcut_manager = Ocgtk_gtk__Shortcut_manager

(** @canonical Ocgtk_gtk.Shortcut_trigger *)
module Shortcut_trigger = Ocgtk_gtk__Shortcut_trigger

(** @canonical Ocgtk_gtk.Shortcuts_group *)
module Shortcuts_group = Ocgtk_gtk__Shortcuts_group

(** @canonical Ocgtk_gtk.Shortcuts_section *)
module Shortcuts_section = Ocgtk_gtk__Shortcuts_section

(** @canonical Ocgtk_gtk.Shortcuts_shortcut *)
module Shortcuts_shortcut = Ocgtk_gtk__Shortcuts_shortcut

(** @canonical Ocgtk_gtk.Shortcuts_window *)
module Shortcuts_window = Ocgtk_gtk__Shortcuts_window

(** @canonical Ocgtk_gtk.Signal_action *)
module Signal_action = Ocgtk_gtk__Signal_action

(** @canonical Ocgtk_gtk.Signal_list_item_factory *)
module Signal_list_item_factory = Ocgtk_gtk__Signal_list_item_factory

(** @canonical Ocgtk_gtk.Single_selection *)
module Single_selection = Ocgtk_gtk__Single_selection

(** @canonical Ocgtk_gtk.Size_group *)
module Size_group = Ocgtk_gtk__Size_group

(** @canonical Ocgtk_gtk.Slice_list_model *)
module Slice_list_model = Ocgtk_gtk__Slice_list_model

(** @canonical Ocgtk_gtk.Snapshot *)
module Snapshot = Ocgtk_gtk__Snapshot

(** @canonical Ocgtk_gtk.Sort_list_model *)
module Sort_list_model = Ocgtk_gtk__Sort_list_model

(** @canonical Ocgtk_gtk.Sorter *)
module Sorter = Ocgtk_gtk__Sorter

(** @canonical Ocgtk_gtk.Spin_button *)
module Spin_button = Ocgtk_gtk__Spin_button

(** @canonical Ocgtk_gtk.Spinner *)
module Spinner = Ocgtk_gtk__Spinner

(** @canonical Ocgtk_gtk.Stack *)
module Stack = Ocgtk_gtk__Stack

(** @canonical Ocgtk_gtk.Stack_page *)
module Stack_page = Ocgtk_gtk__Stack_page

(** @canonical Ocgtk_gtk.Stack_sidebar *)
module Stack_sidebar = Ocgtk_gtk__Stack_sidebar

(** @canonical Ocgtk_gtk.Stack_switcher *)
module Stack_switcher = Ocgtk_gtk__Stack_switcher

(** @canonical Ocgtk_gtk.Statusbar *)
module Statusbar = Ocgtk_gtk__Statusbar

(** @canonical Ocgtk_gtk.String_filter *)
module String_filter = Ocgtk_gtk__String_filter

(** @canonical Ocgtk_gtk.String_list *)
module String_list = Ocgtk_gtk__String_list

(** @canonical Ocgtk_gtk.String_object *)
module String_object = Ocgtk_gtk__String_object

(** @canonical Ocgtk_gtk.String_sorter *)
module String_sorter = Ocgtk_gtk__String_sorter

(** @canonical Ocgtk_gtk.Style_context *)
module Style_context = Ocgtk_gtk__Style_context

(** @canonical Ocgtk_gtk.Style_provider *)
module Style_provider = Ocgtk_gtk__Style_provider

(** @canonical Ocgtk_gtk.Switch *)
module Switch = Ocgtk_gtk__Switch

(** @canonical Ocgtk_gtk.Symbolic_paintable *)
module Symbolic_paintable = Ocgtk_gtk__Symbolic_paintable

(** @canonical Ocgtk_gtk.Text *)
module Text = Ocgtk_gtk__Text

(** @canonical Ocgtk_gtk.Text_buffer_and__text_iter_and__text_mark *)
module Text_buffer_and__text_iter_and__text_mark = Ocgtk_gtk__Text_buffer_and__text_iter_and__text_mark

(** @canonical Ocgtk_gtk.Text_child_anchor *)
module Text_child_anchor = Ocgtk_gtk__Text_child_anchor

(** @canonical Ocgtk_gtk.Text_tag *)
module Text_tag = Ocgtk_gtk__Text_tag

(** @canonical Ocgtk_gtk.Text_tag_table *)
module Text_tag_table = Ocgtk_gtk__Text_tag_table

(** @canonical Ocgtk_gtk.Text_view *)
module Text_view = Ocgtk_gtk__Text_view

(** @canonical Ocgtk_gtk.Toggle_button *)
module Toggle_button = Ocgtk_gtk__Toggle_button

(** @canonical Ocgtk_gtk.Tooltip *)
module Tooltip = Ocgtk_gtk__Tooltip

(** @canonical Ocgtk_gtk.Tree_drag_dest *)
module Tree_drag_dest = Ocgtk_gtk__Tree_drag_dest

(** @canonical Ocgtk_gtk.Tree_drag_source *)
module Tree_drag_source = Ocgtk_gtk__Tree_drag_source

(** @canonical Ocgtk_gtk.Tree_expander *)
module Tree_expander = Ocgtk_gtk__Tree_expander

(** @canonical Ocgtk_gtk.Tree_iter *)
module Tree_iter = Ocgtk_gtk__Tree_iter

(** @canonical Ocgtk_gtk.Tree_list_model *)
module Tree_list_model = Ocgtk_gtk__Tree_list_model

(** @canonical Ocgtk_gtk.Tree_list_row *)
module Tree_list_row = Ocgtk_gtk__Tree_list_row

(** @canonical Ocgtk_gtk.Tree_list_row_sorter *)
module Tree_list_row_sorter = Ocgtk_gtk__Tree_list_row_sorter

(** @canonical Ocgtk_gtk.Tree_model *)
module Tree_model = Ocgtk_gtk__Tree_model

(** @canonical Ocgtk_gtk.Tree_model_filter *)
module Tree_model_filter = Ocgtk_gtk__Tree_model_filter

(** @canonical Ocgtk_gtk.Tree_model_sort *)
module Tree_model_sort = Ocgtk_gtk__Tree_model_sort

(** @canonical Ocgtk_gtk.Tree_path *)
module Tree_path = Ocgtk_gtk__Tree_path

(** @canonical Ocgtk_gtk.Tree_row_reference *)
module Tree_row_reference = Ocgtk_gtk__Tree_row_reference

(** @canonical Ocgtk_gtk.Tree_selection_and__tree_view *)
module Tree_selection_and__tree_view = Ocgtk_gtk__Tree_selection_and__tree_view

(** @canonical Ocgtk_gtk.Tree_sortable *)
module Tree_sortable = Ocgtk_gtk__Tree_sortable

(** @canonical Ocgtk_gtk.Tree_store *)
module Tree_store = Ocgtk_gtk__Tree_store

(** @canonical Ocgtk_gtk.Tree_view_column *)
module Tree_view_column = Ocgtk_gtk__Tree_view_column

(** @canonical Ocgtk_gtk.Uri_launcher *)
module Uri_launcher = Ocgtk_gtk__Uri_launcher

(** @canonical Ocgtk_gtk.Video *)
module Video = Ocgtk_gtk__Video

(** @canonical Ocgtk_gtk.Viewport *)
module Viewport = Ocgtk_gtk__Viewport

(** @canonical Ocgtk_gtk.Volume_button *)
module Volume_button = Ocgtk_gtk__Volume_button

(** @canonical Ocgtk_gtk.Widget_paintable *)
module Widget_paintable = Ocgtk_gtk__Widget_paintable

(** @canonical Ocgtk_gtk.Window_controls *)
module Window_controls = Ocgtk_gtk__Window_controls

(** @canonical Ocgtk_gtk.Window_handle *)
module Window_handle = Ocgtk_gtk__Window_handle

module Ocgtk_gtk__ = struct end
[@@deprecated "this module is shadowed"]