summaryrefslogtreecommitdiff
path: root/doc/gladeui-sections.txt
blob: a06e8019f4fc3cbd883149f154d127b5154cff03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
<SECTION>
<FILE>glade-widget</FILE>
<TITLE>GladeWidget</TITLE>
GladeWidget
glade_widget_get_from_gobject
glade_widget_add_child
glade_widget_remove_child
glade_widget_replace
glade_widget_rebuild
glade_widget_read
glade_widget_write
glade_widget_read_child
glade_widget_write_child
glade_widget_write_placeholder
glade_widget_write_special_child_prop
glade_widget_create_editor_property
glade_widget_set_child_type_from_node
glade_widget_dup
glade_widget_copy_signals
glade_widget_copy_properties
glade_widget_set_packing_properties
glade_widget_get_property
glade_widget_get_pack_property
glade_widget_dup_properties
glade_widget_remove_property
glade_widget_show
glade_widget_hide
glade_widget_add_signal_handler
glade_widget_remove_signal_handler
glade_widget_change_signal_handler
glade_widget_list_signal_handlers
glade_widget_has_decendant
glade_widget_event
glade_widget_placeholder_relation
glade_widget_get_action
glade_widget_get_pack_action
glade_widget_set_action_visible
glade_widget_set_action_sensitive
glade_widget_set_pack_action_sensitive
glade_widget_add_prop_ref
glade_widget_remove_prop_ref
glade_widget_object_set_property
glade_widget_object_get_property
glade_widget_child_set_property
glade_widget_child_get_property
glade_widget_property_get
glade_widget_property_set
glade_widget_pack_property_get
glade_widget_pack_property_set
glade_widget_property_reset
glade_widget_pack_property_reset
glade_widget_property_default
glade_widget_property_original_default
glade_widget_pack_property_default
glade_widget_property_set_sensitive
glade_widget_pack_property_set_sensitive
glade_widget_property_set_enabled
glade_widget_pack_property_set_enabled
glade_widget_property_set_save_always
glade_widget_pack_property_set_save_always
glade_widget_property_string
glade_widget_pack_property_string
glade_widget_set_name
glade_widget_get_name
glade_widget_set_internal
glade_widget_get_internal
glade_widget_get_object
glade_widget_set_project
glade_widget_get_project
glade_widget_get_adaptor
glade_widget_get_parent
glade_widget_set_parent
glade_widget_superuser
glade_widget_push_superuser
glade_widget_pop_superuser
glade_widget_add_verify
glade_widget_depends
glade_widget_ensure_name
glade_widget_find_child
glade_widget_generate_path_name
glade_widget_get_actions
glade_widget_get_children
glade_widget_get_device_from_event
glade_widget_get_display_name
glade_widget_set_is_composite
glade_widget_get_is_composite
glade_widget_get_locker
glade_widget_get_pack_actions
glade_widget_get_packing_properties
glade_widget_get_parentless_reffed_widgets
glade_widget_get_parentless_widget_ref
glade_widget_get_properties
glade_widget_get_signal_list
glade_widget_get_signal_model
glade_widget_get_toplevel
glade_widget_has_name
glade_widget_has_prop_refs
glade_widget_set_in_project
glade_widget_in_project
glade_widget_is_ancestor
glade_widget_list_locked_widgets
glade_widget_list_prop_refs
glade_widget_lock
glade_widget_unlock
glade_widget_set_pack_action_visible
glade_widget_set_support_warning
glade_widget_support_changed
glade_widget_support_warning
glade_widget_verify
glade_widget_write_signals
IS_GLADE_WIDGET_EVENT
GLADE_UNNAMED_PREFIX
<SUBSECTION Standard>
GLADE_WIDGET
GLADE_IS_WIDGET
GLADE_TYPE_WIDGET
glade_widget_get_type
GLADE_WIDGET_CLASS
GLADE_IS_WIDGET_CLASS
GLADE_WIDGET_GET_CLASS
GladeWidgetClass
GladeWidgetPrivate
</SECTION>

<SECTION>
<FILE>glade-init</FILE>
<TITLE>Initializing the library</TITLE>
glade_init
<SUBSECTION Standard>
GLADE_TYPE_DEBUG_FLAG
glade_debug_flag_get_type
GLADE_TYPE_CURSOR_TYPE
glade_cursor_type_get_type
GLADE_MAKE_EPROP
GLADE_TYPE_EPROP_CHECK
glade_eprop_check_get_type
_GladeDrag
_GladeDragInterface
GLADE_DRAG
GLADE_DRAG_GET_INTERFACE
GLADE_IS_DRAG
GLADE_TYPE_DRAG
GLADE_DND_INFO_DATA
GLADE_DND_TARGET_DATA
</SECTION>

<SECTION>
<FILE>glade-object-stub</FILE>
<TITLE>GladeObjectStub</TITLE>
GladeObjectStub
<SUBSECTION Standard>
GLADE_IS_OBJECT_STUB
GLADE_IS_OBJECT_STUB_CLASS
GLADE_OBJECT_STUB
GLADE_OBJECT_STUB_CLASS
GLADE_OBJECT_STUB_GET_CLASS
GLADE_TYPE_OBJECT_STUB
glade_object_stub_get_type
GladeObjectStubClass
GladeObjectStubPrivate
</SECTION>

<SECTION>
<FILE>glade-signal-model</FILE>
<TITLE>GladeSignalModel</TITLE>
GladeSignalModel
GladeSignalModelColumns
glade_signal_model_new
<SUBSECTION Standard>
GladeSignalModelClass
GladeSignalModelPrivate
GLADE_TYPE_SIGNAL_MODEL
GLADE_TYPE_SIGNAL_MODEL_COLUMNS
GLADE_IS_SIGNAL_MODEL
GLADE_IS_SIGNAL_MODEL_CLASS
GLADE_SIGNAL_MODEL
GLADE_SIGNAL_MODEL_CLASS
GLADE_SIGNAL_MODEL_GET_CLASS
glade_signal_model_columns_get_type
glade_signal_model_get_type
</SECTION>

<SECTION>
<FILE>glade-adaptor-chooser</FILE>
<TITLE>GladeAdaptorChooser</TITLE>
GladeAdaptorChooser
GladeAdaptorChooserWidget
glade_adaptor_chooser_new
glade_adaptor_chooser_get_project
glade_adaptor_chooser_set_project
<SUBSECTION Standard>
GLADE_ADAPTOR_CHOOSER_WIDGET
GLADE_ADAPTOR_CHOOSER_WIDGET_CLASS
GLADE_ADAPTOR_CHOOSER_WIDGET_GET_CLASS
GLADE_IS_ADAPTOR_CHOOSER_WIDGET
GLADE_IS_ADAPTOR_CHOOSER_WIDGET_CLASS
GLADE_TYPE_ADAPTOR_CHOOSER
GLADE_TYPE_ADAPTOR_CHOOSER_WIDGET
GladeAdaptorChooserWidgetClass
_GladeAdaptorChooserWidget
_GladeAdaptorChooserWidgetClass
_GladeAdaptorChooserWidgetFlags
_GladeAdaptorChooserWidgetPrivate
</SECTION>

