File: wrap_init.cc

package info (click to toggle)
gtkmm3.0 3.14.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 159,024 kB
  • ctags: 22,555
  • sloc: xml: 107,819; sh: 11,425; cpp: 7,074; makefile: 241; perl: 235
file content (1269 lines) | stat: -rw-r--r-- 57,752 bytes parent folder | download
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
// Generated by generate_wrap_init.pl -- DO NOT MODIFY!

#include <glibmm.h>

// Disable the 'const' function attribute of the get_type() functions.
// GCC would optimize them out because we don't use the return value.
#undef  G_GNUC_CONST
#define G_GNUC_CONST /* empty */

#include <gtkmm/wrap_init.h>
#include <glibmm/error.h>
#include <glibmm/object.h>
#include <gdk/gdk.h>

// #include the widget headers so that we can call the get_type() static methods:
#include "aboutdialog.h"
#include "accelgroup.h"
#include "accellabel.h"
#include "action.h"
#include "actionable.h"
#include "actionbar.h"
#include "actiongroup.h"
#include "activatable.h"
#include "adjustment.h"
#ifndef GTKMM_DISABLE_DEPRECATED
#include "alignment.h"
#endif // *_DISABLE_DEPRECATED
#include "appchooser.h"
#include "appchooserbutton.h"
#include "appchooserdialog.h"
#include "appchooserwidget.h"
#include "application.h"
#include "applicationwindow.h"
#ifndef GTKMM_DISABLE_DEPRECATED
#include "arrow.h"
#endif // *_DISABLE_DEPRECATED
#include "aspectframe.h"
#include "assistant.h"
#include "bin.h"
#include "border.h"
#include "box.h"
#include "buildable.h"
#include "builder.h"
#include "button.h"
#include "buttonbox.h"
#include "calendar.h"
#include "cellarea.h"
#include "cellareabox.h"
#include "cellareacontext.h"
#include "celleditable.h"
#include "celllayout.h"
#include "cellrenderer.h"
#include "cellrendereraccel.h"
#include "cellrenderercombo.h"
#include "cellrendererpixbuf.h"
#include "cellrendererprogress.h"
#include "cellrendererspin.h"
#include "cellrendererspinner.h"
#include "cellrenderertext.h"
#include "cellrenderertoggle.h"
#include "cellview.h"
#include "checkbutton.h"
#include "checkmenuitem.h"
#include "clipboard.h"
#include "colorbutton.h"
#include "colorchooser.h"
#include "colorchooserdialog.h"
#ifndef GTKMM_DISABLE_DEPRECATED
#include "colorselection.h"
#endif // *_DISABLE_DEPRECATED
#include "combobox.h"
#include "comboboxtext.h"
#include "container.h"
#include "cssprovider.h"
#include "dialog.h"
#include "drawingarea.h"
#include "editable.h"
#include "entry.h"
#include "entrybuffer.h"
#include "entrycompletion.h"
#include "enums.h"
#include "eventbox.h"
#include "eventcontroller.h"
#include "expander.h"
#include "filechooser.h"
#include "filechooserbutton.h"
#include "filechooserdialog.h"
#include "filechooserwidget.h"
#include "filefilter.h"
#include "fixed.h"
#include "flowbox.h"
#include "flowboxchild.h"
#include "fontbutton.h"
#include "fontchooser.h"
#include "fontchooserdialog.h"
#include "fontchooserwidget.h"
#ifndef GTKMM_DISABLE_DEPRECATED
#include "fontselection.h"
#endif // *_DISABLE_DEPRECATED
#include "frame.h"
#include "gesture.h"
#include "gesturedrag.h"
#include "gesturelongpress.h"
#include "gesturemultipress.h"
#include "gesturepan.h"
#include "gesturerotate.h"
#include "gesturesingle.h"
#include "gestureswipe.h"
#include "gesturezoom.h"
#include "grid.h"
#ifndef GTKMM_DISABLE_DEPRECATED
#include "handlebox.h"
#endif // *_DISABLE_DEPRECATED
#include "headerbar.h"
#include "hvbox.h"
#ifndef GTKMM_DISABLE_DEPRECATED
#include "hvbuttonbox.h"
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
#include "hvpaned.h"
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
#include "hvscale.h"
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
#include "hvscrollbar.h"
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
#include "hvseparator.h"
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
#include "iconfactory.h"
#endif // *_DISABLE_DEPRECATED
#include "iconinfo.h"
#ifndef GTKMM_DISABLE_DEPRECATED
#include "iconset.h"
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
#include "iconsource.h"
#endif // *_DISABLE_DEPRECATED
#include "icontheme.h"
#include "iconview.h"
#include "image.h"
#ifndef GTKMM_DISABLE_DEPRECATED
#include "imagemenuitem.h"
#endif // *_DISABLE_DEPRECATED
#include "infobar.h"
#include "invisible.h"
#include "label.h"
#include "layout.h"
#include "levelbar.h"
#include "linkbutton.h"
#include "listbox.h"
#include "listboxrow.h"
#include "liststore.h"
#include "lockbutton.h"
#include "main.h"
#include "menu.h"
#include "menubar.h"
#include "menubutton.h"
#include "menuitem.h"
#include "menushell.h"
#include "menutoolbutton.h"
#include "messagedialog.h"
#include "misc.h"
#include "notebook.h"
#ifndef GTKMM_DISABLE_DEPRECATED
#include "numerableicon.h"
#endif // *_DISABLE_DEPRECATED
#include "offscreenwindow.h"
#include "orientable.h"
#include "overlay.h"
#include "pagesetup.h"
#ifndef G_OS_WIN32
#include "pagesetupunixdialog.h"
#endif // ifndef G_OS_WIN32
#include "paned.h"
#include "papersize.h"
#include "placessidebar.h"
#ifdef GDK_WINDOWING_X11
#include "plug.h"
#endif // ifdef GDK_WINDOWING_X11
#include "popover.h"
#include "printcontext.h"
#ifndef G_OS_WIN32
#include "printer.h"
#endif // ifndef G_OS_WIN32
#ifndef G_OS_WIN32
#include "printjob.h"
#endif // ifndef G_OS_WIN32
#include "printoperation.h"
#include "printoperationpreview.h"
#include "printsettings.h"
#ifndef G_OS_WIN32
#include "printunixdialog.h"
#endif // ifndef G_OS_WIN32
#include "progressbar.h"
#include "radioaction.h"
#include "radiobutton.h"
#include "radiomenuitem.h"
#include "radiotoolbutton.h"
#include "range.h"
#include "recentaction.h"
#include "recentchooser.h"
#include "recentchooserdialog.h"
#include "recentchoosermenu.h"
#include "recentchooserwidget.h"
#include "recentfilter.h"
#include "recentinfo.h"
#include "recentmanager.h"
#include "requisition.h"
#include "revealer.h"
#include "scale.h"
#include "scalebutton.h"
#include "scrollable.h"
#include "scrollbar.h"
#include "scrolledwindow.h"
#include "searchbar.h"
#include "searchentry.h"
#include "selectiondata.h"
#include "separator.h"
#include "separatormenuitem.h"
#include "separatortoolitem.h"
#include "settings.h"
#include "sizegroup.h"
#ifdef GDK_WINDOWING_X11
#include "socket.h"
#endif // ifdef GDK_WINDOWING_X11
#include "spinbutton.h"
#include "spinner.h"
#include "stack.h"
#include "stackswitcher.h"
#include "statusbar.h"
#ifndef GTKMM_DISABLE_DEPRECATED
#include "statusicon.h"
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
#include "stockitem.h"
#endif // *_DISABLE_DEPRECATED
#include "stylecontext.h"
#include "styleprovider.h"
#include "switch.h"
#ifndef GTKMM_DISABLE_DEPRECATED
#include "table.h"
#endif // *_DISABLE_DEPRECATED
#include "targetlist.h"
#ifndef GTKMM_DISABLE_DEPRECATED
#include "tearoffmenuitem.h"
#endif // *_DISABLE_DEPRECATED
#include "textattributes.h"
#include "textbuffer.h"
#include "textchildanchor.h"
#include "textiter.h"
#include "textmark.h"
#include "texttag.h"
#include "texttagtable.h"
#include "textview.h"
#include "toggleaction.h"
#include "togglebutton.h"
#include "toggletoolbutton.h"
#include "toolbar.h"
#include "toolbutton.h"
#include "toolitem.h"
#include "toolitemgroup.h"
#include "toolpalette.h"
#include "toolshell.h"
#include "tooltip.h"
#include "treedragdest.h"
#include "treedragsource.h"
#include "treeiter.h"
#include "treemodel.h"
#include "treemodelfilter.h"
#include "treemodelsort.h"
#include "treepath.h"
#include "treerowreference.h"
#include "treeselection.h"
#include "treesortable.h"
#include "treestore.h"
#include "treeview.h"
#include "treeviewcolumn.h"
#include "uimanager.h"
#include "viewport.h"
#include "volumebutton.h"
#include "widget.h"
#include "widgetpath.h"
#include "window.h"

