summaryrefslogtreecommitdiff
path: root/widgets/gtk+.xml.in
blob: 8c3d8655a5a6dd1df7aa30d82610634976c5ebd5 (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
<glade-catalog name="gtk+" library="gladegtk" domain="glade-3" book="gtk">
  <glade-widget-classes>

    <glade-widget-class name="GtkWidget" _title="Widget">
      <properties>
	<property id="visible" default="True" common="True" ignore="True"/>
	<property id="width-request"  common="True" optional="True" optional-default="False" default="0"/>
	<property id="height-request" common="True" optional="True" optional-default="False" default="0"/>

	<property common="True" id="tooltip" _name="Tooltip" default="">
	  <spec>glade_standard_string_spec</spec>
	  <_tooltip>A tooltip text for this widget</_tooltip>
	  <set-function>glade_gtk_widget_set_tooltip</set-function>
	  <get-function>glade_gtk_widget_get_tooltip</get-function>
	</property>

	<property common="True" id="extension-events">
  	  <displayable-values>
	    <value id="GDK_EXTENSION_EVENTS_NONE" _name="None"/>
	    <value id="GDK_EXTENSION_EVENTS_ALL" _name="All"/>
	    <value id="GDK_EXTENSION_EVENTS_CURSOR" _name="Cursor"/>
	  </displayable-values>
	</property>

	<property common="True" id="events" ignore="True">
  	  <displayable-values>
	    <value id="GDK_EXPOSURE_MASK" _name="Exposure"/>
	    <value id="GDK_POINTER_MOTION_MASK" _name="Pointer Motion"/>
	    <value id="GDK_POINTER_MOTION_HINT_MASK" _name="Pointer Motion Hint"/>
	    <value id="GDK_BUTTON_MOTION_MASK" _name="Button Motion"/>
	    <value id="GDK_BUTTON1_MOTION_MASK" _name="Button 1 Motion"/>
	    <value id="GDK_BUTTON2_MOTION_MASK" _name="Button 2 Motion"/>
	    <value id="GDK_BUTTON3_MOTION_MASK" _name="Button 3 Motion"/>
	    <value id="GDK_BUTTON_PRESS_MASK" _name="Button Press"/>
	    <value id="GDK_BUTTON_RELEASE_MASK" _name="Button Release"/>
	    <value id="GDK_KEY_PRESS_MASK" _name="Key Press"/>
	    <value id="GDK_KEY_RELEASE_MASK" _name="Key Release"/>
	    <value id="GDK_ENTER_NOTIFY_MASK" _name="Enter Notify"/>
	    <value id="GDK_LEAVE_NOTIFY_MASK" _name="Leave Notify"/>
	    <value id="GDK_FOCUS_CHANGE_MASK" _name="Focus Change"/>
	    <value id="GDK_STRUCTURE_MASK" _name="Structure"/>
	    <value id="GDK_PROPERTY_CHANGE_MASK" _name="Property Change"/>
	    <value id="GDK_VISIBILITY_NOTIFY_MASK" _name="Visibility Notify"/>
	    <value id="GDK_PROXIMITY_IN_MASK" _name="Proximity In"/>
	    <value id="GDK_PROXIMITY_OUT_MASK" _name="Proximity  Out"/>
	    <value id="GDK_SUBSTRUCTURE_MASK" _name="Substructure"/>
	    <value id="GDK_SCROLL_MASK" _name="Scroll"/>
	    <value id="GDK_ALL_EVENTS_MASK" _name="All Events"/>
	  </displayable-values>
	</property>

	<property id="name" disabled="True"/>
	<property id="parent" disabled="True"/>
	<property id="style" disabled="True"/>
	<property id="sensitive" ignore="True"/>
	<property id="has-default" ignore="True" common="True"/>


	<!-- Atk name and description properties -->
	<property id="accessible-name" _name="Accessible Name" ignore="True" atk-property="True" translatable="True">
	  <_tooltip>Object instance's name formatted for assistive technology access</_tooltip>
	  <spec>glade_standard_string_spec</spec>
	  <visible-lines>2</visible-lines>
	</property>

	<property id="accessible-description" _name="Accessible Description" ignore="True" atk-property="True" translatable="True">
	  <_tooltip>Description of an object, formatted for assistive technology access</_tooltip>
	  <spec>glade_standard_string_spec</spec>
	  <visible-lines>2</visible-lines>
	</property>
      </properties>

    </glade-widget-class>

    <glade-widget-class name="GtkContainer" _title="Container">
      <post-create-function>glade_gtk_container_post_create</post-create-function>
      <children>
	<child>
	  <type>GtkWidget</type>
	  <add-child-function>glade_gtk_container_add_child</add-child-function>
	  <remove-child-function>glade_gtk_container_remove_child</remove-child-function> 
	  <replace-child-function>glade_gtk_container_replace_child</replace-child-function>
	</child>
      </children>
      <properties>
        <property id="resize-mode">
  	  <displayable-values>
	    <value id="GTK_RESIZE_PARENT" _name="Parent"/>
	    <value id="GTK_RESIZE_QUEUE" _name="Queue"/>
	    <value id="GTK_RESIZE_IMMEDIATE" _name="Immediate"/>
	  </displayable-values>
	</property>
	<property id="child" disabled="True"/>
      </properties>
    </glade-widget-class>
    
    <glade-widget-class name="GtkBox" _title="Box" fixed="True">
      <post-create-function>glade_gtk_box_post_create</post-create-function>
      <get-internal-child-function>glade_gtk_box_get_internal_child</get-internal-child-function>
      <properties>
	<property id="size" _name="Number of items" query="True" default="3" save="False">
	  <spec>glade_standard_int_spec</spec>
	  <_tooltip>The number of items in the box</_tooltip>
	  <set-function>glade_gtk_box_set_size</set-function>
	  <get-function>glade_gtk_box_get_size</get-function>
	  <verify-function>glade_gtk_box_verify_size</verify-function>
	</property>
      </properties>

      <children>
        <child>
	  <type>GtkWidget</type>
	  <add-child-function>glade_gtk_box_add_child</add-child-function>
	  <remove-child-function>glade_gtk_box_remove_child</remove-child-function>
	  <child-set-property-function>glade_gtk_box_set_child_property</child-set-property-function>
	  <properties>
	    <property id="pack-type">
	      <displayable-values>
		<value id="GTK_PACK_START" _name="Start"/>
		<value id="GTK_PACK_END" _name="End"/>
	      </displayable-values>
	    </property>
	  </properties>
	</child>
      </children>
    </glade-widget-class>
    
    <glade-widget-class name="GtkWindow" generic-name="window" _title="Window">
      <post-create-function>glade_gtk_window_post_create</post-create-function>

      <properties> 
	<property id="visible" default="False"/>
     	<property common="True" id="gravity">
  	  <displayable-values>
	    <value id="GDK_GRAVITY_NORTH_WEST" _name="North West"/>
	    <value id="GDK_GRAVITY_NORTH" _name="North"/>
	    <value id="GDK_GRAVITY_NORTH_EAST" _name="North East"/>
	    <value id="GDK_GRAVITY_WEST" _name="West"/>
	    <value id="GDK_GRAVITY_CENTER" _name="Center"/>
	    <value id="GDK_GRAVITY_EAST" _name="East"/>
	    <value id="GDK_GRAVITY_SOUTH_WEST" _name="South West"/>
	    <value id="GDK_GRAVITY_SOUTH" _name="South"/>
	    <value id="GDK_GRAVITY_SOUTH_EAST" _name="South East"/>
	    <value id="GDK_GRAVITY_STATIC" _name="Static"/>
	  </displayable-values>
	</property>
	<property id="modal" ignore="True"/>
	<property id="default-width" default="0" optional="True" optional-default="False"/>
	<property id="default-height" default="0" optional="True" optional-default="False"/>
	<property id="type-hint" ignore="True">
  	  <displayable-values>
	    <value id="GDK_WINDOW_TYPE_HINT_NORMAL" _name="Normal"/>
	    <value id="GDK_WINDOW_TYPE_HINT_DIALOG" _name="Dialog"/>
	    <value id="GDK_WINDOW_TYPE_HINT_MENU" _name="Menu"/>
	    <value id="GDK_WINDOW_TYPE_HINT_TOOLBAR" _name="Toolbar"/>
	    <value id="GDK_WINDOW_TYPE_HINT_SPLASHSCREEN" _name="Splash Screen"/>
	    <value id="GDK_WINDOW_TYPE_HINT_UTILITY" _name="Utility"/>
	    <value id="GDK_WINDOW_TYPE_HINT_DOCK" _name="Dock"/>
	    <value id="GDK_WINDOW_TYPE_HINT_DESKTOP" _name="Desktop"/>
	  </displayable-values>
	</property>
	<property id="type" ignore="True">
	  <displayable-values>
	    <value id="GTK_WINDOW_TOPLEVEL" _name="Top Level"/>
	    <value id="GTK_WINDOW_POPUP" _name="Popup"/>
	  </displayable-values>
	</property>
	<property id="allow-shrink" disabled="True" />
	<property id="allow-grow" disabled="True" />
	<property id="resize-mode" disabled="True" />
	<property id="screen" disabled="True" />
	<property id="role"/>
	<property id="icon-name"/>
	<property id="resizable" ignore="True" />
	<property id="decorated" ignore="True" />
	<property id="title" ignore="True" />
      	<property id="window-position" ignore="True">
  	  <displayable-values>
	    <value id="GTK_WIN_POS_NONE" _name="None"/>
	    <value id="GTK_WIN_POS_CENTER" _name="Center"/>
	    <value id="GTK_WIN_POS_MOUSE" _name="Mouse"/>
	    <value id="GTK_WIN_POS_CENTER_ALWAYS" _name="Always Center"/>
	    <value id="GTK_WIN_POS_CENTER_ON_PARENT" _name="Center on Parent"/>
          </displayable-values>
	</property>
      </properties>
    </glade-widget-class>

    <glade-widget-class name="GtkMenuShell" _title="Menu Shell">
      <post-create-function>empty</post-create-function>
      <children>
	<child>
	  <type>GtkMenuItem</type>
  	  <add-child-function>glade_gtk_menu_shell_add_item</add-child-function>
	  <remove-child-function>glade_gtk_menu_shell_remove_item</remove-child-function>
	  <child-set-property-function>glade_gtk_menu_shell_set_child_property</child-set-property-function>
	  <child-get-property-function>glade_gtk_menu_shell_get_child_property</child-get-property-function>
          <properties>
            <property id="position" _name="Position" default="-1" save="False">
              <spec>glade_standard_int_spec</spec>
              <_tooltip>The position of the menu item in the menu shell</_tooltip>
            </property>
          </properties>
	</child>
      </children>
    </glade-widget-class>

    <glade-widget-class name="GtkMenuItem" generic-name="menuitem" _title="Menu Item">
      <post-create-function>glade_gtk_menu_item_post_create</post-create-function>
      <properties>
        <property id="label" _name="Label">
	  <_tooltip>The text of the menu item</_tooltip>
          <spec>glade_standard_string_spec</spec>
          <set-function>glade_gtk_menu_item_set_label</set-function>
        </property>
        <property id="use-underline" _name="Use Underline">
          <spec>glade_standard_boolean_spec</spec>
          <set-function>glade_gtk_menu_item_set_use_underline</set-function>
        </property>
	<!-- Atk click property -->
	<property id="atk-click" _name="Click" ignore="True" atk-action="True">
	  <_tooltip>Set the desctription of the Click atk action</_tooltip>
	  <spec>glade_standard_string_spec</spec>
	  <visible-lines>2</visible-lines>
	</property>
	<!--
	This property is added by glade2 gnome support and makes reference to
	GNOMEUIINFO_MENU_* macros. This set-function maps these properties to 
	existing non deprecated gtk ones
	-->
        <property id="stock-item" visible="False" save="False">
          <spec>glade_gtk_gnome_ui_info_spec</spec>
          <set-function>glade_gtk_menu_item_set_stock_item</set-function>
        </property>
      </properties>
      <children>
	<child>
	  <type>GtkMenu</type>
	  <get-children-function>glade_gtk_menu_item_get_submenu</get-children-function>
	  <add-child-function>glade_gtk_menu_item_add_submenu</add-child-function>
	  <remove-child-function>glade_gtk_menu_item_remove_submenu</remove-child-function>
	</child>
      </children>
    </glade-widget-class>

    <glade-widget-class name="GtkCheckMenuItem" generic-name="checkmenuitem" _title="Check Menu Item"/>

    <glade-widget-class name="GtkRadioMenuItem" generic-name="radiomenuitem" _title="Radio Menu Item">
      <properties>
        <property id="draw-as-radio" default="True"/>
	<property id="inconsistent" visible="False" save="False" default="False"/>
	<property id="group" _name="Group">
          <set-function>glade_gtk_radio_menu_item_set_group</set-function>
        </property>
      </properties>
    </glade-widget-class>

    <glade-widget-class name="GtkImageMenuItem" generic-name="imagemenuitem" _title="Image Menu Item">
      <get-internal-child-function>glade_gtk_image_menu_item_get_internal_child</get-internal-child-function>
      <properties>
        <property id="use-stock" visible="False">
	  <spec>glade_standard_boolean_spec</spec>
	  <set-function>glade_gtk_image_menu_item_set_use_stock</set-function>
        </property>
	<property id="stock" _name="Stock Item" save="False">
	  <_tooltip>A stock item, select None to choose a custom image and label</_tooltip>
	  <spec>glade_standard_stock_spec</spec>
	  <set-function>glade_gtk_image_menu_item_set_stock</set-function>
	</property>
	<property id="image" disabled="True" />
      </properties>
    </glade-widget-class>

    <glade-widget-class name="GtkSeparatorMenuItem" generic-name="separatormenuitem" _title="Separator Menu Item">
      <properties>
        <property id="label" visible="False"/>
        <property id="use-underline" visible="False"/>
      </properties>
    </glade-widget-class>

    <glade-widget-class name="GtkMenuBar" generic-name="menubar" _title="Menu Bar">
      <post-create-function>glade_gtk_menu_bar_post_create</post-create-function>
      <launch-editor-function>glade_gtk_menu_bar_launch_editor</launch-editor-function>
      <!-- menubar is a container you can't add placeholders to it -->
      <properties>
        <property id="child-pack-direction">
          <displayable-values>
	    <value id="GTK_PACK_DIRECTION_LTR" _name="Left to Right"/>
	    <value id="GTK_PACK_DIRECTION_RTL" _name="Right to Left"/>
	    <value id="GTK_PACK_DIRECTION_TTB" _name="Top to Bottom"/>
	    <value id="GTK_PACK_DIRECTION_BTT" _name="Bottom to Top"/>
	  </displayable-values>
	</property>
        <property id="pack-direction">
          <displayable-values>
	    <value id="GTK_PACK_DIRECTION_LTR" _name="Left to Right"/>
	    <value id="GTK_PACK_DIRECTION_RTL" _name="Right to Left"/>
	    <value id="GTK_PACK_DIRECTION_TTB" _name="Top to Bottom"/>
	    <value id="GTK_PACK_DIRECTION_BTT" _name="Bottom to Top"/>
	  </displayable-values>
	</property>
      </properties>
      <packing-defaults>
	<parent-class name="GtkVBox">
	  <child-property id="expand" default="false"/>
	</parent-class>
      </packing-defaults>
    </glade-widget-class>
      
    <glade-widget-class name="GtkToolbar" generic-name="toolbar" _title="Tool Bar">
      <post-create-function>empty</post-create-function>
      <properties>
	<property id="orientation">
  	  <displayable-values>
	    <value id="GTK_ORIENTATION_HORIZONTAL" _name="Horizontal"/>
	    <value id="GTK_ORIENTATION_VERTICAL" _name="Vertical"/>
	  </displayable-values>
	</property>
      	<property id="toolbar-style">
  	  <displayable-values>
	    <value id="GTK_TOOLBAR_ICONS" _name="Icons"/>
	    <value id="GTK_TOOLBAR_TEXT" _name="Text"/>
	    <value id="GTK_TOOLBAR_BOTH" _name="Both"/>
	    <value id="GTK_TOOLBAR_BOTH_HORIZ" _name="Both Horizontal"/>
	  </displayable-values>
	</property>
      </properties>
      <children>
	<child>
	  <type>GtkToolItem</type>
	  <add-child-function>glade_gtk_toolbar_add_child</add-child-function>
	  <remove-child-function>glade_gtk_toolbar_remove_child</remove-child-function>
	  <child-set-property-function>glade_gtk_toolbar_set_child_property</child-set-property-function>
	  <child-get-property-function>glade_gtk_toolbar_get_child_property</child-get-property-function>
          <properties>
            <property id="position" _name="Position" default="-1" save="False">
              <spec>glade_standard_int_spec</spec>
              <_tooltip>The position of the tool item in the toolbar</_tooltip>
            </property>
          </properties>
	</child>
      </children>

      <packing-defaults>
	<parent-class name="GtkVBox">
	  <child-property id="expand" default="false"/>
	</parent-class>
      </packing-defaults>
    </glade-widget-class>
    
    <glade-widget-class name="GtkToolItem" generic-name="toolitem" title="GtkToolItem">
      <post-create-function>glade_gtk_tool_item_post_create</post-create-function>
    </glade-widget-class>
    
    <glade-widget-class name="GtkSeparatorToolItem" generic-name="separatortoolbutton" _title="Separator Tool Item"/>
	
    <glade-widget-class name="GtkToolButton" generic-name="toolbutton" _title="Tool Button">
      <properties>
        <property id="icon-widget" disabled="True"/>
	<property id="label-widget" disabled="True"/>
        <property id="label">
	  <set-function>glade_gtk_tool_button_set_label</set-function>
	</property>
        <property id="icon-name" translatable="False">
	  <set-function>glade_gtk_tool_button_set_icon_name</set-function>
	</property>
	<property id="stock-id" visible="False" translatable="False">
	  <set-function>glade_gtk_tool_button_set_stock_id</set-function>
	</property>
        <property id="glade-type" _name="Image Type" save="False">
	  <spec>glade_gtk_image_type_spec</spec>
	  <set-function>glade_gtk_tool_button_set_type</set-function>
	</property>
	<property id="glade-stock" _name="Stock Item" save="False">
	  <spec>glade_standard_stock_spec</spec>
	  <set-function>glade_gtk_tool_button_set_glade_stock</set-function>
	</property>
	<property id="icon" _name="File Name" translatable="False">
	  <spec>glade_standard_pixbuf_spec</spec>
	  <set-function>glade_gtk_tool_button_set_icon</set-function>
	</property>
      </properties>
    </glade-widget-class>
    
    <glade-widget-class name="GtkToggleToolButton" generic-name="toggletoolbutton" _title="Toggle Tool Button"/>
    
    <glade-widget-class name="GtkRadioToolButton" generic-name="radiotoolbutton" _title="Radio Tool Button"/>
    
    <glade-widget-class name="GtkMenuToolButton" generic-name="menutoolbutton" _title="Menu Tool Button"/>
    
    <glade-widget-class name="GtkHandleBox" generic-name="handlebox" _title="Handle Box">
      <properties>
      	<property id="handle-position">
  	  <displayable-values>
	    <value id="GTK_POS_LEFT" _name="Left"/>
	    <value id="GTK_POS_RIGHT" _name="Right"/>
	    <value id="GTK_POS_TOP" _name="Top"/>
	    <value id="GTK_POS_BOTTOM" _name="Bottom"/>
	  </displayable-values>
	</property>
	<property id="shadow" disabled="True"/>
      	<property id="shadow-type">
  	  <displayable-values>
	    <value id="GTK_SHADOW_NONE" _name="None"/>
	    <value id="GTK_SHADOW_IN" _name="In"/>
	    <value id="GTK_SHADOW_OUT" _name="Out"/>
	    <value id="GTK_SHADOW_ETCHED_IN" _name="Etched In"/>
	    <value id="GTK_SHADOW_ETCHED_OUT" _name="Etched Out"/>
	  </displayable-values>
	</property>
      	<property id="snap-edge">
  	  <displayable-values>
	    <value id="GTK_POS_LEFT" _name="Left"/>
	    <value id="GTK_POS_RIGHT" _name="Right"/>
	    <value id="GTK_POS_TOP" _name="Top"/>
	    <value id="GTK_POS_BOTTOM" _name="Bottom"/>
	  </displayable-values>
	</property>
      </properties>
    </glade-widget-class>

    <glade-widget-class name="GtkLabel" generic-name="label" _title="Label">
      <properties>
        <property id="selectable" ignore="True"/>
	<property id="pattern" default=""/>
	<property id="max-width-chars" _name="Maximun Width"/>
      	<property id="label" default="label" translatable="True">
            <visible-lines>2</visible-lines>
	    <set-function>glade_gtk_label_set_label</set-function>
        </property>
      	<property id="justify">
  	  <displayable-values>
	    <value id="GTK_JUSTIFY_LEFT" _name="Left"/>
	    <value id="GTK_JUSTIFY_RIGHT" _name="Right"/>
	    <value id="GTK_JUSTIFY_CENTER" _name="Center"/>
	    <value id="GTK_JUSTIFY_FILL" _name="Fill"/>
	  </displayable-values>
	</property>
      	<property id="ellipsize">
  	  <displayable-values>
	    <value id="PANGO_ELLIPSIZE_NONE" _name="None"/>
	    <value id="PANGO_ELLIPSIZE_START" _name="Start"/>
	    <value id="PANGO_ELLIPSIZE_MIDDLE" _name="Middle"/>
	    <value id="PANGO_ELLIPSIZE_END" _name="End"/>
	  </displayable-values>
	</property>
      </properties>
    </glade-widget-class>

    <glade-widget-class name="GtkEntry" generic-name="entry" _title="Text Entry">
      <properties>
	<!-- Atk activate property -->
	<property id="atk-activate" _name="Activate" ignore="True" atk-action="True">
	  <_tooltip>Set the desctription of the Activate atk action</_tooltip>
	  <spec>glade_standard_string_spec</spec>
	  <visible-lines>2</visible-lines>
	</property>
      </properties>
    </glade-widget-class>

    <glade-widget-class name="GtkTextView" generic-name="textview" _title="Text View">
      <properties>
      	<property id="justification">
  	  <displayable-values>
	    <value id="GTK_JUSTIFY_LEFT" _name="Left"/>
	    <value id="GTK_JUSTIFY_RIGHT" _name="Right"/>
	    <value id="GTK_JUSTIFY_CENTER" _name="Center"/>
	    <value id="GTK_JUSTIFY_FILL" _name="Fill"/>
	  </displayable-values>
	</property>
      	<property id="wrap-mode">
  	  <displayable-values>
	    <value id="GTK_WRAP_NONE" _name="None"/>
	    <value id="GTK_WRAP_CHAR" _name="Character"/>
	    <value id="GTK_WRAP_WORD" _name="Word"/>
	    <value id="GTK_WRAP_WORD_CHAR" _name="Word Character"/>
	  </displayable-values>
	</property>
	<property id="buffer" disabled="True"/>
      </properties>
    </glade-widget-class>

    <glade-widget-class name="GtkButton" generic-name="button" _title="Button">
      <post-create-function>glade_gtk_button_post_create</post-create-function>
      <properties>
	<property id="image" disabled="True"/>
	<property id="use-stock" visible="False"/>

      	<property id="label" default="button" translatable="True">
            <visible-lines>2</visible-lines>
	</property>

	<property id="stock" _name="Stock Button" save="False">
	  <spec>glade_standard_stock_spec</spec>
	  <_tooltip>The stock item for this button</_tooltip>
	  <set-function>glade_gtk_button_set_stock</set-function>
	</property>

	<property id="glade-type" _name="Edit Type" save="False">
	  <spec>glade_gtk_button_type_spec</spec>
	  <set-function>glade_gtk_button_set_type</set-function>
	</property>

	<property id="response-id" _name="Response ID" default="0" common="False" ignore="True">
	  <spec>glade_standard_int_spec</spec>
	  <_tooltip>The response ID of this button in a dialog (it's NOT useful if this button is not in a GtkDialog)</_tooltip>
	</property>

      	<property id="relief">
  	  <displayable-values>
	    <value id="GTK_RELIEF_NORMAL" _name="Normal"/>
	    <value id="GTK_RELIEF_HALF" _name="Half"/>
	    <value id="GTK_RELIEF_NONE" _name="None"/>
	  </displayable-values>
	</property>

	<!-- Atk click property -->
	<property id="atk-click" _name="Click" ignore="True" atk-action="True">
	  <_tooltip>Set the desctription of the Click atk action</_tooltip>
	  <spec>glade_standard_string_spec</spec>
	  <visible-lines>2</visible-lines>
	</property>

	<!-- Atk press property -->
	<property id="atk-press" _name="Press" ignore="True" atk-action="True">
	  <_tooltip>Set the desctription of the Press atk action</_tooltip>
	  <spec>glade_standard_string_spec</spec>
	  <visible-lines>2</visible-lines>
	</property>

	<!-- Atk release property -->
	<property id="atk-release" _name="Release" ignore="True" atk-action="True">
	  <_tooltip>Set the desctription of the Release atk action</_tooltip>
	  <spec>glade_standard_string_spec</spec>
	  <visible-lines>2</visible-lines>
	</property>
      </properties>

      <children>
	<child>
	  <type>GtkWidget</type>
	  <add-child-function>glade_gtk_button_add_child</add-child-function>
	  <remove-child-function>glade_gtk_button_remove_child</remove-child-function>
	  <replace-child-function>glade_gtk_button_replace_child</replace-child-function>
	</child>
      </children>
    </glade-widget-class>
  
    <glade-widget-class name="GtkToggleButton" generic-name="togglebutton" _title="Toggle Button">
      <properties>
      	<property id="label" default="togglebutton"/>
      </properties>
    </glade-widget-class>

    <glade-widget-class name="GtkCheckButton" generic-name="checkbutton" _title="Check Button">
      <properties>
      	<property id="label" default="checkbutton"/>
	<property id="draw-indicator" default="True"/>
      </properties>
    </glade-widget-class>

    <glade-widget-class name="GtkSpinButton" generic-name="spinbutton" _title="Spin Button">
      <properties>
        <property id="text" disabled="True"/>
        <property id="value" disabled="True"/>
	<property id="can-focus" default="True"/>
        <property id="adjustment" default="0 0 100 1 10 10">
	  <set-function>glade_gtk_spin_button_set_adjustment</set-function>
	</property>
        <property id="update-policy">
  	  <displayable-values>
	    <value id="GTK_UPDATE_ALWAYS" _name="Always"/>
	    <value id="GTK_UPDATE_IF_VALID" _name="If Valid"/>
	  </displayable-values>
	</property>
      </properties>
    </glade-widget-class>

    <glade-widget-class name="GtkRadioButton" generic-name="radiobutton" _title="Radio Button">
      <properties>
      	<property id="label" default="radiobutton"/>
	<property id="draw-indicator" default="True"/>
      </properties>
    </glade-widget-class>

    <glade-widget-class name="GtkFileChooserButton" generic-name="filechooserbutton" _title="File Chooser Button">
      <properties>
	<property id="size" disabled="True"/>
	<property id="dialog" disabled="True"/>
        <property id="action">
  	  <displayable-values>
	    <value id="GTK_FILE_CHOOSER_ACTION_SAVE" _name="Save"/>
	    <value id="GTK_FILE_CHOOSER_ACTION_OPEN" _name="Open"/>
	    <value id="GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER" _name="Select Folder"/>
	    <value id="GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER" _name="Create Folder"/>
	  </displayable-values>
        </property>
	<property id="extra-widget" disabled="True" />
	<property id="preview-widget" disabled="True" />
	<property id="filter" disabled="True" />
      </properties>
    </glade-widget-class>

    <glade-widget-class name="GtkColorButton" generic-name="colorbutton" _title="Color Button">
      <properties>
	<property id="color" default="Black"/>

	<!-- These props dont apply to color buttons -->
	<property id="glade-type" disabled="True"/>
	<property id="label" disabled="True"/>
	<property id="use-underline" disabled="True"/>
	<property id="stock" disabled="True"/>
      </properties>
    </glade-widget-class>

    <glade-widget-class name="GtkFontButton" generic-name="fontbutton" _title="Font Button">
      <properties>
	<!-- These props dont apply to font buttons -->
	<property id="glade-type" disabled="True"/>
	<property id="label" disabled="True"/>
	<property id="use-underline" disabled="True"/>
	<property id="stock" disabled="True"/>
      </properties>
    </glade-widget-class>

    <glade-widget-class name="GtkComboBox" generic-name="combobox" _title="Combo Box">
      <post-create-function>glade_gtk_combo_box_post_create</post-create-function>
      <properties>
        <property id="active" ignore="True"/>
        <property id="column-span-column" ignore="True"/>
        <property id="row-span-column" ignore="True"/>
	<property id="items" _name="Items" translatable="True">
	  <spec>glade_standard_strv_spec</spec>
	  <_tooltip>The items in this combo box</_tooltip>
	  <set-function>glade_gtk_combo_box_set_items</set-function>
	</property>

	<!-- Atk press property -->
	<property id="atk-press" _name="Press" ignore="True" atk-action="True">
	  <_tooltip>Set the desctription of the Press atk action</_tooltip>
	  <spec>glade_standard_string_spec</spec>
	  <visible-lines>2</visible-lines>
	</property>
      </properties>
    </glade-widget-class>

    <glade-widget-class name="GtkComboBoxEntry" generic-name="comboboxentry" _title="Combo Box Entry"/>

    <glade-widget-class name="GtkTreeView" generic-name="treeview" _title="Tree View">
      <post-create-function>glade_gtk_tree_view_post_create</post-create-function>
      <properties>
        <property id="hadjustment" disabled="True"/>
	<property id="vadjustment" disabled="True"/>
      </properties>
    </glade-widget-class>

    <glade-widget-class name="GtkIconView" generic-name="iconview" _title="Icon View" />

    <glade-widget-class name="GtkProgressBar" generic-name="progressbar" _title="Progress Bar">
      <properties>
        <property id="activity-blocks" disabled="True"/>
	<property id="activity-step" disabled="True"/>
	<property id="adjustment" disabled="True"/>
	<property id="bar-style" disabled="True"/>
       	<property id="orientation">
  	  <displayable-values>
	    <value id="GTK_PROGRESS_LEFT_TO_RIGHT" _name="Left to Right"/>
	    <value id="GTK_PROGRESS_RIGHT_TO_LEFT" _name="Right to Left"/>
	    <value id="GTK_PROGRESS_BOTTOM_TO_TOP" _name="Bottom to Top"/>
	    <value id="GTK_PROGRESS_TOP_TO_BOTTOM" _name="Top to Bottom"/>
	  </displayable-values>
	</property>
      	<property id="ellipsize">
  	  <displayable-values>
	    <value id="PANGO_ELLIPSIZE_NONE" _name="None"/>
	    <value id="PANGO_ELLIPSIZE_START" _name="Start"/>
	    <value id="PANGO_ELLIPSIZE_MIDDLE" _name="Middle"/>
	    <value id="PANGO_ELLIPSIZE_END" _name="End"/>
	  </displayable-values>
	</property>
       	<property id="bar-style">
  	  <displayable-values>
	    <value id="GTK_PROGRESS_CONTINUOUS" _name="Continuous"/>
	    <value id="GTK_PROGRESS_DISCRETE" _name="Discrete"/>
	  </displayable-values>
	</property>
      </properties>
    </glade-widget-class>

    <glade-widget-class name="GtkImage" generic-name="image" _title="Image">
      <post-create-function>glade_gtk_image_post_create</post-create-function>
      <properties>
	<property id="stock" visible="False">
	  <set-function>glade_gtk_image_set_real_stock</set-function>
	</property>
	<property id="glade-type" _name="Edit Type" save="False">
	  <spec>glade_gtk_image_type_spec</spec>
	  <set-function>glade_gtk_image_set_type</set-function>
	</property>
	<property id="pixbuf-animation" disabled="True"/>
	<property id="file" disabled="True"/>
	<property id="pixmap" disabled="True"/>
	<property id="image" disabled="True"/>
	<property id="mask" disabled="True"/>
	<property id="pixbuf" _name="File Name"/>
	<property id="glade-stock" _name="Stock Image" save="False">
	  <_tooltip>A builtin stock image</_tooltip>
	  <spec>glade_standard_stock_spec</spec>
	  <_tooltip>The stock item for this image</_tooltip>
	  <set-function>glade_gtk_image_set_stock</set-function>
	</property>
	<property id="icon-name" _name="Icon Name">
	  <set-function>glade_gtk_image_set_icon_name</set-function>
	</property>
      </properties>
    </glade-widget-class>

    <glade-widget-class name="GtkDialog" generic-name="dialog" _title="Dialog Box">
      <post-create-function>glade_gtk_dialog_post_create</post-create-function>
      <get-internal-child-function>glade_gtk_dialog_get_internal_child</get-internal-child-function>
      <properties>
	<property id="default-width"  default="0" optional="True" optional-default="False"/>
	<property id="default-height" default="0" optional="True" optional-default="False"/>
      </properties>

      <children>
	<child>
	  <type>GtkWidget</type>

	  <!-- Return dialog buttons through here -->
	  <get-children-function>glade_gtk_dialog_get_children</get-children-function>

	  <!-- That's supported, and IMO is the right way to handle          -->
	  <!-- response-id (and it works), but it's not backwards compatible -->
	  <!-- with response-id being a property as in glade-2. So by now we -->
	  <!-- will just add a fake response-id property to buttons          -->
	  <!--
	  <properties>
	    <property id="response-id" _name="Response ID" default="0" common="False">
	      <spec>glade_standard_int_spec</spec>
	      <_tooltip>The response ID of this button in the dialog</_tooltip>
	      <set-function>ignore</set-function>
	      <get-function>ignore</get-function>
	    </property>
	  </properties>
	  -->
	</child>
      </children>
    </glade-widget-class>

    <glade-widget-class name="GtkHBox" generic-name="hbox" _title="Horizontal Box"/>
    <glade-widget-class name="GtkVBox" generic-name="vbox" _title="Vertical Box"/>

    <glade-widget-class name="GtkTable" generic-name="table" _title="Table" fixed="True">
      <post-create-function>glade_gtk_table_post_create</post-create-function>
      <properties>
	<property id="n-rows" default="3" query="True">
	  <set-function>glade_gtk_table_set_n_rows</set-function>
	  <verify-function>glade_gtk_table_verify_n_rows</verify-function>
	</property>
	<property id="n-columns" default="3" query="True">
	  <set-function>glade_gtk_table_set_n_columns</set-function>
	  <verify-function>glade_gtk_table_verify_n_columns</verify-function>
	</property>
      </properties>
      
      <children>
	<child>
	  <type>GtkWidget</type>
	  <child-set-property-function>glade_gtk_table_set_child_property</child-set-property-function>
  	  <add-child-function>glade_gtk_table_add_child</add-child-function>
	  <remove-child-function>glade_gtk_table_remove_child</remove-child-function>
	  <replace-child-function>glade_gtk_table_replace_child</replace-child-function>
	  <properties>
	    <property id="x-options">
	      <displayable-values>
		<value id="GTK_EXPAND" _name="Expand"/>
		<value id="GTK_SHRINK" _name="Shrink"/>
		<value id="GTK_FILL" _name="Fill"/>
	      </displayable-values>
	    </property>
	    <property id="y-options">
	      <displayable-values>
		<value id="GTK_EXPAND" _name="Expand"/>
		<value id="GTK_SHRINK" _name="Shrink"/>
		<value id="GTK_FILL" _name="Fill"/>
	      </displayable-values>
	    </property>
    	    <property id="right-attach">
	      <verify-function>glade_gtk_table_verify_right_attach</verify-function>
	    </property>
	    <property id="left-attach">
	      <verify-function>glade_gtk_table_verify_left_attach</verify-function>
	    </property>
	    <property id="bottom-attach">
	      <verify-function>glade_gtk_table_verify_bottom_attach</verify-function>
	    </property>
    	    <property id="top-attach">
	      <verify-function>glade_gtk_table_verify_top_attach</verify-function>
	    </property>
	  </properties>
	</child>
      </children>
    </glade-widget-class>

    <glade-widget-class name="GtkPaned" _title="Paned">
      <post-create-function>glade_gtk_paned_post_create</post-create-function>
      <children>
	<child>
	  <type>GtkWidget</type>
	  <add-child-function>glade_gtk_paned_add_child</add-child-function>
	  <remove-child-function>glade_gtk_paned_remove_child</remove-child-function>
	</child>
      </children>
    </glade-widget-class>

    <glade-widget-class name="GtkHPaned" generic-name="hpaned" _title="Horizontal Panes"/>

    <glade-widget-class name="GtkVPaned" generic-name="vpaned" _title="Vertical Panes"/>
  
    <glade-widget-class name="GtkNotebook" generic-name="notebook" _title="Notebook">
      <post-create-function>glade_gtk_notebook_post_create</post-create-function>
      <properties>
	<property id="page" save="False">
	  <_tooltip>Set the current page (strictly for editing purposes)</_tooltip>
	</property>

	<property id="pages" _name="Number of pages" save="False" default="3" query="True">
	  <spec>glade_standard_int_spec</spec>
	  <_tooltip>The number of pages in the notebook</_tooltip>
	  <set-function>glade_gtk_notebook_set_n_pages</set-function>
	  <get-function>glade_gtk_notebook_get_n_pages</get-function>
	  <verify-function>glade_gtk_notebook_verify_n_pages</verify-function>
	</property>
      	<property id="tab-pos">
  	  <displayable-values>
	    <value id="GTK_POS_LEFT" _name="Left"/>
	    <value id="GTK_POS_RIGHT" _name="Right"/>
	    <value id="GTK_POS_TOP" _name="Top"/>
	    <value id="GTK_POS_BOTTOM" _name="Bottom"/>
	  </displayable-values>
	</property>
      </properties>

      <children>
	<child>
	  <type>GtkWidget</type>
	  <special-child-type>type</special-child-type>
	  <add-child-function>glade_gtk_notebook_add_child</add-child-function>
	  <replace-child-function>glade_gtk_notebook_replace_child</replace-child-function>
	  <properties>
	    <property id="tab-label" disabled="True"/>
	    <property id="tab-pack">
	      <displayable-values>
		<value id="GTK_PACK_START" _name="Start"/>
		<value id="GTK_PACK_END" _name="End"/>
	      </displayable-values>
	    </property>	    
	  </properties>
	</child>
      </children>
    </glade-widget-class>


    <glade-widget-class name="GtkAlignment" generic-name="alignment" _title="Alignment"/>

    <glade-widget-class name="GtkFrame" generic-name="frame" _title="Frame">
      <post-create-function>glade_gtk_frame_post_create</post-create-function>
      <properties>
	<property id="label" disabled="True"/>
	<property id="shadow" disabled="True"/>
	<property id="label-widget" disabled="True"/>
	<property id="label-xalign" default="0.0"/>
      	<property id="shadow-type">
  	  <displayable-values>
	    <value id="GTK_SHADOW_NONE" _name="None"/>
	    <value id="GTK_SHADOW_IN" _name="In"/>
	    <value id="GTK_SHADOW_OUT" _name="Out"/>
	    <value id="GTK_SHADOW_ETCHED_IN" _name="Etched In"/>
	    <value id="GTK_SHADOW_ETCHED_OUT" _name="Etched Out"/>
	  </displayable-values>
	</property>
      </properties>
      <children>
	<child>
	  <type>GtkWidget</type>
	  <special-child-type>type</special-child-type>
	  <add-child-function>glade_gtk_frame_add_child</add-child-function>
	  <replace-child-function>glade_gtk_frame_replace_child</replace-child-function>
	</child>
      </children>
    </glade-widget-class>
    <glade-widget-class name="GtkAspectFrame" generic-name="aspectframe" _title="Aspect Frame"/>

    <glade-widget-class name="GtkRange" _title="Range">
      <properties>
        <property id="adjustment" default="0 0 100 1 10 10"/>
      	<property id="update-policy">
  	  <displayable-values>
	    <value id="GTK_UPDATE_CONTINUOUS" _name="Continuous"/>
	    <value id="GTK_UPDATE_DISCONTINUOUS" _name="Discontinuous"/>
	    <value id="GTK_UPDATE_DELAYED" _name="Delayed"/>
	  </displayable-values>
	</property>
      </properties>
    </glade-widget-class>
    
    <glade-widget-class name="GtkScale" _title="Scale">
      <properties>
      	<property id="value-pos">
  	  <displayable-values>
            <value id="GTK_POS_LEFT" _name="Left"/>
            <value id="GTK_POS_RIGHT" _name="Right"/>
            <value id="GTK_POS_TOP" _name="Top"/>
            <value id="GTK_POS_BOTTOM" _name="Bottom"/>
	  </displayable-values>
	</property>
      </properties>
    </glade-widget-class>
    <glade-widget-class name="GtkHScale" generic-name="hscale" _title="Horizontal Scale"/>
    
    <glade-widget-class name="GtkVScale" generic-name="vscale" _title="Vertical Scale"/>

    <glade-widget-class name="GtkCalendar" generic-name="calendar" _title="Calendar"/>
    
    <glade-widget-class name="GtkMenu" generic-name="menu" _title="Popup Menu">
      <!-- We do not want glade_gtk_container_post_create be executed -->
      <post-create-function>empty</post-create-function>
   </glade-widget-class>
    
    <glade-widget-class name="GtkHScrollbar" generic-name="hscrollbar" _title="Horizontal Scrollbar"/>

    <glade-widget-class name="GtkVScrollbar" generic-name="vscrollbar" _title="Vertical Scrollbar"/>

    <glade-widget-class name="GtkButtonBox" _title="Button Box">
      <properties>
      	<property id="layout-style">
  	  <displayable-values>
            <value id="GTK_BUTTONBOX_DEFAULT_STYLE" _name="Default"/>
	    <value id="GTK_BUTTONBOX_SPREAD" _name="Spread"/>
	    <value id="GTK_BUTTONBOX_EDGE" _name="Edge"/>
	    <value id="GTK_BUTTONBOX_START" _name="Start"/>
	    <value id="GTK_BUTTONBOX_END" _name="End"/>
	  </displayable-values>
	</property>
      </properties>
    </glade-widget-class>
    
    <glade-widget-class name="GtkHButtonBox" generic-name="hbuttonbox" _title="Horizontal Button Box"/>

    <glade-widget-class name="GtkVButtonBox" generic-name="vbuttonbox" _title="Vertical Button Box"/>

    <glade-widget-class name="GtkHSeparator" generic-name="hseparator" _title="Horizontal Separator">
      
      <packing-defaults>
	<parent-class name="GtkVBox">
	  <child-property id="expand" default="false"/>
	</parent-class>
      </packing-defaults>

    </glade-widget-class>

    <glade-widget-class name="GtkVSeparator" generic-name="vseparator" _title="Vertical Separator">
      <packing-defaults>
	<parent-class name="GtkHBox">
	  <child-property id="expand" default="false"/>
	</parent-class>
      </packing-defaults>
    </glade-widget-class>
    <glade-widget-class name="GtkStatusbar" generic-name="statusbar" _title="Status Bar">
      <properties>
	<property id="size" disabled="True" />
      </properties>
      <packing-defaults>
	<parent-class name="GtkVBox">
	  <child-property id="expand" default="false"/>
	</parent-class>
      </packing-defaults>
    </glade-widget-class>

    <glade-widget-class name="GtkAccelLabel" generic-name="accellabel" _title="Accel Label"/>

    <glade-widget-class name="GtkArrow" generic-name="arrow" _title="Arrow">
      <properties>
      	<property id="arrow-type">
  	  <displayable-values>
	    <value id="GTK_ARROW_UP" _name="Up"/>
	    <value id="GTK_ARROW_DOWN" _name="Down"/>
	    <value id="GTK_ARROW_LEFT" _name="Left"/>
	    <value id="GTK_ARROW_RIGHT" _name="Right"/>
	  </displayable-values>
	</property>
      	<property id="shadow-type">
  	  <displayable-values>
	    <value id="GTK_SHADOW_NONE" _name="None"/>
	    <value id="GTK_SHADOW_IN" _name="In"/>
	    <value id="GTK_SHADOW_OUT" _name="Out"/>
	    <value id="GTK_SHADOW_ETCHED_IN" _name="Etched In"/>
	    <value id="GTK_SHADOW_ETCHED_OUT" _name="Etched Out"/>
	  </displayable-values>
	</property>
      </properties>
    </glade-widget-class>
    
    <glade-widget-class name="GtkLayout" generic-name="layout" _title="Layout" fixed="True">
      <post-create-function>glade_gtk_fixed_layout_post_create</post-create-function>
      <properties>
        <property id="hadjustment" disabled="True"/>
	<property id="vadjustment" disabled="True"/>
      </properties>
      <children>
        <!-- This will unset any custom handler defined in the plugin for _add() -->
	<child>
	  <type>GtkWidget</type>
	  <add-child-function>gtk_container_add</add-child-function>
	  <remove-child-function>gtk_container_remove</remove-child-function> 
	</child>
      </children>
    </glade-widget-class>
    
    <glade-widget-class name="GtkFixed" generic-name="fixed" _title="Fixed" fixed="True">
      <post-create-function>glade_gtk_fixed_layout_post_create</post-create-function>
      <children>
        <!-- This will unset any custom handler defined in the plugin for _add() -->
	<child>
	  <type>GtkWidget</type>
	  <add-child-function>gtk_container_add</add-child-function>
	  <remove-child-function>gtk_container_remove</remove-child-function> 
	</child>
      </children>
    </glade-widget-class>
    
    <glade-widget-class name="GtkDrawingArea" generic-name="drawingarea" _title="Drawing Area"/>

    <glade-widget-class name="GtkEventBox" generic-name="eventbox" _title="Event Box"/>

    <glade-widget-class name="GtkExpander" generic-name="expander" _title="Expander">
      <post-create-function>glade_gtk_expander_post_create</post-create-function>
      <properties>
	<property id="label" visible="False"/>
	<property id="label-widget" disabled="True"/>

	<!-- Atk activate property -->
	<property id="atk-activate" _name="Activate" ignore="True" atk-action="True">
	  <_tooltip>Set the desctription of the Activate atk action</_tooltip>
	  <spec>glade_standard_string_spec</spec>
	  <visible-lines>2</visible-lines>
	</property>
      </properties>
      <children>
	<child>
	  <type>GtkWidget</type>
	  <special-child-type>type</special-child-type>
	  <add-child-function>glade_gtk_expander_add_child</add-child-function>
	  <replace-child-function>glade_gtk_expander_replace_child</replace-child-function>
	</child>
      </children>
    </glade-widget-class>

    
    <glade-widget-class name="GtkViewport" generic-name="viewport" _title="Viewport">
      <properties>
        <property id="hadjustment" disabled="True"/>
	<property id="vadjustment" disabled="True"/>
      	<property id="shadow-type">
  	  <displayable-values>
	    <value id="GTK_SHADOW_NONE" _name="None"/>
	    <value id="GTK_SHADOW_IN" _name="In"/>
	    <value id="GTK_SHADOW_OUT" _name="Out"/>
	    <value id="GTK_SHADOW_ETCHED_IN" _name="Etched In"/>
	    <value id="GTK_SHADOW_ETCHED_OUT" _name="Etched Out"/>
	  </displayable-values>
	</property>
      </properties>
    </glade-widget-class>
    
    <glade-widget-class name="GtkScrolledWindow" generic-name="scrolledwindow" _title="Scrolled Window">
      <properties>
        <property id="hadjustment" disabled="True"/>
	<property id="vadjustment" disabled="True"/>
      	<property id="shadow-type">
  	  <displayable-values>
	    <value id="GTK_SHADOW_NONE" _name="None"/>
	    <value id="GTK_SHADOW_IN" _name="In"/>
	    <value id="GTK_SHADOW_OUT" _name="Out"/>
	    <value id="GTK_SHADOW_ETCHED_IN" _name="Etched In"/>
	    <value id="GTK_SHADOW_ETCHED_OUT" _name="Etched Out"/>
	  </displayable-values>
	</property>
      	<property id="hscrollbar-policy">
  	  <displayable-values>
	    <value id="GTK_POLICY_ALWAYS" _name="Always"/>
	    <value id="GTK_POLICY_AUTOMATIC" _name="Automatic"/>
	    <value id="GTK_POLICY_NEVER" _name="Never"/>
	  </displayable-values>
	</property>
      	<property id="vscrollbar-policy">
  	  <displayable-values>
	    <value id="GTK_POLICY_ALWAYS" _name="Always"/>
	    <value id="GTK_POLICY_AUTOMATIC" _name="Automatic"/>
	    <value id="GTK_POLICY_NEVER" _name="Never"/>
	  </displayable-values>
	</property>
      	<property id="window-placement">
  	  <displayable-values>
	    <value id="GTK_CORNER_TOP_LEFT" _name="Top Left"/>
	    <value id="GTK_CORNER_BOTTOM_LEFT" _name="Bottom Left"/>
	    <value id="GTK_CORNER_TOP_RIGHT" _name="Top Right"/>
	    <value id="GTK_CORNER_BOTTOM_RIGHT" _name="Bottom Right"/>
	  </displayable-values>
	</property>
      </properties> 
    </glade-widget-class>

    <!-- NOT AVAILABLES ON WIN32
    <glade-widget-class name="GtkPlug" generic-name="plug" _title="Plug"/>
    <glade-widget-class name="GtkSocket" generic-name="socket" _title="Socket"/>
    -->
    
   <glade-widget-class name="GtkAboutDialog" generic-name="aboutdialog" _title="About Dialog"/>
   <glade-widget-class name="GtkColorSelectionDialog" generic-name="colorselectiondialog" _title="Color Selection Dialog"/>
    
    <glade-widget-class name="GtkFileChooserDialog" generic-name="filechooserdialog" _title="File Chooser Dialog">
      <properties>
	<property id="action">
  	  <displayable-values>
	    <value id="GTK_FILE_CHOOSER_ACTION_OPEN" _name="Open"/>
	    <value id="GTK_FILE_CHOOSER_ACTION_SAVE" _name="Save"/>
	    <value id="GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER" _name="Select Folder"/>
	    <value id="GTK_FILE_CHOOSER_ACTION_CREATE_FOLDER" _name="Create Folder"/>
	  </displayable-values>
	</property>
	<property id="extra-widget" disabled="True" />
	<property id="preview-widget" disabled="True" />
	<property id="filter" disabled="True" />
      </properties>
    </glade-widget-class>
    
    <glade-widget-class name="GtkFontSelectionDialog" generic-name="fontselectiondialog" _title="Font Selection Dialog"/>
   
    <glade-widget-class name="GtkInputDialog" generic-name="inputdialog" _title="Input Dialog"/>
    
    <glade-widget-class name="GtkMessageDialog" generic-name="messagedialog" _title="Message Dialog">
      <properties>
	<property id="default-width"  default="0" optional="True" optional-default="False"/>
	<property id="default-height" default="0" optional="True" optional-default="False"/>

	<property common="True" id="sensitive"/>
	<property common="True" id="can-default"/>
	<property common="True" id="has-default"/>
	<property common="True" id="can-focus"/>
	<property id="message-type">
  	  <displayable-values>
	    <value id="GTK_MESSAGE_INFO" _name="Info"/>
	    <value id="GTK_MESSAGE_WARNING" _name="Warning"/>
	    <value id="GTK_MESSAGE_QUESTION" _name="Question"/>
	    <value id="GTK_MESSAGE_ERROR" _name="Error"/>
	  </displayable-values>
	</property>
	<property id="buttons">
  	  <displayable-values>
	    <value id="GTK_BUTTONS_NONE" _name="None"/>
	    <value id="GTK_BUTTONS_OK" _name="Ok"/>
	    <value id="GTK_BUTTONS_CLOSE" _name="Close"/>
	    <value id="GTK_BUTTONS_CANCEL" _name="Cancel"/>
	    <value id="GTK_BUTTONS_YES_NO" _name="Yes, No"/>
	    <value id="GTK_BUTTONS_OK_CANCEL" _name="Ok, Cancel"/>
	  </displayable-values>
	</property>
      </properties>
    </glade-widget-class>

    <glade-widget-class name="GtkRuler" generic-name="ruler" _title="Ruler">
      <properties>
	<property default="10.0" id="upper"/>
	<property default="5.0" id="position"/>
	<property default="10.0" id="max-size"/>
      </properties>
    </glade-widget-class>

    <glade-widget-class name="GtkHRuler" generic-name="hruler" _title="Horizontal Ruler"/>
    
    <glade-widget-class name="GtkVRuler" generic-name="vruler" _title="Vertical Ruler"/>

    <glade-widget-class name="GtkCombo" generic-name="combo" _title="Combo">
      <post-create-function>glade_gtk_combo_post_create</post-create-function>
      <get-internal-child-function>glade_gtk_combo_get_internal_child</get-internal-child-function>
      <properties>
	<property id="size" disabled="True"/>

	<!-- Atk press property -->
	<property id="atk-press" _name="Press" ignore="True" atk-action="True">
	  <_tooltip>Set the desctription of the Press atk action</_tooltip>
	  <spec>glade_standard_string_spec</spec>
	  <visible-lines>2</visible-lines>
	</property>
      </properties>

      <children>
	<child>
	  <type>GtkWidget</type>
	  <get-children-function>glade_gtk_combo_get_children</get-children-function>
	</child>
      </children>
    </glade-widget-class>
    
    <glade-widget-class name="GtkOptionMenu" generic-name="optionmenu" _title="Option Menu">
      <properties>
	<!-- Atk press property -->
	<property id="atk-press" _name="Press" ignore="True" atk-action="True">
	  <_tooltip>Set the desctription of the Press atk action</_tooltip>
	  <spec>glade_standard_string_spec</spec>
	  <visible-lines>2</visible-lines>
	</property>
      </properties>
    </glade-widget-class>

    <glade-widget-class name="GtkList" generic-name="list" _title="List">
      <children>
        <!-- This will unset any custom handler defined in the plugin for _add() -->
	<child>
	  <type>GtkListItem</type>
	  <add-child-function>gtk_container_add</add-child-function>
	  <remove-child-function>gtk_container_remove</remove-child-function>
	</child>
      </children>
    </glade-widget-class>

    <glade-widget-class name="GtkListItem" generic-name="listitem" _title="List Item">
      <post-create-function>glade_gtk_list_item_post_create</post-create-function>
      <properties>
	<property id="label" _name="Label" translatable="True">
	  <spec>glade_standard_string_spec</spec>
	  <_tooltip>The text to display</_tooltip>
	  <set-function>glade_gtk_list_item_set_label</set-function>
	  <get-function>glade_gtk_list_item_get_label</get-function>
	</property>
      </properties>
    </glade-widget-class>

    <glade-widget-class name="GtkCList" generic-name="clist" _title="Columned List"/>
  
    <glade-widget-class name="GtkColorSelection" generic-name="colorselection" _title="Color Selection"/>
    
    <glade-widget-class name="GtkFontSelection" generic-name="fontselection" _title="Font Selection"/>
    
    <glade-widget-class name="GtkCurve" generic-name="curve" _title="Curve">
      <properties>
	<property id="curve-type" default="GTK_CURVE_TYPE_SPLINE">
  	  <displayable-values>
	    <value id="GTK_CURVE_TYPE_LINEAR" _name="Linear"/>
	    <value id="GTK_CURVE_TYPE_SPLINE" _name="Spline"/>
	    <value id="GTK_CURVE_TYPE_FREE" _name="Free"/>
	  </displayable-values>
	</property>
      </properties>
    </glade-widget-class>
    
    <glade-widget-class name="GtkGammaCurve" generic-name="gammacurve" _title="Gamma Curve"/>

    <glade-widget-class name="GtkFileSelection" generic-name="fileselection" _title="File Selection"/>
    <glade-widget-class name="Custom" generic-name="custom" _title="Custom widget">
      <properties>
	<property id="creation-function"/>
	<property id="string1"/>
	<property id="string2"/>
      </properties>
    </glade-widget-class>

  </glade-widget-classes>

  <glade-widget-group name="gtk-toplevels" _title="Toplevels">
    <glade-widget-class-ref name="GtkWindow"/>
    <glade-widget-class-ref name="GtkDialog"/>
    <glade-widget-class-ref name="GtkAboutDialog"/>
    <glade-widget-class-ref name="GtkColorSelectionDialog"/>
    <glade-widget-class-ref name="GtkFileChooserDialog"/>
    <glade-widget-class-ref name="GtkFontSelectionDialog"/>
    <glade-widget-class-ref name="GtkInputDialog"/>
    <glade-widget-class-ref name="GtkMessageDialog"/>
  </glade-widget-group>

  <glade-widget-group name="gtk-containers" _title="Containers">
    <glade-widget-class-ref name="GtkHBox"/>
    <glade-widget-class-ref name="GtkVBox"/>
    <glade-widget-class-ref name="GtkTable"/>
    <glade-widget-class-ref name="GtkNotebook"/>
    <glade-widget-class-ref name="GtkFrame"/>
    <glade-widget-class-ref name="GtkAspectFrame"/>
    <glade-widget-class-ref name="GtkMenuBar"/>
    <glade-widget-class-ref name="GtkToolbar"/>
    <glade-widget-class-ref name="GtkHPaned"/>
    <glade-widget-class-ref name="GtkVPaned"/>
    <glade-widget-class-ref name="GtkHButtonBox"/>
    <glade-widget-class-ref name="GtkVButtonBox"/>
    <glade-widget-class-ref name="GtkLayout"/>
    <glade-widget-class-ref name="GtkFixed"/>
    <glade-widget-class-ref name="GtkEventBox"/>
    <glade-widget-class-ref name="GtkExpander"/>
    <glade-widget-class-ref name="GtkViewport"/>
    <glade-widget-class-ref name="GtkScrolledWindow"/>
    <glade-widget-class-ref name="GtkAlignment"/>
  </glade-widget-group>

  <glade-widget-group name="gtk-control-display" _title="Control and Display">

    <glade-widget-class-ref name="GtkButton"/>
    <glade-widget-class-ref name="GtkToggleButton"/>
    <glade-widget-class-ref name="GtkCheckButton"/>
    <glade-widget-class-ref name="GtkSpinButton"/>
    <glade-widget-class-ref name="GtkRadioButton"/>
    <glade-widget-class-ref name="GtkFileChooserButton"/>
    <glade-widget-class-ref name="GtkColorButton"/>
    <glade-widget-class-ref name="GtkFontButton"/>

    <glade-widget-class-ref name="GtkImage"/>
    <glade-widget-class-ref name="GtkLabel"/>
    <glade-widget-class-ref name="GtkAccelLabel"/>
    <glade-widget-class-ref name="GtkEntry"/>
    <glade-widget-class-ref name="GtkTextView"/>

    <glade-widget-class-ref name="GtkHScale"/>
    <glade-widget-class-ref name="GtkVScale"/>
    <glade-widget-class-ref name="GtkHScrollbar"/>
    <glade-widget-class-ref name="GtkVScrollbar"/>

    <glade-widget-class-ref name="GtkComboBox"/>
    <glade-widget-class-ref name="GtkComboBoxEntry"/>
    <glade-widget-class-ref name="GtkProgressBar"/>

    <glade-widget-class-ref name="GtkTreeView"/>
    <glade-widget-class-ref name="GtkIconView"/>

    <glade-widget-class-ref name="GtkHandleBox"/>
    <glade-widget-class-ref name="GtkStatusbar"/>

    <glade-widget-class-ref name="GtkCalendar"/>
    <glade-widget-class-ref name="GtkMenu"/>
    <glade-widget-class-ref name="GtkHSeparator"/>
    <glade-widget-class-ref name="GtkVSeparator"/>
    <glade-widget-class-ref name="GtkArrow"/>
    <glade-widget-class-ref name="GtkDrawingArea"/>
  </glade-widget-group>

  <glade-widget-group name="gtk-obsolete" _title="Gtk+ Obsolete">

    <default-palette-state expanded="False" />

    <glade-widget-class-ref name="GtkCombo"/>
    <glade-widget-class-ref name="GtkOptionMenu"/>
    <glade-widget-class-ref name="GtkHRuler"/>
    <glade-widget-class-ref name="GtkVRuler"/>
    <glade-widget-class-ref name="GtkList"/>
    <glade-widget-class-ref name="GtkCList"/>
    <glade-widget-class-ref name="GtkColorSelection"/>
    <glade-widget-class-ref name="GtkFontSelection"/>
    <glade-widget-class-ref name="GtkCurve"/>
    <glade-widget-class-ref name="GtkGammaCurve"/>
    <glade-widget-class-ref name="GtkFileSelection"/>
    <glade-widget-class-ref name="Custom"/>
  </glade-widget-group>
</glade-catalog>