<SECTION>
<FILE>glade-widget-adaptor</FILE>
<TITLE>GladeWidgetAdaptor</TITLE>
GladeCreateReason
GWA_IS_TOPLEVEL
GWA_USE_PLACEHOLDERS
GWA_DEFAULT_WIDTH
GWA_DEFAULT_HEIGHT
GWA_GET_CLASS
GWA_GET_OCLASS
GWA_SCROLLABLE_WIDGET
GLADE_VALID_CREATE_REASON
GLADE_TYPE_CREATE_REASON
GLADE_WIDGET_ADAPTOR_INSTANTIABLE_PREFIX
GladeWidgetAdaptor
GladeActionActivateFunc
GladeActionSubmenuFunc
GladeAddChildFunc
GladeAddChildVerifyFunc
GladeChildActionActivateFunc
GladeChildGetPropertyFunc
GladeChildSetPropertyFunc
GladeChildVerifyPropertyFunc
GladeConstructObjectFunc
GladeCreateEditableFunc
GladeCreateEPropFunc
GladeCreateWidgetFunc
GladeDependsFunc
GladeDestroyObjectFunc
GladeGetChildrenFunc
GladeGetInternalFunc
GladeGetPropertyFunc
GladePostCreateFunc
GladeReadWidgetFunc
GladeRemoveChildFunc
GladeReplaceChildFunc
GladeSetPropertyFunc
GladeStringFromValueFunc
GladeVerifyPropertyFunc
GladeWriteWidgetFunc
glade_widget_adaptor_create_widget
glade_widget_adaptor_create_eprop
glade_widget_adaptor_from_pspec
glade_widget_adaptor_from_catalog
glade_widget_adaptor_register
glade_widget_adaptor_create_internal
glade_widget_adaptor_create_widget_real
glade_widget_adaptor_get_by_name
glade_widget_adaptor_get_by_type
glade_widget_adaptor_get_property_def
glade_widget_adaptor_get_pack_property_def
glade_widget_adaptor_default_params
glade_widget_adaptor_post_create
glade_widget_adaptor_get_internal_child
glade_widget_adaptor_set_property
glade_widget_adaptor_get_property
glade_widget_adaptor_verify_property
glade_widget_adaptor_add
glade_widget_adaptor_remove
glade_widget_adaptor_get_children
glade_widget_adaptor_has_child
glade_widget_adaptor_child_set_property
glade_widget_adaptor_child_get_property
glade_widget_adaptor_child_verify_property
glade_widget_adaptor_replace_child
glade_widget_adaptor_read_child
glade_widget_adaptor_read_widget
glade_widget_adaptor_write_child
glade_widget_adaptor_write_widget
glade_widget_adaptor_query
glade_widget_adaptor_get_packing_default
glade_widget_adaptor_is_container
glade_widget_adaptor_action_add
glade_widget_adaptor_pack_action_add
glade_widget_adaptor_action_remove
glade_widget_adaptor_pack_action_remove
glade_widget_adaptor_pack_actions_new
glade_widget_adaptor_action_activate
glade_widget_adaptor_child_action_activate
glade_widget_adaptor_string_from_value
glade_widget_adaptor_action_submenu
glade_widget_adaptor_actions_new
glade_widget_adaptor_add_verify
glade_widget_adaptor_construct_object
glade_widget_adaptor_create_editable
glade_widget_adaptor_create_eprop_by_name
glade_widget_adaptor_depends
glade_widget_adaptor_destroy_object
glade_widget_adaptor_get_book
glade_widget_adaptor_get_catalog
glade_widget_adaptor_get_display_name
glade_widget_adaptor_get_generic_name
glade_widget_adaptor_get_icon_name
glade_widget_adaptor_get_missing_icon
glade_widget_adaptor_get_name
glade_widget_adaptor_get_object_type
glade_widget_adaptor_get_packing_props
glade_widget_adaptor_get_parent_adaptor
glade_widget_adaptor_get_properties
glade_widget_adaptor_get_signal_def
glade_widget_adaptor_get_signals
glade_widget_adaptor_get_title
glade_widget_adaptor_has_internal_children
glade_widget_adaptor_list_adaptors
glade_widget_adaptor_write_widget_after
<SUBSECTION Standard>
GLADE_WIDGET_ADAPTOR
GLADE_IS_WIDGET_ADAPTOR
GLADE_TYPE_WIDGET_ADAPTOR
glade_widget_adaptor_get_type
glade_create_reason_get_type
GLADE_WIDGET_ADAPTOR_CLASS
GLADE_IS_WIDGET_ADAPTOR_CLASS
GLADE_WIDGET_ADAPTOR_GET_CLASS
GladeWidgetAdaptorClass
GladeWidgetAdaptorPrivate
</SECTION>

<SECTION>
<FILE>glade-catalog</FILE>
<TITLE>GladeCatalog</TITLE>
GladeCatalog
GladeCatalogInitFunc
GladeTargetableVersion
GladeWidgetGroup
glade_catalog_load_all
glade_catalog_destroy_all
glade_catalog_add_path
glade_catalog_remove_path
glade_catalog_get_adaptors
glade_catalog_is_loaded
glade_catalog_get_book
glade_catalog_get_domain
glade_catalog_get_extra_paths
glade_catalog_get_icon_prefix
glade_catalog_get_major_version
glade_catalog_get_minor_version
glade_catalog_get_name
glade_catalog_get_prefix
glade_catalog_get_targets
glade_catalog_get_widget_groups
glade_widget_group_get_adaptors
glade_widget_group_get_expanded
glade_widget_group_get_name
glade_widget_group_get_title
<SUBSECTION Standard>
GLADE_CATALOG
GLADE_IS_CATALOG
GLADE_IS_WIDGET_GROUP
GLADE_WIDGET_GROUP
</SECTION>

<SECTION>
<FILE>glade-design-view</FILE>
<TITLE>GladeDesignView</TITLE>
GladeDesignView
glade_design_view_new
glade_design_view_get_project
glade_design_view_get_from_project
<SUBSECTION Standard>
GLADE_DESIGN_VIEW
GLADE_IS_DESIGN_VIEW
GLADE_TYPE_DESIGN_VIEW
glade_design_view_get_type
GLADE_DESIGN_VIEW_CLASS
GLADE_IS_DESIGN_VIEW_CLASS
GLADE_DESIGN_VIEW_GET_CLASS
GladeDesignViewClass
GladeDesignViewPrivate
</SECTION>