extern "C"
{
//Declarations of the *_get_type() functions:

GType gtk_about_dialog_get_type(void);
GType gtk_accel_group_get_type(void);
GType gtk_accel_label_get_type(void);
GType gtk_action_get_type(void);
GType gtk_action_bar_get_type(void);
GType gtk_action_group_get_type(void);
GType gtk_adjustment_get_type(void);
#ifndef GTKMM_DISABLE_DEPRECATED
GType gtk_alignment_get_type(void);
#endif // *_DISABLE_DEPRECATED
GType gtk_app_chooser_button_get_type(void);
GType gtk_app_chooser_dialog_get_type(void);
GType gtk_app_chooser_widget_get_type(void);
GType gtk_application_get_type(void);
GType gtk_application_window_get_type(void);
#ifndef GTKMM_DISABLE_DEPRECATED
GType gtk_arrow_get_type(void);
#endif // *_DISABLE_DEPRECATED
GType gtk_aspect_frame_get_type(void);
GType gtk_assistant_get_type(void);
GType gtk_bin_get_type(void);
GType gtk_box_get_type(void);
GType gtk_builder_get_type(void);
GType gtk_button_get_type(void);
GType gtk_button_box_get_type(void);
GType gtk_calendar_get_type(void);
GType gtk_cell_area_get_type(void);
GType gtk_cell_area_box_get_type(void);
GType gtk_cell_area_context_get_type(void);
GType gtk_cell_renderer_get_type(void);
GType gtk_cell_renderer_accel_get_type(void);
GType gtk_cell_renderer_combo_get_type(void);
GType gtk_cell_renderer_pixbuf_get_type(void);
GType gtk_cell_renderer_progress_get_type(void);
GType gtk_cell_renderer_spin_get_type(void);
GType gtk_cell_renderer_spinner_get_type(void);
GType gtk_cell_renderer_text_get_type(void);
GType gtk_cell_renderer_toggle_get_type(void);
GType gtk_cell_view_get_type(void);
GType gtk_check_button_get_type(void);
GType gtk_check_menu_item_get_type(void);
GType gtk_clipboard_get_type(void);
GType gtk_color_button_get_type(void);
GType gtk_color_chooser_dialog_get_type(void);
#ifndef GTKMM_DISABLE_DEPRECATED
GType gtk_color_selection_get_type(void);
GType gtk_color_selection_dialog_get_type(void);
#endif // *_DISABLE_DEPRECATED
GType gtk_combo_box_get_type(void);
GType gtk_combo_box_text_get_type(void);
GType gtk_container_get_type(void);
GType gtk_css_provider_get_type(void);
GType gtk_dialog_get_type(void);
GType gtk_drawing_area_get_type(void);
GType gtk_entry_get_type(void);
GType gtk_entry_buffer_get_type(void);
GType gtk_entry_completion_get_type(void);
GType gtk_event_box_get_type(void);
GType gtk_event_controller_get_type(void);
GType gtk_expander_get_type(void);
GType gtk_file_chooser_button_get_type(void);
GType gtk_file_chooser_dialog_get_type(void);
GType gtk_file_chooser_widget_get_type(void);
GType gtk_file_filter_get_type(void);
GType gtk_fixed_get_type(void);
GType gtk_flow_box_get_type(void);
GType gtk_flow_box_child_get_type(void);
GType gtk_font_button_get_type(void);
GType gtk_font_chooser_dialog_get_type(void);
GType gtk_font_chooser_widget_get_type(void);
#ifndef GTKMM_DISABLE_DEPRECATED
GType gtk_font_selection_get_type(void);
GType gtk_font_selection_dialog_get_type(void);
#endif // *_DISABLE_DEPRECATED
GType gtk_frame_get_type(void);
GType gtk_gesture_get_type(void);
GType gtk_gesture_drag_get_type(void);
GType gtk_gesture_long_press_get_type(void);
GType gtk_gesture_multi_press_get_type(void);
GType gtk_gesture_pan_get_type(void);
GType gtk_gesture_rotate_get_type(void);
GType gtk_gesture_single_get_type(void);
GType gtk_gesture_swipe_get_type(void);
GType gtk_gesture_zoom_get_type(void);
GType gtk_grid_get_type(void);
#ifndef GTKMM_DISABLE_DEPRECATED
GType gtk_handle_box_get_type(void);
#endif // *_DISABLE_DEPRECATED
GType gtk_header_bar_get_type(void);
GType gtk_vbox_get_type(void);
GType gtk_hbox_get_type(void);
#ifndef GTKMM_DISABLE_DEPRECATED
GType gtk_vbutton_box_get_type(void);
GType gtk_hbutton_box_get_type(void);
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
GType gtk_hpaned_get_type(void);
GType gtk_vpaned_get_type(void);
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
GType gtk_vscale_get_type(void);
GType gtk_hscale_get_type(void);
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
GType gtk_vscrollbar_get_type(void);
GType gtk_hscrollbar_get_type(void);
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
GType gtk_vseparator_get_type(void);
GType gtk_hseparator_get_type(void);
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
GType gtk_icon_factory_get_type(void);
#endif // *_DISABLE_DEPRECATED
GType gtk_icon_theme_get_type(void);
GType gtk_icon_view_get_type(void);
GType gtk_image_get_type(void);
#ifndef GTKMM_DISABLE_DEPRECATED
GType gtk_image_menu_item_get_type(void);
#endif // *_DISABLE_DEPRECATED
GType gtk_info_bar_get_type(void);
GType gtk_invisible_get_type(void);
GType gtk_label_get_type(void);
GType gtk_layout_get_type(void);
GType gtk_level_bar_get_type(void);
GType gtk_link_button_get_type(void);
GType gtk_list_box_get_type(void);
GType gtk_list_box_row_get_type(void);
GType gtk_list_store_get_type(void);
GType gtk_lock_button_get_type(void);
GType gtk_menu_get_type(void);
GType gtk_menu_bar_get_type(void);
GType gtk_menu_button_get_type(void);
GType gtk_menu_item_get_type(void);
GType gtk_menu_shell_get_type(void);
GType gtk_menu_tool_button_get_type(void);
GType gtk_message_dialog_get_type(void);
GType gtk_misc_get_type(void);
GType gtk_notebook_get_type(void);
#ifndef GTKMM_DISABLE_DEPRECATED
GType gtk_numerable_icon_get_type(void);
#endif // *_DISABLE_DEPRECATED
GType gtk_offscreen_window_get_type(void);
GType gtk_overlay_get_type(void);
GType gtk_page_setup_get_type(void);
#ifndef G_OS_WIN32
GType gtk_page_setup_unix_dialog_get_type(void);
#endif // ifndef G_OS_WIN32
GType gtk_paned_get_type(void);
GType gtk_places_sidebar_get_type(void);
#ifdef GDK_WINDOWING_X11
GType gtk_plug_get_type(void);
#endif // ifdef GDK_WINDOWING_X11
GType gtk_popover_get_type(void);
GType gtk_print_context_get_type(void);
#ifndef G_OS_WIN32
GType gtk_printer_get_type(void);
#endif // ifndef G_OS_WIN32
#ifndef G_OS_WIN32
GType gtk_print_job_get_type(void);
#endif // ifndef G_OS_WIN32
GType gtk_print_operation_get_type(void);
GType gtk_print_settings_get_type(void);
#ifndef G_OS_WIN32
GType gtk_print_unix_dialog_get_type(void);
#endif // ifndef G_OS_WIN32
GType gtk_progress_bar_get_type(void);
GType gtk_radio_action_get_type(void);
GType gtk_radio_button_get_type(void);
GType gtk_radio_menu_item_get_type(void);
GType gtk_radio_tool_button_get_type(void);
GType gtk_range_get_type(void);
GType gtk_recent_action_get_type(void);
GType gtk_recent_chooser_dialog_get_type(void);
GType gtk_recent_chooser_menu_get_type(void);
GType gtk_recent_chooser_widget_get_type(void);
GType gtk_recent_filter_get_type(void);
GType gtk_recent_manager_get_type(void);
GType gtk_revealer_get_type(void);
GType gtk_scale_get_type(void);
GType gtk_scale_button_get_type(void);
GType gtk_scrollbar_get_type(void);
GType gtk_scrolled_window_get_type(void);
GType gtk_search_bar_get_type(void);
GType gtk_search_entry_get_type(void);
GType gtk_separator_get_type(void);
GType gtk_separator_menu_item_get_type(void);
GType gtk_separator_tool_item_get_type(void);
GType gtk_settings_get_type(void);
GType gtk_size_group_get_type(void);
#ifdef GDK_WINDOWING_X11
GType gtk_socket_get_type(void);
#endif // ifdef GDK_WINDOWING_X11
GType gtk_spin_button_get_type(void);
GType gtk_spinner_get_type(void);
GType gtk_stack_get_type(void);
GType gtk_stack_switcher_get_type(void);
GType gtk_statusbar_get_type(void);
#ifndef GTKMM_DISABLE_DEPRECATED
GType gtk_status_icon_get_type(void);
#endif // *_DISABLE_DEPRECATED
GType gtk_style_context_get_type(void);
GType gtk_switch_get_type(void);
#ifndef GTKMM_DISABLE_DEPRECATED
GType gtk_table_get_type(void);
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
GType gtk_tearoff_menu_item_get_type(void);
#endif // *_DISABLE_DEPRECATED
GType gtk_text_buffer_get_type(void);
GType gtk_text_child_anchor_get_type(void);
GType gtk_text_mark_get_type(void);
GType gtk_text_tag_get_type(void);
GType gtk_text_tag_table_get_type(void);
GType gtk_text_view_get_type(void);
GType gtk_toggle_action_get_type(void);
GType gtk_toggle_button_get_type(void);
GType gtk_toggle_tool_button_get_type(void);
GType gtk_toolbar_get_type(void);
GType gtk_tool_button_get_type(void);
GType gtk_tool_item_get_type(void);
GType gtk_tool_item_group_get_type(void);
GType gtk_tool_palette_get_type(void);
GType gtk_tooltip_get_type(void);
GType gtk_tree_model_filter_get_type(void);
GType gtk_tree_model_sort_get_type(void);
GType gtk_tree_selection_get_type(void);
GType gtk_tree_store_get_type(void);
GType gtk_tree_view_get_type(void);
GType gtk_tree_view_column_get_type(void);
GType gtk_ui_manager_get_type(void);
GType gtk_viewport_get_type(void);
GType gtk_volume_button_get_type(void);
GType gtk_widget_get_type(void);
GType gtk_window_group_get_type(void);
GType gtk_window_get_type(void);

//Declarations of the *_error_quark() functions:

GQuark gtk_builder_error_quark(void);
GQuark gtk_file_chooser_error_quark(void);
GQuark gtk_icon_theme_error_quark(void);
GQuark gtk_print_error_quark(void);
GQuark gtk_recent_chooser_error_quark(void);
GQuark gtk_recent_manager_error_quark(void);
} // extern "C"

