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
|
// Generated by generate_wrap_init.pl -- DO NOT MODIFY!
#define GLIBMM_INCLUDED_FROM_WRAP_INIT_CC
#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 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 "actiongroup.h"
#include "activatable.h"
#include "adjustment.h"
#include "alignment.h"
#include "arrow.h"
#include "aspectframe.h"
#include "assistant.h"
#include "bin.h"
#include "box.h"
#include "builder.h"
#include "button.h"
#include "buttonbox.h"
#include "calendar.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 "colorselection.h"
#ifndef GTKMM_DISABLE_DEPRECATED
#include "combo.h"
#endif // *_DISABLE_DEPRECATED
#include "combobox.h"
#ifndef GTKMM_DISABLE_DEPRECATED
#include "comboboxentry.h"
#endif // *_DISABLE_DEPRECATED
#include "container.h"
#ifndef GTKMM_DISABLE_DEPRECATED
#include "curve.h"
#endif // *_DISABLE_DEPRECATED
#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 "expander.h"
#include "filechooser.h"
#include "filechooserbutton.h"
#include "filechooserdialog.h"
#include "filechooserwidget.h"
#include "filefilter.h"
#ifndef GTKMM_DISABLE_DEPRECATED
#include "fileselection.h"
#endif // *_DISABLE_DEPRECATED
#include "fixed.h"
#include "fontbutton.h"
#include "fontselection.h"
#include "frame.h"
#include "handlebox.h"
#include "iconfactory.h"
#include "iconinfo.h"
#include "iconset.h"
#include "iconsource.h"
#include "icontheme.h"
#include "iconview.h"
#include "image.h"
#include "imagemenuitem.h"
#include "infobar.h"
#ifndef GTKMM_DISABLE_DEPRECATED
#include "inputdialog.h"
#endif // *_DISABLE_DEPRECATED
#include "invisible.h"
#include "item.h"
#include "label.h"
#include "layout.h"
#include "linkbutton.h"
#include "liststore.h"
#include "main.h"
#include "menu.h"
#include "menubar.h"
#include "menuitem.h"
#include "menushell.h"
#include "menutoolbutton.h"
#include "messagedialog.h"
#include "misc.h"
#include "notebook.h"
#include "object.h"
#include "offscreenwindow.h"
#ifndef GTKMM_DISABLE_DEPRECATED
#include "optionmenu.h"
#endif // *_DISABLE_DEPRECATED
#include "orientable.h"
#include "pagesetup.h"
#ifndef G_OS_WIN32
#include "pagesetupunixdialog.h"
#endif // ifndef G_OS_WIN32
#include "paned.h"
#include "papersize.h"
#ifndef G_OS_WIN32
#include "plug.h"
#endif // ifndef G_OS_WIN32
#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 "rc.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"
#ifndef GTKMM_DISABLE_DEPRECATED
#include "ruler.h"
#endif // *_DISABLE_DEPRECATED
#include "scale.h"
#include "scalebutton.h"
#include "scrollbar.h"
#include "scrolledwindow.h"
#include "selectiondata.h"
#include "separator.h"
#include "separatormenuitem.h"
#include "separatortoolitem.h"
#include "settings.h"
#include "sizegroup.h"
#ifndef G_OS_WIN32
#include "socket.h"
#endif // ifndef G_OS_WIN32
#include "spinbutton.h"
#include "spinner.h"
#include "statusbar.h"
#include "statusicon.h"
#include "stockitem.h"
#include "style.h"
#include "table.h"
#include "targetlist.h"
#include "tearoffmenuitem.h"
#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"
#ifndef GTKMM_DISABLE_DEPRECATED
#include "tooltips.h"
#endif // *_DISABLE_DEPRECATED
#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 "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_group_get_type(void);
GType gtk_adjustment_get_type(void);
GType gtk_alignment_get_type(void);
GType gtk_arrow_get_type(void);
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_vbox_get_type(void);
GType gtk_hbox_get_type(void);
GType gtk_builder_get_type(void);
GType gtk_button_get_type(void);
GType gtk_button_box_get_type(void);
GType gtk_vbutton_box_get_type(void);
GType gtk_hbutton_box_get_type(void);
GType gtk_calendar_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_selection_get_type(void);
GType gtk_color_selection_dialog_get_type(void);
#ifndef GTKMM_DISABLE_DEPRECATED
GType gtk_list_item_get_type(void);
GType gtk_list_get_type(void);
GType gtk_combo_get_type(void);
#endif // *_DISABLE_DEPRECATED
GType gtk_combo_box_get_type(void);
#ifndef GTKMM_DISABLE_DEPRECATED
GType gtk_combo_box_entry_get_type(void);
#endif // *_DISABLE_DEPRECATED
GType gtk_container_get_type(void);
#ifndef GTKMM_DISABLE_DEPRECATED
GType gtk_curve_get_type(void);
GType gtk_gamma_curve_get_type(void);
#endif // *_DISABLE_DEPRECATED
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_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);
#ifndef GTKMM_DISABLE_DEPRECATED
GType gtk_file_selection_get_type(void);
#endif // *_DISABLE_DEPRECATED
GType gtk_fixed_get_type(void);
GType gtk_font_button_get_type(void);
GType gtk_font_selection_get_type(void);
GType gtk_font_selection_dialog_get_type(void);
GType gtk_frame_get_type(void);
GType gtk_handle_box_get_type(void);
GType gtk_icon_factory_get_type(void);
GType gtk_icon_theme_get_type(void);
GType gtk_icon_view_get_type(void);
GType gtk_image_get_type(void);
GType gtk_image_menu_item_get_type(void);
GType gtk_info_bar_get_type(void);
#ifndef GTKMM_DISABLE_DEPRECATED
GType gtk_input_dialog_get_type(void);
#endif // *_DISABLE_DEPRECATED
GType gtk_invisible_get_type(void);
GType gtk_item_get_type(void);
GType gtk_label_get_type(void);
GType gtk_layout_get_type(void);
GType gtk_link_button_get_type(void);
GType gtk_list_store_get_type(void);
GType gtk_menu_get_type(void);
GType gtk_menu_bar_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);
GType gtk_object_get_type(void);
GType gtk_offscreen_window_get_type(void);
#ifndef GTKMM_DISABLE_DEPRECATED
GType gtk_option_menu_get_type(void);
#endif // *_DISABLE_DEPRECATED
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_hpaned_get_type(void);
GType gtk_vpaned_get_type(void);
#ifndef G_OS_WIN32
GType gtk_plug_get_type(void);
#endif // ifndef G_OS_WIN32
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_rc_style_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);
#ifndef GTKMM_DISABLE_DEPRECATED
GType gtk_ruler_get_type(void);
GType gtk_vruler_get_type(void);
GType gtk_hruler_get_type(void);
#endif // *_DISABLE_DEPRECATED
GType gtk_scale_get_type(void);
GType gtk_vscale_get_type(void);
GType gtk_hscale_get_type(void);
GType gtk_scale_button_get_type(void);
GType gtk_scrollbar_get_type(void);
GType gtk_vscrollbar_get_type(void);
GType gtk_hscrollbar_get_type(void);
GType gtk_scrolled_window_get_type(void);
GType gtk_separator_get_type(void);
GType gtk_vseparator_get_type(void);
GType gtk_hseparator_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);
#ifndef G_OS_WIN32
GType gtk_socket_get_type(void);
#endif // ifndef G_OS_WIN32
GType gtk_spin_button_get_type(void);
GType gtk_spinner_get_type(void);
GType gtk_statusbar_get_type(void);
GType gtk_status_icon_get_type(void);
GType gtk_style_get_type(void);
GType gtk_table_get_type(void);
GType gtk_tearoff_menu_item_get_type(void);
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);
#ifndef GTKMM_DISABLE_DEPRECATED
GType gtk_tooltips_get_type(void);
#endif // *_DISABLE_DEPRECATED
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 ActionGroup_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Adjustment_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Alignment_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Arrow_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
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 VBox_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class HBox_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 VButtonBox_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class HButtonBox_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Calendar_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 ColorSelection_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class ColorSelectionDialog_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#ifndef GTKMM_DISABLE_DEPRECATED
class ComboDropDownItem_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class ComboDropDown_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Combo_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // *_DISABLE_DEPRECATED
class ComboBox_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#ifndef GTKMM_DISABLE_DEPRECATED
class ComboBoxEntry_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // *_DISABLE_DEPRECATED
class Container_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#ifndef GTKMM_DISABLE_DEPRECATED
class Curve_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class GammaCurve_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // *_DISABLE_DEPRECATED
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 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*); };
#ifndef GTKMM_DISABLE_DEPRECATED
class FileSelection_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // *_DISABLE_DEPRECATED
class Fixed_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class FontButton_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class FontSelection_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class FontSelectionDialog_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Frame_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class HandleBox_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class IconFactory_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
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*); };
class ImageMenuItem_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class InfoBar_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#ifndef GTKMM_DISABLE_DEPRECATED
class InputDialog_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // *_DISABLE_DEPRECATED
class Invisible_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Item_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 LinkButton_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class ListStore_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 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*); };
class Object_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class OffscreenWindow_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#ifndef GTKMM_DISABLE_DEPRECATED
class OptionMenu_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // *_DISABLE_DEPRECATED
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 HPaned_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class VPaned_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#ifndef G_OS_WIN32
class Plug_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // ifndef G_OS_WIN32
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 RcStyle_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*); };
#ifndef GTKMM_DISABLE_DEPRECATED
class Ruler_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class VRuler_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class HRuler_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // *_DISABLE_DEPRECATED
class Scale_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class VScale_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class HScale_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 VScrollbar_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class HScrollbar_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class ScrolledWindow_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Separator_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class VSeparator_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class HSeparator_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*); };
#ifndef G_OS_WIN32
class Socket_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // ifndef G_OS_WIN32
class SpinButton_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Spinner_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Statusbar_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class StatusIcon_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Style_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class Table_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
class TearoffMenuItem_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
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*); };
#ifndef GTKMM_DISABLE_DEPRECATED
class Tooltips_Class { public: static Glib::ObjectBase* wrap_new(GObject*); };
#endif // *_DISABLE_DEPRECATED
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_group_get_type(), &ActionGroup_Class::wrap_new);
Glib::wrap_register(gtk_adjustment_get_type(), &Adjustment_Class::wrap_new);
Glib::wrap_register(gtk_alignment_get_type(), &Alignment_Class::wrap_new);
Glib::wrap_register(gtk_arrow_get_type(), &Arrow_Class::wrap_new);
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_vbox_get_type(), &VBox_Class::wrap_new);
Glib::wrap_register(gtk_hbox_get_type(), &HBox_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_vbutton_box_get_type(), &VButtonBox_Class::wrap_new);
Glib::wrap_register(gtk_hbutton_box_get_type(), &HButtonBox_Class::wrap_new);
Glib::wrap_register(gtk_calendar_get_type(), &Calendar_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_selection_get_type(), &ColorSelection_Class::wrap_new);
Glib::wrap_register(gtk_color_selection_dialog_get_type(), &ColorSelectionDialog_Class::wrap_new);
#ifndef GTKMM_DISABLE_DEPRECATED
Glib::wrap_register(gtk_list_item_get_type(), &ComboDropDownItem_Class::wrap_new);
Glib::wrap_register(gtk_list_get_type(), &ComboDropDown_Class::wrap_new);
Glib::wrap_register(gtk_combo_get_type(), &Combo_Class::wrap_new);
#endif // *_DISABLE_DEPRECATED
Glib::wrap_register(gtk_combo_box_get_type(), &ComboBox_Class::wrap_new);
#ifndef GTKMM_DISABLE_DEPRECATED
Glib::wrap_register(gtk_combo_box_entry_get_type(), &ComboBoxEntry_Class::wrap_new);
#endif // *_DISABLE_DEPRECATED
Glib::wrap_register(gtk_container_get_type(), &Container_Class::wrap_new);
#ifndef GTKMM_DISABLE_DEPRECATED
Glib::wrap_register(gtk_curve_get_type(), &Curve_Class::wrap_new);
Glib::wrap_register(gtk_gamma_curve_get_type(), &GammaCurve_Class::wrap_new);
#endif // *_DISABLE_DEPRECATED
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_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);
#ifndef GTKMM_DISABLE_DEPRECATED
Glib::wrap_register(gtk_file_selection_get_type(), &FileSelection_Class::wrap_new);
#endif // *_DISABLE_DEPRECATED
Glib::wrap_register(gtk_fixed_get_type(), &Fixed_Class::wrap_new);
Glib::wrap_register(gtk_font_button_get_type(), &FontButton_Class::wrap_new);
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);
Glib::wrap_register(gtk_frame_get_type(), &Frame_Class::wrap_new);
Glib::wrap_register(gtk_handle_box_get_type(), &HandleBox_Class::wrap_new);
Glib::wrap_register(gtk_icon_factory_get_type(), &IconFactory_Class::wrap_new);
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);
Glib::wrap_register(gtk_image_menu_item_get_type(), &ImageMenuItem_Class::wrap_new);
Glib::wrap_register(gtk_info_bar_get_type(), &InfoBar_Class::wrap_new);
#ifndef GTKMM_DISABLE_DEPRECATED
Glib::wrap_register(gtk_input_dialog_get_type(), &InputDialog_Class::wrap_new);
#endif // *_DISABLE_DEPRECATED
Glib::wrap_register(gtk_invisible_get_type(), &Invisible_Class::wrap_new);
Glib::wrap_register(gtk_item_get_type(), &Item_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_link_button_get_type(), &LinkButton_Class::wrap_new);
Glib::wrap_register(gtk_list_store_get_type(), &ListStore_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_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);
Glib::wrap_register(gtk_object_get_type(), &Object_Class::wrap_new);
Glib::wrap_register(gtk_offscreen_window_get_type(), &OffscreenWindow_Class::wrap_new);
#ifndef GTKMM_DISABLE_DEPRECATED
Glib::wrap_register(gtk_option_menu_get_type(), &OptionMenu_Class::wrap_new);
#endif // *_DISABLE_DEPRECATED
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_hpaned_get_type(), &HPaned_Class::wrap_new);
Glib::wrap_register(gtk_vpaned_get_type(), &VPaned_Class::wrap_new);
#ifndef G_OS_WIN32
Glib::wrap_register(gtk_plug_get_type(), &Plug_Class::wrap_new);
#endif // ifndef G_OS_WIN32
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_rc_style_get_type(), &RcStyle_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);
#ifndef GTKMM_DISABLE_DEPRECATED
Glib::wrap_register(gtk_ruler_get_type(), &Ruler_Class::wrap_new);
Glib::wrap_register(gtk_vruler_get_type(), &VRuler_Class::wrap_new);
Glib::wrap_register(gtk_hruler_get_type(), &HRuler_Class::wrap_new);
#endif // *_DISABLE_DEPRECATED
Glib::wrap_register(gtk_scale_get_type(), &Scale_Class::wrap_new);
Glib::wrap_register(gtk_vscale_get_type(), &VScale_Class::wrap_new);
Glib::wrap_register(gtk_hscale_get_type(), &HScale_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_vscrollbar_get_type(), &VScrollbar_Class::wrap_new);
Glib::wrap_register(gtk_hscrollbar_get_type(), &HScrollbar_Class::wrap_new);
Glib::wrap_register(gtk_scrolled_window_get_type(), &ScrolledWindow_Class::wrap_new);
Glib::wrap_register(gtk_separator_get_type(), &Separator_Class::wrap_new);
Glib::wrap_register(gtk_vseparator_get_type(), &VSeparator_Class::wrap_new);
Glib::wrap_register(gtk_hseparator_get_type(), &HSeparator_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);
#ifndef G_OS_WIN32
Glib::wrap_register(gtk_socket_get_type(), &Socket_Class::wrap_new);
#endif // ifndef G_OS_WIN32
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_statusbar_get_type(), &Statusbar_Class::wrap_new);
Glib::wrap_register(gtk_status_icon_get_type(), &StatusIcon_Class::wrap_new);
Glib::wrap_register(gtk_style_get_type(), &Style_Class::wrap_new);
Glib::wrap_register(gtk_table_get_type(), &Table_Class::wrap_new);
Glib::wrap_register(gtk_tearoff_menu_item_get_type(), &TearoffMenuItem_Class::wrap_new);
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);
#ifndef GTKMM_DISABLE_DEPRECATED
Glib::wrap_register(gtk_tooltips_get_type(), &Tooltips_Class::wrap_new);
#endif // *_DISABLE_DEPRECATED
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();
ActionGroup::get_type();
Adjustment::get_type();
Alignment::get_type();
Arrow::get_type();
AspectFrame::get_type();
Assistant::get_type();
Bin::get_type();
Box::get_type();
VBox::get_type();
HBox::get_type();
Builder::get_type();
Button::get_type();
ButtonBox::get_type();
VButtonBox::get_type();
HButtonBox::get_type();
Calendar::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();
ColorSelection::get_type();
ColorSelectionDialog::get_type();
#ifndef GTKMM_DISABLE_DEPRECATED
ComboDropDownItem::get_type();
ComboDropDown::get_type();
Combo::get_type();
#endif // *_DISABLE_DEPRECATED
ComboBox::get_type();
#ifndef GTKMM_DISABLE_DEPRECATED
ComboBoxEntry::get_type();
#endif // *_DISABLE_DEPRECATED
Container::get_type();
#ifndef GTKMM_DISABLE_DEPRECATED
Curve::get_type();
GammaCurve::get_type();
#endif // *_DISABLE_DEPRECATED
Dialog::get_type();
DrawingArea::get_type();
Entry::get_type();
EntryBuffer::get_type();
EntryCompletion::get_type();
EventBox::get_type();
Expander::get_type();
FileChooserButton::get_type();
FileChooserDialog::get_type();
FileChooserWidget::get_type();
FileFilter::get_type();
#ifndef GTKMM_DISABLE_DEPRECATED
FileSelection::get_type();
#endif // *_DISABLE_DEPRECATED
Fixed::get_type();
FontButton::get_type();
FontSelection::get_type();
FontSelectionDialog::get_type();
Frame::get_type();
HandleBox::get_type();
IconFactory::get_type();
IconTheme::get_type();
IconView::get_type();
Image::get_type();
ImageMenuItem::get_type();
InfoBar::get_type();
#ifndef GTKMM_DISABLE_DEPRECATED
InputDialog::get_type();
#endif // *_DISABLE_DEPRECATED
Invisible::get_type();
Item::get_type();
Label::get_type();
Layout::get_type();
LinkButton::get_type();
ListStore::get_type();
Menu::get_type();
MenuBar::get_type();
MenuItem::get_type();
MenuShell::get_type();
MenuToolButton::get_type();
MessageDialog::get_type();
Misc::get_type();
Notebook::get_type();
Object::get_type();
OffscreenWindow::get_type();
#ifndef GTKMM_DISABLE_DEPRECATED
OptionMenu::get_type();
#endif // *_DISABLE_DEPRECATED
PageSetup::get_type();
#ifndef G_OS_WIN32
PageSetupUnixDialog::get_type();
#endif // ifndef G_OS_WIN32
Paned::get_type();
HPaned::get_type();
VPaned::get_type();
#ifndef G_OS_WIN32
Plug::get_type();
#endif // ifndef G_OS_WIN32
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();
RcStyle::get_type();
RecentAction::get_type();
RecentChooserDialog::get_type();
RecentChooserMenu::get_type();
RecentChooserWidget::get_type();
RecentFilter::get_type();
RecentManager::get_type();
#ifndef GTKMM_DISABLE_DEPRECATED
Ruler::get_type();
VRuler::get_type();
HRuler::get_type();
#endif // *_DISABLE_DEPRECATED
Scale::get_type();
VScale::get_type();
HScale::get_type();
ScaleButton::get_type();
Scrollbar::get_type();
VScrollbar::get_type();
HScrollbar::get_type();
ScrolledWindow::get_type();
Separator::get_type();
VSeparator::get_type();
HSeparator::get_type();
SeparatorMenuItem::get_type();
SeparatorToolItem::get_type();
Settings::get_type();
SizeGroup::get_type();
#ifndef G_OS_WIN32
Socket::get_type();
#endif // ifndef G_OS_WIN32
SpinButton::get_type();
Spinner::get_type();
Statusbar::get_type();
StatusIcon::get_type();
Style::get_type();
Table::get_type();
TearoffMenuItem::get_type();
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();
#ifndef GTKMM_DISABLE_DEPRECATED
Tooltips::get_type();
#endif // *_DISABLE_DEPRECATED
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
|