<SECTION>
<FILE>glade-property-def</FILE>
<TITLE>GladePropertyDef</TITLE>
GladePropertyDef
glade_property_def_new
glade_property_def_new_from_spec
glade_property_def_clone
glade_property_def_free
glade_property_def_is_visible
glade_property_def_is_object
glade_property_def_make_flags_from_string
glade_property_def_make_gvalue_from_string
glade_property_def_make_string_from_gvalue
glade_property_def_make_gvalue_from_vl
glade_property_def_set_vl_from_gvalue
glade_property_def_make_gvalue
glade_property_def_get_from_gvalue
glade_property_def_update_from_node
glade_property_def_make_adjustment
glade_property_def_match
glade_property_def_void_value
glade_property_def_atk
glade_property_def_common
glade_property_def_compare
glade_property_def_create_type
glade_property_def_custom_layout
glade_property_def_deprecated
glade_property_def_get_adaptor
glade_property_def_get_construct_only
glade_property_def_get_default
glade_property_def_get_default_from_spec
glade_property_def_get_ignore
glade_property_def_get_is_packing
glade_property_def_get_name
glade_property_def_get_original_default
glade_property_def_get_pspec
glade_property_def_get_tooltip
glade_property_def_get_virtual
glade_property_def_id
glade_property_def_load_defaults_from_spec
glade_property_def_multiline
glade_property_def_needs_sync
glade_property_def_new_from_spec_full
glade_property_def_optional
glade_property_def_optional_default
glade_property_def_parentless_widget
glade_property_def_query
glade_property_def_save
glade_property_def_save_always
glade_property_def_set_adaptor
glade_property_def_set_construct_only
glade_property_def_set_ignore
glade_property_def_set_is_packing
glade_property_def_set_name
glade_property_def_set_pspec
glade_property_def_set_tooltip
glade_property_def_set_virtual
glade_property_def_set_weights
glade_property_def_since_major
glade_property_def_since_minor
glade_property_def_stock
glade_property_def_stock_icon
glade_property_def_themed_icon
glade_property_def_transfer_on_paste
glade_property_def_translatable
glade_property_def_weight
GLADE_PROPERTY_DEF_OBJECT_DELIMITER
<SUBSECTION Standard>
GLADE_TYPE_PROPERTY_DEF
glade_property_def_get_type
GLADE_PROPERTY_DEF
GLADE_IS_PROPERTY_DEF
GLADE_PROPERTY_DEF_IS_TYPE
</SECTION>

<SECTION>
<FILE>glade-name-context</FILE>
<TITLE>GladeNameContext</TITLE>
GladeNameContext
glade_name_context_add_name
glade_name_context_destroy
glade_name_context_has_name
glade_name_context_n_names
glade_name_context_new
glade_name_context_new_name
glade_name_context_release_name
<SUBSECTION Standard>
</SECTION>

<SECTION>
<FILE>glade-clipboard</FILE>
<TITLE>GladeClipboard</TITLE>
GladeClipboard
glade_clipboard_new
glade_clipboard_add
glade_clipboard_clear
glade_clipboard_widgets
glade_clipboard_get_has_selection
<SUBSECTION Standard>
GLADE_CLIPBOARD
GLADE_IS_CLIPBOARD
GLADE_TYPE_CLIPBOARD
glade_clipboard_get_type
GladeClipboardClass
GladeClipboardPrivate
</SECTION>

<SECTION>
<FILE>glade-signal</FILE>
<TITLE>GladeSignal</TITLE>
GladeSignal
glade_signal_new
glade_signal_clone
glade_signal_equal
glade_signal_read
glade_signal_write
glade_signal_editor_enable_dnd
glade_signal_get_after
glade_signal_get_def
glade_signal_get_detail
glade_signal_get_handler
glade_signal_get_name
glade_signal_get_support_warning
glade_signal_get_swapped
glade_signal_get_userdata
glade_signal_set_after
glade_signal_set_detail
glade_signal_set_handler
glade_signal_set_support_warning
glade_signal_set_swapped
glade_signal_set_userdata
<SUBSECTION Standard>
GLADE_SIGNAL
GLADE_IS_SIGNAL
GLADE_IS_SIGNAL_CLASS
GLADE_TYPE_SIGNAL
GladeSignalClass
GladeSignalPrivate
GLADE_SIGNAL_GET_CLASS
GLADE_SIGNAL_CLASS
glade_signal_get_type
</SECTION>

<SECTION>
<FILE>glade-signal-def</FILE>
<TITLE>GladeSignalDef</TITLE>
GladeSignalDef
glade_signal_def_new
glade_signal_def_clone
glade_signal_def_free
glade_signal_def_update_from_node
glade_signal_def_get_adaptor
glade_signal_def_get_flags
glade_signal_def_get_name
glade_signal_def_get_object_type_name
glade_signal_def_set_deprecated
glade_signal_def_deprecated
glade_signal_def_set_since
glade_signal_def_since_major
glade_signal_def_since_minor
<SUBSECTION Standard>
GLADE_SIGNAL_DEF
GLADE_TYPE_SIGNAL_DEF
glade_signal_def_get_type
</SECTION>

<SECTION>
<FILE>glade-editor-property</FILE>
<TITLE>GladeEditorProperty</TITLE>
GladeEditorProperty
GLADE_MAKE_EPROP_TYPE
glade_editor_property_load
glade_editor_property_load_by_widget
glade_editor_property_commit
glade_editor_property_commit_no_callback
glade_editor_property_get_custom_text
glade_editor_property_get_disable_check
glade_editor_property_get_item_label
glade_editor_property_get_property_def
glade_editor_property_get_property
glade_editor_property_loading
glade_editor_property_set_custom_text
glade_editor_property_set_disable_check
glade_editor_property_show_i18n_dialog
glade_editor_property_show_object_dialog
glade_editor_property_show_resource_dialog
<SUBSECTION Standard>
GLADE_EDITOR_PROPERTY
GLADE_IS_EDITOR_PROPERTY
GLADE_TYPE_EDITOR_PROPERTY
glade_editor_property_get_type
GLADE_EDITOR_PROPERTY_CLASS
GLADE_IS_EDITOR_PROPERTY_CLASS
GLADE_EDITOR_PROPERTY_GET_CLASS
GLADE_TYPE_EPROP_ADJUSTMENT
GLADE_TYPE_EPROP_BOOL
GLADE_TYPE_EPROP_COLOR
GLADE_TYPE_EPROP_ENUM
GLADE_TYPE_EPROP_FLAGS
GLADE_TYPE_EPROP_NAMED_ICON
GLADE_TYPE_EPROP_NUMERIC
GLADE_TYPE_EPROP_OBJECT
GLADE_TYPE_EPROP_OBJECTS
GLADE_TYPE_EPROP_RESOURCE
GLADE_TYPE_EPROP_TEXT
GLADE_TYPE_EPROP_UNICHAR
glade_eprop_adjustment_get_type
glade_eprop_bool_get_type
glade_eprop_color_get_type
glade_eprop_enum_get_type
glade_eprop_flags_get_type
glade_eprop_named_icon_get_type
glade_eprop_numeric_get_type
glade_eprop_object_get_type
glade_eprop_objects_get_type
glade_eprop_resource_get_type
glade_eprop_text_get_type
glade_eprop_unichar_get_type
GladeEditorPropertyClass
</SECTION>