namespace Gtk {

//Declarations of the *_Class::wrap_new() methods, instead of including all the private headers:

class AboutDialog_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class AccelGroup_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class AccelLabel_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Action_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class ActionBar_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class ActionGroup_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Adjustment_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#ifndef GTKMM_DISABLE_DEPRECATED
class Alignment_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // *_DISABLE_DEPRECATED
class AppChooserButton_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class AppChooserDialog_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class AppChooserWidget_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Application_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class ApplicationWindow_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#ifndef GTKMM_DISABLE_DEPRECATED
class Arrow_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // *_DISABLE_DEPRECATED
class AspectFrame_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Assistant_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Bin_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Box_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Builder_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Button_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class ButtonBox_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Calendar_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class CellArea_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class CellAreaBox_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class CellAreaContext_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class CellRenderer_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class CellRendererAccel_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class CellRendererCombo_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class CellRendererPixbuf_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class CellRendererProgress_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class CellRendererSpin_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class CellRendererSpinner_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class CellRendererText_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class CellRendererToggle_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class CellView_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class CheckButton_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class CheckMenuItem_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Clipboard_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class ColorButton_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class ColorChooserDialog_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#ifndef GTKMM_DISABLE_DEPRECATED
class ColorSelection_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class ColorSelectionDialog_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // *_DISABLE_DEPRECATED
class ComboBox_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class ComboBoxText_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Container_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class CssProvider_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Dialog_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class DrawingArea_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Entry_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class EntryBuffer_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class EntryCompletion_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class EventBox_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class EventController_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Expander_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class FileChooserButton_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class FileChooserDialog_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class FileChooserWidget_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class FileFilter_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Fixed_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class FlowBox_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class FlowBoxChild_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class FontButton_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class FontChooserDialog_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class FontChooserWidget_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#ifndef GTKMM_DISABLE_DEPRECATED
class FontSelection_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class FontSelectionDialog_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // *_DISABLE_DEPRECATED
class Frame_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Gesture_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class GestureDrag_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class GestureLongPress_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class GestureMultiPress_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class GesturePan_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class GestureRotate_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class GestureSingle_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class GestureSwipe_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class GestureZoom_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Grid_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#ifndef GTKMM_DISABLE_DEPRECATED
class HandleBox_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // *_DISABLE_DEPRECATED
class HeaderBar_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class VBox_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class HBox_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#ifndef GTKMM_DISABLE_DEPRECATED
class VButtonBox_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class HButtonBox_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
class HPaned_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class VPaned_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
class VScale_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class HScale_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
class VScrollbar_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class HScrollbar_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
class VSeparator_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class HSeparator_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
class IconFactory_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // *_DISABLE_DEPRECATED
class IconTheme_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class IconView_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Image_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#ifndef GTKMM_DISABLE_DEPRECATED
class ImageMenuItem_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // *_DISABLE_DEPRECATED
class InfoBar_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Invisible_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Label_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Layout_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class LevelBar_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class LinkButton_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class ListBox_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class ListBoxRow_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class ListStore_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class LockButton_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Menu_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class MenuBar_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class MenuButton_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class MenuItem_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class MenuShell_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class MenuToolButton_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class MessageDialog_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Misc_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Notebook_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#ifndef GTKMM_DISABLE_DEPRECATED
class NumerableIcon_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // *_DISABLE_DEPRECATED
class OffscreenWindow_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Overlay_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class PageSetup_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#ifndef G_OS_WIN32
class PageSetupUnixDialog_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // ifndef G_OS_WIN32
class Paned_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class PlacesSidebar_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#ifdef GDK_WINDOWING_X11
class Plug_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // ifdef GDK_WINDOWING_X11
class Popover_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class PrintContext_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#ifndef G_OS_WIN32
class Printer_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // ifndef G_OS_WIN32
#ifndef G_OS_WIN32
class PrintJob_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // ifndef G_OS_WIN32
class PrintOperation_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class PrintSettings_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#ifndef G_OS_WIN32
class PrintUnixDialog_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // ifndef G_OS_WIN32
class ProgressBar_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class RadioAction_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class RadioButton_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class RadioMenuItem_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class RadioToolButton_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Range_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class RecentAction_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class RecentChooserDialog_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class RecentChooserMenu_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class RecentChooserWidget_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class RecentFilter_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class RecentManager_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Revealer_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Scale_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class ScaleButton_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Scrollbar_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class ScrolledWindow_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class SearchBar_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class SearchEntry_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Separator_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class SeparatorMenuItem_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class SeparatorToolItem_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Settings_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class SizeGroup_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#ifdef GDK_WINDOWING_X11
class Socket_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // ifdef GDK_WINDOWING_X11
class SpinButton_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Spinner_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Stack_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class StackSwitcher_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Statusbar_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#ifndef GTKMM_DISABLE_DEPRECATED
class StatusIcon_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // *_DISABLE_DEPRECATED
class StyleContext_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Switch_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#ifndef GTKMM_DISABLE_DEPRECATED
class Table_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
class TearoffMenuItem_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // *_DISABLE_DEPRECATED
class TextBuffer_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class TextChildAnchor_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class TextMark_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class TextTag_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class TextTagTable_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class TextView_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class ToggleAction_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class ToggleButton_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class ToggleToolButton_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Toolbar_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class ToolButton_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class ToolItem_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class ToolItemGroup_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class ToolPalette_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Tooltip_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class TreeModelFilter_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class TreeModelSort_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class TreeSelection_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class TreeStore_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class TreeView_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class TreeViewColumn_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class UIManager_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Viewport_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class VolumeButton_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Widget_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class WindowGroup_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Window_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };

void wrap_init()
{
  // Register Error domains in the main namespace:
  Glib::Error::register_domain(gtk_builder_error_quark(), &BuilderError::throw_func);
  Glib::Error::register_domain(gtk_file_chooser_error_quark(), &FileChooserError::throw_func);
  Glib::Error::register_domain(gtk_icon_theme_error_quark(), &IconThemeError::throw_func);
  Glib::Error::register_domain(gtk_print_error_quark(), &PrintError::throw_func);
  Glib::Error::register_domain(gtk_recent_chooser_error_quark(), &RecentChooserError::throw_func);
  Glib::Error::register_domain(gtk_recent_manager_error_quark(), &RecentManagerError::throw_func);

  // Map gtypes to gtkmm wrapper-creation functions:
  Glib::wrap_register(gtk_about_dialog_get_type(), &AboutDialog_Class::wrap_new);
  Glib::wrap_register(gtk_accel_group_get_type(), &AccelGroup_Class::wrap_new);
  Glib::wrap_register(gtk_accel_label_get_type(), &AccelLabel_Class::wrap_new);
  Glib::wrap_register(gtk_action_get_type(), &Action_Class::wrap_new);
  Glib::wrap_register(gtk_action_bar_get_type(), &ActionBar_Class::wrap_new);
  Glib::wrap_register(gtk_action_group_get_type(), &ActionGroup_Class::wrap_new);
  Glib::wrap_register(gtk_adjustment_get_type(), &Adjustment_Class::wrap_new);
#ifndef GTKMM_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_alignment_get_type(), &Alignment_Class::wrap_new);
#endif // *_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_app_chooser_button_get_type(), &AppChooserButton_Class::wrap_new);
  Glib::wrap_register(gtk_app_chooser_dialog_get_type(), &AppChooserDialog_Class::wrap_new);
  Glib::wrap_register(gtk_app_chooser_widget_get_type(), &AppChooserWidget_Class::wrap_new);
  Glib::wrap_register(gtk_application_get_type(), &Application_Class::wrap_new);
  Glib::wrap_register(gtk_application_window_get_type(), &ApplicationWindow_Class::wrap_new);
#ifndef GTKMM_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_arrow_get_type(), &Arrow_Class::wrap_new);
#endif // *_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_aspect_frame_get_type(), &AspectFrame_Class::wrap_new);
  Glib::wrap_register(gtk_assistant_get_type(), &Assistant_Class::wrap_new);
  Glib::wrap_register(gtk_bin_get_type(), &Bin_Class::wrap_new);
  Glib::wrap_register(gtk_box_get_type(), &Box_Class::wrap_new);
  Glib::wrap_register(gtk_builder_get_type(), &Builder_Class::wrap_new);
  Glib::wrap_register(gtk_button_get_type(), &Button_Class::wrap_new);
  Glib::wrap_register(gtk_button_box_get_type(), &ButtonBox_Class::wrap_new);
  Glib::wrap_register(gtk_calendar_get_type(), &Calendar_Class::wrap_new);
  Glib::wrap_register(gtk_cell_area_get_type(), &CellArea_Class::wrap_new);
  Glib::wrap_register(gtk_cell_area_box_get_type(), &CellAreaBox_Class::wrap_new);
  Glib::wrap_register(gtk_cell_area_context_get_type(), &CellAreaContext_Class::wrap_new);
  Glib::wrap_register(gtk_cell_renderer_get_type(), &CellRenderer_Class::wrap_new);
  Glib::wrap_register(gtk_cell_renderer_accel_get_type(), &CellRendererAccel_Class::wrap_new);
  Glib::wrap_register(gtk_cell_renderer_combo_get_type(), &CellRendererCombo_Class::wrap_new);
  Glib::wrap_register(gtk_cell_renderer_pixbuf_get_type(), &CellRendererPixbuf_Class::wrap_new);
  Glib::wrap_register(gtk_cell_renderer_progress_get_type(), &CellRendererProgress_Class::wrap_new);
  Glib::wrap_register(gtk_cell_renderer_spin_get_type(), &CellRendererSpin_Class::wrap_new);
  Glib::wrap_register(gtk_cell_renderer_spinner_get_type(), &CellRendererSpinner_Class::wrap_new);
  Glib::wrap_register(gtk_cell_renderer_text_get_type(), &CellRendererText_Class::wrap_new);
  Glib::wrap_register(gtk_cell_renderer_toggle_get_type(), &CellRendererToggle_Class::wrap_new);
  Glib::wrap_register(gtk_cell_view_get_type(), &CellView_Class::wrap_new);
  Glib::wrap_register(gtk_check_button_get_type(), &CheckButton_Class::wrap_new);
  Glib::wrap_register(gtk_check_menu_item_get_type(), &CheckMenuItem_Class::wrap_new);
  Glib::wrap_register(gtk_clipboard_get_type(), &Clipboard_Class::wrap_new);
  Glib::wrap_register(gtk_color_button_get_type(), &ColorButton_Class::wrap_new);
  Glib::wrap_register(gtk_color_chooser_dialog_get_type(), &ColorChooserDialog_Class::wrap_new);
#ifndef GTKMM_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_color_selection_get_type(), &ColorSelection_Class::wrap_new);
  Glib::wrap_register(gtk_color_selection_dialog_get_type(), &ColorSelectionDialog_Class::wrap_new);
#endif // *_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_combo_box_get_type(), &ComboBox_Class::wrap_new);
  Glib::wrap_register(gtk_combo_box_text_get_type(), &ComboBoxText_Class::wrap_new);
  Glib::wrap_register(gtk_container_get_type(), &Container_Class::wrap_new);
  Glib::wrap_register(gtk_css_provider_get_type(), &CssProvider_Class::wrap_new);
  Glib::wrap_register(gtk_dialog_get_type(), &Dialog_Class::wrap_new);
  Glib::wrap_register(gtk_drawing_area_get_type(), &DrawingArea_Class::wrap_new);
  Glib::wrap_register(gtk_entry_get_type(), &Entry_Class::wrap_new);
  Glib::wrap_register(gtk_entry_buffer_get_type(), &EntryBuffer_Class::wrap_new);
  Glib::wrap_register(gtk_entry_completion_get_type(), &EntryCompletion_Class::wrap_new);
  Glib::wrap_register(gtk_event_box_get_type(), &EventBox_Class::wrap_new);
  Glib::wrap_register(gtk_event_controller_get_type(), &EventController_Class::wrap_new);
  Glib::wrap_register(gtk_expander_get_type(), &Expander_Class::wrap_new);
  Glib::wrap_register(gtk_file_chooser_button_get_type(), &FileChooserButton_Class::wrap_new);
  Glib::wrap_register(gtk_file_chooser_dialog_get_type(), &FileChooserDialog_Class::wrap_new);
  Glib::wrap_register(gtk_file_chooser_widget_get_type(), &FileChooserWidget_Class::wrap_new);
  Glib::wrap_register(gtk_file_filter_get_type(), &FileFilter_Class::wrap_new);
  Glib::wrap_register(gtk_fixed_get_type(), &Fixed_Class::wrap_new);
  Glib::wrap_register(gtk_flow_box_get_type(), &FlowBox_Class::wrap_new);
  Glib::wrap_register(gtk_flow_box_child_get_type(), &FlowBoxChild_Class::wrap_new);
  Glib::wrap_register(gtk_font_button_get_type(), &FontButton_Class::wrap_new);
  Glib::wrap_register(gtk_font_chooser_dialog_get_type(), &FontChooserDialog_Class::wrap_new);
  Glib::wrap_register(gtk_font_chooser_widget_get_type(), &FontChooserWidget_Class::wrap_new);
#ifndef GTKMM_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_font_selection_get_type(), &FontSelection_Class::wrap_new);
  Glib::wrap_register(gtk_font_selection_dialog_get_type(), &FontSelectionDialog_Class::wrap_new);
#endif // *_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_frame_get_type(), &Frame_Class::wrap_new);
  Glib::wrap_register(gtk_gesture_get_type(), &Gesture_Class::wrap_new);
  Glib::wrap_register(gtk_gesture_drag_get_type(), &GestureDrag_Class::wrap_new);
  Glib::wrap_register(gtk_gesture_long_press_get_type(), &GestureLongPress_Class::wrap_new);
  Glib::wrap_register(gtk_gesture_multi_press_get_type(), &GestureMultiPress_Class::wrap_new);
  Glib::wrap_register(gtk_gesture_pan_get_type(), &GesturePan_Class::wrap_new);
  Glib::wrap_register(gtk_gesture_rotate_get_type(), &GestureRotate_Class::wrap_new);
  Glib::wrap_register(gtk_gesture_single_get_type(), &GestureSingle_Class::wrap_new);
  Glib::wrap_register(gtk_gesture_swipe_get_type(), &GestureSwipe_Class::wrap_new);
  Glib::wrap_register(gtk_gesture_zoom_get_type(), &GestureZoom_Class::wrap_new);
  Glib::wrap_register(gtk_grid_get_type(), &Grid_Class::wrap_new);
#ifndef GTKMM_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_handle_box_get_type(), &HandleBox_Class::wrap_new);
#endif // *_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_header_bar_get_type(), &HeaderBar_Class::wrap_new);
  Glib::wrap_register(gtk_vbox_get_type(), &VBox_Class::wrap_new);
  Glib::wrap_register(gtk_hbox_get_type(), &HBox_Class::wrap_new);
#ifndef GTKMM_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_vbutton_box_get_type(), &VButtonBox_Class::wrap_new);
  Glib::wrap_register(gtk_hbutton_box_get_type(), &HButtonBox_Class::wrap_new);
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_hpaned_get_type(), &HPaned_Class::wrap_new);
  Glib::wrap_register(gtk_vpaned_get_type(), &VPaned_Class::wrap_new);
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_vscale_get_type(), &VScale_Class::wrap_new);
  Glib::wrap_register(gtk_hscale_get_type(), &HScale_Class::wrap_new);
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_vscrollbar_get_type(), &VScrollbar_Class::wrap_new);
  Glib::wrap_register(gtk_hscrollbar_get_type(), &HScrollbar_Class::wrap_new);
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_vseparator_get_type(), &VSeparator_Class::wrap_new);
  Glib::wrap_register(gtk_hseparator_get_type(), &HSeparator_Class::wrap_new);
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_icon_factory_get_type(), &IconFactory_Class::wrap_new);
#endif // *_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_icon_theme_get_type(), &IconTheme_Class::wrap_new);
  Glib::wrap_register(gtk_icon_view_get_type(), &IconView_Class::wrap_new);
  Glib::wrap_register(gtk_image_get_type(), &Image_Class::wrap_new);