<SECTION>
<FILE>glade-fixed</FILE>
<TITLE>GladeFixed</TITLE>
<SUBSECTION Standard>
GLADE_FIXED
GLADE_IS_FIXED
GLADE_TYPE_FIXED
glade_fixed_get_type
GLADE_FIXED_CLASS
GLADE_IS_FIXED_CLASS
GLADE_FIXED_GET_CLASS
GladeFixedClass
GLADE_FIXED_CURSOR_TOP
GLADE_FIXED_CURSOR_BOTTOM
GLADE_FIXED_CURSOR_RIGHT
GLADE_FIXED_CURSOR_LEFT
</SECTION>

<SECTION>
<FILE>glade-palette</FILE>
<TITLE>GladePalette</TITLE>
GladePalette
GladeItemAppearance
glade_palette_new
glade_palette_get_item_appearance
glade_palette_set_item_appearance
glade_palette_get_use_small_item_icons
glade_palette_set_use_small_item_icons
glade_palette_set_show_selector_button
glade_palette_get_show_selector_button
glade_palette_set_project
glade_palette_get_project
glade_palette_get_tool_palette
<SUBSECTION Standard>
GLADE_PALETTE
GLADE_IS_PALETTE
GLADE_TYPE_PALETTE
glade_palette_get_type
GLADE_PALETTE_CLASS
GLADE_IS_PALETTE_CLASS
GLADE_PALETTE_GET_CLASS
GladePaletteClass
GladePalettePrivate
glade_item_appearance_get_type
GLADE_TYPE_ITEM_APPEARANCE
</SECTION>

<SECTION>
<FILE>glade-placeholder</FILE>
<TITLE>GladePlaceholder</TITLE>
GladePlaceholder
glade_placeholder_new
glade_placeholder_get_parent
glade_placeholder_get_project
glade_placeholder_packing_actions
<SUBSECTION Standard>
GLADE_PLACEHOLDER
GLADE_IS_PLACEHOLDER
GLADE_TYPE_PLACEHOLDER
glade_placeholder_get_type
GLADE_PLACEHOLDER_CLASS
GLADE_IS_PLACEHOLDER_CLASS
GLADE_PLACEHOLDER_GET_CLASS
GladePlaceholderClass
GladePlaceholderPrivate
</SECTION>

<SECTION>
<FILE>glade-project</FILE>
<TITLE>GladeProject</TITLE>
GladeProject
GladeProjectModelColumns
GladeProjectProperties
GladeSupportMask
GladePointerMode
GladeVerifyFlags
glade_project_new
glade_project_load_from_file
glade_project_load
glade_project_save
glade_project_get_path
glade_project_get_name
glade_project_undo
glade_project_redo
glade_project_next_undo_item
glade_project_next_redo_item
glade_project_push_undo
glade_project_undo_items
glade_project_redo_items
glade_project_reset_path
glade_project_get_readonly
glade_project_get_objects
glade_project_add_object
glade_project_remove_object
glade_project_has_object
glade_project_get_widget_by_name
glade_project_new_widget_name
glade_project_is_selected
glade_project_selection_set
glade_project_selection_add
glade_project_selection_remove
glade_project_selection_clear
glade_project_selection_changed
glade_project_selection_get
glade_project_get_has_selection
glade_project_resource_fullpath
glade_project_is_loading
glade_project_get_file_mtime
glade_project_get_modified
glade_project_autosave
glade_project_available_widget_name
glade_project_backup
glade_project_cancel_load
glade_project_check_reordered
glade_project_command_cut
glade_project_command_delete
glade_project_command_paste
glade_project_copy_selection
glade_project_display_dependencies
glade_project_get_add_item
glade_project_get_css_provider_path
glade_project_get_license
glade_project_get_pointer_mode
glade_project_get_resource_path
glade_project_get_target_version
glade_project_get_template
glade_project_get_translation_domain
glade_project_load_cancelled
glade_project_preview
glade_project_properties
glade_project_push_progress
glade_project_queue_selection_changed
glade_project_required_libs
glade_project_save_verify
glade_project_set_add_item
glade_project_set_css_provider_path
glade_project_set_license
glade_project_set_pointer_mode
glade_project_set_resource_path
glade_project_set_target_version
glade_project_set_template
glade_project_set_translation_domain
glade_project_set_widget_name
glade_project_toplevels
glade_project_verify
glade_project_verify_property
glade_project_verify_signal
glade_project_verify_widget_adaptor
glade_project_widget_changed
glade_project_widget_visibility_changed
glade_project_writing_preview
glade_project_properties_new
<SUBSECTION Standard>
GladeProjectPropertiesClass
GladeProjectPropertiesPrivate
GLADE_PROJECT
GLADE_IS_PROJECT
GLADE_TYPE_PROJECT
glade_project_get_type
GLADE_PROJECT_CLASS
GLADE_IS_PROJECT_CLASS
GLADE_PROJECT_GET_CLASS
GLADE_TYPE_PROJECT_MODEL_COLUMNS
glade_project_model_columns_get_type
GLADE_TYPE_PROJECT_PROPERTIES
glade_project_properties_get_type
GladeProjectClass
GladeProjectPrivate
GLADE_PROJECT_PROPERTIES
GLADE_PROJECT_PROPERTIES_CLASS
GLADE_PROJECT_PROPERTIES_GET_CLASS
GLADE_IS_PROJECT_PROPERTIES
GLADE_IS_PROJECT_PROPERTIES_CLASS
glade_support_mask_get_type
GLADE_TYPE_SUPPORT_MASK
glade_verify_flags_get_type
GLADE_TYPE_VERIFY_FLAGS
_NodeEdge
</SECTION>

<SECTION>
<FILE>glade-cell-renderer-icon</FILE>
<TITLE>GladeCellRendererIcon</TITLE>
GladeCellRendererIcon
glade_cell_renderer_icon_get_activatable
glade_cell_renderer_icon_get_active
glade_cell_renderer_icon_new
glade_cell_renderer_icon_set_activatable
glade_cell_renderer_icon_set_active
<SUBSECTION Standard>
GladeCellRendererIconClass
GladeCellRendererIconPrivate
glade_cell_renderer_icon_get_type
GLADE_CELL_RENDERER_ICON
GLADE_CELL_RENDERER_ICON_CLASS
GLADE_CELL_RENDERER_ICON_GET_CLASS
GLADE_IS_CELL_RENDERER_ICON
GLADE_IS_CELL_RENDERER_ICON_CLASS
GLADE_TYPE_CELL_RENDERER_ICON
</SECTION>

<SECTION>
<FILE>glade-base-editor</FILE>
<TITLE>GladeBaseEditor</TITLE>
GladeBaseEditor
glade_base_editor_new
glade_base_editor_add_default_properties
glade_base_editor_add_properties
glade_base_editor_add_label
glade_base_editor_set_show_signal_editor
glade_base_editor_pack_new_window
glade_base_editor_add_editable
glade_base_editor_append_types
<SUBSECTION Standard>
GLADE_BASE_EDITOR
GLADE_IS_BASE_EDITOR
GLADE_TYPE_BASE_EDITOR
glade_base_editor_get_type
GLADE_BASE_EDITOR_CLASS
GLADE_IS_BASE_EDITOR_CLASS
GLADE_BASE_EDITOR_GET_CLASS
GladeBaseEditorClass
GladeBaseEditorPrivate
</SECTION>

<SECTION>
<FILE>glade-inspector</FILE>
<TITLE>GladeInspector</TITLE>
GladeInspector
glade_inspector_new
glade_inspector_new_with_project
glade_inspector_set_project
glade_inspector_get_project
glade_inspector_get_selected_items
<SUBSECTION Standard>
GLADE_INSPECTOR
GLADE_IS_INSPECTOR
GLADE_TYPE_INSPECTOR
glade_inspector_get_type
GLADE_INSPECTOR_CLASS
GLADE_IS_INSPECTOR_CLASS
GLADE_INSPECTOR_GET_CLASS
GladeInspectorClass
GladeInspectorPrivate
</SECTION>

<SECTION>
<FILE>glade-signal-editor</FILE>
GladeSignalEditor
glade_signal_editor_get_widget
glade_signal_editor_new
glade_signal_editor_load_widget
<SUBSECTION Standard>
GLADE_SIGNAL_EDITOR
GLADE_IS_SIGNAL_EDITOR
GLADE_TYPE_SIGNAL_EDITOR
GLADE_SIGNAL_EDITOR_CLASS
GLADE_IS_SIGNAL_EDITOR_CLASS
GLADE_SIGNAL_EDITOR_GET_CLASS
GladeSignalEditorClass
GladeSignalEditorPrivate
glade_signal_editor_get_type
</SECTION>

<SECTION>
<FILE>glade-editable</FILE>
<TITLE>GladeEditable</TITLE>
GladeEditable
GladeEditableInterface
glade_editable_block
glade_editable_load
glade_editable_loaded_widget
glade_editable_loading
glade_editable_set_show_name
glade_editable_unblock
<SUBSECTION Standard>
glade_editable_get_type
GLADE_TYPE_EDITABLE
GLADE_EDITABLE
GLADE_EDITABLE_CLASS
GLADE_EDITABLE_GET_IFACE
GLADE_IS_EDITABLE
</SECTION>

<SECTION>
<FILE>glade-editor</FILE>
<TITLE>GladeEditor</TITLE>
GladeEditor
GladeEditorTable
GladeEditorPageType
GladeEditorSkeleton
glade_editor_new
glade_editor_load_widget
glade_editor_query_dialog
glade_editor_show_info
glade_editor_hide_info
glade_editor_dialog_for_widget
glade_editor_hide_class_field
glade_editor_reset_dialog_run
glade_editor_show_class_field
glade_editor_skeleton_new
glade_editor_skeleton_add_editor
glade_editor_table_new
<SUBSECTION Standard>
GLADE_EDITOR
GLADE_IS_EDITOR
GLADE_TYPE_EDITOR
glade_editor_get_type
GLADE_EDITOR_CLASS
GLADE_IS_EDITOR_CLASS
GLADE_EDITOR_GET_CLASS
GLADE_EDITOR_TABLE
GLADE_IS_EDITOR_TABLE
glade_editor_table_get_type
GLADE_IS_EDITOR_TABLE_CLASS
glade_editor_skeleton_get_type
GladeEditorClass
GladeEditorTableClass
GladeEditorTablePrivate
GladeEditorPrivate
GladeEditorPropertyPrivate
GladeEditorSkeletonClass
GladeEditorSkeletonPrivate
glade_editor_page_type_get_type
GLADE_TYPE_EDITOR_PAGE_TYPE
GLADE_TYPE_EDITOR_SKELETON
GLADE_TYPE_EDITOR_TABLE
GLADE_IS_EDITOR_SKELETON
GLADE_IS_EDITOR_SKELETON_CLASS
GLADE_EDITOR_SKELETON
GLADE_EDITOR_SKELETON_CLASS
GLADE_EDITOR_SKELETON_GET_CLASS
GLADE_EDITOR_TABLE_CLASS
GLADE_EDITOR_TABLE_GET_CLASS
</SECTION>

<SECTION>
<FILE>glade-app</FILE>
<TITLE>GladeApp</TITLE>
GladeApp
glade_app_new
glade_pointer_mode_get_type
glade_app_get
glade_app_set_window
glade_app_get_window
glade_app_get_clipboard
glade_app_add_project
glade_app_remove_project
glade_app_get_projects
glade_app_get_config
glade_app_is_project_loaded
glade_app_get_project_by_path
glade_app_config_save
glade_app_set_accel_group
glade_app_get_catalogs_dir
glade_app_get_modules_dir
glade_app_get_pixmaps_dir
glade_app_get_locale_dir
glade_app_do_event
glade_app_get_accel_group
glade_app_get_bin_dir
glade_app_get_catalog
glade_app_get_catalog_version
glade_app_get_catalogs
glade_app_get_lib_dir
glade_app_search_docs
<SUBSECTION Standard>
GLADE_APP
GLADE_IS_APP
GLADE_TYPE_APP
glade_app_get_type
GLADE_APP_CLASS
GLADE_IS_APP_CLASS
GLADE_APP_GET_CLASS
GladeAppClass
GLADE_TYPE_POINTER_MODE
GladeAppPrivate
GLADE_ENV_CATALOG_PATH
GLADE_ENV_MODULE_PATH
GLADE_ENV_BUNDLED
GLADE_ENV_ICON_THEME_PATH
GLADE_ENV_PIXMAP_DIR
GLADE_ENV_TESTING
</SECTION>