#ifndef GTKMM_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_image_menu_item_get_type(), &ImageMenuItem_Class::wrap_new);
#endif // *_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_info_bar_get_type(), &InfoBar_Class::wrap_new);
  Glib::wrap_register(gtk_invisible_get_type(), &Invisible_Class::wrap_new);
  Glib::wrap_register(gtk_label_get_type(), &Label_Class::wrap_new);
  Glib::wrap_register(gtk_layout_get_type(), &Layout_Class::wrap_new);
  Glib::wrap_register(gtk_level_bar_get_type(), &LevelBar_Class::wrap_new);
  Glib::wrap_register(gtk_link_button_get_type(), &LinkButton_Class::wrap_new);
  Glib::wrap_register(gtk_list_box_get_type(), &ListBox_Class::wrap_new);
  Glib::wrap_register(gtk_list_box_row_get_type(), &ListBoxRow_Class::wrap_new);
  Glib::wrap_register(gtk_list_store_get_type(), &ListStore_Class::wrap_new);
  Glib::wrap_register(gtk_lock_button_get_type(), &LockButton_Class::wrap_new);
  Glib::wrap_register(gtk_menu_get_type(), &Menu_Class::wrap_new);
  Glib::wrap_register(gtk_menu_bar_get_type(), &MenuBar_Class::wrap_new);
  Glib::wrap_register(gtk_menu_button_get_type(), &MenuButton_Class::wrap_new);
  Glib::wrap_register(gtk_menu_item_get_type(), &MenuItem_Class::wrap_new);
  Glib::wrap_register(gtk_menu_shell_get_type(), &MenuShell_Class::wrap_new);
  Glib::wrap_register(gtk_menu_tool_button_get_type(), &MenuToolButton_Class::wrap_new);
  Glib::wrap_register(gtk_message_dialog_get_type(), &MessageDialog_Class::wrap_new);
  Glib::wrap_register(gtk_misc_get_type(), &Misc_Class::wrap_new);
  Glib::wrap_register(gtk_notebook_get_type(), &Notebook_Class::wrap_new);