<SECTION>
<FILE>glade-property</FILE>
GladeProperty
GladePropertyState
glade_property_new
glade_property_dup
glade_property_reset
glade_property_original_reset
glade_property_default
glade_property_original_default
glade_property_equals_value
glade_property_equals
glade_property_set_value
glade_property_set_va_list
glade_property_set
glade_property_get_value
glade_property_get_default
glade_property_get_va_list
glade_property_get
glade_property_add_object
glade_property_remove_object
glade_property_sync
glade_property_load
glade_property_read
glade_property_write
glade_property_set_sensitive
glade_property_get_sensitive
glade_property_set_save_always
glade_property_get_save_always
glade_property_set_enabled
glade_property_get_enabled
glade_property_i18n_set_comment
glade_property_i18n_get_comment
glade_property_i18n_set_translatable
glade_property_i18n_get_translatable
glade_property_push_superuser
glade_property_pop_superuser
glade_property_superuser
glade_property_make_string
glade_property_set_support_warning
glade_property_set_widget
glade_property_get_def
glade_property_get_state
glade_property_get_support_warning
glade_property_get_widget
glade_property_i18n_get_context
glade_property_i18n_set_context
glade_property_inline_value
glade_propert_get_insensitive_tooltip
glade_property_warn_usage
<SUBSECTION Standard>
GLADE_PROPERTY
GLADE_IS_PROPERTY
GLADE_TYPE_PROPERTY
glade_property_get_type
GLADE_PROPERTY_CLASS
GLADE_IS_PROPERTY_CLASS
GLADE_PROPERTY_GET_CLASS
GladePropertyClass
GladePropertyPrivate
glade_property_state_get_type
GLADE_TYPE_PROPERTY_STATE
</SECTION>

<SECTION>
<FILE>glade-property-label</FILE>
<TITLE>GladePropertyLabel</TITLE>
GladePropertyLabel
glade_property_label_new
glade_property_label_set_append_colon
glade_property_label_get_append_colon
glade_property_label_set_custom_text
glade_property_label_get_custom_text
glade_property_label_set_custom_tooltip
glade_property_label_get_custom_tooltip
glade_property_label_set_packing
glade_property_label_get_packing
glade_property_label_set_property
glade_property_label_get_property
glade_property_label_set_property_name
glade_property_label_get_property_name
<SUBSECTION Standard>
GladePropertyLabelClass
GladePropertyLabelPrivate
glade_property_label_get_type
GLADE_PROPERTY_LABEL
GLADE_PROPERTY_LABEL_CLASS
GLADE_PROPERTY_LABEL_GET_CLASS
GLADE_TYPE_PROPERTY_LABEL
GLADE_IS_PROPERTY_LABEL
GLADE_IS_PROPERTY_LABEL_CLASS
</SECTION>

<SECTION>
<FILE>glade-property-shell</FILE>
<TITLE>GladePropertyShell</TITLE>
GladePropertyShell
glade_property_shell_new
glade_property_shell_get_custom_text
glade_property_shell_get_disable_check
glade_property_shell_get_packing
glade_property_shell_get_property_name
glade_property_shell_get_use_command
glade_property_shell_set_custom_text
glade_property_shell_set_disable_check
glade_property_shell_set_packing
glade_property_shell_set_property_name
glade_property_shell_set_use_command
<SUBSECTION Standard>
GladePropertyShellClass
GladePropertyShellPrivate
glade_property_shell_get_type
GLADE_PROPERTY_SHELL
GLADE_PROPERTY_SHELL_CLASS
GLADE_PROPERTY_SHELL_GET_CLASS
GLADE_TYPE_PROPERTY_SHELL
GLADE_IS_PROPERTY_SHELL
GLADE_IS_PROPERTY_SHELL_CLASS
</SECTION>

<SECTION>
<FILE>glade-previewer</FILE>
<TITLE>GladePreviewer</TITLE>
GladePreviewer
glade_previewer_connect_function
glade_previewer_new
glade_previewer_present
glade_previewer_screenshot
glade_previewer_set_css_file
glade_previewer_set_message
glade_previewer_set_print_handlers
glade_previewer_set_screenshot_extension
glade_previewer_set_slideshow_widgets
glade_previewer_set_widget
glade_previewer_slideshow_save
<SUBSECTION Standard>
GLADE_TYPE_PREVIEWER
GLADE_PREVIEWER
GLADE_PREVIEWER_CLASS
GLADE_PREVIEWER_GET_CLASS
GLADE_IS_PREVIEWER
GLADE_IS_PREVIEWER_CLASS
glade_previewer_get_type
GladePreviewerClass
GladePreviewerPrivate
</SECTION>

<SECTION>
<FILE>glade-command</FILE>
<TITLE>GladeCommand</TITLE>
GladeCommandSetPropData
GladeCommand
glade_command_push_group
glade_command_pop_group
glade_command_execute
glade_command_undo
glade_command_unifies
glade_command_collapse
glade_command_set_property
glade_command_set_property_value
glade_command_set_properties
glade_command_set_properties_list
glade_command_set_name
glade_command_delete
glade_command_create
glade_command_cut
glade_command_paste
glade_command_dnd
glade_command_add_signal
glade_command_remove_signal
glade_command_change_signal
glade_command_set_i18n
glade_command_add
glade_command_description
glade_command_get_group_depth
glade_command_group_id
glade_command_lock_widget
glade_command_unlock_widget
glade_command_set_project_domain
glade_command_set_project_license
glade_command_set_project_resource_path
glade_command_set_project_target
glade_command_set_project_template
glade_command_set_property_enabled
<SUBSECTION Standard>
GLADE_COMMAND
GLADE_IS_COMMAND
GLADE_TYPE_COMMAND
glade_command_get_type
GLADE_COMMAND_CLASS
GLADE_IS_COMMAND_CLASS
GLADE_COMMAND_GET_CLASS
GladeCommandClass
GladeCommandPrivate
</SECTION>

<SECTION>
<FILE>glade-utils</FILE>
GladeUIMessageType
GladeUtilFileDialogType
glade_util_get_type_from_name
glade_utils_get_pspec_from_funcname
glade_util_ui_message
glade_util_flash_message
glade_util_compare_stock_labels
glade_util_file_dialog_new
glade_util_replace
glade_util_read_prop_name
glade_util_duplicate_underscores
glade_util_container_get_all_children
glade_util_count_placeholders
glade_util_find_iter_by_widget
glade_util_purify_list
glade_util_added_in_list
glade_util_removed_from_list
glade_util_canonical_path
glade_util_load_library
glade_util_file_is_writeable
glade_util_have_devhelp
glade_util_get_devhelp_icon
glade_util_search_devhelp
glade_util_get_placeholder_from_pointer
glade_util_object_is_loading
glade_util_url_show
glade_util_get_file_mtime
glade_util_check_and_warn_scrollable
glade_util_filename_to_icon_name
glade_util_icon_name_to_filename
glade_util_remove_scroll_events
glade_utils_boolean_from_string
glade_utils_cairo_draw_line
glade_utils_cairo_draw_rectangle
glade_utils_enum_string_from_value
glade_utils_enum_string_from_value_displayable
glade_utils_enum_value_from_string
glade_utils_flags_string_from_value
glade_utils_flags_string_from_value_displayable
glade_utils_flags_value_from_string
glade_utils_get_pointer
glade_utils_hijack_key_press
glade_utils_liststore_from_enum_type
glade_utils_pointer_mode_render_icon
glade_utils_replace_home_dir_with_tilde
glade_utils_string_from_value
glade_utils_value_from_string
glade_get_displayable_value
glade_get_value_from_displayable
glade_type_has_displayable_values
glade_register_displayable_value
glade_register_translated_value
glade_displayable_value_is_disabled
glade_displayable_value_set_disabled
glade_path
glade_path_HEIGHT
glade_path_WIDTH
<SUBSECTION Standard>
glade_ui_message_type_get_type
glade_util_file_dialog_type_get_type
GLADE_TYPE_UI_MESSAGE_TYPE
GLADE_TYPE_UTIL_FILE_DIALOG_TYPE
GWA_VERSION_CHECK
GWA_VERSION_SINCE_MAJOR
GWA_VERSION_SINCE_MINOR
GLADE_PROPERTY_DEF_VERSION_CHECK
GSC_VERSION_CHECK
GWA_DEPRECATED
GWA_DEPRECATED_SINCE_CHECK
GWA_DEPRECATED_SINCE_MAJOR
GWA_DEPRECATED_SINCE_MINOR
GLADE_DEVHELP_FALLBACK_ICON_FILE
GLADE_DEVHELP_ICON_NAME
GLADE_GTKBUILDER_HAS_VERSIONING
GLADE_GTKBUILDER_VERSIONING_BASE_MAJOR
GLADE_GTKBUILDER_VERSIONING_BASE_MINOR
</SECTION>

<SECTION>
<FILE>glade-xml-utils</FILE>
glade_xml_load_sym_from_node
glade_xml_dump_from_context
glade_xml_get_property_targetable_versions
glade_xml_get_property_version
glade_xml_search_child
glade_xml_search_child_required
glade_xml_get_content
glade_xml_set_content
glade_xml_get_value_int
glade_xml_get_value_int_required
glade_xml_get_value_string
glade_xml_get_value_string_required
glade_xml_get_boolean
glade_xml_set_value
glade_xml_get_property_string_required
glade_xml_get_property_string
glade_xml_get_property_boolean
glade_xml_get_property_double
glade_xml_get_property_int
glade_xml_node_set_property_string
glade_xml_node_set_property_boolean
glade_xml_node_new
glade_xml_node_new_comment
glade_xml_node_copy
glade_xml_node_delete
glade_xml_node_get_children
glade_xml_node_next
glade_xml_node_verify
glade_xml_node_verify_silent
glade_xml_node_get_name
glade_xml_node_get_parent
glade_xml_node_append_child
glade_xml_node_remove
glade_xml_node_is_comment
glade_xml_node_next_with_comments
glade_xml_node_get_children_with_comments
glade_xml_node_add_next_sibling
glade_xml_node_add_prev_sibling
glade_xml_node_prev_with_comments
glade_xml_doc_new
glade_xml_doc_new_comment
glade_xml_doc_ref
glade_xml_doc_unref
glade_xml_doc_get_root
glade_xml_doc_set_root
glade_xml_doc_save
glade_xml_context_new
glade_xml_context_copy
glade_xml_context_free
glade_xml_context_new_from_path
glade_xml_context_get_doc
GladeXmlContext
GladeXmlNode
GladeXmlDoc
<SUBSECTION Standard>
glade_xml_context_get_type
glade_xml_doc_get_type
glade_xml_node_get_type
GLADE_XML_CONTEXT
GLADE_XML_IS_CONTEXT
CAST_BAD
GLADE_XML_TAG_PROJECT
GLADE_XML_TAG_WIDGET
GLADE_XML_TAG_LIBGLADE_PROJECT
GLADE_XML_TAG_BUILDER_PROJECT
GLADE_XML_TAG_LIBGLADE_WIDGET
GLADE_XML_TAG_BUILDER_WIDGET
GLADE_XML_TAG_REQUIRES
GLADE_XML_TAG_LIB
GLADE_XML_TAG_PROPERTY
GLADE_XML_TAG_CLASS
GLADE_XML_TAG_ID
GLADE_XML_TAG_SIGNAL
GLADE_XML_TAG_HANDLER
GLADE_XML_TAG_AFTER
GLADE_XML_TAG_OBJECT
GLADE_XML_TAG_NAME
GLADE_XML_TAG_CHILD
GLADE_XML_TAG_PACKING
GLADE_XML_TAG_PLACEHOLDER
GLADE_XML_TAG_INTERNAL_CHILD
GLADE_XML_TAG_I18N_TRUE
GLADE_XML_TAG_SIGNAL_TRUE
GLADE_XML_TAG_TYPE
GLADE_XML_TAG_FILENAME
GLADE_XML_TAG_SIGNAL_FALSE
GLADE_XML_TAG_SOURCE
GLADE_XML_TAG_SOURCES
GLADE_XML_TAG_STOCK_ID
GLADE_XML_TAG_SWAPPED
GLADE_XML_TAG_TEMPLATE
GLADE_XML_TAG_VERSION
GLADE_TAG_ACTION
GLADE_TAG_ACTION_ACTIVATE_FUNCTION
GLADE_TAG_ACTIONS
GLADE_TAG_ACTION_SUBMENU_FUNCTION
GLADE_TAG_ADAPTOR
GLADE_TAG_ADD_CHILD_FUNCTION
GLADE_TAG_ADD_CHILD_VERIFY_FUNCTION
GLADE_TAG_ANARCHIST
GLADE_TAG_ATK_PROPERTY
GLADE_TAG_BIND_FLAGS
GLADE_TAG_BIND_PROPERTY
GLADE_TAG_BIND_SOURCE
GLADE_TAG_BOOK
GLADE_TAG_BUILDER_SINCE
GLADE_TAG_CHILD_ACTION_ACTIVATE_FUNCTION
GLADE_TAG_CHILD_GET_PROP_FUNCTION
GLADE_TAG_CHILD_PROPERTY
GLADE_TAG_CHILD_SET_PROP_FUNCTION
GLADE_TAG_CHILD_VERIFY_FUNCTION
GLADE_TAG_COMMENT
GLADE_TAG_COMMON
GLADE_TAG_CONSTRUCT_OBJECT_FUNCTION
GLADE_TAG_CONSTRUCT_ONLY
GLADE_TAG_CONSTRUCTOR_FUNCTION
GLADE_TAG_CONTEXT
GLADE_TAG_CREATE_EDITABLE_FUNCTION
GLADE_TAG_CREATE_EPROP_FUNCTION
GLADE_TAG_CREATE_TYPE
GLADE_TAG_CREATE_WIDGET_FUNCTION
GLADE_TAG_CUSTOM_LAYOUT
GLADE_TAG_DEEP_POST_CREATE_FUNCTION
GLADE_TAG_DEFAULT
GLADE_TAG_DEFAULT_HEIGHT
GLADE_TAG_DEFAULT_PALETTE_STATE
GLADE_TAG_DEFAULT_WIDTH
GLADE_TAG_DEPENDS
GLADE_TAG_DEPENDS_FUNCTION
GLADE_TAG_DEPRECATED
GLADE_TAG_DEPRECATED_SINCE
GLADE_TAG_DESTROY_OBJECT_FUNCTION
GLADE_TAG_DISABLED
GLADE_TAG_DISPLAYABLE_VALUES
GLADE_TAG_DOMAIN
GLADE_TAG_EDITABLE
GLADE_TAG_EVENT_HANDLER_CONNECTED
GLADE_TAG_EXPANDED
GLADE_TAG_FALSE
GLADE_TAG_FIXED
GLADE_TAG_GENERIC_NAME
GLADE_TAG_GET_CHILDREN_FUNCTION
GLADE_TAG_GET_FUNCTION
GLADE_TAG_GET_INTERNAL_CHILD_FUNCTION
GLADE_TAG_GET_TYPE_FUNCTION
GLADE_TAG_GLADE_CATALOG
GLADE_TAG_GLADE_WIDGET_CLASS
GLADE_TAG_GLADE_WIDGET_CLASSES
GLADE_TAG_GLADE_WIDGET_CLASS_REF
GLADE_TAG_GLADE_WIDGET_GROUP
GLADE_TAG_HAS_CONTEXT
GLADE_TAG_ICON_NAME
GLADE_TAG_ICON_PREFIX
GLADE_TAG_ID
GLADE_TAG_IGNORE
GLADE_TAG_IMPORTANT
GLADE_TAG_INIT_FUNCTION
GLADE_TAG_INTERNAL_CHILDREN
GLADE_TAG_KEY
GLADE_TAG_LIBRARY
GLADE_TAG_MAX_VALUE
GLADE_TAG_MIN_VALUE
GLADE_TAG_MULTILINE
GLADE_TAG_NAME
GLADE_TAG_NEEDS_SYNC
GLADE_TAG_NICK
GLADE_TAG_NO
GLADE_TAG_OPTIONAL
GLADE_TAG_OPTIONAL_DEFAULT
GLADE_TAG_PACKING_ACTIONS
GLADE_TAG_PACKING_DEFAULTS
GLADE_TAG_PACKING_PROPERTIES
GLADE_TAG_PARAMETER
GLADE_TAG_PARAMETERS
GLADE_TAG_PARENT
GLADE_TAG_PARENT_CLASS
GLADE_TAG_PARENTLESS_WIDGET
GLADE_TAG_POST_CREATE_FUNCTION
GLADE_TAG_PROPERTIES
GLADE_TAG_PROPERTY
GLADE_TAG_QUERY
GLADE_TAG_READ_CHILD_FUNCTION
GLADE_TAG_READ_WIDGET_FUNCTION
GLADE_TAG_REMOVE_CHILD_FUNCTION
GLADE_TAG_REPLACE_CHILD_FUNCTION
GLADE_TAG_RESOURCE
GLADE_TAG_SAVE
GLADE_TAG_SAVE_ALWAYS
GLADE_TAG_SET_FUNCTION
GLADE_TAG_SIGNAL
GLADE_TAG_SIGNAL_NAME
GLADE_TAG_SIGNALS
GLADE_TAG_SPEC
GLADE_TAG_SPECIAL_CHILD_TYPE
GLADE_TAG_SPECIFICATIONS
GLADE_TAG_STOCK
GLADE_TAG_STOCK_ICON
GLADE_TAG_STRING_FROM_VALUE_FUNCTION
GLADE_TAG_TARGETABLE
GLADE_TAG_TEMPLATE_PREFIX
GLADE_TAG_THEMED_ICON
GLADE_TAG_TITLE
GLADE_TAG_TOOLTIP
GLADE_TAG_TOPLEVEL
GLADE_TAG_TRANSFER_ON_PASTE
GLADE_TAG_TRANSLATABLE
GLADE_TAG_TRUE
GLADE_TAG_TYPE
GLADE_TAG_USE_PLACEHOLDERS
GLADE_TAG_VALUE
GLADE_TAG_VALUE_TYPE
GLADE_TAG_VERIFY_FUNCTION
GLADE_TAG_VERSION
GLADE_TAG_VERSION_SINCE
GLADE_TAG_VISIBLE
GLADE_TAG_VISIBLE_LINES
GLADE_TAG_WEIGHT
GLADE_TAG_WRITE_CHILD_FUNCTION
GLADE_TAG_WRITE_WIDGET_AFTER_FUNCTION
GLADE_TAG_WRITE_WIDGET_FUNCTION
GLADE_TAG_YES
GLADE_ENUM_DATA_TAG
</SECTION>