#ifndef GTKMM_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_numerable_icon_get_type(), &NumerableIcon_Class::wrap_new);
#endif // *_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_offscreen_window_get_type(), &OffscreenWindow_Class::wrap_new);
  Glib::wrap_register(gtk_overlay_get_type(), &Overlay_Class::wrap_new);
  Glib::wrap_register(gtk_page_setup_get_type(), &PageSetup_Class::wrap_new);
#ifndef G_OS_WIN32
  Glib::wrap_register(gtk_page_setup_unix_dialog_get_type(), &PageSetupUnixDialog_Class::wrap_new);
#endif // ifndef G_OS_WIN32
  Glib::wrap_register(gtk_paned_get_type(), &Paned_Class::wrap_new);
  Glib::wrap_register(gtk_places_sidebar_get_type(), &PlacesSidebar_Class::wrap_new);
#ifdef GDK_WINDOWING_X11
  Glib::wrap_register(gtk_plug_get_type(), &Plug_Class::wrap_new);
#endif // ifdef GDK_WINDOWING_X11
  Glib::wrap_register(gtk_popover_get_type(), &Popover_Class::wrap_new);
  Glib::wrap_register(gtk_print_context_get_type(), &PrintContext_Class::wrap_new);
#ifndef G_OS_WIN32
  Glib::wrap_register(gtk_printer_get_type(), &Printer_Class::wrap_new);
#endif // ifndef G_OS_WIN32
#ifndef G_OS_WIN32
  Glib::wrap_register(gtk_print_job_get_type(), &PrintJob_Class::wrap_new);
#endif // ifndef G_OS_WIN32
  Glib::wrap_register(gtk_print_operation_get_type(), &PrintOperation_Class::wrap_new);
  Glib::wrap_register(gtk_print_settings_get_type(), &PrintSettings_Class::wrap_new);
#ifndef G_OS_WIN32
  Glib::wrap_register(gtk_print_unix_dialog_get_type(), &PrintUnixDialog_Class::wrap_new);
#endif // ifndef G_OS_WIN32
  Glib::wrap_register(gtk_progress_bar_get_type(), &ProgressBar_Class::wrap_new);
  Glib::wrap_register(gtk_radio_action_get_type(), &RadioAction_Class::wrap_new);
  Glib::wrap_register(gtk_radio_button_get_type(), &RadioButton_Class::wrap_new);
  Glib::wrap_register(gtk_radio_menu_item_get_type(), &RadioMenuItem_Class::wrap_new);
  Glib::wrap_register(gtk_radio_tool_button_get_type(), &RadioToolButton_Class::wrap_new);
  Glib::wrap_register(gtk_range_get_type(), &Range_Class::wrap_new);
  Glib::wrap_register(gtk_recent_action_get_type(), &RecentAction_Class::wrap_new);
  Glib::wrap_register(gtk_recent_chooser_dialog_get_type(), &RecentChooserDialog_Class::wrap_new);
  Glib::wrap_register(gtk_recent_chooser_menu_get_type(), &RecentChooserMenu_Class::wrap_new);
  Glib::wrap_register(gtk_recent_chooser_widget_get_type(), &RecentChooserWidget_Class::wrap_new);
  Glib::wrap_register(gtk_recent_filter_get_type(), &RecentFilter_Class::wrap_new);
  Glib::wrap_register(gtk_recent_manager_get_type(), &RecentManager_Class::wrap_new);
  Glib::wrap_register(gtk_revealer_get_type(), &Revealer_Class::wrap_new);
  Glib::wrap_register(gtk_scale_get_type(), &Scale_Class::wrap_new);
  Glib::wrap_register(gtk_scale_button_get_type(), &ScaleButton_Class::wrap_new);
  Glib::wrap_register(gtk_scrollbar_get_type(), &Scrollbar_Class::wrap_new);
  Glib::wrap_register(gtk_scrolled_window_get_type(), &ScrolledWindow_Class::wrap_new);
  Glib::wrap_register(gtk_search_bar_get_type(), &SearchBar_Class::wrap_new);
  Glib::wrap_register(gtk_search_entry_get_type(), &SearchEntry_Class::wrap_new);
  Glib::wrap_register(gtk_separator_get_type(), &Separator_Class::wrap_new);
  Glib::wrap_register(gtk_separator_menu_item_get_type(), &SeparatorMenuItem_Class::wrap_new);
  Glib::wrap_register(gtk_separator_tool_item_get_type(), &SeparatorToolItem_Class::wrap_new);
  Glib::wrap_register(gtk_settings_get_type(), &Settings_Class::wrap_new);
  Glib::wrap_register(gtk_size_group_get_type(), &SizeGroup_Class::wrap_new);
#ifdef GDK_WINDOWING_X11
  Glib::wrap_register(gtk_socket_get_type(), &Socket_Class::wrap_new);
#endif // ifdef GDK_WINDOWING_X11
  Glib::wrap_register(gtk_spin_button_get_type(), &SpinButton_Class::wrap_new);
  Glib::wrap_register(gtk_spinner_get_type(), &Spinner_Class::wrap_new);
  Glib::wrap_register(gtk_stack_get_type(), &Stack_Class::wrap_new);
  Glib::wrap_register(gtk_stack_switcher_get_type(), &StackSwitcher_Class::wrap_new);
  Glib::wrap_register(gtk_statusbar_get_type(), &Statusbar_Class::wrap_new);
#ifndef GTKMM_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_status_icon_get_type(), &StatusIcon_Class::wrap_new);
#endif // *_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_style_context_get_type(), &StyleContext_Class::wrap_new);
  Glib::wrap_register(gtk_switch_get_type(), &Switch_Class::wrap_new);
#ifndef GTKMM_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_table_get_type(), &Table_Class::wrap_new);
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_tearoff_menu_item_get_type(), &TearoffMenuItem_Class::wrap_new);
#endif // *_DISABLE_DEPRECATED
  Glib::wrap_register(gtk_text_buffer_get_type(), &TextBuffer_Class::wrap_new);
  Glib::wrap_register(gtk_text_child_anchor_get_type(), &TextChildAnchor_Class::wrap_new);
  Glib::wrap_register(gtk_text_mark_get_type(), &TextMark_Class::wrap_new);
  Glib::wrap_register(gtk_text_tag_get_type(), &TextTag_Class::wrap_new);
  Glib::wrap_register(gtk_text_tag_table_get_type(), &TextTagTable_Class::wrap_new);
  Glib::wrap_register(gtk_text_view_get_type(), &TextView_Class::wrap_new);
  Glib::wrap_register(gtk_toggle_action_get_type(), &ToggleAction_Class::wrap_new);
  Glib::wrap_register(gtk_toggle_button_get_type(), &ToggleButton_Class::wrap_new);
  Glib::wrap_register(gtk_toggle_tool_button_get_type(), &ToggleToolButton_Class::wrap_new);
  Glib::wrap_register(gtk_toolbar_get_type(), &Toolbar_Class::wrap_new);
  Glib::wrap_register(gtk_tool_button_get_type(), &ToolButton_Class::wrap_new);
  Glib::wrap_register(gtk_tool_item_get_type(), &ToolItem_Class::wrap_new);
  Glib::wrap_register(gtk_tool_item_group_get_type(), &ToolItemGroup_Class::wrap_new);
  Glib::wrap_register(gtk_tool_palette_get_type(), &ToolPalette_Class::wrap_new);
  Glib::wrap_register(gtk_tooltip_get_type(), &Tooltip_Class::wrap_new);
  Glib::wrap_register(gtk_tree_model_filter_get_type(), &TreeModelFilter_Class::wrap_new);
  Glib::wrap_register(gtk_tree_model_sort_get_type(), &TreeModelSort_Class::wrap_new);
  Glib::wrap_register(gtk_tree_selection_get_type(), &TreeSelection_Class::wrap_new);
  Glib::wrap_register(gtk_tree_store_get_type(), &TreeStore_Class::wrap_new);
  Glib::wrap_register(gtk_tree_view_get_type(), &TreeView_Class::wrap_new);
  Glib::wrap_register(gtk_tree_view_column_get_type(), &TreeViewColumn_Class::wrap_new);
  Glib::wrap_register(gtk_ui_manager_get_type(), &UIManager_Class::wrap_new);
  Glib::wrap_register(gtk_viewport_get_type(), &Viewport_Class::wrap_new);
  Glib::wrap_register(gtk_volume_button_get_type(), &VolumeButton_Class::wrap_new);
  Glib::wrap_register(gtk_widget_get_type(), &Widget_Class::wrap_new);
  Glib::wrap_register(gtk_window_group_get_type(), &WindowGroup_Class::wrap_new);
  Glib::wrap_register(gtk_window_get_type(), &Window_Class::wrap_new);

  // Register the gtkmm gtypes:
  AboutDialog::get_type();
  AccelGroup::get_type();
  AccelLabel::get_type();
  Action::get_type();
  ActionBar::get_type();
  ActionGroup::get_type();
  Adjustment::get_type();
#ifndef GTKMM_DISABLE_DEPRECATED
  Alignment::get_type();
#endif // *_DISABLE_DEPRECATED
  AppChooserButton::get_type();
  AppChooserDialog::get_type();
  AppChooserWidget::get_type();
  Application::get_type();
  ApplicationWindow::get_type();
#ifndef GTKMM_DISABLE_DEPRECATED
  Arrow::get_type();