<SECTION>
<FILE>glade-widget-action</FILE>
<TITLE>GladeWidgetAction</TITLE>
GladeWidgetAction
glade_widget_action_get_children
glade_widget_action_get_def
glade_widget_action_set_sensitive
glade_widget_action_get_sensitive
glade_widget_action_get_visible
glade_widget_action_set_visible
<SUBSECTION Standard>
GLADE_WIDGET_ACTION
GLADE_IS_WIDGET_ACTION
GLADE_TYPE_WIDGET_ACTION
glade_widget_action_get_type
GLADE_WIDGET_ACTION_CLASS
GLADE_IS_WIDGET_ACTION_CLASS
GLADE_WIDGET_ACTION_GET_CLASS
GladeWidgetActionPrivate
</SECTION>

<SECTION>
<FILE>glade-widget-action-def</FILE>
<TITLE>GladeWidgetActionDef</TITLE>
GladeWidgetActionDef
glade_widget_action_def_new
glade_widget_action_def_free
glade_widget_action_def_clone
glade_widget_action_def_set_important
glade_widget_action_def_set_label
glade_widget_action_def_set_stock
<SUBSECTION Standard>
GLADE_TYPE_WIDGET_ACTION_DEF
GLADE_WIDGET_ACTION_DEF
glade_widget_action_def_get_type
</SECTION>

<SECTION>
<FILE>glade-preview</FILE>
<TITLE>GladePreview</TITLE>
GladePreview
glade_preview_get_pid
glade_preview_get_widget
glade_preview_launch
glade_preview_template_object_new
glade_preview_update
QUIT_TOKEN
QUIT_TOKEN_SIZE
UPDATE_TOKEN
UPDATE_TOKEN_SIZE
<SUBSECTION Standard>
GladePreviewClass
GladePreviewPrivate
GLADE_PREVIEW
GLADE_IS_PREVIEW
GLADE_PREVIEW_CLASS
GLADE_IS_PREVIEW_CLASS
GLADE_PREVIEW_GET_CLASS
glade_preview_get_type
GLADE_TYPE_PREVIEW
</SECTION>