#endif // *_DISABLE_DEPRECATED
  AspectFrame::get_type();
  Assistant::get_type();
  Bin::get_type();
  Box::get_type();
  Builder::get_type();
  Button::get_type();
  ButtonBox::get_type();
  Calendar::get_type();
  CellArea::get_type();
  CellAreaBox::get_type();
  CellAreaContext::get_type();
  CellRenderer::get_type();
  CellRendererAccel::get_type();
  CellRendererCombo::get_type();
  CellRendererPixbuf::get_type();
  CellRendererProgress::get_type();
  CellRendererSpin::get_type();
  CellRendererSpinner::get_type();
  CellRendererText::get_type();
  CellRendererToggle::get_type();
  CellView::get_type();
  CheckButton::get_type();
  CheckMenuItem::get_type();
  Clipboard::get_type();
  ColorButton::get_type();
  ColorChooserDialog::get_type();
#ifndef GTKMM_DISABLE_DEPRECATED
  ColorSelection::get_type();
  ColorSelectionDialog::get_type();
#endif // *_DISABLE_DEPRECATED
  ComboBox::get_type();
  ComboBoxText::get_type();
  Container::get_type();
  CssProvider::get_type();
  Dialog::get_type();
  DrawingArea::get_type();
  Entry::get_type();
  EntryBuffer::get_type();
  EntryCompletion::get_type();
  EventBox::get_type();
  EventController::get_type();
  Expander::get_type();
  FileChooserButton::get_type();
  FileChooserDialog::get_type();
  FileChooserWidget::get_type();
  FileFilter::get_type();
  Fixed::get_type();
  FlowBox::get_type();
  FlowBoxChild::get_type();
  FontButton::get_type();
  FontChooserDialog::get_type();
  FontChooserWidget::get_type();
#ifndef GTKMM_DISABLE_DEPRECATED
  FontSelection::get_type();
  FontSelectionDialog::get_type();
#endif // *_DISABLE_DEPRECATED
  Frame::get_type();
  Gesture::get_type();
  GestureDrag::get_type();
  GestureLongPress::get_type();
  GestureMultiPress::get_type();
  GesturePan::get_type();
  GestureRotate::get_type();
  GestureSingle::get_type();
  GestureSwipe::get_type();
  GestureZoom::get_type();
  Grid::get_type();
#ifndef GTKMM_DISABLE_DEPRECATED
  HandleBox::get_type();
#endif // *_DISABLE_DEPRECATED
  HeaderBar::get_type();
  VBox::get_type();
  HBox::get_type();
#ifndef GTKMM_DISABLE_DEPRECATED
  VButtonBox::get_type();
  HButtonBox::get_type();
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
  HPaned::get_type();
  VPaned::get_type();
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
  VScale::get_type();
  HScale::get_type();
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
  VScrollbar::get_type();
  HScrollbar::get_type();
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
  VSeparator::get_type();
  HSeparator::get_type();
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
  IconFactory::get_type();
#endif // *_DISABLE_DEPRECATED
  IconTheme::get_type();
  IconView::get_type();
  Image::get_type();
#ifndef GTKMM_DISABLE_DEPRECATED
  ImageMenuItem::get_type();
#endif // *_DISABLE_DEPRECATED
  InfoBar::get_type();
  Invisible::get_type();
  Label::get_type();
  Layout::get_type();
  LevelBar::get_type();
  LinkButton::get_type();
  ListBox::get_type();
  ListBoxRow::get_type();
  ListStore::get_type();
  LockButton::get_type();
  Menu::get_type();
  MenuBar::get_type();
  MenuButton::get_type();
  MenuItem::get_type();
  MenuShell::get_type();
  MenuToolButton::get_type();
  MessageDialog::get_type();
  Misc::get_type();
  Notebook::get_type();
#ifndef GTKMM_DISABLE_DEPRECATED
  NumerableIcon::get_type();
#endif // *_DISABLE_DEPRECATED
  OffscreenWindow::get_type();
  Overlay::get_type();
  PageSetup::get_type();
#ifndef G_OS_WIN32
  PageSetupUnixDialog::get_type();
#endif // ifndef G_OS_WIN32
  Paned::get_type();
  PlacesSidebar::get_type();
#ifdef GDK_WINDOWING_X11
  Plug::get_type();
#endif // ifdef GDK_WINDOWING_X11
  Popover::get_type();
  PrintContext::get_type();
#ifndef G_OS_WIN32
  Printer::get_type();
#endif // ifndef G_OS_WIN32
#ifndef G_OS_WIN32
  PrintJob::get_type();
#endif // ifndef G_OS_WIN32
  PrintOperation::get_type();
  PrintSettings::get_type();
#ifndef G_OS_WIN32
  PrintUnixDialog::get_type();
#endif // ifndef G_OS_WIN32
  ProgressBar::get_type();
  RadioAction::get_type();
  RadioButton::get_type();
  RadioMenuItem::get_type();
  RadioToolButton::get_type();
  Range::get_type();
  RecentAction::get_type();
  RecentChooserDialog::get_type();
  RecentChooserMenu::get_type();
  RecentChooserWidget::get_type();
  RecentFilter::get_type();
  RecentManager::get_type();
  Revealer::get_type();
  Scale::get_type();
  ScaleButton::get_type();
  Scrollbar::get_type();
  ScrolledWindow::get_type();
  SearchBar::get_type();
  SearchEntry::get_type();
  Separator::get_type();
  SeparatorMenuItem::get_type();
  SeparatorToolItem::get_type();
  Settings::get_type();
  SizeGroup::get_type();
#ifdef GDK_WINDOWING_X11
  Socket::get_type();
#endif // ifdef GDK_WINDOWING_X11
  SpinButton::get_type();
  Spinner::get_type();
  Stack::get_type();
  StackSwitcher::get_type();
  Statusbar::get_type();
#ifndef GTKMM_DISABLE_DEPRECATED
  StatusIcon::get_type();
#endif // *_DISABLE_DEPRECATED
  StyleContext::get_type();
  Switch::get_type();
#ifndef GTKMM_DISABLE_DEPRECATED
  Table::get_type();
#endif // *_DISABLE_DEPRECATED
#ifndef GTKMM_DISABLE_DEPRECATED
  TearoffMenuItem::get_type();
#endif // *_DISABLE_DEPRECATED
  TextBuffer::get_type();
  TextChildAnchor::get_type();
  TextMark::get_type();
  TextTag::get_type();
  TextTagTable::get_type();
  TextView::get_type();
  ToggleAction::get_type();
  ToggleButton::get_type();
  ToggleToolButton::get_type();
  Toolbar::get_type();
  ToolButton::get_type();
  ToolItem::get_type();
  ToolItemGroup::get_type();
  ToolPalette::get_type();
  Tooltip::get_type();
  TreeModelFilter::get_type();
  TreeModelSort::get_type();
  TreeSelection::get_type();
  TreeStore::get_type();
  TreeView::get_type();
  TreeViewColumn::get_type();
  UIManager::get_type();
  Viewport::get_type();
  VolumeButton::get_type();
  Widget::get_type();
  WindowGroup::get_type();
  Window::get_type();

} // wrap_init()

} // Gtk