1 /*
2  * This file is part of gtkD.
3  *
4  * gtkD is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License
6  * as published by the Free Software Foundation; either version 3
7  * of the License, or (at your option) any later version, with
8  * some exceptions, please read the COPYING file.
9  *
10  * gtkD is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public License
16  * along with gtkD; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
18  */
19 
20 // generated automatically - do not change
21 // find conversion definition on APILookup.txt
22 // implement new conversion functionalities on the wrap.utils pakage
23 
24 
25 module gtk.c.functions;
26 
27 import std.stdio;
28 import gtk.c.types;
29 import gtkd.Loader;
30 
31 version (Windows)
32 	static immutable LIBRARY_GTK = ["libgtk-3-0.dll;gtk-3-3.0.dll;gtk-3.dll"];
33 else version (OSX)
34 	static immutable LIBRARY_GTK = ["libgtk-3.0.dylib"];
35 else
36 	static immutable LIBRARY_GTK = ["libgtk-3.so.0"];
37 
38 shared static this()
39 {
40 	// gtk.AboutDialog
41 
42 	Linker.link(gtk_about_dialog_get_type, "gtk_about_dialog_get_type", LIBRARY_GTK);
43 	Linker.link(gtk_about_dialog_new, "gtk_about_dialog_new", LIBRARY_GTK);
44 	Linker.link(gtk_about_dialog_add_credit_section, "gtk_about_dialog_add_credit_section", LIBRARY_GTK);
45 	Linker.link(gtk_about_dialog_get_artists, "gtk_about_dialog_get_artists", LIBRARY_GTK);
46 	Linker.link(gtk_about_dialog_get_authors, "gtk_about_dialog_get_authors", LIBRARY_GTK);
47 	Linker.link(gtk_about_dialog_get_comments, "gtk_about_dialog_get_comments", LIBRARY_GTK);
48 	Linker.link(gtk_about_dialog_get_copyright, "gtk_about_dialog_get_copyright", LIBRARY_GTK);
49 	Linker.link(gtk_about_dialog_get_documenters, "gtk_about_dialog_get_documenters", LIBRARY_GTK);
50 	Linker.link(gtk_about_dialog_get_license, "gtk_about_dialog_get_license", LIBRARY_GTK);
51 	Linker.link(gtk_about_dialog_get_license_type, "gtk_about_dialog_get_license_type", LIBRARY_GTK);
52 	Linker.link(gtk_about_dialog_get_logo, "gtk_about_dialog_get_logo", LIBRARY_GTK);
53 	Linker.link(gtk_about_dialog_get_logo_icon_name, "gtk_about_dialog_get_logo_icon_name", LIBRARY_GTK);
54 	Linker.link(gtk_about_dialog_get_program_name, "gtk_about_dialog_get_program_name", LIBRARY_GTK);
55 	Linker.link(gtk_about_dialog_get_translator_credits, "gtk_about_dialog_get_translator_credits", LIBRARY_GTK);
56 	Linker.link(gtk_about_dialog_get_version, "gtk_about_dialog_get_version", LIBRARY_GTK);
57 	Linker.link(gtk_about_dialog_get_website, "gtk_about_dialog_get_website", LIBRARY_GTK);
58 	Linker.link(gtk_about_dialog_get_website_label, "gtk_about_dialog_get_website_label", LIBRARY_GTK);
59 	Linker.link(gtk_about_dialog_get_wrap_license, "gtk_about_dialog_get_wrap_license", LIBRARY_GTK);
60 	Linker.link(gtk_about_dialog_set_artists, "gtk_about_dialog_set_artists", LIBRARY_GTK);
61 	Linker.link(gtk_about_dialog_set_authors, "gtk_about_dialog_set_authors", LIBRARY_GTK);
62 	Linker.link(gtk_about_dialog_set_comments, "gtk_about_dialog_set_comments", LIBRARY_GTK);
63 	Linker.link(gtk_about_dialog_set_copyright, "gtk_about_dialog_set_copyright", LIBRARY_GTK);
64 	Linker.link(gtk_about_dialog_set_documenters, "gtk_about_dialog_set_documenters", LIBRARY_GTK);
65 	Linker.link(gtk_about_dialog_set_license, "gtk_about_dialog_set_license", LIBRARY_GTK);
66 	Linker.link(gtk_about_dialog_set_license_type, "gtk_about_dialog_set_license_type", LIBRARY_GTK);
67 	Linker.link(gtk_about_dialog_set_logo, "gtk_about_dialog_set_logo", LIBRARY_GTK);
68 	Linker.link(gtk_about_dialog_set_logo_icon_name, "gtk_about_dialog_set_logo_icon_name", LIBRARY_GTK);
69 	Linker.link(gtk_about_dialog_set_program_name, "gtk_about_dialog_set_program_name", LIBRARY_GTK);
70 	Linker.link(gtk_about_dialog_set_translator_credits, "gtk_about_dialog_set_translator_credits", LIBRARY_GTK);
71 	Linker.link(gtk_about_dialog_set_version, "gtk_about_dialog_set_version", LIBRARY_GTK);
72 	Linker.link(gtk_about_dialog_set_website, "gtk_about_dialog_set_website", LIBRARY_GTK);
73 	Linker.link(gtk_about_dialog_set_website_label, "gtk_about_dialog_set_website_label", LIBRARY_GTK);
74 	Linker.link(gtk_about_dialog_set_wrap_license, "gtk_about_dialog_set_wrap_license", LIBRARY_GTK);
75 	Linker.link(gtk_show_about_dialog, "gtk_show_about_dialog", LIBRARY_GTK);
76 
77 	// gtk.AccelGroup
78 
79 	Linker.link(gtk_accel_group_get_type, "gtk_accel_group_get_type", LIBRARY_GTK);
80 	Linker.link(gtk_accel_group_new, "gtk_accel_group_new", LIBRARY_GTK);
81 	Linker.link(gtk_accel_group_from_accel_closure, "gtk_accel_group_from_accel_closure", LIBRARY_GTK);
82 	Linker.link(gtk_accel_group_activate, "gtk_accel_group_activate", LIBRARY_GTK);
83 	Linker.link(gtk_accel_group_connect, "gtk_accel_group_connect", LIBRARY_GTK);
84 	Linker.link(gtk_accel_group_connect_by_path, "gtk_accel_group_connect_by_path", LIBRARY_GTK);
85 	Linker.link(gtk_accel_group_disconnect, "gtk_accel_group_disconnect", LIBRARY_GTK);
86 	Linker.link(gtk_accel_group_disconnect_key, "gtk_accel_group_disconnect_key", LIBRARY_GTK);
87 	Linker.link(gtk_accel_group_find, "gtk_accel_group_find", LIBRARY_GTK);
88 	Linker.link(gtk_accel_group_get_is_locked, "gtk_accel_group_get_is_locked", LIBRARY_GTK);
89 	Linker.link(gtk_accel_group_get_modifier_mask, "gtk_accel_group_get_modifier_mask", LIBRARY_GTK);
90 	Linker.link(gtk_accel_group_lock, "gtk_accel_group_lock", LIBRARY_GTK);
91 	Linker.link(gtk_accel_group_query, "gtk_accel_group_query", LIBRARY_GTK);
92 	Linker.link(gtk_accel_group_unlock, "gtk_accel_group_unlock", LIBRARY_GTK);
93 	Linker.link(gtk_accel_groups_activate, "gtk_accel_groups_activate", LIBRARY_GTK);
94 	Linker.link(gtk_accel_groups_from_object, "gtk_accel_groups_from_object", LIBRARY_GTK);
95 	Linker.link(gtk_accelerator_get_default_mod_mask, "gtk_accelerator_get_default_mod_mask", LIBRARY_GTK);
96 	Linker.link(gtk_accelerator_get_label, "gtk_accelerator_get_label", LIBRARY_GTK);
97 	Linker.link(gtk_accelerator_get_label_with_keycode, "gtk_accelerator_get_label_with_keycode", LIBRARY_GTK);
98 	Linker.link(gtk_accelerator_name, "gtk_accelerator_name", LIBRARY_GTK);
99 	Linker.link(gtk_accelerator_name_with_keycode, "gtk_accelerator_name_with_keycode", LIBRARY_GTK);
100 	Linker.link(gtk_accelerator_parse, "gtk_accelerator_parse", LIBRARY_GTK);
101 	Linker.link(gtk_accelerator_parse_with_keycode, "gtk_accelerator_parse_with_keycode", LIBRARY_GTK);
102 	Linker.link(gtk_accelerator_set_default_mod_mask, "gtk_accelerator_set_default_mod_mask", LIBRARY_GTK);
103 	Linker.link(gtk_accelerator_valid, "gtk_accelerator_valid", LIBRARY_GTK);
104 
105 	// gtk.AccelLabel
106 
107 	Linker.link(gtk_accel_label_get_type, "gtk_accel_label_get_type", LIBRARY_GTK);
108 	Linker.link(gtk_accel_label_new, "gtk_accel_label_new", LIBRARY_GTK);
109 	Linker.link(gtk_accel_label_get_accel, "gtk_accel_label_get_accel", LIBRARY_GTK);
110 	Linker.link(gtk_accel_label_get_accel_widget, "gtk_accel_label_get_accel_widget", LIBRARY_GTK);
111 	Linker.link(gtk_accel_label_get_accel_width, "gtk_accel_label_get_accel_width", LIBRARY_GTK);
112 	Linker.link(gtk_accel_label_refetch, "gtk_accel_label_refetch", LIBRARY_GTK);
113 	Linker.link(gtk_accel_label_set_accel, "gtk_accel_label_set_accel", LIBRARY_GTK);
114 	Linker.link(gtk_accel_label_set_accel_closure, "gtk_accel_label_set_accel_closure", LIBRARY_GTK);
115 	Linker.link(gtk_accel_label_set_accel_widget, "gtk_accel_label_set_accel_widget", LIBRARY_GTK);
116 
117 	// gtk.AccelMap
118 
119 	Linker.link(gtk_accel_map_get_type, "gtk_accel_map_get_type", LIBRARY_GTK);
120 	Linker.link(gtk_accel_map_add_entry, "gtk_accel_map_add_entry", LIBRARY_GTK);
121 	Linker.link(gtk_accel_map_add_filter, "gtk_accel_map_add_filter", LIBRARY_GTK);
122 	Linker.link(gtk_accel_map_change_entry, "gtk_accel_map_change_entry", LIBRARY_GTK);
123 	Linker.link(gtk_accel_map_foreach, "gtk_accel_map_foreach", LIBRARY_GTK);
124 	Linker.link(gtk_accel_map_foreach_unfiltered, "gtk_accel_map_foreach_unfiltered", LIBRARY_GTK);
125 	Linker.link(gtk_accel_map_get, "gtk_accel_map_get", LIBRARY_GTK);
126 	Linker.link(gtk_accel_map_load, "gtk_accel_map_load", LIBRARY_GTK);
127 	Linker.link(gtk_accel_map_load_fd, "gtk_accel_map_load_fd", LIBRARY_GTK);
128 	Linker.link(gtk_accel_map_load_scanner, "gtk_accel_map_load_scanner", LIBRARY_GTK);
129 	Linker.link(gtk_accel_map_lock_path, "gtk_accel_map_lock_path", LIBRARY_GTK);
130 	Linker.link(gtk_accel_map_lookup_entry, "gtk_accel_map_lookup_entry", LIBRARY_GTK);
131 	Linker.link(gtk_accel_map_save, "gtk_accel_map_save", LIBRARY_GTK);
132 	Linker.link(gtk_accel_map_save_fd, "gtk_accel_map_save_fd", LIBRARY_GTK);
133 	Linker.link(gtk_accel_map_unlock_path, "gtk_accel_map_unlock_path", LIBRARY_GTK);
134 
135 	// gtk.Accessible
136 
137 	Linker.link(gtk_accessible_get_type, "gtk_accessible_get_type", LIBRARY_GTK);
138 	Linker.link(gtk_accessible_connect_widget_destroyed, "gtk_accessible_connect_widget_destroyed", LIBRARY_GTK);
139 	Linker.link(gtk_accessible_get_widget, "gtk_accessible_get_widget", LIBRARY_GTK);
140 	Linker.link(gtk_accessible_set_widget, "gtk_accessible_set_widget", LIBRARY_GTK);
141 
142 	// gtk.Action
143 
144 	Linker.link(gtk_action_get_type, "gtk_action_get_type", LIBRARY_GTK);
145 	Linker.link(gtk_action_new, "gtk_action_new", LIBRARY_GTK);
146 	Linker.link(gtk_action_activate, "gtk_action_activate", LIBRARY_GTK);
147 	Linker.link(gtk_action_block_activate, "gtk_action_block_activate", LIBRARY_GTK);
148 	Linker.link(gtk_action_connect_accelerator, "gtk_action_connect_accelerator", LIBRARY_GTK);
149 	Linker.link(gtk_action_create_icon, "gtk_action_create_icon", LIBRARY_GTK);
150 	Linker.link(gtk_action_create_menu, "gtk_action_create_menu", LIBRARY_GTK);
151 	Linker.link(gtk_action_create_menu_item, "gtk_action_create_menu_item", LIBRARY_GTK);
152 	Linker.link(gtk_action_create_tool_item, "gtk_action_create_tool_item", LIBRARY_GTK);
153 	Linker.link(gtk_action_disconnect_accelerator, "gtk_action_disconnect_accelerator", LIBRARY_GTK);
154 	Linker.link(gtk_action_get_accel_closure, "gtk_action_get_accel_closure", LIBRARY_GTK);
155 	Linker.link(gtk_action_get_accel_path, "gtk_action_get_accel_path", LIBRARY_GTK);
156 	Linker.link(gtk_action_get_always_show_image, "gtk_action_get_always_show_image", LIBRARY_GTK);
157 	Linker.link(gtk_action_get_gicon, "gtk_action_get_gicon", LIBRARY_GTK);
158 	Linker.link(gtk_action_get_icon_name, "gtk_action_get_icon_name", LIBRARY_GTK);
159 	Linker.link(gtk_action_get_is_important, "gtk_action_get_is_important", LIBRARY_GTK);
160 	Linker.link(gtk_action_get_label, "gtk_action_get_label", LIBRARY_GTK);
161 	Linker.link(gtk_action_get_name, "gtk_action_get_name", LIBRARY_GTK);
162 	Linker.link(gtk_action_get_proxies, "gtk_action_get_proxies", LIBRARY_GTK);
163 	Linker.link(gtk_action_get_sensitive, "gtk_action_get_sensitive", LIBRARY_GTK);
164 	Linker.link(gtk_action_get_short_label, "gtk_action_get_short_label", LIBRARY_GTK);
165 	Linker.link(gtk_action_get_stock_id, "gtk_action_get_stock_id", LIBRARY_GTK);
166 	Linker.link(gtk_action_get_tooltip, "gtk_action_get_tooltip", LIBRARY_GTK);
167 	Linker.link(gtk_action_get_visible, "gtk_action_get_visible", LIBRARY_GTK);
168 	Linker.link(gtk_action_get_visible_horizontal, "gtk_action_get_visible_horizontal", LIBRARY_GTK);
169 	Linker.link(gtk_action_get_visible_vertical, "gtk_action_get_visible_vertical", LIBRARY_GTK);
170 	Linker.link(gtk_action_is_sensitive, "gtk_action_is_sensitive", LIBRARY_GTK);
171 	Linker.link(gtk_action_is_visible, "gtk_action_is_visible", LIBRARY_GTK);
172 	Linker.link(gtk_action_set_accel_group, "gtk_action_set_accel_group", LIBRARY_GTK);
173 	Linker.link(gtk_action_set_accel_path, "gtk_action_set_accel_path", LIBRARY_GTK);
174 	Linker.link(gtk_action_set_always_show_image, "gtk_action_set_always_show_image", LIBRARY_GTK);
175 	Linker.link(gtk_action_set_gicon, "gtk_action_set_gicon", LIBRARY_GTK);
176 	Linker.link(gtk_action_set_icon_name, "gtk_action_set_icon_name", LIBRARY_GTK);
177 	Linker.link(gtk_action_set_is_important, "gtk_action_set_is_important", LIBRARY_GTK);
178 	Linker.link(gtk_action_set_label, "gtk_action_set_label", LIBRARY_GTK);
179 	Linker.link(gtk_action_set_sensitive, "gtk_action_set_sensitive", LIBRARY_GTK);
180 	Linker.link(gtk_action_set_short_label, "gtk_action_set_short_label", LIBRARY_GTK);
181 	Linker.link(gtk_action_set_stock_id, "gtk_action_set_stock_id", LIBRARY_GTK);
182 	Linker.link(gtk_action_set_tooltip, "gtk_action_set_tooltip", LIBRARY_GTK);
183 	Linker.link(gtk_action_set_visible, "gtk_action_set_visible", LIBRARY_GTK);
184 	Linker.link(gtk_action_set_visible_horizontal, "gtk_action_set_visible_horizontal", LIBRARY_GTK);
185 	Linker.link(gtk_action_set_visible_vertical, "gtk_action_set_visible_vertical", LIBRARY_GTK);
186 	Linker.link(gtk_action_unblock_activate, "gtk_action_unblock_activate", LIBRARY_GTK);
187 
188 	// gtk.ActionBar
189 
190 	Linker.link(gtk_action_bar_get_type, "gtk_action_bar_get_type", LIBRARY_GTK);
191 	Linker.link(gtk_action_bar_new, "gtk_action_bar_new", LIBRARY_GTK);
192 	Linker.link(gtk_action_bar_get_center_widget, "gtk_action_bar_get_center_widget", LIBRARY_GTK);
193 	Linker.link(gtk_action_bar_pack_end, "gtk_action_bar_pack_end", LIBRARY_GTK);
194 	Linker.link(gtk_action_bar_pack_start, "gtk_action_bar_pack_start", LIBRARY_GTK);
195 	Linker.link(gtk_action_bar_set_center_widget, "gtk_action_bar_set_center_widget", LIBRARY_GTK);
196 
197 	// gtk.ActionGroup
198 
199 	Linker.link(gtk_action_group_get_type, "gtk_action_group_get_type", LIBRARY_GTK);
200 	Linker.link(gtk_action_group_new, "gtk_action_group_new", LIBRARY_GTK);
201 	Linker.link(gtk_action_group_add_action, "gtk_action_group_add_action", LIBRARY_GTK);
202 	Linker.link(gtk_action_group_add_action_with_accel, "gtk_action_group_add_action_with_accel", LIBRARY_GTK);
203 	Linker.link(gtk_action_group_add_actions, "gtk_action_group_add_actions", LIBRARY_GTK);
204 	Linker.link(gtk_action_group_add_actions_full, "gtk_action_group_add_actions_full", LIBRARY_GTK);
205 	Linker.link(gtk_action_group_add_radio_actions, "gtk_action_group_add_radio_actions", LIBRARY_GTK);
206 	Linker.link(gtk_action_group_add_radio_actions_full, "gtk_action_group_add_radio_actions_full", LIBRARY_GTK);
207 	Linker.link(gtk_action_group_add_toggle_actions, "gtk_action_group_add_toggle_actions", LIBRARY_GTK);
208 	Linker.link(gtk_action_group_add_toggle_actions_full, "gtk_action_group_add_toggle_actions_full", LIBRARY_GTK);
209 	Linker.link(gtk_action_group_get_accel_group, "gtk_action_group_get_accel_group", LIBRARY_GTK);
210 	Linker.link(gtk_action_group_get_action, "gtk_action_group_get_action", LIBRARY_GTK);
211 	Linker.link(gtk_action_group_get_name, "gtk_action_group_get_name", LIBRARY_GTK);
212 	Linker.link(gtk_action_group_get_sensitive, "gtk_action_group_get_sensitive", LIBRARY_GTK);
213 	Linker.link(gtk_action_group_get_visible, "gtk_action_group_get_visible", LIBRARY_GTK);
214 	Linker.link(gtk_action_group_list_actions, "gtk_action_group_list_actions", LIBRARY_GTK);
215 	Linker.link(gtk_action_group_remove_action, "gtk_action_group_remove_action", LIBRARY_GTK);
216 	Linker.link(gtk_action_group_set_accel_group, "gtk_action_group_set_accel_group", LIBRARY_GTK);
217 	Linker.link(gtk_action_group_set_sensitive, "gtk_action_group_set_sensitive", LIBRARY_GTK);
218 	Linker.link(gtk_action_group_set_translate_func, "gtk_action_group_set_translate_func", LIBRARY_GTK);
219 	Linker.link(gtk_action_group_set_translation_domain, "gtk_action_group_set_translation_domain", LIBRARY_GTK);
220 	Linker.link(gtk_action_group_set_visible, "gtk_action_group_set_visible", LIBRARY_GTK);
221 	Linker.link(gtk_action_group_translate_string, "gtk_action_group_translate_string", LIBRARY_GTK);
222 
223 	// gtk.Actionable
224 
225 	Linker.link(gtk_actionable_get_type, "gtk_actionable_get_type", LIBRARY_GTK);
226 	Linker.link(gtk_actionable_get_action_name, "gtk_actionable_get_action_name", LIBRARY_GTK);
227 	Linker.link(gtk_actionable_get_action_target_value, "gtk_actionable_get_action_target_value", LIBRARY_GTK);
228 	Linker.link(gtk_actionable_set_action_name, "gtk_actionable_set_action_name", LIBRARY_GTK);
229 	Linker.link(gtk_actionable_set_action_target, "gtk_actionable_set_action_target", LIBRARY_GTK);
230 	Linker.link(gtk_actionable_set_action_target_value, "gtk_actionable_set_action_target_value", LIBRARY_GTK);
231 	Linker.link(gtk_actionable_set_detailed_action_name, "gtk_actionable_set_detailed_action_name", LIBRARY_GTK);
232 
233 	// gtk.Activatable
234 
235 	Linker.link(gtk_activatable_get_type, "gtk_activatable_get_type", LIBRARY_GTK);
236 	Linker.link(gtk_activatable_do_set_related_action, "gtk_activatable_do_set_related_action", LIBRARY_GTK);
237 	Linker.link(gtk_activatable_get_related_action, "gtk_activatable_get_related_action", LIBRARY_GTK);
238 	Linker.link(gtk_activatable_get_use_action_appearance, "gtk_activatable_get_use_action_appearance", LIBRARY_GTK);
239 	Linker.link(gtk_activatable_set_related_action, "gtk_activatable_set_related_action", LIBRARY_GTK);
240 	Linker.link(gtk_activatable_set_use_action_appearance, "gtk_activatable_set_use_action_appearance", LIBRARY_GTK);
241 	Linker.link(gtk_activatable_sync_action_properties, "gtk_activatable_sync_action_properties", LIBRARY_GTK);
242 
243 	// gtk.Adjustment
244 
245 	Linker.link(gtk_adjustment_get_type, "gtk_adjustment_get_type", LIBRARY_GTK);
246 	Linker.link(gtk_adjustment_new, "gtk_adjustment_new", LIBRARY_GTK);
247 	Linker.link(gtk_adjustment_changed, "gtk_adjustment_changed", LIBRARY_GTK);
248 	Linker.link(gtk_adjustment_clamp_page, "gtk_adjustment_clamp_page", LIBRARY_GTK);
249 	Linker.link(gtk_adjustment_configure, "gtk_adjustment_configure", LIBRARY_GTK);
250 	Linker.link(gtk_adjustment_get_lower, "gtk_adjustment_get_lower", LIBRARY_GTK);
251 	Linker.link(gtk_adjustment_get_minimum_increment, "gtk_adjustment_get_minimum_increment", LIBRARY_GTK);
252 	Linker.link(gtk_adjustment_get_page_increment, "gtk_adjustment_get_page_increment", LIBRARY_GTK);
253 	Linker.link(gtk_adjustment_get_page_size, "gtk_adjustment_get_page_size", LIBRARY_GTK);
254 	Linker.link(gtk_adjustment_get_step_increment, "gtk_adjustment_get_step_increment", LIBRARY_GTK);
255 	Linker.link(gtk_adjustment_get_upper, "gtk_adjustment_get_upper", LIBRARY_GTK);
256 	Linker.link(gtk_adjustment_get_value, "gtk_adjustment_get_value", LIBRARY_GTK);
257 	Linker.link(gtk_adjustment_set_lower, "gtk_adjustment_set_lower", LIBRARY_GTK);
258 	Linker.link(gtk_adjustment_set_page_increment, "gtk_adjustment_set_page_increment", LIBRARY_GTK);
259 	Linker.link(gtk_adjustment_set_page_size, "gtk_adjustment_set_page_size", LIBRARY_GTK);
260 	Linker.link(gtk_adjustment_set_step_increment, "gtk_adjustment_set_step_increment", LIBRARY_GTK);
261 	Linker.link(gtk_adjustment_set_upper, "gtk_adjustment_set_upper", LIBRARY_GTK);
262 	Linker.link(gtk_adjustment_set_value, "gtk_adjustment_set_value", LIBRARY_GTK);
263 	Linker.link(gtk_adjustment_value_changed, "gtk_adjustment_value_changed", LIBRARY_GTK);
264 
265 	// gtk.Alignment
266 
267 	Linker.link(gtk_alignment_get_type, "gtk_alignment_get_type", LIBRARY_GTK);
268 	Linker.link(gtk_alignment_new, "gtk_alignment_new", LIBRARY_GTK);
269 	Linker.link(gtk_alignment_get_padding, "gtk_alignment_get_padding", LIBRARY_GTK);
270 	Linker.link(gtk_alignment_set, "gtk_alignment_set", LIBRARY_GTK);
271 	Linker.link(gtk_alignment_set_padding, "gtk_alignment_set_padding", LIBRARY_GTK);
272 
273 	// gtk.AppChooser
274 
275 	Linker.link(gtk_app_chooser_get_type, "gtk_app_chooser_get_type", LIBRARY_GTK);
276 	Linker.link(gtk_app_chooser_get_app_info, "gtk_app_chooser_get_app_info", LIBRARY_GTK);
277 	Linker.link(gtk_app_chooser_get_content_type, "gtk_app_chooser_get_content_type", LIBRARY_GTK);
278 	Linker.link(gtk_app_chooser_refresh, "gtk_app_chooser_refresh", LIBRARY_GTK);
279 
280 	// gtk.AppChooserButton
281 
282 	Linker.link(gtk_app_chooser_button_get_type, "gtk_app_chooser_button_get_type", LIBRARY_GTK);
283 	Linker.link(gtk_app_chooser_button_new, "gtk_app_chooser_button_new", LIBRARY_GTK);
284 	Linker.link(gtk_app_chooser_button_append_custom_item, "gtk_app_chooser_button_append_custom_item", LIBRARY_GTK);
285 	Linker.link(gtk_app_chooser_button_append_separator, "gtk_app_chooser_button_append_separator", LIBRARY_GTK);
286 	Linker.link(gtk_app_chooser_button_get_heading, "gtk_app_chooser_button_get_heading", LIBRARY_GTK);
287 	Linker.link(gtk_app_chooser_button_get_show_default_item, "gtk_app_chooser_button_get_show_default_item", LIBRARY_GTK);
288 	Linker.link(gtk_app_chooser_button_get_show_dialog_item, "gtk_app_chooser_button_get_show_dialog_item", LIBRARY_GTK);
289 	Linker.link(gtk_app_chooser_button_set_active_custom_item, "gtk_app_chooser_button_set_active_custom_item", LIBRARY_GTK);
290 	Linker.link(gtk_app_chooser_button_set_heading, "gtk_app_chooser_button_set_heading", LIBRARY_GTK);
291 	Linker.link(gtk_app_chooser_button_set_show_default_item, "gtk_app_chooser_button_set_show_default_item", LIBRARY_GTK);
292 	Linker.link(gtk_app_chooser_button_set_show_dialog_item, "gtk_app_chooser_button_set_show_dialog_item", LIBRARY_GTK);
293 
294 	// gtk.AppChooserDialog
295 
296 	Linker.link(gtk_app_chooser_dialog_get_type, "gtk_app_chooser_dialog_get_type", LIBRARY_GTK);
297 	Linker.link(gtk_app_chooser_dialog_new, "gtk_app_chooser_dialog_new", LIBRARY_GTK);
298 	Linker.link(gtk_app_chooser_dialog_new_for_content_type, "gtk_app_chooser_dialog_new_for_content_type", LIBRARY_GTK);
299 	Linker.link(gtk_app_chooser_dialog_get_heading, "gtk_app_chooser_dialog_get_heading", LIBRARY_GTK);
300 	Linker.link(gtk_app_chooser_dialog_get_widget, "gtk_app_chooser_dialog_get_widget", LIBRARY_GTK);
301 	Linker.link(gtk_app_chooser_dialog_set_heading, "gtk_app_chooser_dialog_set_heading", LIBRARY_GTK);
302 
303 	// gtk.AppChooserWidget
304 
305 	Linker.link(gtk_app_chooser_widget_get_type, "gtk_app_chooser_widget_get_type", LIBRARY_GTK);
306 	Linker.link(gtk_app_chooser_widget_new, "gtk_app_chooser_widget_new", LIBRARY_GTK);
307 	Linker.link(gtk_app_chooser_widget_get_default_text, "gtk_app_chooser_widget_get_default_text", LIBRARY_GTK);
308 	Linker.link(gtk_app_chooser_widget_get_show_all, "gtk_app_chooser_widget_get_show_all", LIBRARY_GTK);
309 	Linker.link(gtk_app_chooser_widget_get_show_default, "gtk_app_chooser_widget_get_show_default", LIBRARY_GTK);
310 	Linker.link(gtk_app_chooser_widget_get_show_fallback, "gtk_app_chooser_widget_get_show_fallback", LIBRARY_GTK);
311 	Linker.link(gtk_app_chooser_widget_get_show_other, "gtk_app_chooser_widget_get_show_other", LIBRARY_GTK);
312 	Linker.link(gtk_app_chooser_widget_get_show_recommended, "gtk_app_chooser_widget_get_show_recommended", LIBRARY_GTK);
313 	Linker.link(gtk_app_chooser_widget_set_default_text, "gtk_app_chooser_widget_set_default_text", LIBRARY_GTK);
314 	Linker.link(gtk_app_chooser_widget_set_show_all, "gtk_app_chooser_widget_set_show_all", LIBRARY_GTK);
315 	Linker.link(gtk_app_chooser_widget_set_show_default, "gtk_app_chooser_widget_set_show_default", LIBRARY_GTK);
316 	Linker.link(gtk_app_chooser_widget_set_show_fallback, "gtk_app_chooser_widget_set_show_fallback", LIBRARY_GTK);
317 	Linker.link(gtk_app_chooser_widget_set_show_other, "gtk_app_chooser_widget_set_show_other", LIBRARY_GTK);
318 	Linker.link(gtk_app_chooser_widget_set_show_recommended, "gtk_app_chooser_widget_set_show_recommended", LIBRARY_GTK);
319 
320 	// gtk.Application
321 
322 	Linker.link(gtk_application_get_type, "gtk_application_get_type", LIBRARY_GTK);
323 	Linker.link(gtk_application_new, "gtk_application_new", LIBRARY_GTK);
324 	Linker.link(gtk_application_add_accelerator, "gtk_application_add_accelerator", LIBRARY_GTK);
325 	Linker.link(gtk_application_add_window, "gtk_application_add_window", LIBRARY_GTK);
326 	Linker.link(gtk_application_get_accels_for_action, "gtk_application_get_accels_for_action", LIBRARY_GTK);
327 	Linker.link(gtk_application_get_actions_for_accel, "gtk_application_get_actions_for_accel", LIBRARY_GTK);
328 	Linker.link(gtk_application_get_active_window, "gtk_application_get_active_window", LIBRARY_GTK);
329 	Linker.link(gtk_application_get_app_menu, "gtk_application_get_app_menu", LIBRARY_GTK);
330 	Linker.link(gtk_application_get_menu_by_id, "gtk_application_get_menu_by_id", LIBRARY_GTK);
331 	Linker.link(gtk_application_get_menubar, "gtk_application_get_menubar", LIBRARY_GTK);
332 	Linker.link(gtk_application_get_window_by_id, "gtk_application_get_window_by_id", LIBRARY_GTK);
333 	Linker.link(gtk_application_get_windows, "gtk_application_get_windows", LIBRARY_GTK);
334 	Linker.link(gtk_application_inhibit, "gtk_application_inhibit", LIBRARY_GTK);
335 	Linker.link(gtk_application_is_inhibited, "gtk_application_is_inhibited", LIBRARY_GTK);
336 	Linker.link(gtk_application_list_action_descriptions, "gtk_application_list_action_descriptions", LIBRARY_GTK);
337 	Linker.link(gtk_application_prefers_app_menu, "gtk_application_prefers_app_menu", LIBRARY_GTK);
338 	Linker.link(gtk_application_remove_accelerator, "gtk_application_remove_accelerator", LIBRARY_GTK);
339 	Linker.link(gtk_application_remove_window, "gtk_application_remove_window", LIBRARY_GTK);
340 	Linker.link(gtk_application_set_accels_for_action, "gtk_application_set_accels_for_action", LIBRARY_GTK);
341 	Linker.link(gtk_application_set_app_menu, "gtk_application_set_app_menu", LIBRARY_GTK);
342 	Linker.link(gtk_application_set_menubar, "gtk_application_set_menubar", LIBRARY_GTK);
343 	Linker.link(gtk_application_uninhibit, "gtk_application_uninhibit", LIBRARY_GTK);
344 
345 	// gtk.ApplicationWindow
346 
347 	Linker.link(gtk_application_window_get_type, "gtk_application_window_get_type", LIBRARY_GTK);
348 	Linker.link(gtk_application_window_new, "gtk_application_window_new", LIBRARY_GTK);
349 	Linker.link(gtk_application_window_get_help_overlay, "gtk_application_window_get_help_overlay", LIBRARY_GTK);
350 	Linker.link(gtk_application_window_get_id, "gtk_application_window_get_id", LIBRARY_GTK);
351 	Linker.link(gtk_application_window_get_show_menubar, "gtk_application_window_get_show_menubar", LIBRARY_GTK);
352 	Linker.link(gtk_application_window_set_help_overlay, "gtk_application_window_set_help_overlay", LIBRARY_GTK);
353 	Linker.link(gtk_application_window_set_show_menubar, "gtk_application_window_set_show_menubar", LIBRARY_GTK);
354 
355 	// gtk.Arrow
356 
357 	Linker.link(gtk_arrow_get_type, "gtk_arrow_get_type", LIBRARY_GTK);
358 	Linker.link(gtk_arrow_new, "gtk_arrow_new", LIBRARY_GTK);
359 	Linker.link(gtk_arrow_set, "gtk_arrow_set", LIBRARY_GTK);
360 
361 	// gtk.ArrowAccessible
362 
363 	Linker.link(gtk_arrow_accessible_get_type, "gtk_arrow_accessible_get_type", LIBRARY_GTK);
364 
365 	// gtk.AspectFrame
366 
367 	Linker.link(gtk_aspect_frame_get_type, "gtk_aspect_frame_get_type", LIBRARY_GTK);
368 	Linker.link(gtk_aspect_frame_new, "gtk_aspect_frame_new", LIBRARY_GTK);
369 	Linker.link(gtk_aspect_frame_set, "gtk_aspect_frame_set", LIBRARY_GTK);
370 
371 	// gtk.Assistant
372 
373 	Linker.link(gtk_assistant_get_type, "gtk_assistant_get_type", LIBRARY_GTK);
374 	Linker.link(gtk_assistant_new, "gtk_assistant_new", LIBRARY_GTK);
375 	Linker.link(gtk_assistant_add_action_widget, "gtk_assistant_add_action_widget", LIBRARY_GTK);
376 	Linker.link(gtk_assistant_append_page, "gtk_assistant_append_page", LIBRARY_GTK);
377 	Linker.link(gtk_assistant_commit, "gtk_assistant_commit", LIBRARY_GTK);
378 	Linker.link(gtk_assistant_get_current_page, "gtk_assistant_get_current_page", LIBRARY_GTK);
379 	Linker.link(gtk_assistant_get_n_pages, "gtk_assistant_get_n_pages", LIBRARY_GTK);
380 	Linker.link(gtk_assistant_get_nth_page, "gtk_assistant_get_nth_page", LIBRARY_GTK);
381 	Linker.link(gtk_assistant_get_page_complete, "gtk_assistant_get_page_complete", LIBRARY_GTK);
382 	Linker.link(gtk_assistant_get_page_has_padding, "gtk_assistant_get_page_has_padding", LIBRARY_GTK);
383 	Linker.link(gtk_assistant_get_page_header_image, "gtk_assistant_get_page_header_image", LIBRARY_GTK);
384 	Linker.link(gtk_assistant_get_page_side_image, "gtk_assistant_get_page_side_image", LIBRARY_GTK);
385 	Linker.link(gtk_assistant_get_page_title, "gtk_assistant_get_page_title", LIBRARY_GTK);
386 	Linker.link(gtk_assistant_get_page_type, "gtk_assistant_get_page_type", LIBRARY_GTK);
387 	Linker.link(gtk_assistant_insert_page, "gtk_assistant_insert_page", LIBRARY_GTK);
388 	Linker.link(gtk_assistant_next_page, "gtk_assistant_next_page", LIBRARY_GTK);
389 	Linker.link(gtk_assistant_prepend_page, "gtk_assistant_prepend_page", LIBRARY_GTK);
390 	Linker.link(gtk_assistant_previous_page, "gtk_assistant_previous_page", LIBRARY_GTK);
391 	Linker.link(gtk_assistant_remove_action_widget, "gtk_assistant_remove_action_widget", LIBRARY_GTK);
392 	Linker.link(gtk_assistant_remove_page, "gtk_assistant_remove_page", LIBRARY_GTK);
393 	Linker.link(gtk_assistant_set_current_page, "gtk_assistant_set_current_page", LIBRARY_GTK);
394 	Linker.link(gtk_assistant_set_forward_page_func, "gtk_assistant_set_forward_page_func", LIBRARY_GTK);
395 	Linker.link(gtk_assistant_set_page_complete, "gtk_assistant_set_page_complete", LIBRARY_GTK);
396 	Linker.link(gtk_assistant_set_page_has_padding, "gtk_assistant_set_page_has_padding", LIBRARY_GTK);
397 	Linker.link(gtk_assistant_set_page_header_image, "gtk_assistant_set_page_header_image", LIBRARY_GTK);
398 	Linker.link(gtk_assistant_set_page_side_image, "gtk_assistant_set_page_side_image", LIBRARY_GTK);
399 	Linker.link(gtk_assistant_set_page_title, "gtk_assistant_set_page_title", LIBRARY_GTK);
400 	Linker.link(gtk_assistant_set_page_type, "gtk_assistant_set_page_type", LIBRARY_GTK);
401 	Linker.link(gtk_assistant_update_buttons_state, "gtk_assistant_update_buttons_state", LIBRARY_GTK);
402 
403 	// gtk.Bin
404 
405 	Linker.link(gtk_bin_get_type, "gtk_bin_get_type", LIBRARY_GTK);
406 	Linker.link(gtk_bin_get_child, "gtk_bin_get_child", LIBRARY_GTK);
407 
408 	// gtk.BindingEntry
409 
410 	Linker.link(gtk_binding_entry_add_signal, "gtk_binding_entry_add_signal", LIBRARY_GTK);
411 	Linker.link(gtk_binding_entry_add_signal_from_string, "gtk_binding_entry_add_signal_from_string", LIBRARY_GTK);
412 	Linker.link(gtk_binding_entry_add_signall, "gtk_binding_entry_add_signall", LIBRARY_GTK);
413 	Linker.link(gtk_binding_entry_remove, "gtk_binding_entry_remove", LIBRARY_GTK);
414 	Linker.link(gtk_binding_entry_skip, "gtk_binding_entry_skip", LIBRARY_GTK);
415 
416 	// gtk.BindingSet
417 
418 	Linker.link(gtk_binding_set_activate, "gtk_binding_set_activate", LIBRARY_GTK);
419 	Linker.link(gtk_binding_set_add_path, "gtk_binding_set_add_path", LIBRARY_GTK);
420 	Linker.link(gtk_binding_set_by_class, "gtk_binding_set_by_class", LIBRARY_GTK);
421 	Linker.link(gtk_binding_set_find, "gtk_binding_set_find", LIBRARY_GTK);
422 	Linker.link(gtk_binding_set_new, "gtk_binding_set_new", LIBRARY_GTK);
423 	Linker.link(gtk_bindings_activate, "gtk_bindings_activate", LIBRARY_GTK);
424 	Linker.link(gtk_bindings_activate_event, "gtk_bindings_activate_event", LIBRARY_GTK);
425 
426 	// gtk.BooleanCellAccessible
427 
428 	Linker.link(gtk_boolean_cell_accessible_get_type, "gtk_boolean_cell_accessible_get_type", LIBRARY_GTK);
429 
430 	// gtk.Border
431 
432 	Linker.link(gtk_border_get_type, "gtk_border_get_type", LIBRARY_GTK);
433 	Linker.link(gtk_border_new, "gtk_border_new", LIBRARY_GTK);
434 	Linker.link(gtk_border_copy, "gtk_border_copy", LIBRARY_GTK);
435 	Linker.link(gtk_border_free, "gtk_border_free", LIBRARY_GTK);
436 
437 	// gtk.Box
438 
439 	Linker.link(gtk_box_get_type, "gtk_box_get_type", LIBRARY_GTK);
440 	Linker.link(gtk_box_new, "gtk_box_new", LIBRARY_GTK);
441 	Linker.link(gtk_box_get_baseline_position, "gtk_box_get_baseline_position", LIBRARY_GTK);
442 	Linker.link(gtk_box_get_center_widget, "gtk_box_get_center_widget", LIBRARY_GTK);
443 	Linker.link(gtk_box_get_homogeneous, "gtk_box_get_homogeneous", LIBRARY_GTK);
444 	Linker.link(gtk_box_get_spacing, "gtk_box_get_spacing", LIBRARY_GTK);
445 	Linker.link(gtk_box_pack_end, "gtk_box_pack_end", LIBRARY_GTK);
446 	Linker.link(gtk_box_pack_start, "gtk_box_pack_start", LIBRARY_GTK);
447 	Linker.link(gtk_box_query_child_packing, "gtk_box_query_child_packing", LIBRARY_GTK);
448 	Linker.link(gtk_box_reorder_child, "gtk_box_reorder_child", LIBRARY_GTK);
449 	Linker.link(gtk_box_set_baseline_position, "gtk_box_set_baseline_position", LIBRARY_GTK);
450 	Linker.link(gtk_box_set_center_widget, "gtk_box_set_center_widget", LIBRARY_GTK);
451 	Linker.link(gtk_box_set_child_packing, "gtk_box_set_child_packing", LIBRARY_GTK);
452 	Linker.link(gtk_box_set_homogeneous, "gtk_box_set_homogeneous", LIBRARY_GTK);
453 	Linker.link(gtk_box_set_spacing, "gtk_box_set_spacing", LIBRARY_GTK);
454 
455 	// gtk.Buildable
456 
457 	Linker.link(gtk_buildable_get_type, "gtk_buildable_get_type", LIBRARY_GTK);
458 	Linker.link(gtk_buildable_add_child, "gtk_buildable_add_child", LIBRARY_GTK);
459 	Linker.link(gtk_buildable_construct_child, "gtk_buildable_construct_child", LIBRARY_GTK);
460 	Linker.link(gtk_buildable_custom_finished, "gtk_buildable_custom_finished", LIBRARY_GTK);
461 	Linker.link(gtk_buildable_custom_tag_end, "gtk_buildable_custom_tag_end", LIBRARY_GTK);
462 	Linker.link(gtk_buildable_custom_tag_start, "gtk_buildable_custom_tag_start", LIBRARY_GTK);
463 	Linker.link(gtk_buildable_get_internal_child, "gtk_buildable_get_internal_child", LIBRARY_GTK);
464 	Linker.link(gtk_buildable_get_name, "gtk_buildable_get_name", LIBRARY_GTK);
465 	Linker.link(gtk_buildable_parser_finished, "gtk_buildable_parser_finished", LIBRARY_GTK);
466 	Linker.link(gtk_buildable_set_buildable_property, "gtk_buildable_set_buildable_property", LIBRARY_GTK);
467 	Linker.link(gtk_buildable_set_name, "gtk_buildable_set_name", LIBRARY_GTK);
468 
469 	// gtk.Builder
470 
471 	Linker.link(gtk_builder_get_type, "gtk_builder_get_type", LIBRARY_GTK);
472 	Linker.link(gtk_builder_new, "gtk_builder_new", LIBRARY_GTK);
473 	Linker.link(gtk_builder_new_from_file, "gtk_builder_new_from_file", LIBRARY_GTK);
474 	Linker.link(gtk_builder_new_from_resource, "gtk_builder_new_from_resource", LIBRARY_GTK);
475 	Linker.link(gtk_builder_new_from_string, "gtk_builder_new_from_string", LIBRARY_GTK);
476 	Linker.link(gtk_builder_add_callback_symbol, "gtk_builder_add_callback_symbol", LIBRARY_GTK);
477 	Linker.link(gtk_builder_add_callback_symbols, "gtk_builder_add_callback_symbols", LIBRARY_GTK);
478 	Linker.link(gtk_builder_add_from_file, "gtk_builder_add_from_file", LIBRARY_GTK);
479 	Linker.link(gtk_builder_add_from_resource, "gtk_builder_add_from_resource", LIBRARY_GTK);
480 	Linker.link(gtk_builder_add_from_string, "gtk_builder_add_from_string", LIBRARY_GTK);
481 	Linker.link(gtk_builder_add_objects_from_file, "gtk_builder_add_objects_from_file", LIBRARY_GTK);
482 	Linker.link(gtk_builder_add_objects_from_resource, "gtk_builder_add_objects_from_resource", LIBRARY_GTK);
483 	Linker.link(gtk_builder_add_objects_from_string, "gtk_builder_add_objects_from_string", LIBRARY_GTK);
484 	Linker.link(gtk_builder_connect_signals, "gtk_builder_connect_signals", LIBRARY_GTK);
485 	Linker.link(gtk_builder_connect_signals_full, "gtk_builder_connect_signals_full", LIBRARY_GTK);
486 	Linker.link(gtk_builder_expose_object, "gtk_builder_expose_object", LIBRARY_GTK);
487 	Linker.link(gtk_builder_extend_with_template, "gtk_builder_extend_with_template", LIBRARY_GTK);
488 	Linker.link(gtk_builder_get_application, "gtk_builder_get_application", LIBRARY_GTK);
489 	Linker.link(gtk_builder_get_object, "gtk_builder_get_object", LIBRARY_GTK);
490 	Linker.link(gtk_builder_get_objects, "gtk_builder_get_objects", LIBRARY_GTK);
491 	Linker.link(gtk_builder_get_translation_domain, "gtk_builder_get_translation_domain", LIBRARY_GTK);
492 	Linker.link(gtk_builder_get_type_from_name, "gtk_builder_get_type_from_name", LIBRARY_GTK);
493 	Linker.link(gtk_builder_lookup_callback_symbol, "gtk_builder_lookup_callback_symbol", LIBRARY_GTK);
494 	Linker.link(gtk_builder_set_application, "gtk_builder_set_application", LIBRARY_GTK);
495 	Linker.link(gtk_builder_set_translation_domain, "gtk_builder_set_translation_domain", LIBRARY_GTK);
496 	Linker.link(gtk_builder_value_from_string, "gtk_builder_value_from_string", LIBRARY_GTK);
497 	Linker.link(gtk_builder_value_from_string_type, "gtk_builder_value_from_string_type", LIBRARY_GTK);
498 
499 	// gtk.Button
500 
501 	Linker.link(gtk_button_get_type, "gtk_button_get_type", LIBRARY_GTK);
502 	Linker.link(gtk_button_new, "gtk_button_new", LIBRARY_GTK);
503 	Linker.link(gtk_button_new_from_icon_name, "gtk_button_new_from_icon_name", LIBRARY_GTK);
504 	Linker.link(gtk_button_new_from_stock, "gtk_button_new_from_stock", LIBRARY_GTK);
505 	Linker.link(gtk_button_new_with_label, "gtk_button_new_with_label", LIBRARY_GTK);
506 	Linker.link(gtk_button_new_with_mnemonic, "gtk_button_new_with_mnemonic", LIBRARY_GTK);
507 	Linker.link(gtk_button_clicked, "gtk_button_clicked", LIBRARY_GTK);
508 	Linker.link(gtk_button_enter, "gtk_button_enter", LIBRARY_GTK);
509 	Linker.link(gtk_button_get_alignment, "gtk_button_get_alignment", LIBRARY_GTK);
510 	Linker.link(gtk_button_get_always_show_image, "gtk_button_get_always_show_image", LIBRARY_GTK);
511 	Linker.link(gtk_button_get_event_window, "gtk_button_get_event_window", LIBRARY_GTK);
512 	Linker.link(gtk_button_get_focus_on_click, "gtk_button_get_focus_on_click", LIBRARY_GTK);
513 	Linker.link(gtk_button_get_image, "gtk_button_get_image", LIBRARY_GTK);
514 	Linker.link(gtk_button_get_image_position, "gtk_button_get_image_position", LIBRARY_GTK);
515 	Linker.link(gtk_button_get_label, "gtk_button_get_label", LIBRARY_GTK);
516 	Linker.link(gtk_button_get_relief, "gtk_button_get_relief", LIBRARY_GTK);
517 	Linker.link(gtk_button_get_use_stock, "gtk_button_get_use_stock", LIBRARY_GTK);
518 	Linker.link(gtk_button_get_use_underline, "gtk_button_get_use_underline", LIBRARY_GTK);
519 	Linker.link(gtk_button_leave, "gtk_button_leave", LIBRARY_GTK);
520 	Linker.link(gtk_button_pressed, "gtk_button_pressed", LIBRARY_GTK);
521 	Linker.link(gtk_button_released, "gtk_button_released", LIBRARY_GTK);
522 	Linker.link(gtk_button_set_alignment, "gtk_button_set_alignment", LIBRARY_GTK);
523 	Linker.link(gtk_button_set_always_show_image, "gtk_button_set_always_show_image", LIBRARY_GTK);
524 	Linker.link(gtk_button_set_focus_on_click, "gtk_button_set_focus_on_click", LIBRARY_GTK);
525 	Linker.link(gtk_button_set_image, "gtk_button_set_image", LIBRARY_GTK);
526 	Linker.link(gtk_button_set_image_position, "gtk_button_set_image_position", LIBRARY_GTK);
527 	Linker.link(gtk_button_set_label, "gtk_button_set_label", LIBRARY_GTK);
528 	Linker.link(gtk_button_set_relief, "gtk_button_set_relief", LIBRARY_GTK);
529 	Linker.link(gtk_button_set_use_stock, "gtk_button_set_use_stock", LIBRARY_GTK);
530 	Linker.link(gtk_button_set_use_underline, "gtk_button_set_use_underline", LIBRARY_GTK);
531 
532 	// gtk.ButtonAccessible
533 
534 	Linker.link(gtk_button_accessible_get_type, "gtk_button_accessible_get_type", LIBRARY_GTK);
535 
536 	// gtk.ButtonBox
537 
538 	Linker.link(gtk_button_box_get_type, "gtk_button_box_get_type", LIBRARY_GTK);
539 	Linker.link(gtk_button_box_new, "gtk_button_box_new", LIBRARY_GTK);
540 	Linker.link(gtk_button_box_get_child_non_homogeneous, "gtk_button_box_get_child_non_homogeneous", LIBRARY_GTK);
541 	Linker.link(gtk_button_box_get_child_secondary, "gtk_button_box_get_child_secondary", LIBRARY_GTK);
542 	Linker.link(gtk_button_box_get_layout, "gtk_button_box_get_layout", LIBRARY_GTK);
543 	Linker.link(gtk_button_box_set_child_non_homogeneous, "gtk_button_box_set_child_non_homogeneous", LIBRARY_GTK);
544 	Linker.link(gtk_button_box_set_child_secondary, "gtk_button_box_set_child_secondary", LIBRARY_GTK);
545 	Linker.link(gtk_button_box_set_layout, "gtk_button_box_set_layout", LIBRARY_GTK);
546 
547 	// gtk.Calendar
548 
549 	Linker.link(gtk_calendar_get_type, "gtk_calendar_get_type", LIBRARY_GTK);
550 	Linker.link(gtk_calendar_new, "gtk_calendar_new", LIBRARY_GTK);
551 	Linker.link(gtk_calendar_clear_marks, "gtk_calendar_clear_marks", LIBRARY_GTK);
552 	Linker.link(gtk_calendar_get_date, "gtk_calendar_get_date", LIBRARY_GTK);
553 	Linker.link(gtk_calendar_get_day_is_marked, "gtk_calendar_get_day_is_marked", LIBRARY_GTK);
554 	Linker.link(gtk_calendar_get_detail_height_rows, "gtk_calendar_get_detail_height_rows", LIBRARY_GTK);
555 	Linker.link(gtk_calendar_get_detail_width_chars, "gtk_calendar_get_detail_width_chars", LIBRARY_GTK);
556 	Linker.link(gtk_calendar_get_display_options, "gtk_calendar_get_display_options", LIBRARY_GTK);
557 	Linker.link(gtk_calendar_mark_day, "gtk_calendar_mark_day", LIBRARY_GTK);
558 	Linker.link(gtk_calendar_select_day, "gtk_calendar_select_day", LIBRARY_GTK);
559 	Linker.link(gtk_calendar_select_month, "gtk_calendar_select_month", LIBRARY_GTK);
560 	Linker.link(gtk_calendar_set_detail_func, "gtk_calendar_set_detail_func", LIBRARY_GTK);
561 	Linker.link(gtk_calendar_set_detail_height_rows, "gtk_calendar_set_detail_height_rows", LIBRARY_GTK);
562 	Linker.link(gtk_calendar_set_detail_width_chars, "gtk_calendar_set_detail_width_chars", LIBRARY_GTK);
563 	Linker.link(gtk_calendar_set_display_options, "gtk_calendar_set_display_options", LIBRARY_GTK);
564 	Linker.link(gtk_calendar_unmark_day, "gtk_calendar_unmark_day", LIBRARY_GTK);
565 
566 	// gtk.CellAccessible
567 
568 	Linker.link(gtk_cell_accessible_get_type, "gtk_cell_accessible_get_type", LIBRARY_GTK);
569 
570 	// gtk.CellAccessibleParent
571 
572 	Linker.link(gtk_cell_accessible_parent_get_type, "gtk_cell_accessible_parent_get_type", LIBRARY_GTK);
573 	Linker.link(gtk_cell_accessible_parent_activate, "gtk_cell_accessible_parent_activate", LIBRARY_GTK);
574 	Linker.link(gtk_cell_accessible_parent_edit, "gtk_cell_accessible_parent_edit", LIBRARY_GTK);
575 	Linker.link(gtk_cell_accessible_parent_expand_collapse, "gtk_cell_accessible_parent_expand_collapse", LIBRARY_GTK);
576 	Linker.link(gtk_cell_accessible_parent_get_cell_area, "gtk_cell_accessible_parent_get_cell_area", LIBRARY_GTK);
577 	Linker.link(gtk_cell_accessible_parent_get_cell_extents, "gtk_cell_accessible_parent_get_cell_extents", LIBRARY_GTK);
578 	Linker.link(gtk_cell_accessible_parent_get_cell_position, "gtk_cell_accessible_parent_get_cell_position", LIBRARY_GTK);
579 	Linker.link(gtk_cell_accessible_parent_get_child_index, "gtk_cell_accessible_parent_get_child_index", LIBRARY_GTK);
580 	Linker.link(gtk_cell_accessible_parent_get_column_header_cells, "gtk_cell_accessible_parent_get_column_header_cells", LIBRARY_GTK);
581 	Linker.link(gtk_cell_accessible_parent_get_renderer_state, "gtk_cell_accessible_parent_get_renderer_state", LIBRARY_GTK);
582 	Linker.link(gtk_cell_accessible_parent_get_row_header_cells, "gtk_cell_accessible_parent_get_row_header_cells", LIBRARY_GTK);
583 	Linker.link(gtk_cell_accessible_parent_grab_focus, "gtk_cell_accessible_parent_grab_focus", LIBRARY_GTK);
584 	Linker.link(gtk_cell_accessible_parent_update_relationset, "gtk_cell_accessible_parent_update_relationset", LIBRARY_GTK);
585 
586 	// gtk.CellArea
587 
588 	Linker.link(gtk_cell_area_get_type, "gtk_cell_area_get_type", LIBRARY_GTK);
589 	Linker.link(gtk_cell_area_activate, "gtk_cell_area_activate", LIBRARY_GTK);
590 	Linker.link(gtk_cell_area_activate_cell, "gtk_cell_area_activate_cell", LIBRARY_GTK);
591 	Linker.link(gtk_cell_area_add, "gtk_cell_area_add", LIBRARY_GTK);
592 	Linker.link(gtk_cell_area_add_focus_sibling, "gtk_cell_area_add_focus_sibling", LIBRARY_GTK);
593 	Linker.link(gtk_cell_area_add_with_properties, "gtk_cell_area_add_with_properties", LIBRARY_GTK);
594 	Linker.link(gtk_cell_area_apply_attributes, "gtk_cell_area_apply_attributes", LIBRARY_GTK);
595 	Linker.link(gtk_cell_area_attribute_connect, "gtk_cell_area_attribute_connect", LIBRARY_GTK);
596 	Linker.link(gtk_cell_area_attribute_disconnect, "gtk_cell_area_attribute_disconnect", LIBRARY_GTK);
597 	Linker.link(gtk_cell_area_attribute_get_column, "gtk_cell_area_attribute_get_column", LIBRARY_GTK);
598 	Linker.link(gtk_cell_area_cell_get, "gtk_cell_area_cell_get", LIBRARY_GTK);
599 	Linker.link(gtk_cell_area_cell_get_property, "gtk_cell_area_cell_get_property", LIBRARY_GTK);
600 	Linker.link(gtk_cell_area_cell_get_valist, "gtk_cell_area_cell_get_valist", LIBRARY_GTK);
601 	Linker.link(gtk_cell_area_cell_set, "gtk_cell_area_cell_set", LIBRARY_GTK);
602 	Linker.link(gtk_cell_area_cell_set_property, "gtk_cell_area_cell_set_property", LIBRARY_GTK);
603 	Linker.link(gtk_cell_area_cell_set_valist, "gtk_cell_area_cell_set_valist", LIBRARY_GTK);
604 	Linker.link(gtk_cell_area_copy_context, "gtk_cell_area_copy_context", LIBRARY_GTK);
605 	Linker.link(gtk_cell_area_create_context, "gtk_cell_area_create_context", LIBRARY_GTK);
606 	Linker.link(gtk_cell_area_event, "gtk_cell_area_event", LIBRARY_GTK);
607 	Linker.link(gtk_cell_area_focus, "gtk_cell_area_focus", LIBRARY_GTK);
608 	Linker.link(gtk_cell_area_foreach, "gtk_cell_area_foreach", LIBRARY_GTK);
609 	Linker.link(gtk_cell_area_foreach_alloc, "gtk_cell_area_foreach_alloc", LIBRARY_GTK);
610 	Linker.link(gtk_cell_area_get_cell_allocation, "gtk_cell_area_get_cell_allocation", LIBRARY_GTK);
611 	Linker.link(gtk_cell_area_get_cell_at_position, "gtk_cell_area_get_cell_at_position", LIBRARY_GTK);
612 	Linker.link(gtk_cell_area_get_current_path_string, "gtk_cell_area_get_current_path_string", LIBRARY_GTK);
613 	Linker.link(gtk_cell_area_get_edit_widget, "gtk_cell_area_get_edit_widget", LIBRARY_GTK);
614 	Linker.link(gtk_cell_area_get_edited_cell, "gtk_cell_area_get_edited_cell", LIBRARY_GTK);
615 	Linker.link(gtk_cell_area_get_focus_cell, "gtk_cell_area_get_focus_cell", LIBRARY_GTK);
616 	Linker.link(gtk_cell_area_get_focus_from_sibling, "gtk_cell_area_get_focus_from_sibling", LIBRARY_GTK);
617 	Linker.link(gtk_cell_area_get_focus_siblings, "gtk_cell_area_get_focus_siblings", LIBRARY_GTK);
618 	Linker.link(gtk_cell_area_get_preferred_height, "gtk_cell_area_get_preferred_height", LIBRARY_GTK);
619 	Linker.link(gtk_cell_area_get_preferred_height_for_width, "gtk_cell_area_get_preferred_height_for_width", LIBRARY_GTK);
620 	Linker.link(gtk_cell_area_get_preferred_width, "gtk_cell_area_get_preferred_width", LIBRARY_GTK);
621 	Linker.link(gtk_cell_area_get_preferred_width_for_height, "gtk_cell_area_get_preferred_width_for_height", LIBRARY_GTK);
622 	Linker.link(gtk_cell_area_get_request_mode, "gtk_cell_area_get_request_mode", LIBRARY_GTK);
623 	Linker.link(gtk_cell_area_has_renderer, "gtk_cell_area_has_renderer", LIBRARY_GTK);
624 	Linker.link(gtk_cell_area_inner_cell_area, "gtk_cell_area_inner_cell_area", LIBRARY_GTK);
625 	Linker.link(gtk_cell_area_is_activatable, "gtk_cell_area_is_activatable", LIBRARY_GTK);
626 	Linker.link(gtk_cell_area_is_focus_sibling, "gtk_cell_area_is_focus_sibling", LIBRARY_GTK);
627 	Linker.link(gtk_cell_area_remove, "gtk_cell_area_remove", LIBRARY_GTK);
628 	Linker.link(gtk_cell_area_remove_focus_sibling, "gtk_cell_area_remove_focus_sibling", LIBRARY_GTK);
629 	Linker.link(gtk_cell_area_render, "gtk_cell_area_render", LIBRARY_GTK);
630 	Linker.link(gtk_cell_area_request_renderer, "gtk_cell_area_request_renderer", LIBRARY_GTK);
631 	Linker.link(gtk_cell_area_set_focus_cell, "gtk_cell_area_set_focus_cell", LIBRARY_GTK);
632 	Linker.link(gtk_cell_area_stop_editing, "gtk_cell_area_stop_editing", LIBRARY_GTK);
633 
634 	// gtk.CellAreaBox
635 
636 	Linker.link(gtk_cell_area_box_get_type, "gtk_cell_area_box_get_type", LIBRARY_GTK);
637 	Linker.link(gtk_cell_area_box_new, "gtk_cell_area_box_new", LIBRARY_GTK);
638 	Linker.link(gtk_cell_area_box_get_spacing, "gtk_cell_area_box_get_spacing", LIBRARY_GTK);
639 	Linker.link(gtk_cell_area_box_pack_end, "gtk_cell_area_box_pack_end", LIBRARY_GTK);
640 	Linker.link(gtk_cell_area_box_pack_start, "gtk_cell_area_box_pack_start", LIBRARY_GTK);
641 	Linker.link(gtk_cell_area_box_set_spacing, "gtk_cell_area_box_set_spacing", LIBRARY_GTK);
642 
643 	// gtk.CellAreaClass
644 
645 	Linker.link(gtk_cell_area_class_find_cell_property, "gtk_cell_area_class_find_cell_property", LIBRARY_GTK);
646 	Linker.link(gtk_cell_area_class_install_cell_property, "gtk_cell_area_class_install_cell_property", LIBRARY_GTK);
647 	Linker.link(gtk_cell_area_class_list_cell_properties, "gtk_cell_area_class_list_cell_properties", LIBRARY_GTK);
648 
649 	// gtk.CellAreaContext
650 
651 	Linker.link(gtk_cell_area_context_get_type, "gtk_cell_area_context_get_type", LIBRARY_GTK);
652 	Linker.link(gtk_cell_area_context_allocate, "gtk_cell_area_context_allocate", LIBRARY_GTK);
653 	Linker.link(gtk_cell_area_context_get_allocation, "gtk_cell_area_context_get_allocation", LIBRARY_GTK);
654 	Linker.link(gtk_cell_area_context_get_area, "gtk_cell_area_context_get_area", LIBRARY_GTK);
655 	Linker.link(gtk_cell_area_context_get_preferred_height, "gtk_cell_area_context_get_preferred_height", LIBRARY_GTK);
656 	Linker.link(gtk_cell_area_context_get_preferred_height_for_width, "gtk_cell_area_context_get_preferred_height_for_width", LIBRARY_GTK);
657 	Linker.link(gtk_cell_area_context_get_preferred_width, "gtk_cell_area_context_get_preferred_width", LIBRARY_GTK);
658 	Linker.link(gtk_cell_area_context_get_preferred_width_for_height, "gtk_cell_area_context_get_preferred_width_for_height", LIBRARY_GTK);
659 	Linker.link(gtk_cell_area_context_push_preferred_height, "gtk_cell_area_context_push_preferred_height", LIBRARY_GTK);
660 	Linker.link(gtk_cell_area_context_push_preferred_width, "gtk_cell_area_context_push_preferred_width", LIBRARY_GTK);
661 	Linker.link(gtk_cell_area_context_reset, "gtk_cell_area_context_reset", LIBRARY_GTK);
662 
663 	// gtk.CellEditable
664 
665 	Linker.link(gtk_cell_editable_get_type, "gtk_cell_editable_get_type", LIBRARY_GTK);
666 	Linker.link(gtk_cell_editable_editing_done, "gtk_cell_editable_editing_done", LIBRARY_GTK);
667 	Linker.link(gtk_cell_editable_remove_widget, "gtk_cell_editable_remove_widget", LIBRARY_GTK);
668 	Linker.link(gtk_cell_editable_start_editing, "gtk_cell_editable_start_editing", LIBRARY_GTK);
669 
670 	// gtk.CellLayout
671 
672 	Linker.link(gtk_cell_layout_get_type, "gtk_cell_layout_get_type", LIBRARY_GTK);
673 	Linker.link(gtk_cell_layout_add_attribute, "gtk_cell_layout_add_attribute", LIBRARY_GTK);
674 	Linker.link(gtk_cell_layout_clear, "gtk_cell_layout_clear", LIBRARY_GTK);
675 	Linker.link(gtk_cell_layout_clear_attributes, "gtk_cell_layout_clear_attributes", LIBRARY_GTK);
676 	Linker.link(gtk_cell_layout_get_area, "gtk_cell_layout_get_area", LIBRARY_GTK);
677 	Linker.link(gtk_cell_layout_get_cells, "gtk_cell_layout_get_cells", LIBRARY_GTK);
678 	Linker.link(gtk_cell_layout_pack_end, "gtk_cell_layout_pack_end", LIBRARY_GTK);
679 	Linker.link(gtk_cell_layout_pack_start, "gtk_cell_layout_pack_start", LIBRARY_GTK);
680 	Linker.link(gtk_cell_layout_reorder, "gtk_cell_layout_reorder", LIBRARY_GTK);
681 	Linker.link(gtk_cell_layout_set_attributes, "gtk_cell_layout_set_attributes", LIBRARY_GTK);
682 	Linker.link(gtk_cell_layout_set_cell_data_func, "gtk_cell_layout_set_cell_data_func", LIBRARY_GTK);
683 
684 	// gtk.CellRenderer
685 
686 	Linker.link(gtk_cell_renderer_get_type, "gtk_cell_renderer_get_type", LIBRARY_GTK);
687 	Linker.link(gtk_cell_renderer_activate, "gtk_cell_renderer_activate", LIBRARY_GTK);
688 	Linker.link(gtk_cell_renderer_get_aligned_area, "gtk_cell_renderer_get_aligned_area", LIBRARY_GTK);
689 	Linker.link(gtk_cell_renderer_get_alignment, "gtk_cell_renderer_get_alignment", LIBRARY_GTK);
690 	Linker.link(gtk_cell_renderer_get_fixed_size, "gtk_cell_renderer_get_fixed_size", LIBRARY_GTK);
691 	Linker.link(gtk_cell_renderer_get_padding, "gtk_cell_renderer_get_padding", LIBRARY_GTK);
692 	Linker.link(gtk_cell_renderer_get_preferred_height, "gtk_cell_renderer_get_preferred_height", LIBRARY_GTK);
693 	Linker.link(gtk_cell_renderer_get_preferred_height_for_width, "gtk_cell_renderer_get_preferred_height_for_width", LIBRARY_GTK);
694 	Linker.link(gtk_cell_renderer_get_preferred_size, "gtk_cell_renderer_get_preferred_size", LIBRARY_GTK);
695 	Linker.link(gtk_cell_renderer_get_preferred_width, "gtk_cell_renderer_get_preferred_width", LIBRARY_GTK);
696 	Linker.link(gtk_cell_renderer_get_preferred_width_for_height, "gtk_cell_renderer_get_preferred_width_for_height", LIBRARY_GTK);
697 	Linker.link(gtk_cell_renderer_get_request_mode, "gtk_cell_renderer_get_request_mode", LIBRARY_GTK);
698 	Linker.link(gtk_cell_renderer_get_sensitive, "gtk_cell_renderer_get_sensitive", LIBRARY_GTK);
699 	Linker.link(gtk_cell_renderer_get_size, "gtk_cell_renderer_get_size", LIBRARY_GTK);
700 	Linker.link(gtk_cell_renderer_get_state, "gtk_cell_renderer_get_state", LIBRARY_GTK);
701 	Linker.link(gtk_cell_renderer_get_visible, "gtk_cell_renderer_get_visible", LIBRARY_GTK);
702 	Linker.link(gtk_cell_renderer_is_activatable, "gtk_cell_renderer_is_activatable", LIBRARY_GTK);
703 	Linker.link(gtk_cell_renderer_render, "gtk_cell_renderer_render", LIBRARY_GTK);
704 	Linker.link(gtk_cell_renderer_set_alignment, "gtk_cell_renderer_set_alignment", LIBRARY_GTK);
705 	Linker.link(gtk_cell_renderer_set_fixed_size, "gtk_cell_renderer_set_fixed_size", LIBRARY_GTK);
706 	Linker.link(gtk_cell_renderer_set_padding, "gtk_cell_renderer_set_padding", LIBRARY_GTK);
707 	Linker.link(gtk_cell_renderer_set_sensitive, "gtk_cell_renderer_set_sensitive", LIBRARY_GTK);
708 	Linker.link(gtk_cell_renderer_set_visible, "gtk_cell_renderer_set_visible", LIBRARY_GTK);
709 	Linker.link(gtk_cell_renderer_start_editing, "gtk_cell_renderer_start_editing", LIBRARY_GTK);
710 	Linker.link(gtk_cell_renderer_stop_editing, "gtk_cell_renderer_stop_editing", LIBRARY_GTK);
711 
712 	// gtk.CellRendererAccel
713 
714 	Linker.link(gtk_cell_renderer_accel_get_type, "gtk_cell_renderer_accel_get_type", LIBRARY_GTK);
715 	Linker.link(gtk_cell_renderer_accel_new, "gtk_cell_renderer_accel_new", LIBRARY_GTK);
716 
717 	// gtk.CellRendererClass
718 
719 	Linker.link(gtk_cell_renderer_class_set_accessible_type, "gtk_cell_renderer_class_set_accessible_type", LIBRARY_GTK);
720 
721 	// gtk.CellRendererCombo
722 
723 	Linker.link(gtk_cell_renderer_combo_get_type, "gtk_cell_renderer_combo_get_type", LIBRARY_GTK);
724 	Linker.link(gtk_cell_renderer_combo_new, "gtk_cell_renderer_combo_new", LIBRARY_GTK);
725 
726 	// gtk.CellRendererPixbuf
727 
728 	Linker.link(gtk_cell_renderer_pixbuf_get_type, "gtk_cell_renderer_pixbuf_get_type", LIBRARY_GTK);
729 	Linker.link(gtk_cell_renderer_pixbuf_new, "gtk_cell_renderer_pixbuf_new", LIBRARY_GTK);
730 
731 	// gtk.CellRendererProgress
732 
733 	Linker.link(gtk_cell_renderer_progress_get_type, "gtk_cell_renderer_progress_get_type", LIBRARY_GTK);
734 	Linker.link(gtk_cell_renderer_progress_new, "gtk_cell_renderer_progress_new", LIBRARY_GTK);
735 
736 	// gtk.CellRendererSpin
737 
738 	Linker.link(gtk_cell_renderer_spin_get_type, "gtk_cell_renderer_spin_get_type", LIBRARY_GTK);
739 	Linker.link(gtk_cell_renderer_spin_new, "gtk_cell_renderer_spin_new", LIBRARY_GTK);
740 
741 	// gtk.CellRendererSpinner
742 
743 	Linker.link(gtk_cell_renderer_spinner_get_type, "gtk_cell_renderer_spinner_get_type", LIBRARY_GTK);
744 	Linker.link(gtk_cell_renderer_spinner_new, "gtk_cell_renderer_spinner_new", LIBRARY_GTK);
745 
746 	// gtk.CellRendererText
747 
748 	Linker.link(gtk_cell_renderer_text_get_type, "gtk_cell_renderer_text_get_type", LIBRARY_GTK);
749 	Linker.link(gtk_cell_renderer_text_new, "gtk_cell_renderer_text_new", LIBRARY_GTK);
750 	Linker.link(gtk_cell_renderer_text_set_fixed_height_from_font, "gtk_cell_renderer_text_set_fixed_height_from_font", LIBRARY_GTK);
751 
752 	// gtk.CellRendererToggle
753 
754 	Linker.link(gtk_cell_renderer_toggle_get_type, "gtk_cell_renderer_toggle_get_type", LIBRARY_GTK);
755 	Linker.link(gtk_cell_renderer_toggle_new, "gtk_cell_renderer_toggle_new", LIBRARY_GTK);
756 	Linker.link(gtk_cell_renderer_toggle_get_activatable, "gtk_cell_renderer_toggle_get_activatable", LIBRARY_GTK);
757 	Linker.link(gtk_cell_renderer_toggle_get_active, "gtk_cell_renderer_toggle_get_active", LIBRARY_GTK);
758 	Linker.link(gtk_cell_renderer_toggle_get_radio, "gtk_cell_renderer_toggle_get_radio", LIBRARY_GTK);
759 	Linker.link(gtk_cell_renderer_toggle_set_activatable, "gtk_cell_renderer_toggle_set_activatable", LIBRARY_GTK);
760 	Linker.link(gtk_cell_renderer_toggle_set_active, "gtk_cell_renderer_toggle_set_active", LIBRARY_GTK);
761 	Linker.link(gtk_cell_renderer_toggle_set_radio, "gtk_cell_renderer_toggle_set_radio", LIBRARY_GTK);
762 
763 	// gtk.CellView
764 
765 	Linker.link(gtk_cell_view_get_type, "gtk_cell_view_get_type", LIBRARY_GTK);
766 	Linker.link(gtk_cell_view_new, "gtk_cell_view_new", LIBRARY_GTK);
767 	Linker.link(gtk_cell_view_new_with_context, "gtk_cell_view_new_with_context", LIBRARY_GTK);
768 	Linker.link(gtk_cell_view_new_with_markup, "gtk_cell_view_new_with_markup", LIBRARY_GTK);
769 	Linker.link(gtk_cell_view_new_with_pixbuf, "gtk_cell_view_new_with_pixbuf", LIBRARY_GTK);
770 	Linker.link(gtk_cell_view_new_with_text, "gtk_cell_view_new_with_text", LIBRARY_GTK);
771 	Linker.link(gtk_cell_view_get_displayed_row, "gtk_cell_view_get_displayed_row", LIBRARY_GTK);
772 	Linker.link(gtk_cell_view_get_draw_sensitive, "gtk_cell_view_get_draw_sensitive", LIBRARY_GTK);
773 	Linker.link(gtk_cell_view_get_fit_model, "gtk_cell_view_get_fit_model", LIBRARY_GTK);
774 	Linker.link(gtk_cell_view_get_model, "gtk_cell_view_get_model", LIBRARY_GTK);
775 	Linker.link(gtk_cell_view_get_size_of_row, "gtk_cell_view_get_size_of_row", LIBRARY_GTK);
776 	Linker.link(gtk_cell_view_set_background_color, "gtk_cell_view_set_background_color", LIBRARY_GTK);
777 	Linker.link(gtk_cell_view_set_background_rgba, "gtk_cell_view_set_background_rgba", LIBRARY_GTK);
778 	Linker.link(gtk_cell_view_set_displayed_row, "gtk_cell_view_set_displayed_row", LIBRARY_GTK);
779 	Linker.link(gtk_cell_view_set_draw_sensitive, "gtk_cell_view_set_draw_sensitive", LIBRARY_GTK);
780 	Linker.link(gtk_cell_view_set_fit_model, "gtk_cell_view_set_fit_model", LIBRARY_GTK);
781 	Linker.link(gtk_cell_view_set_model, "gtk_cell_view_set_model", LIBRARY_GTK);
782 
783 	// gtk.CheckButton
784 
785 	Linker.link(gtk_check_button_get_type, "gtk_check_button_get_type", LIBRARY_GTK);
786 	Linker.link(gtk_check_button_new, "gtk_check_button_new", LIBRARY_GTK);
787 	Linker.link(gtk_check_button_new_with_label, "gtk_check_button_new_with_label", LIBRARY_GTK);
788 	Linker.link(gtk_check_button_new_with_mnemonic, "gtk_check_button_new_with_mnemonic", LIBRARY_GTK);
789 
790 	// gtk.CheckMenuItem
791 
792 	Linker.link(gtk_check_menu_item_get_type, "gtk_check_menu_item_get_type", LIBRARY_GTK);
793 	Linker.link(gtk_check_menu_item_new, "gtk_check_menu_item_new", LIBRARY_GTK);
794 	Linker.link(gtk_check_menu_item_new_with_label, "gtk_check_menu_item_new_with_label", LIBRARY_GTK);
795 	Linker.link(gtk_check_menu_item_new_with_mnemonic, "gtk_check_menu_item_new_with_mnemonic", LIBRARY_GTK);
796 	Linker.link(gtk_check_menu_item_get_active, "gtk_check_menu_item_get_active", LIBRARY_GTK);
797 	Linker.link(gtk_check_menu_item_get_draw_as_radio, "gtk_check_menu_item_get_draw_as_radio", LIBRARY_GTK);
798 	Linker.link(gtk_check_menu_item_get_inconsistent, "gtk_check_menu_item_get_inconsistent", LIBRARY_GTK);
799 	Linker.link(gtk_check_menu_item_set_active, "gtk_check_menu_item_set_active", LIBRARY_GTK);
800 	Linker.link(gtk_check_menu_item_set_draw_as_radio, "gtk_check_menu_item_set_draw_as_radio", LIBRARY_GTK);
801 	Linker.link(gtk_check_menu_item_set_inconsistent, "gtk_check_menu_item_set_inconsistent", LIBRARY_GTK);
802 	Linker.link(gtk_check_menu_item_toggled, "gtk_check_menu_item_toggled", LIBRARY_GTK);
803 
804 	// gtk.CheckMenuItemAccessible
805 
806 	Linker.link(gtk_check_menu_item_accessible_get_type, "gtk_check_menu_item_accessible_get_type", LIBRARY_GTK);
807 
808 	// gtk.Clipboard
809 
810 	Linker.link(gtk_clipboard_get_type, "gtk_clipboard_get_type", LIBRARY_GTK);
811 	Linker.link(gtk_clipboard_get, "gtk_clipboard_get", LIBRARY_GTK);
812 	Linker.link(gtk_clipboard_get_default, "gtk_clipboard_get_default", LIBRARY_GTK);
813 	Linker.link(gtk_clipboard_get_for_display, "gtk_clipboard_get_for_display", LIBRARY_GTK);
814 	Linker.link(gtk_clipboard_clear, "gtk_clipboard_clear", LIBRARY_GTK);
815 	Linker.link(gtk_clipboard_get_display, "gtk_clipboard_get_display", LIBRARY_GTK);
816 	Linker.link(gtk_clipboard_get_owner, "gtk_clipboard_get_owner", LIBRARY_GTK);
817 	Linker.link(gtk_clipboard_get_selection, "gtk_clipboard_get_selection", LIBRARY_GTK);
818 	Linker.link(gtk_clipboard_request_contents, "gtk_clipboard_request_contents", LIBRARY_GTK);
819 	Linker.link(gtk_clipboard_request_image, "gtk_clipboard_request_image", LIBRARY_GTK);
820 	Linker.link(gtk_clipboard_request_rich_text, "gtk_clipboard_request_rich_text", LIBRARY_GTK);
821 	Linker.link(gtk_clipboard_request_targets, "gtk_clipboard_request_targets", LIBRARY_GTK);
822 	Linker.link(gtk_clipboard_request_text, "gtk_clipboard_request_text", LIBRARY_GTK);
823 	Linker.link(gtk_clipboard_request_uris, "gtk_clipboard_request_uris", LIBRARY_GTK);
824 	Linker.link(gtk_clipboard_set_can_store, "gtk_clipboard_set_can_store", LIBRARY_GTK);
825 	Linker.link(gtk_clipboard_set_image, "gtk_clipboard_set_image", LIBRARY_GTK);
826 	Linker.link(gtk_clipboard_set_text, "gtk_clipboard_set_text", LIBRARY_GTK);
827 	Linker.link(gtk_clipboard_set_with_data, "gtk_clipboard_set_with_data", LIBRARY_GTK);
828 	Linker.link(gtk_clipboard_set_with_owner, "gtk_clipboard_set_with_owner", LIBRARY_GTK);
829 	Linker.link(gtk_clipboard_store, "gtk_clipboard_store", LIBRARY_GTK);
830 	Linker.link(gtk_clipboard_wait_for_contents, "gtk_clipboard_wait_for_contents", LIBRARY_GTK);
831 	Linker.link(gtk_clipboard_wait_for_image, "gtk_clipboard_wait_for_image", LIBRARY_GTK);
832 	Linker.link(gtk_clipboard_wait_for_rich_text, "gtk_clipboard_wait_for_rich_text", LIBRARY_GTK);
833 	Linker.link(gtk_clipboard_wait_for_targets, "gtk_clipboard_wait_for_targets", LIBRARY_GTK);
834 	Linker.link(gtk_clipboard_wait_for_text, "gtk_clipboard_wait_for_text", LIBRARY_GTK);
835 	Linker.link(gtk_clipboard_wait_for_uris, "gtk_clipboard_wait_for_uris", LIBRARY_GTK);
836 	Linker.link(gtk_clipboard_wait_is_image_available, "gtk_clipboard_wait_is_image_available", LIBRARY_GTK);
837 	Linker.link(gtk_clipboard_wait_is_rich_text_available, "gtk_clipboard_wait_is_rich_text_available", LIBRARY_GTK);
838 	Linker.link(gtk_clipboard_wait_is_target_available, "gtk_clipboard_wait_is_target_available", LIBRARY_GTK);
839 	Linker.link(gtk_clipboard_wait_is_text_available, "gtk_clipboard_wait_is_text_available", LIBRARY_GTK);
840 	Linker.link(gtk_clipboard_wait_is_uris_available, "gtk_clipboard_wait_is_uris_available", LIBRARY_GTK);
841 
842 	// gtk.ColorButton
843 
844 	Linker.link(gtk_color_button_get_type, "gtk_color_button_get_type", LIBRARY_GTK);
845 	Linker.link(gtk_color_button_new, "gtk_color_button_new", LIBRARY_GTK);
846 	Linker.link(gtk_color_button_new_with_color, "gtk_color_button_new_with_color", LIBRARY_GTK);
847 	Linker.link(gtk_color_button_new_with_rgba, "gtk_color_button_new_with_rgba", LIBRARY_GTK);
848 	Linker.link(gtk_color_button_get_alpha, "gtk_color_button_get_alpha", LIBRARY_GTK);
849 	Linker.link(gtk_color_button_get_color, "gtk_color_button_get_color", LIBRARY_GTK);
850 	Linker.link(gtk_color_button_get_rgba, "gtk_color_button_get_rgba", LIBRARY_GTK);
851 	Linker.link(gtk_color_button_get_title, "gtk_color_button_get_title", LIBRARY_GTK);
852 	Linker.link(gtk_color_button_get_use_alpha, "gtk_color_button_get_use_alpha", LIBRARY_GTK);
853 	Linker.link(gtk_color_button_set_alpha, "gtk_color_button_set_alpha", LIBRARY_GTK);
854 	Linker.link(gtk_color_button_set_color, "gtk_color_button_set_color", LIBRARY_GTK);
855 	Linker.link(gtk_color_button_set_rgba, "gtk_color_button_set_rgba", LIBRARY_GTK);
856 	Linker.link(gtk_color_button_set_title, "gtk_color_button_set_title", LIBRARY_GTK);
857 	Linker.link(gtk_color_button_set_use_alpha, "gtk_color_button_set_use_alpha", LIBRARY_GTK);
858 
859 	// gtk.ColorChooser
860 
861 	Linker.link(gtk_color_chooser_get_type, "gtk_color_chooser_get_type", LIBRARY_GTK);
862 	Linker.link(gtk_color_chooser_add_palette, "gtk_color_chooser_add_palette", LIBRARY_GTK);
863 	Linker.link(gtk_color_chooser_get_rgba, "gtk_color_chooser_get_rgba", LIBRARY_GTK);
864 	Linker.link(gtk_color_chooser_get_use_alpha, "gtk_color_chooser_get_use_alpha", LIBRARY_GTK);
865 	Linker.link(gtk_color_chooser_set_rgba, "gtk_color_chooser_set_rgba", LIBRARY_GTK);
866 	Linker.link(gtk_color_chooser_set_use_alpha, "gtk_color_chooser_set_use_alpha", LIBRARY_GTK);
867 
868 	// gtk.ColorChooserDialog
869 
870 	Linker.link(gtk_color_chooser_dialog_get_type, "gtk_color_chooser_dialog_get_type", LIBRARY_GTK);
871 	Linker.link(gtk_color_chooser_dialog_new, "gtk_color_chooser_dialog_new", LIBRARY_GTK);
872 
873 	// gtk.ColorChooserWidget
874 
875 	Linker.link(gtk_color_chooser_widget_get_type, "gtk_color_chooser_widget_get_type", LIBRARY_GTK);
876 	Linker.link(gtk_color_chooser_widget_new, "gtk_color_chooser_widget_new", LIBRARY_GTK);
877 
878 	// gtk.ColorSelection
879 
880 	Linker.link(gtk_color_selection_get_type, "gtk_color_selection_get_type", LIBRARY_GTK);
881 	Linker.link(gtk_color_selection_new, "gtk_color_selection_new", LIBRARY_GTK);
882 	Linker.link(gtk_color_selection_palette_from_string, "gtk_color_selection_palette_from_string", LIBRARY_GTK);
883 	Linker.link(gtk_color_selection_palette_to_string, "gtk_color_selection_palette_to_string", LIBRARY_GTK);
884 	Linker.link(gtk_color_selection_set_change_palette_with_screen_hook, "gtk_color_selection_set_change_palette_with_screen_hook", LIBRARY_GTK);
885 	Linker.link(gtk_color_selection_get_current_alpha, "gtk_color_selection_get_current_alpha", LIBRARY_GTK);
886 	Linker.link(gtk_color_selection_get_current_color, "gtk_color_selection_get_current_color", LIBRARY_GTK);
887 	Linker.link(gtk_color_selection_get_current_rgba, "gtk_color_selection_get_current_rgba", LIBRARY_GTK);
888 	Linker.link(gtk_color_selection_get_has_opacity_control, "gtk_color_selection_get_has_opacity_control", LIBRARY_GTK);
889 	Linker.link(gtk_color_selection_get_has_palette, "gtk_color_selection_get_has_palette", LIBRARY_GTK);
890 	Linker.link(gtk_color_selection_get_previous_alpha, "gtk_color_selection_get_previous_alpha", LIBRARY_GTK);
891 	Linker.link(gtk_color_selection_get_previous_color, "gtk_color_selection_get_previous_color", LIBRARY_GTK);
892 	Linker.link(gtk_color_selection_get_previous_rgba, "gtk_color_selection_get_previous_rgba", LIBRARY_GTK);
893 	Linker.link(gtk_color_selection_is_adjusting, "gtk_color_selection_is_adjusting", LIBRARY_GTK);
894 	Linker.link(gtk_color_selection_set_current_alpha, "gtk_color_selection_set_current_alpha", LIBRARY_GTK);
895 	Linker.link(gtk_color_selection_set_current_color, "gtk_color_selection_set_current_color", LIBRARY_GTK);
896 	Linker.link(gtk_color_selection_set_current_rgba, "gtk_color_selection_set_current_rgba", LIBRARY_GTK);
897 	Linker.link(gtk_color_selection_set_has_opacity_control, "gtk_color_selection_set_has_opacity_control", LIBRARY_GTK);
898 	Linker.link(gtk_color_selection_set_has_palette, "gtk_color_selection_set_has_palette", LIBRARY_GTK);
899 	Linker.link(gtk_color_selection_set_previous_alpha, "gtk_color_selection_set_previous_alpha", LIBRARY_GTK);
900 	Linker.link(gtk_color_selection_set_previous_color, "gtk_color_selection_set_previous_color", LIBRARY_GTK);
901 	Linker.link(gtk_color_selection_set_previous_rgba, "gtk_color_selection_set_previous_rgba", LIBRARY_GTK);
902 
903 	// gtk.ColorSelectionDialog
904 
905 	Linker.link(gtk_color_selection_dialog_get_type, "gtk_color_selection_dialog_get_type", LIBRARY_GTK);
906 	Linker.link(gtk_color_selection_dialog_new, "gtk_color_selection_dialog_new", LIBRARY_GTK);
907 	Linker.link(gtk_color_selection_dialog_get_color_selection, "gtk_color_selection_dialog_get_color_selection", LIBRARY_GTK);
908 
909 	// gtk.ComboBox
910 
911 	Linker.link(gtk_combo_box_get_type, "gtk_combo_box_get_type", LIBRARY_GTK);
912 	Linker.link(gtk_combo_box_new, "gtk_combo_box_new", LIBRARY_GTK);
913 	Linker.link(gtk_combo_box_new_with_area, "gtk_combo_box_new_with_area", LIBRARY_GTK);
914 	Linker.link(gtk_combo_box_new_with_area_and_entry, "gtk_combo_box_new_with_area_and_entry", LIBRARY_GTK);
915 	Linker.link(gtk_combo_box_new_with_entry, "gtk_combo_box_new_with_entry", LIBRARY_GTK);
916 	Linker.link(gtk_combo_box_new_with_model, "gtk_combo_box_new_with_model", LIBRARY_GTK);
917 	Linker.link(gtk_combo_box_new_with_model_and_entry, "gtk_combo_box_new_with_model_and_entry", LIBRARY_GTK);
918 	Linker.link(gtk_combo_box_get_active, "gtk_combo_box_get_active", LIBRARY_GTK);
919 	Linker.link(gtk_combo_box_get_active_id, "gtk_combo_box_get_active_id", LIBRARY_GTK);
920 	Linker.link(gtk_combo_box_get_active_iter, "gtk_combo_box_get_active_iter", LIBRARY_GTK);
921 	Linker.link(gtk_combo_box_get_add_tearoffs, "gtk_combo_box_get_add_tearoffs", LIBRARY_GTK);
922 	Linker.link(gtk_combo_box_get_button_sensitivity, "gtk_combo_box_get_button_sensitivity", LIBRARY_GTK);
923 	Linker.link(gtk_combo_box_get_column_span_column, "gtk_combo_box_get_column_span_column", LIBRARY_GTK);
924 	Linker.link(gtk_combo_box_get_entry_text_column, "gtk_combo_box_get_entry_text_column", LIBRARY_GTK);
925 	Linker.link(gtk_combo_box_get_focus_on_click, "gtk_combo_box_get_focus_on_click", LIBRARY_GTK);
926 	Linker.link(gtk_combo_box_get_has_entry, "gtk_combo_box_get_has_entry", LIBRARY_GTK);
927 	Linker.link(gtk_combo_box_get_id_column, "gtk_combo_box_get_id_column", LIBRARY_GTK);
928 	Linker.link(gtk_combo_box_get_model, "gtk_combo_box_get_model", LIBRARY_GTK);
929 	Linker.link(gtk_combo_box_get_popup_accessible, "gtk_combo_box_get_popup_accessible", LIBRARY_GTK);
930 	Linker.link(gtk_combo_box_get_popup_fixed_width, "gtk_combo_box_get_popup_fixed_width", LIBRARY_GTK);
931 	Linker.link(gtk_combo_box_get_row_separator_func, "gtk_combo_box_get_row_separator_func", LIBRARY_GTK);
932 	Linker.link(gtk_combo_box_get_row_span_column, "gtk_combo_box_get_row_span_column", LIBRARY_GTK);
933 	Linker.link(gtk_combo_box_get_title, "gtk_combo_box_get_title", LIBRARY_GTK);
934 	Linker.link(gtk_combo_box_get_wrap_width, "gtk_combo_box_get_wrap_width", LIBRARY_GTK);
935 	Linker.link(gtk_combo_box_popdown, "gtk_combo_box_popdown", LIBRARY_GTK);
936 	Linker.link(gtk_combo_box_popup, "gtk_combo_box_popup", LIBRARY_GTK);
937 	Linker.link(gtk_combo_box_popup_for_device, "gtk_combo_box_popup_for_device", LIBRARY_GTK);
938 	Linker.link(gtk_combo_box_set_active, "gtk_combo_box_set_active", LIBRARY_GTK);
939 	Linker.link(gtk_combo_box_set_active_id, "gtk_combo_box_set_active_id", LIBRARY_GTK);
940 	Linker.link(gtk_combo_box_set_active_iter, "gtk_combo_box_set_active_iter", LIBRARY_GTK);
941 	Linker.link(gtk_combo_box_set_add_tearoffs, "gtk_combo_box_set_add_tearoffs", LIBRARY_GTK);
942 	Linker.link(gtk_combo_box_set_button_sensitivity, "gtk_combo_box_set_button_sensitivity", LIBRARY_GTK);
943 	Linker.link(gtk_combo_box_set_column_span_column, "gtk_combo_box_set_column_span_column", LIBRARY_GTK);
944 	Linker.link(gtk_combo_box_set_entry_text_column, "gtk_combo_box_set_entry_text_column", LIBRARY_GTK);
945 	Linker.link(gtk_combo_box_set_focus_on_click, "gtk_combo_box_set_focus_on_click", LIBRARY_GTK);
946 	Linker.link(gtk_combo_box_set_id_column, "gtk_combo_box_set_id_column", LIBRARY_GTK);
947 	Linker.link(gtk_combo_box_set_model, "gtk_combo_box_set_model", LIBRARY_GTK);
948 	Linker.link(gtk_combo_box_set_popup_fixed_width, "gtk_combo_box_set_popup_fixed_width", LIBRARY_GTK);
949 	Linker.link(gtk_combo_box_set_row_separator_func, "gtk_combo_box_set_row_separator_func", LIBRARY_GTK);
950 	Linker.link(gtk_combo_box_set_row_span_column, "gtk_combo_box_set_row_span_column", LIBRARY_GTK);
951 	Linker.link(gtk_combo_box_set_title, "gtk_combo_box_set_title", LIBRARY_GTK);
952 	Linker.link(gtk_combo_box_set_wrap_width, "gtk_combo_box_set_wrap_width", LIBRARY_GTK);
953 
954 	// gtk.ComboBoxAccessible
955 
956 	Linker.link(gtk_combo_box_accessible_get_type, "gtk_combo_box_accessible_get_type", LIBRARY_GTK);
957 
958 	// gtk.ComboBoxText
959 
960 	Linker.link(gtk_combo_box_text_get_type, "gtk_combo_box_text_get_type", LIBRARY_GTK);
961 	Linker.link(gtk_combo_box_text_new, "gtk_combo_box_text_new", LIBRARY_GTK);
962 	Linker.link(gtk_combo_box_text_new_with_entry, "gtk_combo_box_text_new_with_entry", LIBRARY_GTK);
963 	Linker.link(gtk_combo_box_text_append, "gtk_combo_box_text_append", LIBRARY_GTK);
964 	Linker.link(gtk_combo_box_text_append_text, "gtk_combo_box_text_append_text", LIBRARY_GTK);
965 	Linker.link(gtk_combo_box_text_get_active_text, "gtk_combo_box_text_get_active_text", LIBRARY_GTK);
966 	Linker.link(gtk_combo_box_text_insert, "gtk_combo_box_text_insert", LIBRARY_GTK);
967 	Linker.link(gtk_combo_box_text_insert_text, "gtk_combo_box_text_insert_text", LIBRARY_GTK);
968 	Linker.link(gtk_combo_box_text_prepend, "gtk_combo_box_text_prepend", LIBRARY_GTK);
969 	Linker.link(gtk_combo_box_text_prepend_text, "gtk_combo_box_text_prepend_text", LIBRARY_GTK);
970 	Linker.link(gtk_combo_box_text_remove, "gtk_combo_box_text_remove", LIBRARY_GTK);
971 	Linker.link(gtk_combo_box_text_remove_all, "gtk_combo_box_text_remove_all", LIBRARY_GTK);
972 
973 	// gtk.Container
974 
975 	Linker.link(gtk_container_get_type, "gtk_container_get_type", LIBRARY_GTK);
976 	Linker.link(gtk_container_add, "gtk_container_add", LIBRARY_GTK);
977 	Linker.link(gtk_container_add_with_properties, "gtk_container_add_with_properties", LIBRARY_GTK);
978 	Linker.link(gtk_container_check_resize, "gtk_container_check_resize", LIBRARY_GTK);
979 	Linker.link(gtk_container_child_get, "gtk_container_child_get", LIBRARY_GTK);
980 	Linker.link(gtk_container_child_get_property, "gtk_container_child_get_property", LIBRARY_GTK);
981 	Linker.link(gtk_container_child_get_valist, "gtk_container_child_get_valist", LIBRARY_GTK);
982 	Linker.link(gtk_container_child_notify, "gtk_container_child_notify", LIBRARY_GTK);
983 	Linker.link(gtk_container_child_notify_by_pspec, "gtk_container_child_notify_by_pspec", LIBRARY_GTK);
984 	Linker.link(gtk_container_child_set, "gtk_container_child_set", LIBRARY_GTK);
985 	Linker.link(gtk_container_child_set_property, "gtk_container_child_set_property", LIBRARY_GTK);
986 	Linker.link(gtk_container_child_set_valist, "gtk_container_child_set_valist", LIBRARY_GTK);
987 	Linker.link(gtk_container_child_type, "gtk_container_child_type", LIBRARY_GTK);
988 	Linker.link(gtk_container_forall, "gtk_container_forall", LIBRARY_GTK);
989 	Linker.link(gtk_container_foreach, "gtk_container_foreach", LIBRARY_GTK);
990 	Linker.link(gtk_container_get_border_width, "gtk_container_get_border_width", LIBRARY_GTK);
991 	Linker.link(gtk_container_get_children, "gtk_container_get_children", LIBRARY_GTK);
992 	Linker.link(gtk_container_get_focus_chain, "gtk_container_get_focus_chain", LIBRARY_GTK);
993 	Linker.link(gtk_container_get_focus_child, "gtk_container_get_focus_child", LIBRARY_GTK);
994 	Linker.link(gtk_container_get_focus_hadjustment, "gtk_container_get_focus_hadjustment", LIBRARY_GTK);
995 	Linker.link(gtk_container_get_focus_vadjustment, "gtk_container_get_focus_vadjustment", LIBRARY_GTK);
996 	Linker.link(gtk_container_get_path_for_child, "gtk_container_get_path_for_child", LIBRARY_GTK);
997 	Linker.link(gtk_container_get_resize_mode, "gtk_container_get_resize_mode", LIBRARY_GTK);
998 	Linker.link(gtk_container_propagate_draw, "gtk_container_propagate_draw", LIBRARY_GTK);
999 	Linker.link(gtk_container_remove, "gtk_container_remove", LIBRARY_GTK);
1000 	Linker.link(gtk_container_resize_children, "gtk_container_resize_children", LIBRARY_GTK);
1001 	Linker.link(gtk_container_set_border_width, "gtk_container_set_border_width", LIBRARY_GTK);
1002 	Linker.link(gtk_container_set_focus_chain, "gtk_container_set_focus_chain", LIBRARY_GTK);
1003 	Linker.link(gtk_container_set_focus_child, "gtk_container_set_focus_child", LIBRARY_GTK);
1004 	Linker.link(gtk_container_set_focus_hadjustment, "gtk_container_set_focus_hadjustment", LIBRARY_GTK);
1005 	Linker.link(gtk_container_set_focus_vadjustment, "gtk_container_set_focus_vadjustment", LIBRARY_GTK);
1006 	Linker.link(gtk_container_set_reallocate_redraws, "gtk_container_set_reallocate_redraws", LIBRARY_GTK);
1007 	Linker.link(gtk_container_set_resize_mode, "gtk_container_set_resize_mode", LIBRARY_GTK);
1008 	Linker.link(gtk_container_unset_focus_chain, "gtk_container_unset_focus_chain", LIBRARY_GTK);
1009 
1010 	// gtk.ContainerAccessible
1011 
1012 	Linker.link(gtk_container_accessible_get_type, "gtk_container_accessible_get_type", LIBRARY_GTK);
1013 
1014 	// gtk.ContainerCellAccessible
1015 
1016 	Linker.link(gtk_container_cell_accessible_get_type, "gtk_container_cell_accessible_get_type", LIBRARY_GTK);
1017 	Linker.link(gtk_container_cell_accessible_new, "gtk_container_cell_accessible_new", LIBRARY_GTK);
1018 	Linker.link(gtk_container_cell_accessible_add_child, "gtk_container_cell_accessible_add_child", LIBRARY_GTK);
1019 	Linker.link(gtk_container_cell_accessible_get_children, "gtk_container_cell_accessible_get_children", LIBRARY_GTK);
1020 	Linker.link(gtk_container_cell_accessible_remove_child, "gtk_container_cell_accessible_remove_child", LIBRARY_GTK);
1021 
1022 	// gtk.ContainerClass
1023 
1024 	Linker.link(gtk_container_class_find_child_property, "gtk_container_class_find_child_property", LIBRARY_GTK);
1025 	Linker.link(gtk_container_class_handle_border_width, "gtk_container_class_handle_border_width", LIBRARY_GTK);
1026 	Linker.link(gtk_container_class_install_child_properties, "gtk_container_class_install_child_properties", LIBRARY_GTK);
1027 	Linker.link(gtk_container_class_install_child_property, "gtk_container_class_install_child_property", LIBRARY_GTK);
1028 	Linker.link(gtk_container_class_list_child_properties, "gtk_container_class_list_child_properties", LIBRARY_GTK);
1029 
1030 	// gtk.CssProvider
1031 
1032 	Linker.link(gtk_css_provider_get_type, "gtk_css_provider_get_type", LIBRARY_GTK);
1033 	Linker.link(gtk_css_provider_new, "gtk_css_provider_new", LIBRARY_GTK);
1034 	Linker.link(gtk_css_provider_get_default, "gtk_css_provider_get_default", LIBRARY_GTK);
1035 	Linker.link(gtk_css_provider_get_named, "gtk_css_provider_get_named", LIBRARY_GTK);
1036 	Linker.link(gtk_css_provider_load_from_data, "gtk_css_provider_load_from_data", LIBRARY_GTK);
1037 	Linker.link(gtk_css_provider_load_from_file, "gtk_css_provider_load_from_file", LIBRARY_GTK);
1038 	Linker.link(gtk_css_provider_load_from_path, "gtk_css_provider_load_from_path", LIBRARY_GTK);
1039 	Linker.link(gtk_css_provider_load_from_resource, "gtk_css_provider_load_from_resource", LIBRARY_GTK);
1040 	Linker.link(gtk_css_provider_to_string, "gtk_css_provider_to_string", LIBRARY_GTK);
1041 
1042 	// gtk.CssSection
1043 
1044 	Linker.link(gtk_css_section_get_type, "gtk_css_section_get_type", LIBRARY_GTK);
1045 	Linker.link(gtk_css_section_get_end_line, "gtk_css_section_get_end_line", LIBRARY_GTK);
1046 	Linker.link(gtk_css_section_get_end_position, "gtk_css_section_get_end_position", LIBRARY_GTK);
1047 	Linker.link(gtk_css_section_get_file, "gtk_css_section_get_file", LIBRARY_GTK);
1048 	Linker.link(gtk_css_section_get_parent, "gtk_css_section_get_parent", LIBRARY_GTK);
1049 	Linker.link(gtk_css_section_get_section_type, "gtk_css_section_get_section_type", LIBRARY_GTK);
1050 	Linker.link(gtk_css_section_get_start_line, "gtk_css_section_get_start_line", LIBRARY_GTK);
1051 	Linker.link(gtk_css_section_get_start_position, "gtk_css_section_get_start_position", LIBRARY_GTK);
1052 	Linker.link(gtk_css_section_ref, "gtk_css_section_ref", LIBRARY_GTK);
1053 	Linker.link(gtk_css_section_unref, "gtk_css_section_unref", LIBRARY_GTK);
1054 
1055 	// gtk.Dialog
1056 
1057 	Linker.link(gtk_dialog_get_type, "gtk_dialog_get_type", LIBRARY_GTK);
1058 	Linker.link(gtk_dialog_new, "gtk_dialog_new", LIBRARY_GTK);
1059 	Linker.link(gtk_dialog_new_with_buttons, "gtk_dialog_new_with_buttons", LIBRARY_GTK);
1060 	Linker.link(gtk_dialog_add_action_widget, "gtk_dialog_add_action_widget", LIBRARY_GTK);
1061 	Linker.link(gtk_dialog_add_button, "gtk_dialog_add_button", LIBRARY_GTK);
1062 	Linker.link(gtk_dialog_add_buttons, "gtk_dialog_add_buttons", LIBRARY_GTK);
1063 	Linker.link(gtk_dialog_get_action_area, "gtk_dialog_get_action_area", LIBRARY_GTK);
1064 	Linker.link(gtk_dialog_get_content_area, "gtk_dialog_get_content_area", LIBRARY_GTK);
1065 	Linker.link(gtk_dialog_get_header_bar, "gtk_dialog_get_header_bar", LIBRARY_GTK);
1066 	Linker.link(gtk_dialog_get_response_for_widget, "gtk_dialog_get_response_for_widget", LIBRARY_GTK);
1067 	Linker.link(gtk_dialog_get_widget_for_response, "gtk_dialog_get_widget_for_response", LIBRARY_GTK);
1068 	Linker.link(gtk_dialog_response, "gtk_dialog_response", LIBRARY_GTK);
1069 	Linker.link(gtk_dialog_run, "gtk_dialog_run", LIBRARY_GTK);
1070 	Linker.link(gtk_dialog_set_alternative_button_order, "gtk_dialog_set_alternative_button_order", LIBRARY_GTK);
1071 	Linker.link(gtk_dialog_set_alternative_button_order_from_array, "gtk_dialog_set_alternative_button_order_from_array", LIBRARY_GTK);
1072 	Linker.link(gtk_dialog_set_default_response, "gtk_dialog_set_default_response", LIBRARY_GTK);
1073 	Linker.link(gtk_dialog_set_response_sensitive, "gtk_dialog_set_response_sensitive", LIBRARY_GTK);
1074 	Linker.link(gtk_alternative_dialog_button_order, "gtk_alternative_dialog_button_order", LIBRARY_GTK);
1075 
1076 	// gtk.DrawingArea
1077 
1078 	Linker.link(gtk_drawing_area_get_type, "gtk_drawing_area_get_type", LIBRARY_GTK);
1079 	Linker.link(gtk_drawing_area_new, "gtk_drawing_area_new", LIBRARY_GTK);
1080 
1081 	// gtk.Editable
1082 
1083 	Linker.link(gtk_editable_get_type, "gtk_editable_get_type", LIBRARY_GTK);
1084 	Linker.link(gtk_editable_copy_clipboard, "gtk_editable_copy_clipboard", LIBRARY_GTK);
1085 	Linker.link(gtk_editable_cut_clipboard, "gtk_editable_cut_clipboard", LIBRARY_GTK);
1086 	Linker.link(gtk_editable_delete_selection, "gtk_editable_delete_selection", LIBRARY_GTK);
1087 	Linker.link(gtk_editable_delete_text, "gtk_editable_delete_text", LIBRARY_GTK);
1088 	Linker.link(gtk_editable_get_chars, "gtk_editable_get_chars", LIBRARY_GTK);
1089 	Linker.link(gtk_editable_get_editable, "gtk_editable_get_editable", LIBRARY_GTK);
1090 	Linker.link(gtk_editable_get_position, "gtk_editable_get_position", LIBRARY_GTK);
1091 	Linker.link(gtk_editable_get_selection_bounds, "gtk_editable_get_selection_bounds", LIBRARY_GTK);
1092 	Linker.link(gtk_editable_insert_text, "gtk_editable_insert_text", LIBRARY_GTK);
1093 	Linker.link(gtk_editable_paste_clipboard, "gtk_editable_paste_clipboard", LIBRARY_GTK);
1094 	Linker.link(gtk_editable_select_region, "gtk_editable_select_region", LIBRARY_GTK);
1095 	Linker.link(gtk_editable_set_editable, "gtk_editable_set_editable", LIBRARY_GTK);
1096 	Linker.link(gtk_editable_set_position, "gtk_editable_set_position", LIBRARY_GTK);
1097 
1098 	// gtk.Entry
1099 
1100 	Linker.link(gtk_entry_get_type, "gtk_entry_get_type", LIBRARY_GTK);
1101 	Linker.link(gtk_entry_new, "gtk_entry_new", LIBRARY_GTK);
1102 	Linker.link(gtk_entry_new_with_buffer, "gtk_entry_new_with_buffer", LIBRARY_GTK);
1103 	Linker.link(gtk_entry_get_activates_default, "gtk_entry_get_activates_default", LIBRARY_GTK);
1104 	Linker.link(gtk_entry_get_alignment, "gtk_entry_get_alignment", LIBRARY_GTK);
1105 	Linker.link(gtk_entry_get_attributes, "gtk_entry_get_attributes", LIBRARY_GTK);
1106 	Linker.link(gtk_entry_get_buffer, "gtk_entry_get_buffer", LIBRARY_GTK);
1107 	Linker.link(gtk_entry_get_completion, "gtk_entry_get_completion", LIBRARY_GTK);
1108 	Linker.link(gtk_entry_get_current_icon_drag_source, "gtk_entry_get_current_icon_drag_source", LIBRARY_GTK);
1109 	Linker.link(gtk_entry_get_cursor_hadjustment, "gtk_entry_get_cursor_hadjustment", LIBRARY_GTK);
1110 	Linker.link(gtk_entry_get_has_frame, "gtk_entry_get_has_frame", LIBRARY_GTK);
1111 	Linker.link(gtk_entry_get_icon_activatable, "gtk_entry_get_icon_activatable", LIBRARY_GTK);
1112 	Linker.link(gtk_entry_get_icon_area, "gtk_entry_get_icon_area", LIBRARY_GTK);
1113 	Linker.link(gtk_entry_get_icon_at_pos, "gtk_entry_get_icon_at_pos", LIBRARY_GTK);
1114 	Linker.link(gtk_entry_get_icon_gicon, "gtk_entry_get_icon_gicon", LIBRARY_GTK);
1115 	Linker.link(gtk_entry_get_icon_name, "gtk_entry_get_icon_name", LIBRARY_GTK);
1116 	Linker.link(gtk_entry_get_icon_pixbuf, "gtk_entry_get_icon_pixbuf", LIBRARY_GTK);
1117 	Linker.link(gtk_entry_get_icon_sensitive, "gtk_entry_get_icon_sensitive", LIBRARY_GTK);
1118 	Linker.link(gtk_entry_get_icon_stock, "gtk_entry_get_icon_stock", LIBRARY_GTK);
1119 	Linker.link(gtk_entry_get_icon_storage_type, "gtk_entry_get_icon_storage_type", LIBRARY_GTK);
1120 	Linker.link(gtk_entry_get_icon_tooltip_markup, "gtk_entry_get_icon_tooltip_markup", LIBRARY_GTK);
1121 	Linker.link(gtk_entry_get_icon_tooltip_text, "gtk_entry_get_icon_tooltip_text", LIBRARY_GTK);
1122 	Linker.link(gtk_entry_get_inner_border, "gtk_entry_get_inner_border", LIBRARY_GTK);
1123 	Linker.link(gtk_entry_get_input_hints, "gtk_entry_get_input_hints", LIBRARY_GTK);
1124 	Linker.link(gtk_entry_get_input_purpose, "gtk_entry_get_input_purpose", LIBRARY_GTK);
1125 	Linker.link(gtk_entry_get_invisible_char, "gtk_entry_get_invisible_char", LIBRARY_GTK);
1126 	Linker.link(gtk_entry_get_layout, "gtk_entry_get_layout", LIBRARY_GTK);
1127 	Linker.link(gtk_entry_get_layout_offsets, "gtk_entry_get_layout_offsets", LIBRARY_GTK);
1128 	Linker.link(gtk_entry_get_max_length, "gtk_entry_get_max_length", LIBRARY_GTK);
1129 	Linker.link(gtk_entry_get_max_width_chars, "gtk_entry_get_max_width_chars", LIBRARY_GTK);
1130 	Linker.link(gtk_entry_get_overwrite_mode, "gtk_entry_get_overwrite_mode", LIBRARY_GTK);
1131 	Linker.link(gtk_entry_get_placeholder_text, "gtk_entry_get_placeholder_text", LIBRARY_GTK);
1132 	Linker.link(gtk_entry_get_progress_fraction, "gtk_entry_get_progress_fraction", LIBRARY_GTK);
1133 	Linker.link(gtk_entry_get_progress_pulse_step, "gtk_entry_get_progress_pulse_step", LIBRARY_GTK);
1134 	Linker.link(gtk_entry_get_tabs, "gtk_entry_get_tabs", LIBRARY_GTK);
1135 	Linker.link(gtk_entry_get_text, "gtk_entry_get_text", LIBRARY_GTK);
1136 	Linker.link(gtk_entry_get_text_area, "gtk_entry_get_text_area", LIBRARY_GTK);
1137 	Linker.link(gtk_entry_get_text_length, "gtk_entry_get_text_length", LIBRARY_GTK);
1138 	Linker.link(gtk_entry_get_visibility, "gtk_entry_get_visibility", LIBRARY_GTK);
1139 	Linker.link(gtk_entry_get_width_chars, "gtk_entry_get_width_chars", LIBRARY_GTK);
1140 	Linker.link(gtk_entry_grab_focus_without_selecting, "gtk_entry_grab_focus_without_selecting", LIBRARY_GTK);
1141 	Linker.link(gtk_entry_im_context_filter_keypress, "gtk_entry_im_context_filter_keypress", LIBRARY_GTK);
1142 	Linker.link(gtk_entry_layout_index_to_text_index, "gtk_entry_layout_index_to_text_index", LIBRARY_GTK);
1143 	Linker.link(gtk_entry_progress_pulse, "gtk_entry_progress_pulse", LIBRARY_GTK);
1144 	Linker.link(gtk_entry_reset_im_context, "gtk_entry_reset_im_context", LIBRARY_GTK);
1145 	Linker.link(gtk_entry_set_activates_default, "gtk_entry_set_activates_default", LIBRARY_GTK);
1146 	Linker.link(gtk_entry_set_alignment, "gtk_entry_set_alignment", LIBRARY_GTK);
1147 	Linker.link(gtk_entry_set_attributes, "gtk_entry_set_attributes", LIBRARY_GTK);
1148 	Linker.link(gtk_entry_set_buffer, "gtk_entry_set_buffer", LIBRARY_GTK);
1149 	Linker.link(gtk_entry_set_completion, "gtk_entry_set_completion", LIBRARY_GTK);
1150 	Linker.link(gtk_entry_set_cursor_hadjustment, "gtk_entry_set_cursor_hadjustment", LIBRARY_GTK);
1151 	Linker.link(gtk_entry_set_has_frame, "gtk_entry_set_has_frame", LIBRARY_GTK);
1152 	Linker.link(gtk_entry_set_icon_activatable, "gtk_entry_set_icon_activatable", LIBRARY_GTK);
1153 	Linker.link(gtk_entry_set_icon_drag_source, "gtk_entry_set_icon_drag_source", LIBRARY_GTK);
1154 	Linker.link(gtk_entry_set_icon_from_gicon, "gtk_entry_set_icon_from_gicon", LIBRARY_GTK);
1155 	Linker.link(gtk_entry_set_icon_from_icon_name, "gtk_entry_set_icon_from_icon_name", LIBRARY_GTK);
1156 	Linker.link(gtk_entry_set_icon_from_pixbuf, "gtk_entry_set_icon_from_pixbuf", LIBRARY_GTK);
1157 	Linker.link(gtk_entry_set_icon_from_stock, "gtk_entry_set_icon_from_stock", LIBRARY_GTK);
1158 	Linker.link(gtk_entry_set_icon_sensitive, "gtk_entry_set_icon_sensitive", LIBRARY_GTK);
1159 	Linker.link(gtk_entry_set_icon_tooltip_markup, "gtk_entry_set_icon_tooltip_markup", LIBRARY_GTK);
1160 	Linker.link(gtk_entry_set_icon_tooltip_text, "gtk_entry_set_icon_tooltip_text", LIBRARY_GTK);
1161 	Linker.link(gtk_entry_set_inner_border, "gtk_entry_set_inner_border", LIBRARY_GTK);
1162 	Linker.link(gtk_entry_set_input_hints, "gtk_entry_set_input_hints", LIBRARY_GTK);
1163 	Linker.link(gtk_entry_set_input_purpose, "gtk_entry_set_input_purpose", LIBRARY_GTK);
1164 	Linker.link(gtk_entry_set_invisible_char, "gtk_entry_set_invisible_char", LIBRARY_GTK);
1165 	Linker.link(gtk_entry_set_max_length, "gtk_entry_set_max_length", LIBRARY_GTK);
1166 	Linker.link(gtk_entry_set_max_width_chars, "gtk_entry_set_max_width_chars", LIBRARY_GTK);
1167 	Linker.link(gtk_entry_set_overwrite_mode, "gtk_entry_set_overwrite_mode", LIBRARY_GTK);
1168 	Linker.link(gtk_entry_set_placeholder_text, "gtk_entry_set_placeholder_text", LIBRARY_GTK);
1169 	Linker.link(gtk_entry_set_progress_fraction, "gtk_entry_set_progress_fraction", LIBRARY_GTK);
1170 	Linker.link(gtk_entry_set_progress_pulse_step, "gtk_entry_set_progress_pulse_step", LIBRARY_GTK);
1171 	Linker.link(gtk_entry_set_tabs, "gtk_entry_set_tabs", LIBRARY_GTK);
1172 	Linker.link(gtk_entry_set_text, "gtk_entry_set_text", LIBRARY_GTK);
1173 	Linker.link(gtk_entry_set_visibility, "gtk_entry_set_visibility", LIBRARY_GTK);
1174 	Linker.link(gtk_entry_set_width_chars, "gtk_entry_set_width_chars", LIBRARY_GTK);
1175 	Linker.link(gtk_entry_text_index_to_layout_index, "gtk_entry_text_index_to_layout_index", LIBRARY_GTK);
1176 	Linker.link(gtk_entry_unset_invisible_char, "gtk_entry_unset_invisible_char", LIBRARY_GTK);
1177 
1178 	// gtk.EntryAccessible
1179 
1180 	Linker.link(gtk_entry_accessible_get_type, "gtk_entry_accessible_get_type", LIBRARY_GTK);
1181 
1182 	// gtk.EntryBuffer
1183 
1184 	Linker.link(gtk_entry_buffer_get_type, "gtk_entry_buffer_get_type", LIBRARY_GTK);
1185 	Linker.link(gtk_entry_buffer_new, "gtk_entry_buffer_new", LIBRARY_GTK);
1186 	Linker.link(gtk_entry_buffer_delete_text, "gtk_entry_buffer_delete_text", LIBRARY_GTK);
1187 	Linker.link(gtk_entry_buffer_emit_deleted_text, "gtk_entry_buffer_emit_deleted_text", LIBRARY_GTK);
1188 	Linker.link(gtk_entry_buffer_emit_inserted_text, "gtk_entry_buffer_emit_inserted_text", LIBRARY_GTK);
1189 	Linker.link(gtk_entry_buffer_get_bytes, "gtk_entry_buffer_get_bytes", LIBRARY_GTK);
1190 	Linker.link(gtk_entry_buffer_get_length, "gtk_entry_buffer_get_length", LIBRARY_GTK);
1191 	Linker.link(gtk_entry_buffer_get_max_length, "gtk_entry_buffer_get_max_length", LIBRARY_GTK);
1192 	Linker.link(gtk_entry_buffer_get_text, "gtk_entry_buffer_get_text", LIBRARY_GTK);
1193 	Linker.link(gtk_entry_buffer_insert_text, "gtk_entry_buffer_insert_text", LIBRARY_GTK);
1194 	Linker.link(gtk_entry_buffer_set_max_length, "gtk_entry_buffer_set_max_length", LIBRARY_GTK);
1195 	Linker.link(gtk_entry_buffer_set_text, "gtk_entry_buffer_set_text", LIBRARY_GTK);
1196 
1197 	// gtk.EntryCompletion
1198 
1199 	Linker.link(gtk_entry_completion_get_type, "gtk_entry_completion_get_type", LIBRARY_GTK);
1200 	Linker.link(gtk_entry_completion_new, "gtk_entry_completion_new", LIBRARY_GTK);
1201 	Linker.link(gtk_entry_completion_new_with_area, "gtk_entry_completion_new_with_area", LIBRARY_GTK);
1202 	Linker.link(gtk_entry_completion_complete, "gtk_entry_completion_complete", LIBRARY_GTK);
1203 	Linker.link(gtk_entry_completion_compute_prefix, "gtk_entry_completion_compute_prefix", LIBRARY_GTK);
1204 	Linker.link(gtk_entry_completion_delete_action, "gtk_entry_completion_delete_action", LIBRARY_GTK);
1205 	Linker.link(gtk_entry_completion_get_completion_prefix, "gtk_entry_completion_get_completion_prefix", LIBRARY_GTK);
1206 	Linker.link(gtk_entry_completion_get_entry, "gtk_entry_completion_get_entry", LIBRARY_GTK);
1207 	Linker.link(gtk_entry_completion_get_inline_completion, "gtk_entry_completion_get_inline_completion", LIBRARY_GTK);
1208 	Linker.link(gtk_entry_completion_get_inline_selection, "gtk_entry_completion_get_inline_selection", LIBRARY_GTK);
1209 	Linker.link(gtk_entry_completion_get_minimum_key_length, "gtk_entry_completion_get_minimum_key_length", LIBRARY_GTK);
1210 	Linker.link(gtk_entry_completion_get_model, "gtk_entry_completion_get_model", LIBRARY_GTK);
1211 	Linker.link(gtk_entry_completion_get_popup_completion, "gtk_entry_completion_get_popup_completion", LIBRARY_GTK);
1212 	Linker.link(gtk_entry_completion_get_popup_set_width, "gtk_entry_completion_get_popup_set_width", LIBRARY_GTK);
1213 	Linker.link(gtk_entry_completion_get_popup_single_match, "gtk_entry_completion_get_popup_single_match", LIBRARY_GTK);
1214 	Linker.link(gtk_entry_completion_get_text_column, "gtk_entry_completion_get_text_column", LIBRARY_GTK);
1215 	Linker.link(gtk_entry_completion_insert_action_markup, "gtk_entry_completion_insert_action_markup", LIBRARY_GTK);
1216 	Linker.link(gtk_entry_completion_insert_action_text, "gtk_entry_completion_insert_action_text", LIBRARY_GTK);
1217 	Linker.link(gtk_entry_completion_insert_prefix, "gtk_entry_completion_insert_prefix", LIBRARY_GTK);
1218 	Linker.link(gtk_entry_completion_set_inline_completion, "gtk_entry_completion_set_inline_completion", LIBRARY_GTK);
1219 	Linker.link(gtk_entry_completion_set_inline_selection, "gtk_entry_completion_set_inline_selection", LIBRARY_GTK);
1220 	Linker.link(gtk_entry_completion_set_match_func, "gtk_entry_completion_set_match_func", LIBRARY_GTK);
1221 	Linker.link(gtk_entry_completion_set_minimum_key_length, "gtk_entry_completion_set_minimum_key_length", LIBRARY_GTK);
1222 	Linker.link(gtk_entry_completion_set_model, "gtk_entry_completion_set_model", LIBRARY_GTK);
1223 	Linker.link(gtk_entry_completion_set_popup_completion, "gtk_entry_completion_set_popup_completion", LIBRARY_GTK);
1224 	Linker.link(gtk_entry_completion_set_popup_set_width, "gtk_entry_completion_set_popup_set_width", LIBRARY_GTK);
1225 	Linker.link(gtk_entry_completion_set_popup_single_match, "gtk_entry_completion_set_popup_single_match", LIBRARY_GTK);
1226 	Linker.link(gtk_entry_completion_set_text_column, "gtk_entry_completion_set_text_column", LIBRARY_GTK);
1227 
1228 	// gtk.EntryIconAccessible
1229 
1230 	Linker.link(gtk_entry_icon_accessible_get_type, "gtk_entry_icon_accessible_get_type", LIBRARY_GTK);
1231 
1232 	// gtk.EventBox
1233 
1234 	Linker.link(gtk_event_box_get_type, "gtk_event_box_get_type", LIBRARY_GTK);
1235 	Linker.link(gtk_event_box_new, "gtk_event_box_new", LIBRARY_GTK);
1236 	Linker.link(gtk_event_box_get_above_child, "gtk_event_box_get_above_child", LIBRARY_GTK);
1237 	Linker.link(gtk_event_box_get_visible_window, "gtk_event_box_get_visible_window", LIBRARY_GTK);
1238 	Linker.link(gtk_event_box_set_above_child, "gtk_event_box_set_above_child", LIBRARY_GTK);
1239 	Linker.link(gtk_event_box_set_visible_window, "gtk_event_box_set_visible_window", LIBRARY_GTK);
1240 
1241 	// gtk.EventController
1242 
1243 	Linker.link(gtk_event_controller_get_type, "gtk_event_controller_get_type", LIBRARY_GTK);
1244 	Linker.link(gtk_event_controller_get_propagation_phase, "gtk_event_controller_get_propagation_phase", LIBRARY_GTK);
1245 	Linker.link(gtk_event_controller_get_widget, "gtk_event_controller_get_widget", LIBRARY_GTK);
1246 	Linker.link(gtk_event_controller_handle_event, "gtk_event_controller_handle_event", LIBRARY_GTK);
1247 	Linker.link(gtk_event_controller_reset, "gtk_event_controller_reset", LIBRARY_GTK);
1248 	Linker.link(gtk_event_controller_set_propagation_phase, "gtk_event_controller_set_propagation_phase", LIBRARY_GTK);
1249 
1250 	// gtk.EventControllerKey
1251 
1252 	Linker.link(gtk_event_controller_key_get_type, "gtk_event_controller_key_get_type", LIBRARY_GTK);
1253 	Linker.link(gtk_event_controller_key_new, "gtk_event_controller_key_new", LIBRARY_GTK);
1254 	Linker.link(gtk_event_controller_key_forward, "gtk_event_controller_key_forward", LIBRARY_GTK);
1255 	Linker.link(gtk_event_controller_key_get_group, "gtk_event_controller_key_get_group", LIBRARY_GTK);
1256 	Linker.link(gtk_event_controller_key_get_im_context, "gtk_event_controller_key_get_im_context", LIBRARY_GTK);
1257 	Linker.link(gtk_event_controller_key_set_im_context, "gtk_event_controller_key_set_im_context", LIBRARY_GTK);
1258 
1259 	// gtk.EventControllerMotion
1260 
1261 	Linker.link(gtk_event_controller_motion_get_type, "gtk_event_controller_motion_get_type", LIBRARY_GTK);
1262 	Linker.link(gtk_event_controller_motion_new, "gtk_event_controller_motion_new", LIBRARY_GTK);
1263 
1264 	// gtk.EventControllerScroll
1265 
1266 	Linker.link(gtk_event_controller_scroll_get_type, "gtk_event_controller_scroll_get_type", LIBRARY_GTK);
1267 	Linker.link(gtk_event_controller_scroll_new, "gtk_event_controller_scroll_new", LIBRARY_GTK);
1268 	Linker.link(gtk_event_controller_scroll_get_flags, "gtk_event_controller_scroll_get_flags", LIBRARY_GTK);
1269 	Linker.link(gtk_event_controller_scroll_set_flags, "gtk_event_controller_scroll_set_flags", LIBRARY_GTK);
1270 
1271 	// gtk.Expander
1272 
1273 	Linker.link(gtk_expander_get_type, "gtk_expander_get_type", LIBRARY_GTK);
1274 	Linker.link(gtk_expander_new, "gtk_expander_new", LIBRARY_GTK);
1275 	Linker.link(gtk_expander_new_with_mnemonic, "gtk_expander_new_with_mnemonic", LIBRARY_GTK);
1276 	Linker.link(gtk_expander_get_expanded, "gtk_expander_get_expanded", LIBRARY_GTK);
1277 	Linker.link(gtk_expander_get_label, "gtk_expander_get_label", LIBRARY_GTK);
1278 	Linker.link(gtk_expander_get_label_fill, "gtk_expander_get_label_fill", LIBRARY_GTK);
1279 	Linker.link(gtk_expander_get_label_widget, "gtk_expander_get_label_widget", LIBRARY_GTK);
1280 	Linker.link(gtk_expander_get_resize_toplevel, "gtk_expander_get_resize_toplevel", LIBRARY_GTK);
1281 	Linker.link(gtk_expander_get_spacing, "gtk_expander_get_spacing", LIBRARY_GTK);
1282 	Linker.link(gtk_expander_get_use_markup, "gtk_expander_get_use_markup", LIBRARY_GTK);
1283 	Linker.link(gtk_expander_get_use_underline, "gtk_expander_get_use_underline", LIBRARY_GTK);
1284 	Linker.link(gtk_expander_set_expanded, "gtk_expander_set_expanded", LIBRARY_GTK);
1285 	Linker.link(gtk_expander_set_label, "gtk_expander_set_label", LIBRARY_GTK);
1286 	Linker.link(gtk_expander_set_label_fill, "gtk_expander_set_label_fill", LIBRARY_GTK);
1287 	Linker.link(gtk_expander_set_label_widget, "gtk_expander_set_label_widget", LIBRARY_GTK);
1288 	Linker.link(gtk_expander_set_resize_toplevel, "gtk_expander_set_resize_toplevel", LIBRARY_GTK);
1289 	Linker.link(gtk_expander_set_spacing, "gtk_expander_set_spacing", LIBRARY_GTK);
1290 	Linker.link(gtk_expander_set_use_markup, "gtk_expander_set_use_markup", LIBRARY_GTK);
1291 	Linker.link(gtk_expander_set_use_underline, "gtk_expander_set_use_underline", LIBRARY_GTK);
1292 
1293 	// gtk.ExpanderAccessible
1294 
1295 	Linker.link(gtk_expander_accessible_get_type, "gtk_expander_accessible_get_type", LIBRARY_GTK);
1296 
1297 	// gtk.FileChooser
1298 
1299 	Linker.link(gtk_file_chooser_get_type, "gtk_file_chooser_get_type", LIBRARY_GTK);
1300 	Linker.link(gtk_file_chooser_add_choice, "gtk_file_chooser_add_choice", LIBRARY_GTK);
1301 	Linker.link(gtk_file_chooser_add_filter, "gtk_file_chooser_add_filter", LIBRARY_GTK);
1302 	Linker.link(gtk_file_chooser_add_shortcut_folder, "gtk_file_chooser_add_shortcut_folder", LIBRARY_GTK);
1303 	Linker.link(gtk_file_chooser_add_shortcut_folder_uri, "gtk_file_chooser_add_shortcut_folder_uri", LIBRARY_GTK);
1304 	Linker.link(gtk_file_chooser_get_action, "gtk_file_chooser_get_action", LIBRARY_GTK);
1305 	Linker.link(gtk_file_chooser_get_choice, "gtk_file_chooser_get_choice", LIBRARY_GTK);
1306 	Linker.link(gtk_file_chooser_get_create_folders, "gtk_file_chooser_get_create_folders", LIBRARY_GTK);
1307 	Linker.link(gtk_file_chooser_get_current_folder, "gtk_file_chooser_get_current_folder", LIBRARY_GTK);
1308 	Linker.link(gtk_file_chooser_get_current_folder_file, "gtk_file_chooser_get_current_folder_file", LIBRARY_GTK);
1309 	Linker.link(gtk_file_chooser_get_current_folder_uri, "gtk_file_chooser_get_current_folder_uri", LIBRARY_GTK);
1310 	Linker.link(gtk_file_chooser_get_current_name, "gtk_file_chooser_get_current_name", LIBRARY_GTK);
1311 	Linker.link(gtk_file_chooser_get_do_overwrite_confirmation, "gtk_file_chooser_get_do_overwrite_confirmation", LIBRARY_GTK);
1312 	Linker.link(gtk_file_chooser_get_extra_widget, "gtk_file_chooser_get_extra_widget", LIBRARY_GTK);
1313 	Linker.link(gtk_file_chooser_get_file, "gtk_file_chooser_get_file", LIBRARY_GTK);
1314 	Linker.link(gtk_file_chooser_get_filename, "gtk_file_chooser_get_filename", LIBRARY_GTK);
1315 	Linker.link(gtk_file_chooser_get_filenames, "gtk_file_chooser_get_filenames", LIBRARY_GTK);
1316 	Linker.link(gtk_file_chooser_get_files, "gtk_file_chooser_get_files", LIBRARY_GTK);
1317 	Linker.link(gtk_file_chooser_get_filter, "gtk_file_chooser_get_filter", LIBRARY_GTK);
1318 	Linker.link(gtk_file_chooser_get_local_only, "gtk_file_chooser_get_local_only", LIBRARY_GTK);
1319 	Linker.link(gtk_file_chooser_get_preview_file, "gtk_file_chooser_get_preview_file", LIBRARY_GTK);
1320 	Linker.link(gtk_file_chooser_get_preview_filename, "gtk_file_chooser_get_preview_filename", LIBRARY_GTK);
1321 	Linker.link(gtk_file_chooser_get_preview_uri, "gtk_file_chooser_get_preview_uri", LIBRARY_GTK);
1322 	Linker.link(gtk_file_chooser_get_preview_widget, "gtk_file_chooser_get_preview_widget", LIBRARY_GTK);
1323 	Linker.link(gtk_file_chooser_get_preview_widget_active, "gtk_file_chooser_get_preview_widget_active", LIBRARY_GTK);
1324 	Linker.link(gtk_file_chooser_get_select_multiple, "gtk_file_chooser_get_select_multiple", LIBRARY_GTK);
1325 	Linker.link(gtk_file_chooser_get_show_hidden, "gtk_file_chooser_get_show_hidden", LIBRARY_GTK);
1326 	Linker.link(gtk_file_chooser_get_uri, "gtk_file_chooser_get_uri", LIBRARY_GTK);
1327 	Linker.link(gtk_file_chooser_get_uris, "gtk_file_chooser_get_uris", LIBRARY_GTK);
1328 	Linker.link(gtk_file_chooser_get_use_preview_label, "gtk_file_chooser_get_use_preview_label", LIBRARY_GTK);
1329 	Linker.link(gtk_file_chooser_list_filters, "gtk_file_chooser_list_filters", LIBRARY_GTK);
1330 	Linker.link(gtk_file_chooser_list_shortcut_folder_uris, "gtk_file_chooser_list_shortcut_folder_uris", LIBRARY_GTK);
1331 	Linker.link(gtk_file_chooser_list_shortcut_folders, "gtk_file_chooser_list_shortcut_folders", LIBRARY_GTK);
1332 	Linker.link(gtk_file_chooser_remove_choice, "gtk_file_chooser_remove_choice", LIBRARY_GTK);
1333 	Linker.link(gtk_file_chooser_remove_filter, "gtk_file_chooser_remove_filter", LIBRARY_GTK);
1334 	Linker.link(gtk_file_chooser_remove_shortcut_folder, "gtk_file_chooser_remove_shortcut_folder", LIBRARY_GTK);
1335 	Linker.link(gtk_file_chooser_remove_shortcut_folder_uri, "gtk_file_chooser_remove_shortcut_folder_uri", LIBRARY_GTK);
1336 	Linker.link(gtk_file_chooser_select_all, "gtk_file_chooser_select_all", LIBRARY_GTK);
1337 	Linker.link(gtk_file_chooser_select_file, "gtk_file_chooser_select_file", LIBRARY_GTK);
1338 	Linker.link(gtk_file_chooser_select_filename, "gtk_file_chooser_select_filename", LIBRARY_GTK);
1339 	Linker.link(gtk_file_chooser_select_uri, "gtk_file_chooser_select_uri", LIBRARY_GTK);
1340 	Linker.link(gtk_file_chooser_set_action, "gtk_file_chooser_set_action", LIBRARY_GTK);
1341 	Linker.link(gtk_file_chooser_set_choice, "gtk_file_chooser_set_choice", LIBRARY_GTK);
1342 	Linker.link(gtk_file_chooser_set_create_folders, "gtk_file_chooser_set_create_folders", LIBRARY_GTK);
1343 	Linker.link(gtk_file_chooser_set_current_folder, "gtk_file_chooser_set_current_folder", LIBRARY_GTK);
1344 	Linker.link(gtk_file_chooser_set_current_folder_file, "gtk_file_chooser_set_current_folder_file", LIBRARY_GTK);
1345 	Linker.link(gtk_file_chooser_set_current_folder_uri, "gtk_file_chooser_set_current_folder_uri", LIBRARY_GTK);
1346 	Linker.link(gtk_file_chooser_set_current_name, "gtk_file_chooser_set_current_name", LIBRARY_GTK);
1347 	Linker.link(gtk_file_chooser_set_do_overwrite_confirmation, "gtk_file_chooser_set_do_overwrite_confirmation", LIBRARY_GTK);
1348 	Linker.link(gtk_file_chooser_set_extra_widget, "gtk_file_chooser_set_extra_widget", LIBRARY_GTK);
1349 	Linker.link(gtk_file_chooser_set_file, "gtk_file_chooser_set_file", LIBRARY_GTK);
1350 	Linker.link(gtk_file_chooser_set_filename, "gtk_file_chooser_set_filename", LIBRARY_GTK);
1351 	Linker.link(gtk_file_chooser_set_filter, "gtk_file_chooser_set_filter", LIBRARY_GTK);
1352 	Linker.link(gtk_file_chooser_set_local_only, "gtk_file_chooser_set_local_only", LIBRARY_GTK);
1353 	Linker.link(gtk_file_chooser_set_preview_widget, "gtk_file_chooser_set_preview_widget", LIBRARY_GTK);
1354 	Linker.link(gtk_file_chooser_set_preview_widget_active, "gtk_file_chooser_set_preview_widget_active", LIBRARY_GTK);
1355 	Linker.link(gtk_file_chooser_set_select_multiple, "gtk_file_chooser_set_select_multiple", LIBRARY_GTK);
1356 	Linker.link(gtk_file_chooser_set_show_hidden, "gtk_file_chooser_set_show_hidden", LIBRARY_GTK);
1357 	Linker.link(gtk_file_chooser_set_uri, "gtk_file_chooser_set_uri", LIBRARY_GTK);
1358 	Linker.link(gtk_file_chooser_set_use_preview_label, "gtk_file_chooser_set_use_preview_label", LIBRARY_GTK);
1359 	Linker.link(gtk_file_chooser_unselect_all, "gtk_file_chooser_unselect_all", LIBRARY_GTK);
1360 	Linker.link(gtk_file_chooser_unselect_file, "gtk_file_chooser_unselect_file", LIBRARY_GTK);
1361 	Linker.link(gtk_file_chooser_unselect_filename, "gtk_file_chooser_unselect_filename", LIBRARY_GTK);
1362 	Linker.link(gtk_file_chooser_unselect_uri, "gtk_file_chooser_unselect_uri", LIBRARY_GTK);
1363 
1364 	// gtk.FileChooserButton
1365 
1366 	Linker.link(gtk_file_chooser_button_get_type, "gtk_file_chooser_button_get_type", LIBRARY_GTK);
1367 	Linker.link(gtk_file_chooser_button_new, "gtk_file_chooser_button_new", LIBRARY_GTK);
1368 	Linker.link(gtk_file_chooser_button_new_with_dialog, "gtk_file_chooser_button_new_with_dialog", LIBRARY_GTK);
1369 	Linker.link(gtk_file_chooser_button_get_focus_on_click, "gtk_file_chooser_button_get_focus_on_click", LIBRARY_GTK);
1370 	Linker.link(gtk_file_chooser_button_get_title, "gtk_file_chooser_button_get_title", LIBRARY_GTK);
1371 	Linker.link(gtk_file_chooser_button_get_width_chars, "gtk_file_chooser_button_get_width_chars", LIBRARY_GTK);
1372 	Linker.link(gtk_file_chooser_button_set_focus_on_click, "gtk_file_chooser_button_set_focus_on_click", LIBRARY_GTK);
1373 	Linker.link(gtk_file_chooser_button_set_title, "gtk_file_chooser_button_set_title", LIBRARY_GTK);
1374 	Linker.link(gtk_file_chooser_button_set_width_chars, "gtk_file_chooser_button_set_width_chars", LIBRARY_GTK);
1375 
1376 	// gtk.FileChooserDialog
1377 
1378 	Linker.link(gtk_file_chooser_dialog_get_type, "gtk_file_chooser_dialog_get_type", LIBRARY_GTK);
1379 	Linker.link(gtk_file_chooser_dialog_new, "gtk_file_chooser_dialog_new", LIBRARY_GTK);
1380 
1381 	// gtk.FileChooserNative
1382 
1383 	Linker.link(gtk_file_chooser_native_get_type, "gtk_file_chooser_native_get_type", LIBRARY_GTK);
1384 	Linker.link(gtk_file_chooser_native_new, "gtk_file_chooser_native_new", LIBRARY_GTK);
1385 	Linker.link(gtk_file_chooser_native_get_accept_label, "gtk_file_chooser_native_get_accept_label", LIBRARY_GTK);
1386 	Linker.link(gtk_file_chooser_native_get_cancel_label, "gtk_file_chooser_native_get_cancel_label", LIBRARY_GTK);
1387 	Linker.link(gtk_file_chooser_native_set_accept_label, "gtk_file_chooser_native_set_accept_label", LIBRARY_GTK);
1388 	Linker.link(gtk_file_chooser_native_set_cancel_label, "gtk_file_chooser_native_set_cancel_label", LIBRARY_GTK);
1389 
1390 	// gtk.FileChooserWidget
1391 
1392 	Linker.link(gtk_file_chooser_widget_get_type, "gtk_file_chooser_widget_get_type", LIBRARY_GTK);
1393 	Linker.link(gtk_file_chooser_widget_new, "gtk_file_chooser_widget_new", LIBRARY_GTK);
1394 
1395 	// gtk.FileFilter
1396 
1397 	Linker.link(gtk_file_filter_get_type, "gtk_file_filter_get_type", LIBRARY_GTK);
1398 	Linker.link(gtk_file_filter_new, "gtk_file_filter_new", LIBRARY_GTK);
1399 	Linker.link(gtk_file_filter_new_from_gvariant, "gtk_file_filter_new_from_gvariant", LIBRARY_GTK);
1400 	Linker.link(gtk_file_filter_add_custom, "gtk_file_filter_add_custom", LIBRARY_GTK);
1401 	Linker.link(gtk_file_filter_add_mime_type, "gtk_file_filter_add_mime_type", LIBRARY_GTK);
1402 	Linker.link(gtk_file_filter_add_pattern, "gtk_file_filter_add_pattern", LIBRARY_GTK);
1403 	Linker.link(gtk_file_filter_add_pixbuf_formats, "gtk_file_filter_add_pixbuf_formats", LIBRARY_GTK);
1404 	Linker.link(gtk_file_filter_filter, "gtk_file_filter_filter", LIBRARY_GTK);
1405 	Linker.link(gtk_file_filter_get_name, "gtk_file_filter_get_name", LIBRARY_GTK);
1406 	Linker.link(gtk_file_filter_get_needed, "gtk_file_filter_get_needed", LIBRARY_GTK);
1407 	Linker.link(gtk_file_filter_set_name, "gtk_file_filter_set_name", LIBRARY_GTK);
1408 	Linker.link(gtk_file_filter_to_gvariant, "gtk_file_filter_to_gvariant", LIBRARY_GTK);
1409 
1410 	// gtk.Fixed
1411 
1412 	Linker.link(gtk_fixed_get_type, "gtk_fixed_get_type", LIBRARY_GTK);
1413 	Linker.link(gtk_fixed_new, "gtk_fixed_new", LIBRARY_GTK);
1414 	Linker.link(gtk_fixed_move, "gtk_fixed_move", LIBRARY_GTK);
1415 	Linker.link(gtk_fixed_put, "gtk_fixed_put", LIBRARY_GTK);
1416 
1417 	// gtk.FlowBox
1418 
1419 	Linker.link(gtk_flow_box_get_type, "gtk_flow_box_get_type", LIBRARY_GTK);
1420 	Linker.link(gtk_flow_box_new, "gtk_flow_box_new", LIBRARY_GTK);
1421 	Linker.link(gtk_flow_box_bind_model, "gtk_flow_box_bind_model", LIBRARY_GTK);
1422 	Linker.link(gtk_flow_box_get_activate_on_single_click, "gtk_flow_box_get_activate_on_single_click", LIBRARY_GTK);
1423 	Linker.link(gtk_flow_box_get_child_at_index, "gtk_flow_box_get_child_at_index", LIBRARY_GTK);
1424 	Linker.link(gtk_flow_box_get_child_at_pos, "gtk_flow_box_get_child_at_pos", LIBRARY_GTK);
1425 	Linker.link(gtk_flow_box_get_column_spacing, "gtk_flow_box_get_column_spacing", LIBRARY_GTK);
1426 	Linker.link(gtk_flow_box_get_homogeneous, "gtk_flow_box_get_homogeneous", LIBRARY_GTK);
1427 	Linker.link(gtk_flow_box_get_max_children_per_line, "gtk_flow_box_get_max_children_per_line", LIBRARY_GTK);
1428 	Linker.link(gtk_flow_box_get_min_children_per_line, "gtk_flow_box_get_min_children_per_line", LIBRARY_GTK);
1429 	Linker.link(gtk_flow_box_get_row_spacing, "gtk_flow_box_get_row_spacing", LIBRARY_GTK);
1430 	Linker.link(gtk_flow_box_get_selected_children, "gtk_flow_box_get_selected_children", LIBRARY_GTK);
1431 	Linker.link(gtk_flow_box_get_selection_mode, "gtk_flow_box_get_selection_mode", LIBRARY_GTK);
1432 	Linker.link(gtk_flow_box_insert, "gtk_flow_box_insert", LIBRARY_GTK);
1433 	Linker.link(gtk_flow_box_invalidate_filter, "gtk_flow_box_invalidate_filter", LIBRARY_GTK);
1434 	Linker.link(gtk_flow_box_invalidate_sort, "gtk_flow_box_invalidate_sort", LIBRARY_GTK);
1435 	Linker.link(gtk_flow_box_select_all, "gtk_flow_box_select_all", LIBRARY_GTK);
1436 	Linker.link(gtk_flow_box_select_child, "gtk_flow_box_select_child", LIBRARY_GTK);
1437 	Linker.link(gtk_flow_box_selected_foreach, "gtk_flow_box_selected_foreach", LIBRARY_GTK);
1438 	Linker.link(gtk_flow_box_set_activate_on_single_click, "gtk_flow_box_set_activate_on_single_click", LIBRARY_GTK);
1439 	Linker.link(gtk_flow_box_set_column_spacing, "gtk_flow_box_set_column_spacing", LIBRARY_GTK);
1440 	Linker.link(gtk_flow_box_set_filter_func, "gtk_flow_box_set_filter_func", LIBRARY_GTK);
1441 	Linker.link(gtk_flow_box_set_hadjustment, "gtk_flow_box_set_hadjustment", LIBRARY_GTK);
1442 	Linker.link(gtk_flow_box_set_homogeneous, "gtk_flow_box_set_homogeneous", LIBRARY_GTK);
1443 	Linker.link(gtk_flow_box_set_max_children_per_line, "gtk_flow_box_set_max_children_per_line", LIBRARY_GTK);
1444 	Linker.link(gtk_flow_box_set_min_children_per_line, "gtk_flow_box_set_min_children_per_line", LIBRARY_GTK);
1445 	Linker.link(gtk_flow_box_set_row_spacing, "gtk_flow_box_set_row_spacing", LIBRARY_GTK);
1446 	Linker.link(gtk_flow_box_set_selection_mode, "gtk_flow_box_set_selection_mode", LIBRARY_GTK);
1447 	Linker.link(gtk_flow_box_set_sort_func, "gtk_flow_box_set_sort_func", LIBRARY_GTK);
1448 	Linker.link(gtk_flow_box_set_vadjustment, "gtk_flow_box_set_vadjustment", LIBRARY_GTK);
1449 	Linker.link(gtk_flow_box_unselect_all, "gtk_flow_box_unselect_all", LIBRARY_GTK);
1450 	Linker.link(gtk_flow_box_unselect_child, "gtk_flow_box_unselect_child", LIBRARY_GTK);
1451 
1452 	// gtk.FlowBoxAccessible
1453 
1454 	Linker.link(gtk_flow_box_accessible_get_type, "gtk_flow_box_accessible_get_type", LIBRARY_GTK);
1455 
1456 	// gtk.FlowBoxChild
1457 
1458 	Linker.link(gtk_flow_box_child_get_type, "gtk_flow_box_child_get_type", LIBRARY_GTK);
1459 	Linker.link(gtk_flow_box_child_new, "gtk_flow_box_child_new", LIBRARY_GTK);
1460 	Linker.link(gtk_flow_box_child_changed, "gtk_flow_box_child_changed", LIBRARY_GTK);
1461 	Linker.link(gtk_flow_box_child_get_index, "gtk_flow_box_child_get_index", LIBRARY_GTK);
1462 	Linker.link(gtk_flow_box_child_is_selected, "gtk_flow_box_child_is_selected", LIBRARY_GTK);
1463 
1464 	// gtk.FlowBoxChildAccessible
1465 
1466 	Linker.link(gtk_flow_box_child_accessible_get_type, "gtk_flow_box_child_accessible_get_type", LIBRARY_GTK);
1467 
1468 	// gtk.FontButton
1469 
1470 	Linker.link(gtk_font_button_get_type, "gtk_font_button_get_type", LIBRARY_GTK);
1471 	Linker.link(gtk_font_button_new, "gtk_font_button_new", LIBRARY_GTK);
1472 	Linker.link(gtk_font_button_new_with_font, "gtk_font_button_new_with_font", LIBRARY_GTK);
1473 	Linker.link(gtk_font_button_get_font_name, "gtk_font_button_get_font_name", LIBRARY_GTK);
1474 	Linker.link(gtk_font_button_get_show_size, "gtk_font_button_get_show_size", LIBRARY_GTK);
1475 	Linker.link(gtk_font_button_get_show_style, "gtk_font_button_get_show_style", LIBRARY_GTK);
1476 	Linker.link(gtk_font_button_get_title, "gtk_font_button_get_title", LIBRARY_GTK);
1477 	Linker.link(gtk_font_button_get_use_font, "gtk_font_button_get_use_font", LIBRARY_GTK);
1478 	Linker.link(gtk_font_button_get_use_size, "gtk_font_button_get_use_size", LIBRARY_GTK);
1479 	Linker.link(gtk_font_button_set_font_name, "gtk_font_button_set_font_name", LIBRARY_GTK);
1480 	Linker.link(gtk_font_button_set_show_size, "gtk_font_button_set_show_size", LIBRARY_GTK);
1481 	Linker.link(gtk_font_button_set_show_style, "gtk_font_button_set_show_style", LIBRARY_GTK);
1482 	Linker.link(gtk_font_button_set_title, "gtk_font_button_set_title", LIBRARY_GTK);
1483 	Linker.link(gtk_font_button_set_use_font, "gtk_font_button_set_use_font", LIBRARY_GTK);
1484 	Linker.link(gtk_font_button_set_use_size, "gtk_font_button_set_use_size", LIBRARY_GTK);
1485 
1486 	// gtk.FontChooser
1487 
1488 	Linker.link(gtk_font_chooser_get_type, "gtk_font_chooser_get_type", LIBRARY_GTK);
1489 	Linker.link(gtk_font_chooser_get_font, "gtk_font_chooser_get_font", LIBRARY_GTK);
1490 	Linker.link(gtk_font_chooser_get_font_desc, "gtk_font_chooser_get_font_desc", LIBRARY_GTK);
1491 	Linker.link(gtk_font_chooser_get_font_face, "gtk_font_chooser_get_font_face", LIBRARY_GTK);
1492 	Linker.link(gtk_font_chooser_get_font_family, "gtk_font_chooser_get_font_family", LIBRARY_GTK);
1493 	Linker.link(gtk_font_chooser_get_font_features, "gtk_font_chooser_get_font_features", LIBRARY_GTK);
1494 	Linker.link(gtk_font_chooser_get_font_map, "gtk_font_chooser_get_font_map", LIBRARY_GTK);
1495 	Linker.link(gtk_font_chooser_get_font_size, "gtk_font_chooser_get_font_size", LIBRARY_GTK);
1496 	Linker.link(gtk_font_chooser_get_language, "gtk_font_chooser_get_language", LIBRARY_GTK);
1497 	Linker.link(gtk_font_chooser_get_level, "gtk_font_chooser_get_level", LIBRARY_GTK);
1498 	Linker.link(gtk_font_chooser_get_preview_text, "gtk_font_chooser_get_preview_text", LIBRARY_GTK);
1499 	Linker.link(gtk_font_chooser_get_show_preview_entry, "gtk_font_chooser_get_show_preview_entry", LIBRARY_GTK);
1500 	Linker.link(gtk_font_chooser_set_filter_func, "gtk_font_chooser_set_filter_func", LIBRARY_GTK);
1501 	Linker.link(gtk_font_chooser_set_font, "gtk_font_chooser_set_font", LIBRARY_GTK);
1502 	Linker.link(gtk_font_chooser_set_font_desc, "gtk_font_chooser_set_font_desc", LIBRARY_GTK);
1503 	Linker.link(gtk_font_chooser_set_font_map, "gtk_font_chooser_set_font_map", LIBRARY_GTK);
1504 	Linker.link(gtk_font_chooser_set_language, "gtk_font_chooser_set_language", LIBRARY_GTK);
1505 	Linker.link(gtk_font_chooser_set_level, "gtk_font_chooser_set_level", LIBRARY_GTK);
1506 	Linker.link(gtk_font_chooser_set_preview_text, "gtk_font_chooser_set_preview_text", LIBRARY_GTK);
1507 	Linker.link(gtk_font_chooser_set_show_preview_entry, "gtk_font_chooser_set_show_preview_entry", LIBRARY_GTK);
1508 
1509 	// gtk.FontChooserDialog
1510 
1511 	Linker.link(gtk_font_chooser_dialog_get_type, "gtk_font_chooser_dialog_get_type", LIBRARY_GTK);
1512 	Linker.link(gtk_font_chooser_dialog_new, "gtk_font_chooser_dialog_new", LIBRARY_GTK);
1513 
1514 	// gtk.FontChooserWidget
1515 
1516 	Linker.link(gtk_font_chooser_widget_get_type, "gtk_font_chooser_widget_get_type", LIBRARY_GTK);
1517 	Linker.link(gtk_font_chooser_widget_new, "gtk_font_chooser_widget_new", LIBRARY_GTK);
1518 
1519 	// gtk.FontSelection
1520 
1521 	Linker.link(gtk_font_selection_get_type, "gtk_font_selection_get_type", LIBRARY_GTK);
1522 	Linker.link(gtk_font_selection_new, "gtk_font_selection_new", LIBRARY_GTK);
1523 	Linker.link(gtk_font_selection_get_face, "gtk_font_selection_get_face", LIBRARY_GTK);
1524 	Linker.link(gtk_font_selection_get_face_list, "gtk_font_selection_get_face_list", LIBRARY_GTK);
1525 	Linker.link(gtk_font_selection_get_family, "gtk_font_selection_get_family", LIBRARY_GTK);
1526 	Linker.link(gtk_font_selection_get_family_list, "gtk_font_selection_get_family_list", LIBRARY_GTK);
1527 	Linker.link(gtk_font_selection_get_font_name, "gtk_font_selection_get_font_name", LIBRARY_GTK);
1528 	Linker.link(gtk_font_selection_get_preview_entry, "gtk_font_selection_get_preview_entry", LIBRARY_GTK);
1529 	Linker.link(gtk_font_selection_get_preview_text, "gtk_font_selection_get_preview_text", LIBRARY_GTK);
1530 	Linker.link(gtk_font_selection_get_size, "gtk_font_selection_get_size", LIBRARY_GTK);
1531 	Linker.link(gtk_font_selection_get_size_entry, "gtk_font_selection_get_size_entry", LIBRARY_GTK);
1532 	Linker.link(gtk_font_selection_get_size_list, "gtk_font_selection_get_size_list", LIBRARY_GTK);
1533 	Linker.link(gtk_font_selection_set_font_name, "gtk_font_selection_set_font_name", LIBRARY_GTK);
1534 	Linker.link(gtk_font_selection_set_preview_text, "gtk_font_selection_set_preview_text", LIBRARY_GTK);
1535 
1536 	// gtk.FontSelectionDialog
1537 
1538 	Linker.link(gtk_font_selection_dialog_get_type, "gtk_font_selection_dialog_get_type", LIBRARY_GTK);
1539 	Linker.link(gtk_font_selection_dialog_new, "gtk_font_selection_dialog_new", LIBRARY_GTK);
1540 	Linker.link(gtk_font_selection_dialog_get_cancel_button, "gtk_font_selection_dialog_get_cancel_button", LIBRARY_GTK);
1541 	Linker.link(gtk_font_selection_dialog_get_font_name, "gtk_font_selection_dialog_get_font_name", LIBRARY_GTK);
1542 	Linker.link(gtk_font_selection_dialog_get_font_selection, "gtk_font_selection_dialog_get_font_selection", LIBRARY_GTK);
1543 	Linker.link(gtk_font_selection_dialog_get_ok_button, "gtk_font_selection_dialog_get_ok_button", LIBRARY_GTK);
1544 	Linker.link(gtk_font_selection_dialog_get_preview_text, "gtk_font_selection_dialog_get_preview_text", LIBRARY_GTK);
1545 	Linker.link(gtk_font_selection_dialog_set_font_name, "gtk_font_selection_dialog_set_font_name", LIBRARY_GTK);
1546 	Linker.link(gtk_font_selection_dialog_set_preview_text, "gtk_font_selection_dialog_set_preview_text", LIBRARY_GTK);
1547 
1548 	// gtk.Frame
1549 
1550 	Linker.link(gtk_frame_get_type, "gtk_frame_get_type", LIBRARY_GTK);
1551 	Linker.link(gtk_frame_new, "gtk_frame_new", LIBRARY_GTK);
1552 	Linker.link(gtk_frame_get_label, "gtk_frame_get_label", LIBRARY_GTK);
1553 	Linker.link(gtk_frame_get_label_align, "gtk_frame_get_label_align", LIBRARY_GTK);
1554 	Linker.link(gtk_frame_get_label_widget, "gtk_frame_get_label_widget", LIBRARY_GTK);
1555 	Linker.link(gtk_frame_get_shadow_type, "gtk_frame_get_shadow_type", LIBRARY_GTK);
1556 	Linker.link(gtk_frame_set_label, "gtk_frame_set_label", LIBRARY_GTK);
1557 	Linker.link(gtk_frame_set_label_align, "gtk_frame_set_label_align", LIBRARY_GTK);
1558 	Linker.link(gtk_frame_set_label_widget, "gtk_frame_set_label_widget", LIBRARY_GTK);
1559 	Linker.link(gtk_frame_set_shadow_type, "gtk_frame_set_shadow_type", LIBRARY_GTK);
1560 
1561 	// gtk.FrameAccessible
1562 
1563 	Linker.link(gtk_frame_accessible_get_type, "gtk_frame_accessible_get_type", LIBRARY_GTK);
1564 
1565 	// gtk.GLArea
1566 
1567 	Linker.link(gtk_gl_area_get_type, "gtk_gl_area_get_type", LIBRARY_GTK);
1568 	Linker.link(gtk_gl_area_new, "gtk_gl_area_new", LIBRARY_GTK);
1569 	Linker.link(gtk_gl_area_attach_buffers, "gtk_gl_area_attach_buffers", LIBRARY_GTK);
1570 	Linker.link(gtk_gl_area_get_auto_render, "gtk_gl_area_get_auto_render", LIBRARY_GTK);
1571 	Linker.link(gtk_gl_area_get_context, "gtk_gl_area_get_context", LIBRARY_GTK);
1572 	Linker.link(gtk_gl_area_get_error, "gtk_gl_area_get_error", LIBRARY_GTK);
1573 	Linker.link(gtk_gl_area_get_has_alpha, "gtk_gl_area_get_has_alpha", LIBRARY_GTK);
1574 	Linker.link(gtk_gl_area_get_has_depth_buffer, "gtk_gl_area_get_has_depth_buffer", LIBRARY_GTK);
1575 	Linker.link(gtk_gl_area_get_has_stencil_buffer, "gtk_gl_area_get_has_stencil_buffer", LIBRARY_GTK);
1576 	Linker.link(gtk_gl_area_get_required_version, "gtk_gl_area_get_required_version", LIBRARY_GTK);
1577 	Linker.link(gtk_gl_area_get_use_es, "gtk_gl_area_get_use_es", LIBRARY_GTK);
1578 	Linker.link(gtk_gl_area_make_current, "gtk_gl_area_make_current", LIBRARY_GTK);
1579 	Linker.link(gtk_gl_area_queue_render, "gtk_gl_area_queue_render", LIBRARY_GTK);
1580 	Linker.link(gtk_gl_area_set_auto_render, "gtk_gl_area_set_auto_render", LIBRARY_GTK);
1581 	Linker.link(gtk_gl_area_set_error, "gtk_gl_area_set_error", LIBRARY_GTK);
1582 	Linker.link(gtk_gl_area_set_has_alpha, "gtk_gl_area_set_has_alpha", LIBRARY_GTK);
1583 	Linker.link(gtk_gl_area_set_has_depth_buffer, "gtk_gl_area_set_has_depth_buffer", LIBRARY_GTK);
1584 	Linker.link(gtk_gl_area_set_has_stencil_buffer, "gtk_gl_area_set_has_stencil_buffer", LIBRARY_GTK);
1585 	Linker.link(gtk_gl_area_set_required_version, "gtk_gl_area_set_required_version", LIBRARY_GTK);
1586 	Linker.link(gtk_gl_area_set_use_es, "gtk_gl_area_set_use_es", LIBRARY_GTK);
1587 
1588 	// gtk.Gesture
1589 
1590 	Linker.link(gtk_gesture_get_type, "gtk_gesture_get_type", LIBRARY_GTK);
1591 	Linker.link(gtk_gesture_get_bounding_box, "gtk_gesture_get_bounding_box", LIBRARY_GTK);
1592 	Linker.link(gtk_gesture_get_bounding_box_center, "gtk_gesture_get_bounding_box_center", LIBRARY_GTK);
1593 	Linker.link(gtk_gesture_get_device, "gtk_gesture_get_device", LIBRARY_GTK);
1594 	Linker.link(gtk_gesture_get_group, "gtk_gesture_get_group", LIBRARY_GTK);
1595 	Linker.link(gtk_gesture_get_last_event, "gtk_gesture_get_last_event", LIBRARY_GTK);
1596 	Linker.link(gtk_gesture_get_last_updated_sequence, "gtk_gesture_get_last_updated_sequence", LIBRARY_GTK);
1597 	Linker.link(gtk_gesture_get_point, "gtk_gesture_get_point", LIBRARY_GTK);
1598 	Linker.link(gtk_gesture_get_sequence_state, "gtk_gesture_get_sequence_state", LIBRARY_GTK);
1599 	Linker.link(gtk_gesture_get_sequences, "gtk_gesture_get_sequences", LIBRARY_GTK);
1600 	Linker.link(gtk_gesture_get_window, "gtk_gesture_get_window", LIBRARY_GTK);
1601 	Linker.link(gtk_gesture_group, "gtk_gesture_group", LIBRARY_GTK);
1602 	Linker.link(gtk_gesture_handles_sequence, "gtk_gesture_handles_sequence", LIBRARY_GTK);
1603 	Linker.link(gtk_gesture_is_active, "gtk_gesture_is_active", LIBRARY_GTK);
1604 	Linker.link(gtk_gesture_is_grouped_with, "gtk_gesture_is_grouped_with", LIBRARY_GTK);
1605 	Linker.link(gtk_gesture_is_recognized, "gtk_gesture_is_recognized", LIBRARY_GTK);
1606 	Linker.link(gtk_gesture_set_sequence_state, "gtk_gesture_set_sequence_state", LIBRARY_GTK);
1607 	Linker.link(gtk_gesture_set_state, "gtk_gesture_set_state", LIBRARY_GTK);
1608 	Linker.link(gtk_gesture_set_window, "gtk_gesture_set_window", LIBRARY_GTK);
1609 	Linker.link(gtk_gesture_ungroup, "gtk_gesture_ungroup", LIBRARY_GTK);
1610 
1611 	// gtk.GestureDrag
1612 
1613 	Linker.link(gtk_gesture_drag_get_type, "gtk_gesture_drag_get_type", LIBRARY_GTK);
1614 	Linker.link(gtk_gesture_drag_new, "gtk_gesture_drag_new", LIBRARY_GTK);
1615 	Linker.link(gtk_gesture_drag_get_offset, "gtk_gesture_drag_get_offset", LIBRARY_GTK);
1616 	Linker.link(gtk_gesture_drag_get_start_point, "gtk_gesture_drag_get_start_point", LIBRARY_GTK);
1617 
1618 	// gtk.GestureLongPress
1619 
1620 	Linker.link(gtk_gesture_long_press_get_type, "gtk_gesture_long_press_get_type", LIBRARY_GTK);
1621 	Linker.link(gtk_gesture_long_press_new, "gtk_gesture_long_press_new", LIBRARY_GTK);
1622 
1623 	// gtk.GestureMultiPress
1624 
1625 	Linker.link(gtk_gesture_multi_press_get_type, "gtk_gesture_multi_press_get_type", LIBRARY_GTK);
1626 	Linker.link(gtk_gesture_multi_press_new, "gtk_gesture_multi_press_new", LIBRARY_GTK);
1627 	Linker.link(gtk_gesture_multi_press_get_area, "gtk_gesture_multi_press_get_area", LIBRARY_GTK);
1628 	Linker.link(gtk_gesture_multi_press_set_area, "gtk_gesture_multi_press_set_area", LIBRARY_GTK);
1629 
1630 	// gtk.GesturePan
1631 
1632 	Linker.link(gtk_gesture_pan_get_type, "gtk_gesture_pan_get_type", LIBRARY_GTK);
1633 	Linker.link(gtk_gesture_pan_new, "gtk_gesture_pan_new", LIBRARY_GTK);
1634 	Linker.link(gtk_gesture_pan_get_orientation, "gtk_gesture_pan_get_orientation", LIBRARY_GTK);
1635 	Linker.link(gtk_gesture_pan_set_orientation, "gtk_gesture_pan_set_orientation", LIBRARY_GTK);
1636 
1637 	// gtk.GestureRotate
1638 
1639 	Linker.link(gtk_gesture_rotate_get_type, "gtk_gesture_rotate_get_type", LIBRARY_GTK);
1640 	Linker.link(gtk_gesture_rotate_new, "gtk_gesture_rotate_new", LIBRARY_GTK);
1641 	Linker.link(gtk_gesture_rotate_get_angle_delta, "gtk_gesture_rotate_get_angle_delta", LIBRARY_GTK);
1642 
1643 	// gtk.GestureSingle
1644 
1645 	Linker.link(gtk_gesture_single_get_type, "gtk_gesture_single_get_type", LIBRARY_GTK);
1646 	Linker.link(gtk_gesture_single_get_button, "gtk_gesture_single_get_button", LIBRARY_GTK);
1647 	Linker.link(gtk_gesture_single_get_current_button, "gtk_gesture_single_get_current_button", LIBRARY_GTK);
1648 	Linker.link(gtk_gesture_single_get_current_sequence, "gtk_gesture_single_get_current_sequence", LIBRARY_GTK);
1649 	Linker.link(gtk_gesture_single_get_exclusive, "gtk_gesture_single_get_exclusive", LIBRARY_GTK);
1650 	Linker.link(gtk_gesture_single_get_touch_only, "gtk_gesture_single_get_touch_only", LIBRARY_GTK);
1651 	Linker.link(gtk_gesture_single_set_button, "gtk_gesture_single_set_button", LIBRARY_GTK);
1652 	Linker.link(gtk_gesture_single_set_exclusive, "gtk_gesture_single_set_exclusive", LIBRARY_GTK);
1653 	Linker.link(gtk_gesture_single_set_touch_only, "gtk_gesture_single_set_touch_only", LIBRARY_GTK);
1654 
1655 	// gtk.GestureStylus
1656 
1657 	Linker.link(gtk_gesture_stylus_get_type, "gtk_gesture_stylus_get_type", LIBRARY_GTK);
1658 	Linker.link(gtk_gesture_stylus_new, "gtk_gesture_stylus_new", LIBRARY_GTK);
1659 	Linker.link(gtk_gesture_stylus_get_axes, "gtk_gesture_stylus_get_axes", LIBRARY_GTK);
1660 	Linker.link(gtk_gesture_stylus_get_axis, "gtk_gesture_stylus_get_axis", LIBRARY_GTK);
1661 	Linker.link(gtk_gesture_stylus_get_device_tool, "gtk_gesture_stylus_get_device_tool", LIBRARY_GTK);
1662 
1663 	// gtk.GestureSwipe
1664 
1665 	Linker.link(gtk_gesture_swipe_get_type, "gtk_gesture_swipe_get_type", LIBRARY_GTK);
1666 	Linker.link(gtk_gesture_swipe_new, "gtk_gesture_swipe_new", LIBRARY_GTK);
1667 	Linker.link(gtk_gesture_swipe_get_velocity, "gtk_gesture_swipe_get_velocity", LIBRARY_GTK);
1668 
1669 	// gtk.GestureZoom
1670 
1671 	Linker.link(gtk_gesture_zoom_get_type, "gtk_gesture_zoom_get_type", LIBRARY_GTK);
1672 	Linker.link(gtk_gesture_zoom_new, "gtk_gesture_zoom_new", LIBRARY_GTK);
1673 	Linker.link(gtk_gesture_zoom_get_scale_delta, "gtk_gesture_zoom_get_scale_delta", LIBRARY_GTK);
1674 
1675 	// gtk.Gradient
1676 
1677 	Linker.link(gtk_gradient_get_type, "gtk_gradient_get_type", LIBRARY_GTK);
1678 	Linker.link(gtk_gradient_new_linear, "gtk_gradient_new_linear", LIBRARY_GTK);
1679 	Linker.link(gtk_gradient_new_radial, "gtk_gradient_new_radial", LIBRARY_GTK);
1680 	Linker.link(gtk_gradient_add_color_stop, "gtk_gradient_add_color_stop", LIBRARY_GTK);
1681 	Linker.link(gtk_gradient_ref, "gtk_gradient_ref", LIBRARY_GTK);
1682 	Linker.link(gtk_gradient_resolve, "gtk_gradient_resolve", LIBRARY_GTK);
1683 	Linker.link(gtk_gradient_resolve_for_context, "gtk_gradient_resolve_for_context", LIBRARY_GTK);
1684 	Linker.link(gtk_gradient_to_string, "gtk_gradient_to_string", LIBRARY_GTK);
1685 	Linker.link(gtk_gradient_unref, "gtk_gradient_unref", LIBRARY_GTK);
1686 
1687 	// gtk.Grid
1688 
1689 	Linker.link(gtk_grid_get_type, "gtk_grid_get_type", LIBRARY_GTK);
1690 	Linker.link(gtk_grid_new, "gtk_grid_new", LIBRARY_GTK);
1691 	Linker.link(gtk_grid_attach, "gtk_grid_attach", LIBRARY_GTK);
1692 	Linker.link(gtk_grid_attach_next_to, "gtk_grid_attach_next_to", LIBRARY_GTK);
1693 	Linker.link(gtk_grid_get_baseline_row, "gtk_grid_get_baseline_row", LIBRARY_GTK);
1694 	Linker.link(gtk_grid_get_child_at, "gtk_grid_get_child_at", LIBRARY_GTK);
1695 	Linker.link(gtk_grid_get_column_homogeneous, "gtk_grid_get_column_homogeneous", LIBRARY_GTK);
1696 	Linker.link(gtk_grid_get_column_spacing, "gtk_grid_get_column_spacing", LIBRARY_GTK);
1697 	Linker.link(gtk_grid_get_row_baseline_position, "gtk_grid_get_row_baseline_position", LIBRARY_GTK);
1698 	Linker.link(gtk_grid_get_row_homogeneous, "gtk_grid_get_row_homogeneous", LIBRARY_GTK);
1699 	Linker.link(gtk_grid_get_row_spacing, "gtk_grid_get_row_spacing", LIBRARY_GTK);
1700 	Linker.link(gtk_grid_insert_column, "gtk_grid_insert_column", LIBRARY_GTK);
1701 	Linker.link(gtk_grid_insert_next_to, "gtk_grid_insert_next_to", LIBRARY_GTK);
1702 	Linker.link(gtk_grid_insert_row, "gtk_grid_insert_row", LIBRARY_GTK);
1703 	Linker.link(gtk_grid_remove_column, "gtk_grid_remove_column", LIBRARY_GTK);
1704 	Linker.link(gtk_grid_remove_row, "gtk_grid_remove_row", LIBRARY_GTK);
1705 	Linker.link(gtk_grid_set_baseline_row, "gtk_grid_set_baseline_row", LIBRARY_GTK);
1706 	Linker.link(gtk_grid_set_column_homogeneous, "gtk_grid_set_column_homogeneous", LIBRARY_GTK);
1707 	Linker.link(gtk_grid_set_column_spacing, "gtk_grid_set_column_spacing", LIBRARY_GTK);
1708 	Linker.link(gtk_grid_set_row_baseline_position, "gtk_grid_set_row_baseline_position", LIBRARY_GTK);
1709 	Linker.link(gtk_grid_set_row_homogeneous, "gtk_grid_set_row_homogeneous", LIBRARY_GTK);
1710 	Linker.link(gtk_grid_set_row_spacing, "gtk_grid_set_row_spacing", LIBRARY_GTK);
1711 
1712 	// gtk.HBox
1713 
1714 	Linker.link(gtk_hbox_get_type, "gtk_hbox_get_type", LIBRARY_GTK);
1715 	Linker.link(gtk_hbox_new, "gtk_hbox_new", LIBRARY_GTK);
1716 
1717 	// gtk.HButtonBox
1718 
1719 	Linker.link(gtk_hbutton_box_get_type, "gtk_hbutton_box_get_type", LIBRARY_GTK);
1720 	Linker.link(gtk_hbutton_box_new, "gtk_hbutton_box_new", LIBRARY_GTK);
1721 
1722 	// gtk.HPaned
1723 
1724 	Linker.link(gtk_hpaned_get_type, "gtk_hpaned_get_type", LIBRARY_GTK);
1725 	Linker.link(gtk_hpaned_new, "gtk_hpaned_new", LIBRARY_GTK);
1726 
1727 	// gtk.HSV
1728 
1729 	Linker.link(gtk_hsv_get_type, "gtk_hsv_get_type", LIBRARY_GTK);
1730 	Linker.link(gtk_hsv_new, "gtk_hsv_new", LIBRARY_GTK);
1731 	Linker.link(gtk_hsv_to_rgb, "gtk_hsv_to_rgb", LIBRARY_GTK);
1732 	Linker.link(gtk_hsv_get_color, "gtk_hsv_get_color", LIBRARY_GTK);
1733 	Linker.link(gtk_hsv_get_metrics, "gtk_hsv_get_metrics", LIBRARY_GTK);
1734 	Linker.link(gtk_hsv_is_adjusting, "gtk_hsv_is_adjusting", LIBRARY_GTK);
1735 	Linker.link(gtk_hsv_set_color, "gtk_hsv_set_color", LIBRARY_GTK);
1736 	Linker.link(gtk_hsv_set_metrics, "gtk_hsv_set_metrics", LIBRARY_GTK);
1737 	Linker.link(gtk_rgb_to_hsv, "gtk_rgb_to_hsv", LIBRARY_GTK);
1738 
1739 	// gtk.HScale
1740 
1741 	Linker.link(gtk_hscale_get_type, "gtk_hscale_get_type", LIBRARY_GTK);
1742 	Linker.link(gtk_hscale_new, "gtk_hscale_new", LIBRARY_GTK);
1743 	Linker.link(gtk_hscale_new_with_range, "gtk_hscale_new_with_range", LIBRARY_GTK);
1744 
1745 	// gtk.HScrollbar
1746 
1747 	Linker.link(gtk_hscrollbar_get_type, "gtk_hscrollbar_get_type", LIBRARY_GTK);
1748 	Linker.link(gtk_hscrollbar_new, "gtk_hscrollbar_new", LIBRARY_GTK);
1749 
1750 	// gtk.HSeparator
1751 
1752 	Linker.link(gtk_hseparator_get_type, "gtk_hseparator_get_type", LIBRARY_GTK);
1753 	Linker.link(gtk_hseparator_new, "gtk_hseparator_new", LIBRARY_GTK);
1754 
1755 	// gtk.HandleBox
1756 
1757 	Linker.link(gtk_handle_box_get_type, "gtk_handle_box_get_type", LIBRARY_GTK);
1758 	Linker.link(gtk_handle_box_new, "gtk_handle_box_new", LIBRARY_GTK);
1759 	Linker.link(gtk_handle_box_get_child_detached, "gtk_handle_box_get_child_detached", LIBRARY_GTK);
1760 	Linker.link(gtk_handle_box_get_handle_position, "gtk_handle_box_get_handle_position", LIBRARY_GTK);
1761 	Linker.link(gtk_handle_box_get_shadow_type, "gtk_handle_box_get_shadow_type", LIBRARY_GTK);
1762 	Linker.link(gtk_handle_box_get_snap_edge, "gtk_handle_box_get_snap_edge", LIBRARY_GTK);
1763 	Linker.link(gtk_handle_box_set_handle_position, "gtk_handle_box_set_handle_position", LIBRARY_GTK);
1764 	Linker.link(gtk_handle_box_set_shadow_type, "gtk_handle_box_set_shadow_type", LIBRARY_GTK);
1765 	Linker.link(gtk_handle_box_set_snap_edge, "gtk_handle_box_set_snap_edge", LIBRARY_GTK);
1766 
1767 	// gtk.HeaderBar
1768 
1769 	Linker.link(gtk_header_bar_get_type, "gtk_header_bar_get_type", LIBRARY_GTK);
1770 	Linker.link(gtk_header_bar_new, "gtk_header_bar_new", LIBRARY_GTK);
1771 	Linker.link(gtk_header_bar_get_custom_title, "gtk_header_bar_get_custom_title", LIBRARY_GTK);
1772 	Linker.link(gtk_header_bar_get_decoration_layout, "gtk_header_bar_get_decoration_layout", LIBRARY_GTK);
1773 	Linker.link(gtk_header_bar_get_has_subtitle, "gtk_header_bar_get_has_subtitle", LIBRARY_GTK);
1774 	Linker.link(gtk_header_bar_get_show_close_button, "gtk_header_bar_get_show_close_button", LIBRARY_GTK);
1775 	Linker.link(gtk_header_bar_get_subtitle, "gtk_header_bar_get_subtitle", LIBRARY_GTK);
1776 	Linker.link(gtk_header_bar_get_title, "gtk_header_bar_get_title", LIBRARY_GTK);
1777 	Linker.link(gtk_header_bar_pack_end, "gtk_header_bar_pack_end", LIBRARY_GTK);
1778 	Linker.link(gtk_header_bar_pack_start, "gtk_header_bar_pack_start", LIBRARY_GTK);
1779 	Linker.link(gtk_header_bar_set_custom_title, "gtk_header_bar_set_custom_title", LIBRARY_GTK);
1780 	Linker.link(gtk_header_bar_set_decoration_layout, "gtk_header_bar_set_decoration_layout", LIBRARY_GTK);
1781 	Linker.link(gtk_header_bar_set_has_subtitle, "gtk_header_bar_set_has_subtitle", LIBRARY_GTK);
1782 	Linker.link(gtk_header_bar_set_show_close_button, "gtk_header_bar_set_show_close_button", LIBRARY_GTK);
1783 	Linker.link(gtk_header_bar_set_subtitle, "gtk_header_bar_set_subtitle", LIBRARY_GTK);
1784 	Linker.link(gtk_header_bar_set_title, "gtk_header_bar_set_title", LIBRARY_GTK);
1785 
1786 	// gtk.IMContext
1787 
1788 	Linker.link(gtk_im_context_get_type, "gtk_im_context_get_type", LIBRARY_GTK);
1789 	Linker.link(gtk_im_context_delete_surrounding, "gtk_im_context_delete_surrounding", LIBRARY_GTK);
1790 	Linker.link(gtk_im_context_filter_keypress, "gtk_im_context_filter_keypress", LIBRARY_GTK);
1791 	Linker.link(gtk_im_context_focus_in, "gtk_im_context_focus_in", LIBRARY_GTK);
1792 	Linker.link(gtk_im_context_focus_out, "gtk_im_context_focus_out", LIBRARY_GTK);
1793 	Linker.link(gtk_im_context_get_preedit_string, "gtk_im_context_get_preedit_string", LIBRARY_GTK);
1794 	Linker.link(gtk_im_context_get_surrounding, "gtk_im_context_get_surrounding", LIBRARY_GTK);
1795 	Linker.link(gtk_im_context_reset, "gtk_im_context_reset", LIBRARY_GTK);
1796 	Linker.link(gtk_im_context_set_client_window, "gtk_im_context_set_client_window", LIBRARY_GTK);
1797 	Linker.link(gtk_im_context_set_cursor_location, "gtk_im_context_set_cursor_location", LIBRARY_GTK);
1798 	Linker.link(gtk_im_context_set_surrounding, "gtk_im_context_set_surrounding", LIBRARY_GTK);
1799 	Linker.link(gtk_im_context_set_use_preedit, "gtk_im_context_set_use_preedit", LIBRARY_GTK);
1800 
1801 	// gtk.IMContextSimple
1802 
1803 	Linker.link(gtk_im_context_simple_get_type, "gtk_im_context_simple_get_type", LIBRARY_GTK);
1804 	Linker.link(gtk_im_context_simple_new, "gtk_im_context_simple_new", LIBRARY_GTK);
1805 	Linker.link(gtk_im_context_simple_add_compose_file, "gtk_im_context_simple_add_compose_file", LIBRARY_GTK);
1806 	Linker.link(gtk_im_context_simple_add_table, "gtk_im_context_simple_add_table", LIBRARY_GTK);
1807 
1808 	// gtk.IMMulticontext
1809 
1810 	Linker.link(gtk_im_multicontext_get_type, "gtk_im_multicontext_get_type", LIBRARY_GTK);
1811 	Linker.link(gtk_im_multicontext_new, "gtk_im_multicontext_new", LIBRARY_GTK);
1812 	Linker.link(gtk_im_multicontext_append_menuitems, "gtk_im_multicontext_append_menuitems", LIBRARY_GTK);
1813 	Linker.link(gtk_im_multicontext_get_context_id, "gtk_im_multicontext_get_context_id", LIBRARY_GTK);
1814 	Linker.link(gtk_im_multicontext_set_context_id, "gtk_im_multicontext_set_context_id", LIBRARY_GTK);
1815 
1816 	// gtk.IconFactory
1817 
1818 	Linker.link(gtk_icon_factory_get_type, "gtk_icon_factory_get_type", LIBRARY_GTK);
1819 	Linker.link(gtk_icon_factory_new, "gtk_icon_factory_new", LIBRARY_GTK);
1820 	Linker.link(gtk_icon_factory_lookup_default, "gtk_icon_factory_lookup_default", LIBRARY_GTK);
1821 	Linker.link(gtk_icon_factory_add, "gtk_icon_factory_add", LIBRARY_GTK);
1822 	Linker.link(gtk_icon_factory_add_default, "gtk_icon_factory_add_default", LIBRARY_GTK);
1823 	Linker.link(gtk_icon_factory_lookup, "gtk_icon_factory_lookup", LIBRARY_GTK);
1824 	Linker.link(gtk_icon_factory_remove_default, "gtk_icon_factory_remove_default", LIBRARY_GTK);
1825 
1826 	// gtk.IconInfo
1827 
1828 	Linker.link(gtk_icon_info_get_type, "gtk_icon_info_get_type", LIBRARY_GTK);
1829 	Linker.link(gtk_icon_info_new_for_pixbuf, "gtk_icon_info_new_for_pixbuf", LIBRARY_GTK);
1830 	Linker.link(gtk_icon_info_copy, "gtk_icon_info_copy", LIBRARY_GTK);
1831 	Linker.link(gtk_icon_info_free, "gtk_icon_info_free", LIBRARY_GTK);
1832 	Linker.link(gtk_icon_info_get_attach_points, "gtk_icon_info_get_attach_points", LIBRARY_GTK);
1833 	Linker.link(gtk_icon_info_get_base_scale, "gtk_icon_info_get_base_scale", LIBRARY_GTK);
1834 	Linker.link(gtk_icon_info_get_base_size, "gtk_icon_info_get_base_size", LIBRARY_GTK);
1835 	Linker.link(gtk_icon_info_get_builtin_pixbuf, "gtk_icon_info_get_builtin_pixbuf", LIBRARY_GTK);
1836 	Linker.link(gtk_icon_info_get_display_name, "gtk_icon_info_get_display_name", LIBRARY_GTK);
1837 	Linker.link(gtk_icon_info_get_embedded_rect, "gtk_icon_info_get_embedded_rect", LIBRARY_GTK);
1838 	Linker.link(gtk_icon_info_get_filename, "gtk_icon_info_get_filename", LIBRARY_GTK);
1839 	Linker.link(gtk_icon_info_is_symbolic, "gtk_icon_info_is_symbolic", LIBRARY_GTK);
1840 	Linker.link(gtk_icon_info_load_icon, "gtk_icon_info_load_icon", LIBRARY_GTK);
1841 	Linker.link(gtk_icon_info_load_icon_async, "gtk_icon_info_load_icon_async", LIBRARY_GTK);
1842 	Linker.link(gtk_icon_info_load_icon_finish, "gtk_icon_info_load_icon_finish", LIBRARY_GTK);
1843 	Linker.link(gtk_icon_info_load_surface, "gtk_icon_info_load_surface", LIBRARY_GTK);
1844 	Linker.link(gtk_icon_info_load_symbolic, "gtk_icon_info_load_symbolic", LIBRARY_GTK);
1845 	Linker.link(gtk_icon_info_load_symbolic_async, "gtk_icon_info_load_symbolic_async", LIBRARY_GTK);
1846 	Linker.link(gtk_icon_info_load_symbolic_finish, "gtk_icon_info_load_symbolic_finish", LIBRARY_GTK);
1847 	Linker.link(gtk_icon_info_load_symbolic_for_context, "gtk_icon_info_load_symbolic_for_context", LIBRARY_GTK);
1848 	Linker.link(gtk_icon_info_load_symbolic_for_context_async, "gtk_icon_info_load_symbolic_for_context_async", LIBRARY_GTK);
1849 	Linker.link(gtk_icon_info_load_symbolic_for_context_finish, "gtk_icon_info_load_symbolic_for_context_finish", LIBRARY_GTK);
1850 	Linker.link(gtk_icon_info_load_symbolic_for_style, "gtk_icon_info_load_symbolic_for_style", LIBRARY_GTK);
1851 	Linker.link(gtk_icon_info_set_raw_coordinates, "gtk_icon_info_set_raw_coordinates", LIBRARY_GTK);
1852 
1853 	// gtk.IconSet
1854 
1855 	Linker.link(gtk_icon_set_get_type, "gtk_icon_set_get_type", LIBRARY_GTK);
1856 	Linker.link(gtk_icon_set_new, "gtk_icon_set_new", LIBRARY_GTK);
1857 	Linker.link(gtk_icon_set_new_from_pixbuf, "gtk_icon_set_new_from_pixbuf", LIBRARY_GTK);
1858 	Linker.link(gtk_icon_set_add_source, "gtk_icon_set_add_source", LIBRARY_GTK);
1859 	Linker.link(gtk_icon_set_copy, "gtk_icon_set_copy", LIBRARY_GTK);
1860 	Linker.link(gtk_icon_set_get_sizes, "gtk_icon_set_get_sizes", LIBRARY_GTK);
1861 	Linker.link(gtk_icon_set_ref, "gtk_icon_set_ref", LIBRARY_GTK);
1862 	Linker.link(gtk_icon_set_render_icon, "gtk_icon_set_render_icon", LIBRARY_GTK);
1863 	Linker.link(gtk_icon_set_render_icon_pixbuf, "gtk_icon_set_render_icon_pixbuf", LIBRARY_GTK);
1864 	Linker.link(gtk_icon_set_render_icon_surface, "gtk_icon_set_render_icon_surface", LIBRARY_GTK);
1865 	Linker.link(gtk_icon_set_unref, "gtk_icon_set_unref", LIBRARY_GTK);
1866 
1867 	// gtk.IconSource
1868 
1869 	Linker.link(gtk_icon_source_get_type, "gtk_icon_source_get_type", LIBRARY_GTK);
1870 	Linker.link(gtk_icon_source_new, "gtk_icon_source_new", LIBRARY_GTK);
1871 	Linker.link(gtk_icon_source_copy, "gtk_icon_source_copy", LIBRARY_GTK);
1872 	Linker.link(gtk_icon_source_free, "gtk_icon_source_free", LIBRARY_GTK);
1873 	Linker.link(gtk_icon_source_get_direction, "gtk_icon_source_get_direction", LIBRARY_GTK);
1874 	Linker.link(gtk_icon_source_get_direction_wildcarded, "gtk_icon_source_get_direction_wildcarded", LIBRARY_GTK);
1875 	Linker.link(gtk_icon_source_get_filename, "gtk_icon_source_get_filename", LIBRARY_GTK);
1876 	Linker.link(gtk_icon_source_get_icon_name, "gtk_icon_source_get_icon_name", LIBRARY_GTK);
1877 	Linker.link(gtk_icon_source_get_pixbuf, "gtk_icon_source_get_pixbuf", LIBRARY_GTK);
1878 	Linker.link(gtk_icon_source_get_size, "gtk_icon_source_get_size", LIBRARY_GTK);
1879 	Linker.link(gtk_icon_source_get_size_wildcarded, "gtk_icon_source_get_size_wildcarded", LIBRARY_GTK);
1880 	Linker.link(gtk_icon_source_get_state, "gtk_icon_source_get_state", LIBRARY_GTK);
1881 	Linker.link(gtk_icon_source_get_state_wildcarded, "gtk_icon_source_get_state_wildcarded", LIBRARY_GTK);
1882 	Linker.link(gtk_icon_source_set_direction, "gtk_icon_source_set_direction", LIBRARY_GTK);
1883 	Linker.link(gtk_icon_source_set_direction_wildcarded, "gtk_icon_source_set_direction_wildcarded", LIBRARY_GTK);
1884 	Linker.link(gtk_icon_source_set_filename, "gtk_icon_source_set_filename", LIBRARY_GTK);
1885 	Linker.link(gtk_icon_source_set_icon_name, "gtk_icon_source_set_icon_name", LIBRARY_GTK);
1886 	Linker.link(gtk_icon_source_set_pixbuf, "gtk_icon_source_set_pixbuf", LIBRARY_GTK);
1887 	Linker.link(gtk_icon_source_set_size, "gtk_icon_source_set_size", LIBRARY_GTK);
1888 	Linker.link(gtk_icon_source_set_size_wildcarded, "gtk_icon_source_set_size_wildcarded", LIBRARY_GTK);
1889 	Linker.link(gtk_icon_source_set_state, "gtk_icon_source_set_state", LIBRARY_GTK);
1890 	Linker.link(gtk_icon_source_set_state_wildcarded, "gtk_icon_source_set_state_wildcarded", LIBRARY_GTK);
1891 
1892 	// gtk.IconTheme
1893 
1894 	Linker.link(gtk_icon_theme_get_type, "gtk_icon_theme_get_type", LIBRARY_GTK);
1895 	Linker.link(gtk_icon_theme_new, "gtk_icon_theme_new", LIBRARY_GTK);
1896 	Linker.link(gtk_icon_theme_add_builtin_icon, "gtk_icon_theme_add_builtin_icon", LIBRARY_GTK);
1897 	Linker.link(gtk_icon_theme_get_default, "gtk_icon_theme_get_default", LIBRARY_GTK);
1898 	Linker.link(gtk_icon_theme_get_for_screen, "gtk_icon_theme_get_for_screen", LIBRARY_GTK);
1899 	Linker.link(gtk_icon_theme_add_resource_path, "gtk_icon_theme_add_resource_path", LIBRARY_GTK);
1900 	Linker.link(gtk_icon_theme_append_search_path, "gtk_icon_theme_append_search_path", LIBRARY_GTK);
1901 	Linker.link(gtk_icon_theme_choose_icon, "gtk_icon_theme_choose_icon", LIBRARY_GTK);
1902 	Linker.link(gtk_icon_theme_choose_icon_for_scale, "gtk_icon_theme_choose_icon_for_scale", LIBRARY_GTK);
1903 	Linker.link(gtk_icon_theme_get_example_icon_name, "gtk_icon_theme_get_example_icon_name", LIBRARY_GTK);
1904 	Linker.link(gtk_icon_theme_get_icon_sizes, "gtk_icon_theme_get_icon_sizes", LIBRARY_GTK);
1905 	Linker.link(gtk_icon_theme_get_search_path, "gtk_icon_theme_get_search_path", LIBRARY_GTK);
1906 	Linker.link(gtk_icon_theme_has_icon, "gtk_icon_theme_has_icon", LIBRARY_GTK);
1907 	Linker.link(gtk_icon_theme_list_contexts, "gtk_icon_theme_list_contexts", LIBRARY_GTK);
1908 	Linker.link(gtk_icon_theme_list_icons, "gtk_icon_theme_list_icons", LIBRARY_GTK);
1909 	Linker.link(gtk_icon_theme_load_icon, "gtk_icon_theme_load_icon", LIBRARY_GTK);
1910 	Linker.link(gtk_icon_theme_load_icon_for_scale, "gtk_icon_theme_load_icon_for_scale", LIBRARY_GTK);
1911 	Linker.link(gtk_icon_theme_load_surface, "gtk_icon_theme_load_surface", LIBRARY_GTK);
1912 	Linker.link(gtk_icon_theme_lookup_by_gicon, "gtk_icon_theme_lookup_by_gicon", LIBRARY_GTK);
1913 	Linker.link(gtk_icon_theme_lookup_by_gicon_for_scale, "gtk_icon_theme_lookup_by_gicon_for_scale", LIBRARY_GTK);
1914 	Linker.link(gtk_icon_theme_lookup_icon, "gtk_icon_theme_lookup_icon", LIBRARY_GTK);
1915 	Linker.link(gtk_icon_theme_lookup_icon_for_scale, "gtk_icon_theme_lookup_icon_for_scale", LIBRARY_GTK);
1916 	Linker.link(gtk_icon_theme_prepend_search_path, "gtk_icon_theme_prepend_search_path", LIBRARY_GTK);
1917 	Linker.link(gtk_icon_theme_rescan_if_needed, "gtk_icon_theme_rescan_if_needed", LIBRARY_GTK);
1918 	Linker.link(gtk_icon_theme_set_custom_theme, "gtk_icon_theme_set_custom_theme", LIBRARY_GTK);
1919 	Linker.link(gtk_icon_theme_set_screen, "gtk_icon_theme_set_screen", LIBRARY_GTK);
1920 	Linker.link(gtk_icon_theme_set_search_path, "gtk_icon_theme_set_search_path", LIBRARY_GTK);
1921 
1922 	// gtk.IconView
1923 
1924 	Linker.link(gtk_icon_view_get_type, "gtk_icon_view_get_type", LIBRARY_GTK);
1925 	Linker.link(gtk_icon_view_new, "gtk_icon_view_new", LIBRARY_GTK);
1926 	Linker.link(gtk_icon_view_new_with_area, "gtk_icon_view_new_with_area", LIBRARY_GTK);
1927 	Linker.link(gtk_icon_view_new_with_model, "gtk_icon_view_new_with_model", LIBRARY_GTK);
1928 	Linker.link(gtk_icon_view_convert_widget_to_bin_window_coords, "gtk_icon_view_convert_widget_to_bin_window_coords", LIBRARY_GTK);
1929 	Linker.link(gtk_icon_view_create_drag_icon, "gtk_icon_view_create_drag_icon", LIBRARY_GTK);
1930 	Linker.link(gtk_icon_view_enable_model_drag_dest, "gtk_icon_view_enable_model_drag_dest", LIBRARY_GTK);
1931 	Linker.link(gtk_icon_view_enable_model_drag_source, "gtk_icon_view_enable_model_drag_source", LIBRARY_GTK);
1932 	Linker.link(gtk_icon_view_get_activate_on_single_click, "gtk_icon_view_get_activate_on_single_click", LIBRARY_GTK);
1933 	Linker.link(gtk_icon_view_get_cell_rect, "gtk_icon_view_get_cell_rect", LIBRARY_GTK);
1934 	Linker.link(gtk_icon_view_get_column_spacing, "gtk_icon_view_get_column_spacing", LIBRARY_GTK);
1935 	Linker.link(gtk_icon_view_get_columns, "gtk_icon_view_get_columns", LIBRARY_GTK);
1936 	Linker.link(gtk_icon_view_get_cursor, "gtk_icon_view_get_cursor", LIBRARY_GTK);
1937 	Linker.link(gtk_icon_view_get_dest_item_at_pos, "gtk_icon_view_get_dest_item_at_pos", LIBRARY_GTK);
1938 	Linker.link(gtk_icon_view_get_drag_dest_item, "gtk_icon_view_get_drag_dest_item", LIBRARY_GTK);
1939 	Linker.link(gtk_icon_view_get_item_at_pos, "gtk_icon_view_get_item_at_pos", LIBRARY_GTK);
1940 	Linker.link(gtk_icon_view_get_item_column, "gtk_icon_view_get_item_column", LIBRARY_GTK);
1941 	Linker.link(gtk_icon_view_get_item_orientation, "gtk_icon_view_get_item_orientation", LIBRARY_GTK);
1942 	Linker.link(gtk_icon_view_get_item_padding, "gtk_icon_view_get_item_padding", LIBRARY_GTK);
1943 	Linker.link(gtk_icon_view_get_item_row, "gtk_icon_view_get_item_row", LIBRARY_GTK);
1944 	Linker.link(gtk_icon_view_get_item_width, "gtk_icon_view_get_item_width", LIBRARY_GTK);
1945 	Linker.link(gtk_icon_view_get_margin, "gtk_icon_view_get_margin", LIBRARY_GTK);
1946 	Linker.link(gtk_icon_view_get_markup_column, "gtk_icon_view_get_markup_column", LIBRARY_GTK);
1947 	Linker.link(gtk_icon_view_get_model, "gtk_icon_view_get_model", LIBRARY_GTK);
1948 	Linker.link(gtk_icon_view_get_path_at_pos, "gtk_icon_view_get_path_at_pos", LIBRARY_GTK);
1949 	Linker.link(gtk_icon_view_get_pixbuf_column, "gtk_icon_view_get_pixbuf_column", LIBRARY_GTK);
1950 	Linker.link(gtk_icon_view_get_reorderable, "gtk_icon_view_get_reorderable", LIBRARY_GTK);
1951 	Linker.link(gtk_icon_view_get_row_spacing, "gtk_icon_view_get_row_spacing", LIBRARY_GTK);
1952 	Linker.link(gtk_icon_view_get_selected_items, "gtk_icon_view_get_selected_items", LIBRARY_GTK);
1953 	Linker.link(gtk_icon_view_get_selection_mode, "gtk_icon_view_get_selection_mode", LIBRARY_GTK);
1954 	Linker.link(gtk_icon_view_get_spacing, "gtk_icon_view_get_spacing", LIBRARY_GTK);
1955 	Linker.link(gtk_icon_view_get_text_column, "gtk_icon_view_get_text_column", LIBRARY_GTK);
1956 	Linker.link(gtk_icon_view_get_tooltip_column, "gtk_icon_view_get_tooltip_column", LIBRARY_GTK);
1957 	Linker.link(gtk_icon_view_get_tooltip_context, "gtk_icon_view_get_tooltip_context", LIBRARY_GTK);
1958 	Linker.link(gtk_icon_view_get_visible_range, "gtk_icon_view_get_visible_range", LIBRARY_GTK);
1959 	Linker.link(gtk_icon_view_item_activated, "gtk_icon_view_item_activated", LIBRARY_GTK);
1960 	Linker.link(gtk_icon_view_path_is_selected, "gtk_icon_view_path_is_selected", LIBRARY_GTK);
1961 	Linker.link(gtk_icon_view_scroll_to_path, "gtk_icon_view_scroll_to_path", LIBRARY_GTK);
1962 	Linker.link(gtk_icon_view_select_all, "gtk_icon_view_select_all", LIBRARY_GTK);
1963 	Linker.link(gtk_icon_view_select_path, "gtk_icon_view_select_path", LIBRARY_GTK);
1964 	Linker.link(gtk_icon_view_selected_foreach, "gtk_icon_view_selected_foreach", LIBRARY_GTK);
1965 	Linker.link(gtk_icon_view_set_activate_on_single_click, "gtk_icon_view_set_activate_on_single_click", LIBRARY_GTK);
1966 	Linker.link(gtk_icon_view_set_column_spacing, "gtk_icon_view_set_column_spacing", LIBRARY_GTK);
1967 	Linker.link(gtk_icon_view_set_columns, "gtk_icon_view_set_columns", LIBRARY_GTK);
1968 	Linker.link(gtk_icon_view_set_cursor, "gtk_icon_view_set_cursor", LIBRARY_GTK);
1969 	Linker.link(gtk_icon_view_set_drag_dest_item, "gtk_icon_view_set_drag_dest_item", LIBRARY_GTK);
1970 	Linker.link(gtk_icon_view_set_item_orientation, "gtk_icon_view_set_item_orientation", LIBRARY_GTK);
1971 	Linker.link(gtk_icon_view_set_item_padding, "gtk_icon_view_set_item_padding", LIBRARY_GTK);
1972 	Linker.link(gtk_icon_view_set_item_width, "gtk_icon_view_set_item_width", LIBRARY_GTK);
1973 	Linker.link(gtk_icon_view_set_margin, "gtk_icon_view_set_margin", LIBRARY_GTK);
1974 	Linker.link(gtk_icon_view_set_markup_column, "gtk_icon_view_set_markup_column", LIBRARY_GTK);
1975 	Linker.link(gtk_icon_view_set_model, "gtk_icon_view_set_model", LIBRARY_GTK);
1976 	Linker.link(gtk_icon_view_set_pixbuf_column, "gtk_icon_view_set_pixbuf_column", LIBRARY_GTK);
1977 	Linker.link(gtk_icon_view_set_reorderable, "gtk_icon_view_set_reorderable", LIBRARY_GTK);
1978 	Linker.link(gtk_icon_view_set_row_spacing, "gtk_icon_view_set_row_spacing", LIBRARY_GTK);
1979 	Linker.link(gtk_icon_view_set_selection_mode, "gtk_icon_view_set_selection_mode", LIBRARY_GTK);
1980 	Linker.link(gtk_icon_view_set_spacing, "gtk_icon_view_set_spacing", LIBRARY_GTK);
1981 	Linker.link(gtk_icon_view_set_text_column, "gtk_icon_view_set_text_column", LIBRARY_GTK);
1982 	Linker.link(gtk_icon_view_set_tooltip_cell, "gtk_icon_view_set_tooltip_cell", LIBRARY_GTK);
1983 	Linker.link(gtk_icon_view_set_tooltip_column, "gtk_icon_view_set_tooltip_column", LIBRARY_GTK);
1984 	Linker.link(gtk_icon_view_set_tooltip_item, "gtk_icon_view_set_tooltip_item", LIBRARY_GTK);
1985 	Linker.link(gtk_icon_view_unselect_all, "gtk_icon_view_unselect_all", LIBRARY_GTK);
1986 	Linker.link(gtk_icon_view_unselect_path, "gtk_icon_view_unselect_path", LIBRARY_GTK);
1987 	Linker.link(gtk_icon_view_unset_model_drag_dest, "gtk_icon_view_unset_model_drag_dest", LIBRARY_GTK);
1988 	Linker.link(gtk_icon_view_unset_model_drag_source, "gtk_icon_view_unset_model_drag_source", LIBRARY_GTK);
1989 
1990 	// gtk.IconViewAccessible
1991 
1992 	Linker.link(gtk_icon_view_accessible_get_type, "gtk_icon_view_accessible_get_type", LIBRARY_GTK);
1993 
1994 	// gtk.Image
1995 
1996 	Linker.link(gtk_image_get_type, "gtk_image_get_type", LIBRARY_GTK);
1997 	Linker.link(gtk_image_new, "gtk_image_new", LIBRARY_GTK);
1998 	Linker.link(gtk_image_new_from_animation, "gtk_image_new_from_animation", LIBRARY_GTK);
1999 	Linker.link(gtk_image_new_from_file, "gtk_image_new_from_file", LIBRARY_GTK);
2000 	Linker.link(gtk_image_new_from_gicon, "gtk_image_new_from_gicon", LIBRARY_GTK);
2001 	Linker.link(gtk_image_new_from_icon_name, "gtk_image_new_from_icon_name", LIBRARY_GTK);
2002 	Linker.link(gtk_image_new_from_icon_set, "gtk_image_new_from_icon_set", LIBRARY_GTK);
2003 	Linker.link(gtk_image_new_from_pixbuf, "gtk_image_new_from_pixbuf", LIBRARY_GTK);
2004 	Linker.link(gtk_image_new_from_resource, "gtk_image_new_from_resource", LIBRARY_GTK);
2005 	Linker.link(gtk_image_new_from_stock, "gtk_image_new_from_stock", LIBRARY_GTK);
2006 	Linker.link(gtk_image_new_from_surface, "gtk_image_new_from_surface", LIBRARY_GTK);
2007 	Linker.link(gtk_image_clear, "gtk_image_clear", LIBRARY_GTK);
2008 	Linker.link(gtk_image_get_animation, "gtk_image_get_animation", LIBRARY_GTK);
2009 	Linker.link(gtk_image_get_gicon, "gtk_image_get_gicon", LIBRARY_GTK);
2010 	Linker.link(gtk_image_get_icon_name, "gtk_image_get_icon_name", LIBRARY_GTK);
2011 	Linker.link(gtk_image_get_icon_set, "gtk_image_get_icon_set", LIBRARY_GTK);
2012 	Linker.link(gtk_image_get_pixbuf, "gtk_image_get_pixbuf", LIBRARY_GTK);
2013 	Linker.link(gtk_image_get_pixel_size, "gtk_image_get_pixel_size", LIBRARY_GTK);
2014 	Linker.link(gtk_image_get_stock, "gtk_image_get_stock", LIBRARY_GTK);
2015 	Linker.link(gtk_image_get_storage_type, "gtk_image_get_storage_type", LIBRARY_GTK);
2016 	Linker.link(gtk_image_set_from_animation, "gtk_image_set_from_animation", LIBRARY_GTK);
2017 	Linker.link(gtk_image_set_from_file, "gtk_image_set_from_file", LIBRARY_GTK);
2018 	Linker.link(gtk_image_set_from_gicon, "gtk_image_set_from_gicon", LIBRARY_GTK);
2019 	Linker.link(gtk_image_set_from_icon_name, "gtk_image_set_from_icon_name", LIBRARY_GTK);
2020 	Linker.link(gtk_image_set_from_icon_set, "gtk_image_set_from_icon_set", LIBRARY_GTK);
2021 	Linker.link(gtk_image_set_from_pixbuf, "gtk_image_set_from_pixbuf", LIBRARY_GTK);
2022 	Linker.link(gtk_image_set_from_resource, "gtk_image_set_from_resource", LIBRARY_GTK);
2023 	Linker.link(gtk_image_set_from_stock, "gtk_image_set_from_stock", LIBRARY_GTK);
2024 	Linker.link(gtk_image_set_from_surface, "gtk_image_set_from_surface", LIBRARY_GTK);
2025 	Linker.link(gtk_image_set_pixel_size, "gtk_image_set_pixel_size", LIBRARY_GTK);
2026 
2027 	// gtk.ImageAccessible
2028 
2029 	Linker.link(gtk_image_accessible_get_type, "gtk_image_accessible_get_type", LIBRARY_GTK);
2030 
2031 	// gtk.ImageCellAccessible
2032 
2033 	Linker.link(gtk_image_cell_accessible_get_type, "gtk_image_cell_accessible_get_type", LIBRARY_GTK);
2034 
2035 	// gtk.ImageMenuItem
2036 
2037 	Linker.link(gtk_image_menu_item_get_type, "gtk_image_menu_item_get_type", LIBRARY_GTK);
2038 	Linker.link(gtk_image_menu_item_new, "gtk_image_menu_item_new", LIBRARY_GTK);
2039 	Linker.link(gtk_image_menu_item_new_from_stock, "gtk_image_menu_item_new_from_stock", LIBRARY_GTK);
2040 	Linker.link(gtk_image_menu_item_new_with_label, "gtk_image_menu_item_new_with_label", LIBRARY_GTK);
2041 	Linker.link(gtk_image_menu_item_new_with_mnemonic, "gtk_image_menu_item_new_with_mnemonic", LIBRARY_GTK);
2042 	Linker.link(gtk_image_menu_item_get_always_show_image, "gtk_image_menu_item_get_always_show_image", LIBRARY_GTK);
2043 	Linker.link(gtk_image_menu_item_get_image, "gtk_image_menu_item_get_image", LIBRARY_GTK);
2044 	Linker.link(gtk_image_menu_item_get_use_stock, "gtk_image_menu_item_get_use_stock", LIBRARY_GTK);
2045 	Linker.link(gtk_image_menu_item_set_accel_group, "gtk_image_menu_item_set_accel_group", LIBRARY_GTK);
2046 	Linker.link(gtk_image_menu_item_set_always_show_image, "gtk_image_menu_item_set_always_show_image", LIBRARY_GTK);
2047 	Linker.link(gtk_image_menu_item_set_image, "gtk_image_menu_item_set_image", LIBRARY_GTK);
2048 	Linker.link(gtk_image_menu_item_set_use_stock, "gtk_image_menu_item_set_use_stock", LIBRARY_GTK);
2049 
2050 	// gtk.InfoBar
2051 
2052 	Linker.link(gtk_info_bar_get_type, "gtk_info_bar_get_type", LIBRARY_GTK);
2053 	Linker.link(gtk_info_bar_new, "gtk_info_bar_new", LIBRARY_GTK);
2054 	Linker.link(gtk_info_bar_new_with_buttons, "gtk_info_bar_new_with_buttons", LIBRARY_GTK);
2055 	Linker.link(gtk_info_bar_add_action_widget, "gtk_info_bar_add_action_widget", LIBRARY_GTK);
2056 	Linker.link(gtk_info_bar_add_button, "gtk_info_bar_add_button", LIBRARY_GTK);
2057 	Linker.link(gtk_info_bar_add_buttons, "gtk_info_bar_add_buttons", LIBRARY_GTK);
2058 	Linker.link(gtk_info_bar_get_action_area, "gtk_info_bar_get_action_area", LIBRARY_GTK);
2059 	Linker.link(gtk_info_bar_get_content_area, "gtk_info_bar_get_content_area", LIBRARY_GTK);
2060 	Linker.link(gtk_info_bar_get_message_type, "gtk_info_bar_get_message_type", LIBRARY_GTK);
2061 	Linker.link(gtk_info_bar_get_revealed, "gtk_info_bar_get_revealed", LIBRARY_GTK);
2062 	Linker.link(gtk_info_bar_get_show_close_button, "gtk_info_bar_get_show_close_button", LIBRARY_GTK);
2063 	Linker.link(gtk_info_bar_response, "gtk_info_bar_response", LIBRARY_GTK);
2064 	Linker.link(gtk_info_bar_set_default_response, "gtk_info_bar_set_default_response", LIBRARY_GTK);
2065 	Linker.link(gtk_info_bar_set_message_type, "gtk_info_bar_set_message_type", LIBRARY_GTK);
2066 	Linker.link(gtk_info_bar_set_response_sensitive, "gtk_info_bar_set_response_sensitive", LIBRARY_GTK);
2067 	Linker.link(gtk_info_bar_set_revealed, "gtk_info_bar_set_revealed", LIBRARY_GTK);
2068 	Linker.link(gtk_info_bar_set_show_close_button, "gtk_info_bar_set_show_close_button", LIBRARY_GTK);
2069 
2070 	// gtk.Invisible
2071 
2072 	Linker.link(gtk_invisible_get_type, "gtk_invisible_get_type", LIBRARY_GTK);
2073 	Linker.link(gtk_invisible_new, "gtk_invisible_new", LIBRARY_GTK);
2074 	Linker.link(gtk_invisible_new_for_screen, "gtk_invisible_new_for_screen", LIBRARY_GTK);
2075 	Linker.link(gtk_invisible_get_screen, "gtk_invisible_get_screen", LIBRARY_GTK);
2076 	Linker.link(gtk_invisible_set_screen, "gtk_invisible_set_screen", LIBRARY_GTK);
2077 
2078 	// gtk.Label
2079 
2080 	Linker.link(gtk_label_get_type, "gtk_label_get_type", LIBRARY_GTK);
2081 	Linker.link(gtk_label_new, "gtk_label_new", LIBRARY_GTK);
2082 	Linker.link(gtk_label_new_with_mnemonic, "gtk_label_new_with_mnemonic", LIBRARY_GTK);
2083 	Linker.link(gtk_label_get_angle, "gtk_label_get_angle", LIBRARY_GTK);
2084 	Linker.link(gtk_label_get_attributes, "gtk_label_get_attributes", LIBRARY_GTK);
2085 	Linker.link(gtk_label_get_current_uri, "gtk_label_get_current_uri", LIBRARY_GTK);
2086 	Linker.link(gtk_label_get_ellipsize, "gtk_label_get_ellipsize", LIBRARY_GTK);
2087 	Linker.link(gtk_label_get_justify, "gtk_label_get_justify", LIBRARY_GTK);
2088 	Linker.link(gtk_label_get_label, "gtk_label_get_label", LIBRARY_GTK);
2089 	Linker.link(gtk_label_get_layout, "gtk_label_get_layout", LIBRARY_GTK);
2090 	Linker.link(gtk_label_get_layout_offsets, "gtk_label_get_layout_offsets", LIBRARY_GTK);
2091 	Linker.link(gtk_label_get_line_wrap, "gtk_label_get_line_wrap", LIBRARY_GTK);
2092 	Linker.link(gtk_label_get_line_wrap_mode, "gtk_label_get_line_wrap_mode", LIBRARY_GTK);
2093 	Linker.link(gtk_label_get_lines, "gtk_label_get_lines", LIBRARY_GTK);
2094 	Linker.link(gtk_label_get_max_width_chars, "gtk_label_get_max_width_chars", LIBRARY_GTK);
2095 	Linker.link(gtk_label_get_mnemonic_keyval, "gtk_label_get_mnemonic_keyval", LIBRARY_GTK);
2096 	Linker.link(gtk_label_get_mnemonic_widget, "gtk_label_get_mnemonic_widget", LIBRARY_GTK);
2097 	Linker.link(gtk_label_get_selectable, "gtk_label_get_selectable", LIBRARY_GTK);
2098 	Linker.link(gtk_label_get_selection_bounds, "gtk_label_get_selection_bounds", LIBRARY_GTK);
2099 	Linker.link(gtk_label_get_single_line_mode, "gtk_label_get_single_line_mode", LIBRARY_GTK);
2100 	Linker.link(gtk_label_get_text, "gtk_label_get_text", LIBRARY_GTK);
2101 	Linker.link(gtk_label_get_track_visited_links, "gtk_label_get_track_visited_links", LIBRARY_GTK);
2102 	Linker.link(gtk_label_get_use_markup, "gtk_label_get_use_markup", LIBRARY_GTK);
2103 	Linker.link(gtk_label_get_use_underline, "gtk_label_get_use_underline", LIBRARY_GTK);
2104 	Linker.link(gtk_label_get_width_chars, "gtk_label_get_width_chars", LIBRARY_GTK);
2105 	Linker.link(gtk_label_get_xalign, "gtk_label_get_xalign", LIBRARY_GTK);
2106 	Linker.link(gtk_label_get_yalign, "gtk_label_get_yalign", LIBRARY_GTK);
2107 	Linker.link(gtk_label_select_region, "gtk_label_select_region", LIBRARY_GTK);
2108 	Linker.link(gtk_label_set_angle, "gtk_label_set_angle", LIBRARY_GTK);
2109 	Linker.link(gtk_label_set_attributes, "gtk_label_set_attributes", LIBRARY_GTK);
2110 	Linker.link(gtk_label_set_ellipsize, "gtk_label_set_ellipsize", LIBRARY_GTK);
2111 	Linker.link(gtk_label_set_justify, "gtk_label_set_justify", LIBRARY_GTK);
2112 	Linker.link(gtk_label_set_label, "gtk_label_set_label", LIBRARY_GTK);
2113 	Linker.link(gtk_label_set_line_wrap, "gtk_label_set_line_wrap", LIBRARY_GTK);
2114 	Linker.link(gtk_label_set_line_wrap_mode, "gtk_label_set_line_wrap_mode", LIBRARY_GTK);
2115 	Linker.link(gtk_label_set_lines, "gtk_label_set_lines", LIBRARY_GTK);
2116 	Linker.link(gtk_label_set_markup, "gtk_label_set_markup", LIBRARY_GTK);
2117 	Linker.link(gtk_label_set_markup_with_mnemonic, "gtk_label_set_markup_with_mnemonic", LIBRARY_GTK);
2118 	Linker.link(gtk_label_set_max_width_chars, "gtk_label_set_max_width_chars", LIBRARY_GTK);
2119 	Linker.link(gtk_label_set_mnemonic_widget, "gtk_label_set_mnemonic_widget", LIBRARY_GTK);
2120 	Linker.link(gtk_label_set_pattern, "gtk_label_set_pattern", LIBRARY_GTK);
2121 	Linker.link(gtk_label_set_selectable, "gtk_label_set_selectable", LIBRARY_GTK);
2122 	Linker.link(gtk_label_set_single_line_mode, "gtk_label_set_single_line_mode", LIBRARY_GTK);
2123 	Linker.link(gtk_label_set_text, "gtk_label_set_text", LIBRARY_GTK);
2124 	Linker.link(gtk_label_set_text_with_mnemonic, "gtk_label_set_text_with_mnemonic", LIBRARY_GTK);
2125 	Linker.link(gtk_label_set_track_visited_links, "gtk_label_set_track_visited_links", LIBRARY_GTK);
2126 	Linker.link(gtk_label_set_use_markup, "gtk_label_set_use_markup", LIBRARY_GTK);
2127 	Linker.link(gtk_label_set_use_underline, "gtk_label_set_use_underline", LIBRARY_GTK);
2128 	Linker.link(gtk_label_set_width_chars, "gtk_label_set_width_chars", LIBRARY_GTK);
2129 	Linker.link(gtk_label_set_xalign, "gtk_label_set_xalign", LIBRARY_GTK);
2130 	Linker.link(gtk_label_set_yalign, "gtk_label_set_yalign", LIBRARY_GTK);
2131 
2132 	// gtk.LabelAccessible
2133 
2134 	Linker.link(gtk_label_accessible_get_type, "gtk_label_accessible_get_type", LIBRARY_GTK);
2135 
2136 	// gtk.Layout
2137 
2138 	Linker.link(gtk_layout_get_type, "gtk_layout_get_type", LIBRARY_GTK);
2139 	Linker.link(gtk_layout_new, "gtk_layout_new", LIBRARY_GTK);
2140 	Linker.link(gtk_layout_get_bin_window, "gtk_layout_get_bin_window", LIBRARY_GTK);
2141 	Linker.link(gtk_layout_get_hadjustment, "gtk_layout_get_hadjustment", LIBRARY_GTK);
2142 	Linker.link(gtk_layout_get_size, "gtk_layout_get_size", LIBRARY_GTK);
2143 	Linker.link(gtk_layout_get_vadjustment, "gtk_layout_get_vadjustment", LIBRARY_GTK);
2144 	Linker.link(gtk_layout_move, "gtk_layout_move", LIBRARY_GTK);
2145 	Linker.link(gtk_layout_put, "gtk_layout_put", LIBRARY_GTK);
2146 	Linker.link(gtk_layout_set_hadjustment, "gtk_layout_set_hadjustment", LIBRARY_GTK);
2147 	Linker.link(gtk_layout_set_size, "gtk_layout_set_size", LIBRARY_GTK);
2148 	Linker.link(gtk_layout_set_vadjustment, "gtk_layout_set_vadjustment", LIBRARY_GTK);
2149 
2150 	// gtk.LevelBar
2151 
2152 	Linker.link(gtk_level_bar_get_type, "gtk_level_bar_get_type", LIBRARY_GTK);
2153 	Linker.link(gtk_level_bar_new, "gtk_level_bar_new", LIBRARY_GTK);
2154 	Linker.link(gtk_level_bar_new_for_interval, "gtk_level_bar_new_for_interval", LIBRARY_GTK);
2155 	Linker.link(gtk_level_bar_add_offset_value, "gtk_level_bar_add_offset_value", LIBRARY_GTK);
2156 	Linker.link(gtk_level_bar_get_inverted, "gtk_level_bar_get_inverted", LIBRARY_GTK);
2157 	Linker.link(gtk_level_bar_get_max_value, "gtk_level_bar_get_max_value", LIBRARY_GTK);
2158 	Linker.link(gtk_level_bar_get_min_value, "gtk_level_bar_get_min_value", LIBRARY_GTK);
2159 	Linker.link(gtk_level_bar_get_mode, "gtk_level_bar_get_mode", LIBRARY_GTK);
2160 	Linker.link(gtk_level_bar_get_offset_value, "gtk_level_bar_get_offset_value", LIBRARY_GTK);
2161 	Linker.link(gtk_level_bar_get_value, "gtk_level_bar_get_value", LIBRARY_GTK);
2162 	Linker.link(gtk_level_bar_remove_offset_value, "gtk_level_bar_remove_offset_value", LIBRARY_GTK);
2163 	Linker.link(gtk_level_bar_set_inverted, "gtk_level_bar_set_inverted", LIBRARY_GTK);
2164 	Linker.link(gtk_level_bar_set_max_value, "gtk_level_bar_set_max_value", LIBRARY_GTK);
2165 	Linker.link(gtk_level_bar_set_min_value, "gtk_level_bar_set_min_value", LIBRARY_GTK);
2166 	Linker.link(gtk_level_bar_set_mode, "gtk_level_bar_set_mode", LIBRARY_GTK);
2167 	Linker.link(gtk_level_bar_set_value, "gtk_level_bar_set_value", LIBRARY_GTK);
2168 
2169 	// gtk.LevelBarAccessible
2170 
2171 	Linker.link(gtk_level_bar_accessible_get_type, "gtk_level_bar_accessible_get_type", LIBRARY_GTK);
2172 
2173 	// gtk.LinkButton
2174 
2175 	Linker.link(gtk_link_button_get_type, "gtk_link_button_get_type", LIBRARY_GTK);
2176 	Linker.link(gtk_link_button_new, "gtk_link_button_new", LIBRARY_GTK);
2177 	Linker.link(gtk_link_button_new_with_label, "gtk_link_button_new_with_label", LIBRARY_GTK);
2178 	Linker.link(gtk_link_button_get_uri, "gtk_link_button_get_uri", LIBRARY_GTK);
2179 	Linker.link(gtk_link_button_get_visited, "gtk_link_button_get_visited", LIBRARY_GTK);
2180 	Linker.link(gtk_link_button_set_uri, "gtk_link_button_set_uri", LIBRARY_GTK);
2181 	Linker.link(gtk_link_button_set_visited, "gtk_link_button_set_visited", LIBRARY_GTK);
2182 
2183 	// gtk.LinkButtonAccessible
2184 
2185 	Linker.link(gtk_link_button_accessible_get_type, "gtk_link_button_accessible_get_type", LIBRARY_GTK);
2186 
2187 	// gtk.ListBox
2188 
2189 	Linker.link(gtk_list_box_get_type, "gtk_list_box_get_type", LIBRARY_GTK);
2190 	Linker.link(gtk_list_box_new, "gtk_list_box_new", LIBRARY_GTK);
2191 	Linker.link(gtk_list_box_bind_model, "gtk_list_box_bind_model", LIBRARY_GTK);
2192 	Linker.link(gtk_list_box_drag_highlight_row, "gtk_list_box_drag_highlight_row", LIBRARY_GTK);
2193 	Linker.link(gtk_list_box_drag_unhighlight_row, "gtk_list_box_drag_unhighlight_row", LIBRARY_GTK);
2194 	Linker.link(gtk_list_box_get_activate_on_single_click, "gtk_list_box_get_activate_on_single_click", LIBRARY_GTK);
2195 	Linker.link(gtk_list_box_get_adjustment, "gtk_list_box_get_adjustment", LIBRARY_GTK);
2196 	Linker.link(gtk_list_box_get_row_at_index, "gtk_list_box_get_row_at_index", LIBRARY_GTK);
2197 	Linker.link(gtk_list_box_get_row_at_y, "gtk_list_box_get_row_at_y", LIBRARY_GTK);
2198 	Linker.link(gtk_list_box_get_selected_row, "gtk_list_box_get_selected_row", LIBRARY_GTK);
2199 	Linker.link(gtk_list_box_get_selected_rows, "gtk_list_box_get_selected_rows", LIBRARY_GTK);
2200 	Linker.link(gtk_list_box_get_selection_mode, "gtk_list_box_get_selection_mode", LIBRARY_GTK);
2201 	Linker.link(gtk_list_box_insert, "gtk_list_box_insert", LIBRARY_GTK);
2202 	Linker.link(gtk_list_box_invalidate_filter, "gtk_list_box_invalidate_filter", LIBRARY_GTK);
2203 	Linker.link(gtk_list_box_invalidate_headers, "gtk_list_box_invalidate_headers", LIBRARY_GTK);
2204 	Linker.link(gtk_list_box_invalidate_sort, "gtk_list_box_invalidate_sort", LIBRARY_GTK);
2205 	Linker.link(gtk_list_box_prepend, "gtk_list_box_prepend", LIBRARY_GTK);
2206 	Linker.link(gtk_list_box_select_all, "gtk_list_box_select_all", LIBRARY_GTK);
2207 	Linker.link(gtk_list_box_select_row, "gtk_list_box_select_row", LIBRARY_GTK);
2208 	Linker.link(gtk_list_box_selected_foreach, "gtk_list_box_selected_foreach", LIBRARY_GTK);
2209 	Linker.link(gtk_list_box_set_activate_on_single_click, "gtk_list_box_set_activate_on_single_click", LIBRARY_GTK);
2210 	Linker.link(gtk_list_box_set_adjustment, "gtk_list_box_set_adjustment", LIBRARY_GTK);
2211 	Linker.link(gtk_list_box_set_filter_func, "gtk_list_box_set_filter_func", LIBRARY_GTK);
2212 	Linker.link(gtk_list_box_set_header_func, "gtk_list_box_set_header_func", LIBRARY_GTK);
2213 	Linker.link(gtk_list_box_set_placeholder, "gtk_list_box_set_placeholder", LIBRARY_GTK);
2214 	Linker.link(gtk_list_box_set_selection_mode, "gtk_list_box_set_selection_mode", LIBRARY_GTK);
2215 	Linker.link(gtk_list_box_set_sort_func, "gtk_list_box_set_sort_func", LIBRARY_GTK);
2216 	Linker.link(gtk_list_box_unselect_all, "gtk_list_box_unselect_all", LIBRARY_GTK);
2217 	Linker.link(gtk_list_box_unselect_row, "gtk_list_box_unselect_row", LIBRARY_GTK);
2218 
2219 	// gtk.ListBoxAccessible
2220 
2221 	Linker.link(gtk_list_box_accessible_get_type, "gtk_list_box_accessible_get_type", LIBRARY_GTK);
2222 
2223 	// gtk.ListBoxRow
2224 
2225 	Linker.link(gtk_list_box_row_get_type, "gtk_list_box_row_get_type", LIBRARY_GTK);
2226 	Linker.link(gtk_list_box_row_new, "gtk_list_box_row_new", LIBRARY_GTK);
2227 	Linker.link(gtk_list_box_row_changed, "gtk_list_box_row_changed", LIBRARY_GTK);
2228 	Linker.link(gtk_list_box_row_get_activatable, "gtk_list_box_row_get_activatable", LIBRARY_GTK);
2229 	Linker.link(gtk_list_box_row_get_header, "gtk_list_box_row_get_header", LIBRARY_GTK);
2230 	Linker.link(gtk_list_box_row_get_index, "gtk_list_box_row_get_index", LIBRARY_GTK);
2231 	Linker.link(gtk_list_box_row_get_selectable, "gtk_list_box_row_get_selectable", LIBRARY_GTK);
2232 	Linker.link(gtk_list_box_row_is_selected, "gtk_list_box_row_is_selected", LIBRARY_GTK);
2233 	Linker.link(gtk_list_box_row_set_activatable, "gtk_list_box_row_set_activatable", LIBRARY_GTK);
2234 	Linker.link(gtk_list_box_row_set_header, "gtk_list_box_row_set_header", LIBRARY_GTK);
2235 	Linker.link(gtk_list_box_row_set_selectable, "gtk_list_box_row_set_selectable", LIBRARY_GTK);
2236 
2237 	// gtk.ListBoxRowAccessible
2238 
2239 	Linker.link(gtk_list_box_row_accessible_get_type, "gtk_list_box_row_accessible_get_type", LIBRARY_GTK);
2240 
2241 	// gtk.ListStore
2242 
2243 	Linker.link(gtk_list_store_get_type, "gtk_list_store_get_type", LIBRARY_GTK);
2244 	Linker.link(gtk_list_store_new, "gtk_list_store_new", LIBRARY_GTK);
2245 	Linker.link(gtk_list_store_newv, "gtk_list_store_newv", LIBRARY_GTK);
2246 	Linker.link(gtk_list_store_append, "gtk_list_store_append", LIBRARY_GTK);
2247 	Linker.link(gtk_list_store_clear, "gtk_list_store_clear", LIBRARY_GTK);
2248 	Linker.link(gtk_list_store_insert, "gtk_list_store_insert", LIBRARY_GTK);
2249 	Linker.link(gtk_list_store_insert_after, "gtk_list_store_insert_after", LIBRARY_GTK);
2250 	Linker.link(gtk_list_store_insert_before, "gtk_list_store_insert_before", LIBRARY_GTK);
2251 	Linker.link(gtk_list_store_insert_with_values, "gtk_list_store_insert_with_values", LIBRARY_GTK);
2252 	Linker.link(gtk_list_store_insert_with_valuesv, "gtk_list_store_insert_with_valuesv", LIBRARY_GTK);
2253 	Linker.link(gtk_list_store_iter_is_valid, "gtk_list_store_iter_is_valid", LIBRARY_GTK);
2254 	Linker.link(gtk_list_store_move_after, "gtk_list_store_move_after", LIBRARY_GTK);
2255 	Linker.link(gtk_list_store_move_before, "gtk_list_store_move_before", LIBRARY_GTK);
2256 	Linker.link(gtk_list_store_prepend, "gtk_list_store_prepend", LIBRARY_GTK);
2257 	Linker.link(gtk_list_store_remove, "gtk_list_store_remove", LIBRARY_GTK);
2258 	Linker.link(gtk_list_store_reorder, "gtk_list_store_reorder", LIBRARY_GTK);
2259 	Linker.link(gtk_list_store_set, "gtk_list_store_set", LIBRARY_GTK);
2260 	Linker.link(gtk_list_store_set_column_types, "gtk_list_store_set_column_types", LIBRARY_GTK);
2261 	Linker.link(gtk_list_store_set_valist, "gtk_list_store_set_valist", LIBRARY_GTK);
2262 	Linker.link(gtk_list_store_set_value, "gtk_list_store_set_value", LIBRARY_GTK);
2263 	Linker.link(gtk_list_store_set_valuesv, "gtk_list_store_set_valuesv", LIBRARY_GTK);
2264 	Linker.link(gtk_list_store_swap, "gtk_list_store_swap", LIBRARY_GTK);
2265 
2266 	// gtk.LockButton
2267 
2268 	Linker.link(gtk_lock_button_get_type, "gtk_lock_button_get_type", LIBRARY_GTK);
2269 	Linker.link(gtk_lock_button_new, "gtk_lock_button_new", LIBRARY_GTK);
2270 	Linker.link(gtk_lock_button_get_permission, "gtk_lock_button_get_permission", LIBRARY_GTK);
2271 	Linker.link(gtk_lock_button_set_permission, "gtk_lock_button_set_permission", LIBRARY_GTK);
2272 
2273 	// gtk.LockButtonAccessible
2274 
2275 	Linker.link(gtk_lock_button_accessible_get_type, "gtk_lock_button_accessible_get_type", LIBRARY_GTK);
2276 
2277 	// gtk.Menu
2278 
2279 	Linker.link(gtk_menu_get_type, "gtk_menu_get_type", LIBRARY_GTK);
2280 	Linker.link(gtk_menu_new, "gtk_menu_new", LIBRARY_GTK);
2281 	Linker.link(gtk_menu_new_from_model, "gtk_menu_new_from_model", LIBRARY_GTK);
2282 	Linker.link(gtk_menu_get_for_attach_widget, "gtk_menu_get_for_attach_widget", LIBRARY_GTK);
2283 	Linker.link(gtk_menu_attach, "gtk_menu_attach", LIBRARY_GTK);
2284 	Linker.link(gtk_menu_attach_to_widget, "gtk_menu_attach_to_widget", LIBRARY_GTK);
2285 	Linker.link(gtk_menu_detach, "gtk_menu_detach", LIBRARY_GTK);
2286 	Linker.link(gtk_menu_get_accel_group, "gtk_menu_get_accel_group", LIBRARY_GTK);
2287 	Linker.link(gtk_menu_get_accel_path, "gtk_menu_get_accel_path", LIBRARY_GTK);
2288 	Linker.link(gtk_menu_get_active, "gtk_menu_get_active", LIBRARY_GTK);
2289 	Linker.link(gtk_menu_get_attach_widget, "gtk_menu_get_attach_widget", LIBRARY_GTK);
2290 	Linker.link(gtk_menu_get_monitor, "gtk_menu_get_monitor", LIBRARY_GTK);
2291 	Linker.link(gtk_menu_get_reserve_toggle_size, "gtk_menu_get_reserve_toggle_size", LIBRARY_GTK);
2292 	Linker.link(gtk_menu_get_tearoff_state, "gtk_menu_get_tearoff_state", LIBRARY_GTK);
2293 	Linker.link(gtk_menu_get_title, "gtk_menu_get_title", LIBRARY_GTK);
2294 	Linker.link(gtk_menu_place_on_monitor, "gtk_menu_place_on_monitor", LIBRARY_GTK);
2295 	Linker.link(gtk_menu_popdown, "gtk_menu_popdown", LIBRARY_GTK);
2296 	Linker.link(gtk_menu_popup, "gtk_menu_popup", LIBRARY_GTK);
2297 	Linker.link(gtk_menu_popup_at_pointer, "gtk_menu_popup_at_pointer", LIBRARY_GTK);
2298 	Linker.link(gtk_menu_popup_at_rect, "gtk_menu_popup_at_rect", LIBRARY_GTK);
2299 	Linker.link(gtk_menu_popup_at_widget, "gtk_menu_popup_at_widget", LIBRARY_GTK);
2300 	Linker.link(gtk_menu_popup_for_device, "gtk_menu_popup_for_device", LIBRARY_GTK);
2301 	Linker.link(gtk_menu_reorder_child, "gtk_menu_reorder_child", LIBRARY_GTK);
2302 	Linker.link(gtk_menu_reposition, "gtk_menu_reposition", LIBRARY_GTK);
2303 	Linker.link(gtk_menu_set_accel_group, "gtk_menu_set_accel_group", LIBRARY_GTK);
2304 	Linker.link(gtk_menu_set_accel_path, "gtk_menu_set_accel_path", LIBRARY_GTK);
2305 	Linker.link(gtk_menu_set_active, "gtk_menu_set_active", LIBRARY_GTK);
2306 	Linker.link(gtk_menu_set_monitor, "gtk_menu_set_monitor", LIBRARY_GTK);
2307 	Linker.link(gtk_menu_set_reserve_toggle_size, "gtk_menu_set_reserve_toggle_size", LIBRARY_GTK);
2308 	Linker.link(gtk_menu_set_screen, "gtk_menu_set_screen", LIBRARY_GTK);
2309 	Linker.link(gtk_menu_set_tearoff_state, "gtk_menu_set_tearoff_state", LIBRARY_GTK);
2310 	Linker.link(gtk_menu_set_title, "gtk_menu_set_title", LIBRARY_GTK);
2311 
2312 	// gtk.MenuAccessible
2313 
2314 	Linker.link(gtk_menu_accessible_get_type, "gtk_menu_accessible_get_type", LIBRARY_GTK);
2315 
2316 	// gtk.MenuBar
2317 
2318 	Linker.link(gtk_menu_bar_get_type, "gtk_menu_bar_get_type", LIBRARY_GTK);
2319 	Linker.link(gtk_menu_bar_new, "gtk_menu_bar_new", LIBRARY_GTK);
2320 	Linker.link(gtk_menu_bar_new_from_model, "gtk_menu_bar_new_from_model", LIBRARY_GTK);
2321 	Linker.link(gtk_menu_bar_get_child_pack_direction, "gtk_menu_bar_get_child_pack_direction", LIBRARY_GTK);
2322 	Linker.link(gtk_menu_bar_get_pack_direction, "gtk_menu_bar_get_pack_direction", LIBRARY_GTK);
2323 	Linker.link(gtk_menu_bar_set_child_pack_direction, "gtk_menu_bar_set_child_pack_direction", LIBRARY_GTK);
2324 	Linker.link(gtk_menu_bar_set_pack_direction, "gtk_menu_bar_set_pack_direction", LIBRARY_GTK);
2325 
2326 	// gtk.MenuButton
2327 
2328 	Linker.link(gtk_menu_button_get_type, "gtk_menu_button_get_type", LIBRARY_GTK);
2329 	Linker.link(gtk_menu_button_new, "gtk_menu_button_new", LIBRARY_GTK);
2330 	Linker.link(gtk_menu_button_get_align_widget, "gtk_menu_button_get_align_widget", LIBRARY_GTK);
2331 	Linker.link(gtk_menu_button_get_direction, "gtk_menu_button_get_direction", LIBRARY_GTK);
2332 	Linker.link(gtk_menu_button_get_menu_model, "gtk_menu_button_get_menu_model", LIBRARY_GTK);
2333 	Linker.link(gtk_menu_button_get_popover, "gtk_menu_button_get_popover", LIBRARY_GTK);
2334 	Linker.link(gtk_menu_button_get_popup, "gtk_menu_button_get_popup", LIBRARY_GTK);
2335 	Linker.link(gtk_menu_button_get_use_popover, "gtk_menu_button_get_use_popover", LIBRARY_GTK);
2336 	Linker.link(gtk_menu_button_set_align_widget, "gtk_menu_button_set_align_widget", LIBRARY_GTK);
2337 	Linker.link(gtk_menu_button_set_direction, "gtk_menu_button_set_direction", LIBRARY_GTK);
2338 	Linker.link(gtk_menu_button_set_menu_model, "gtk_menu_button_set_menu_model", LIBRARY_GTK);
2339 	Linker.link(gtk_menu_button_set_popover, "gtk_menu_button_set_popover", LIBRARY_GTK);
2340 	Linker.link(gtk_menu_button_set_popup, "gtk_menu_button_set_popup", LIBRARY_GTK);
2341 	Linker.link(gtk_menu_button_set_use_popover, "gtk_menu_button_set_use_popover", LIBRARY_GTK);
2342 
2343 	// gtk.MenuButtonAccessible
2344 
2345 	Linker.link(gtk_menu_button_accessible_get_type, "gtk_menu_button_accessible_get_type", LIBRARY_GTK);
2346 
2347 	// gtk.MenuItem
2348 
2349 	Linker.link(gtk_menu_item_get_type, "gtk_menu_item_get_type", LIBRARY_GTK);
2350 	Linker.link(gtk_menu_item_new, "gtk_menu_item_new", LIBRARY_GTK);
2351 	Linker.link(gtk_menu_item_new_with_label, "gtk_menu_item_new_with_label", LIBRARY_GTK);
2352 	Linker.link(gtk_menu_item_new_with_mnemonic, "gtk_menu_item_new_with_mnemonic", LIBRARY_GTK);
2353 	Linker.link(gtk_menu_item_activate, "gtk_menu_item_activate", LIBRARY_GTK);
2354 	Linker.link(gtk_menu_item_deselect, "gtk_menu_item_deselect", LIBRARY_GTK);
2355 	Linker.link(gtk_menu_item_get_accel_path, "gtk_menu_item_get_accel_path", LIBRARY_GTK);
2356 	Linker.link(gtk_menu_item_get_label, "gtk_menu_item_get_label", LIBRARY_GTK);
2357 	Linker.link(gtk_menu_item_get_reserve_indicator, "gtk_menu_item_get_reserve_indicator", LIBRARY_GTK);
2358 	Linker.link(gtk_menu_item_get_right_justified, "gtk_menu_item_get_right_justified", LIBRARY_GTK);
2359 	Linker.link(gtk_menu_item_get_submenu, "gtk_menu_item_get_submenu", LIBRARY_GTK);
2360 	Linker.link(gtk_menu_item_get_use_underline, "gtk_menu_item_get_use_underline", LIBRARY_GTK);
2361 	Linker.link(gtk_menu_item_select, "gtk_menu_item_select", LIBRARY_GTK);
2362 	Linker.link(gtk_menu_item_set_accel_path, "gtk_menu_item_set_accel_path", LIBRARY_GTK);
2363 	Linker.link(gtk_menu_item_set_label, "gtk_menu_item_set_label", LIBRARY_GTK);
2364 	Linker.link(gtk_menu_item_set_reserve_indicator, "gtk_menu_item_set_reserve_indicator", LIBRARY_GTK);
2365 	Linker.link(gtk_menu_item_set_right_justified, "gtk_menu_item_set_right_justified", LIBRARY_GTK);
2366 	Linker.link(gtk_menu_item_set_submenu, "gtk_menu_item_set_submenu", LIBRARY_GTK);
2367 	Linker.link(gtk_menu_item_set_use_underline, "gtk_menu_item_set_use_underline", LIBRARY_GTK);
2368 	Linker.link(gtk_menu_item_toggle_size_allocate, "gtk_menu_item_toggle_size_allocate", LIBRARY_GTK);
2369 	Linker.link(gtk_menu_item_toggle_size_request, "gtk_menu_item_toggle_size_request", LIBRARY_GTK);
2370 
2371 	// gtk.MenuItemAccessible
2372 
2373 	Linker.link(gtk_menu_item_accessible_get_type, "gtk_menu_item_accessible_get_type", LIBRARY_GTK);
2374 
2375 	// gtk.MenuShell
2376 
2377 	Linker.link(gtk_menu_shell_get_type, "gtk_menu_shell_get_type", LIBRARY_GTK);
2378 	Linker.link(gtk_menu_shell_activate_item, "gtk_menu_shell_activate_item", LIBRARY_GTK);
2379 	Linker.link(gtk_menu_shell_append, "gtk_menu_shell_append", LIBRARY_GTK);
2380 	Linker.link(gtk_menu_shell_bind_model, "gtk_menu_shell_bind_model", LIBRARY_GTK);
2381 	Linker.link(gtk_menu_shell_cancel, "gtk_menu_shell_cancel", LIBRARY_GTK);
2382 	Linker.link(gtk_menu_shell_deactivate, "gtk_menu_shell_deactivate", LIBRARY_GTK);
2383 	Linker.link(gtk_menu_shell_deselect, "gtk_menu_shell_deselect", LIBRARY_GTK);
2384 	Linker.link(gtk_menu_shell_get_parent_shell, "gtk_menu_shell_get_parent_shell", LIBRARY_GTK);
2385 	Linker.link(gtk_menu_shell_get_selected_item, "gtk_menu_shell_get_selected_item", LIBRARY_GTK);
2386 	Linker.link(gtk_menu_shell_get_take_focus, "gtk_menu_shell_get_take_focus", LIBRARY_GTK);
2387 	Linker.link(gtk_menu_shell_insert, "gtk_menu_shell_insert", LIBRARY_GTK);
2388 	Linker.link(gtk_menu_shell_prepend, "gtk_menu_shell_prepend", LIBRARY_GTK);
2389 	Linker.link(gtk_menu_shell_select_first, "gtk_menu_shell_select_first", LIBRARY_GTK);
2390 	Linker.link(gtk_menu_shell_select_item, "gtk_menu_shell_select_item", LIBRARY_GTK);
2391 	Linker.link(gtk_menu_shell_set_take_focus, "gtk_menu_shell_set_take_focus", LIBRARY_GTK);
2392 
2393 	// gtk.MenuShellAccessible
2394 
2395 	Linker.link(gtk_menu_shell_accessible_get_type, "gtk_menu_shell_accessible_get_type", LIBRARY_GTK);
2396 
2397 	// gtk.MenuToolButton
2398 
2399 	Linker.link(gtk_menu_tool_button_get_type, "gtk_menu_tool_button_get_type", LIBRARY_GTK);
2400 	Linker.link(gtk_menu_tool_button_new, "gtk_menu_tool_button_new", LIBRARY_GTK);
2401 	Linker.link(gtk_menu_tool_button_new_from_stock, "gtk_menu_tool_button_new_from_stock", LIBRARY_GTK);
2402 	Linker.link(gtk_menu_tool_button_get_menu, "gtk_menu_tool_button_get_menu", LIBRARY_GTK);
2403 	Linker.link(gtk_menu_tool_button_set_arrow_tooltip_markup, "gtk_menu_tool_button_set_arrow_tooltip_markup", LIBRARY_GTK);
2404 	Linker.link(gtk_menu_tool_button_set_arrow_tooltip_text, "gtk_menu_tool_button_set_arrow_tooltip_text", LIBRARY_GTK);
2405 	Linker.link(gtk_menu_tool_button_set_menu, "gtk_menu_tool_button_set_menu", LIBRARY_GTK);
2406 
2407 	// gtk.MessageDialog
2408 
2409 	Linker.link(gtk_message_dialog_get_type, "gtk_message_dialog_get_type", LIBRARY_GTK);
2410 	Linker.link(gtk_message_dialog_new, "gtk_message_dialog_new", LIBRARY_GTK);
2411 	Linker.link(gtk_message_dialog_new_with_markup, "gtk_message_dialog_new_with_markup", LIBRARY_GTK);
2412 	Linker.link(gtk_message_dialog_format_secondary_markup, "gtk_message_dialog_format_secondary_markup", LIBRARY_GTK);
2413 	Linker.link(gtk_message_dialog_format_secondary_text, "gtk_message_dialog_format_secondary_text", LIBRARY_GTK);
2414 	Linker.link(gtk_message_dialog_get_image, "gtk_message_dialog_get_image", LIBRARY_GTK);
2415 	Linker.link(gtk_message_dialog_get_message_area, "gtk_message_dialog_get_message_area", LIBRARY_GTK);
2416 	Linker.link(gtk_message_dialog_set_image, "gtk_message_dialog_set_image", LIBRARY_GTK);
2417 	Linker.link(gtk_message_dialog_set_markup, "gtk_message_dialog_set_markup", LIBRARY_GTK);
2418 
2419 	// gtk.Misc
2420 
2421 	Linker.link(gtk_misc_get_type, "gtk_misc_get_type", LIBRARY_GTK);
2422 	Linker.link(gtk_misc_get_alignment, "gtk_misc_get_alignment", LIBRARY_GTK);
2423 	Linker.link(gtk_misc_get_padding, "gtk_misc_get_padding", LIBRARY_GTK);
2424 	Linker.link(gtk_misc_set_alignment, "gtk_misc_set_alignment", LIBRARY_GTK);
2425 	Linker.link(gtk_misc_set_padding, "gtk_misc_set_padding", LIBRARY_GTK);
2426 
2427 	// gtk.ModelButton
2428 
2429 	Linker.link(gtk_model_button_get_type, "gtk_model_button_get_type", LIBRARY_GTK);
2430 	Linker.link(gtk_model_button_new, "gtk_model_button_new", LIBRARY_GTK);
2431 
2432 	// gtk.MountOperation
2433 
2434 	Linker.link(gtk_mount_operation_get_type, "gtk_mount_operation_get_type", LIBRARY_GTK);
2435 	Linker.link(gtk_mount_operation_new, "gtk_mount_operation_new", LIBRARY_GTK);
2436 	Linker.link(gtk_mount_operation_get_parent, "gtk_mount_operation_get_parent", LIBRARY_GTK);
2437 	Linker.link(gtk_mount_operation_get_screen, "gtk_mount_operation_get_screen", LIBRARY_GTK);
2438 	Linker.link(gtk_mount_operation_is_showing, "gtk_mount_operation_is_showing", LIBRARY_GTK);
2439 	Linker.link(gtk_mount_operation_set_parent, "gtk_mount_operation_set_parent", LIBRARY_GTK);
2440 	Linker.link(gtk_mount_operation_set_screen, "gtk_mount_operation_set_screen", LIBRARY_GTK);
2441 	Linker.link(gtk_show_uri, "gtk_show_uri", LIBRARY_GTK);
2442 
2443 	// gtk.NativeDialog
2444 
2445 	Linker.link(gtk_native_dialog_get_type, "gtk_native_dialog_get_type", LIBRARY_GTK);
2446 	Linker.link(gtk_native_dialog_destroy, "gtk_native_dialog_destroy", LIBRARY_GTK);
2447 	Linker.link(gtk_native_dialog_get_modal, "gtk_native_dialog_get_modal", LIBRARY_GTK);
2448 	Linker.link(gtk_native_dialog_get_title, "gtk_native_dialog_get_title", LIBRARY_GTK);
2449 	Linker.link(gtk_native_dialog_get_transient_for, "gtk_native_dialog_get_transient_for", LIBRARY_GTK);
2450 	Linker.link(gtk_native_dialog_get_visible, "gtk_native_dialog_get_visible", LIBRARY_GTK);
2451 	Linker.link(gtk_native_dialog_hide, "gtk_native_dialog_hide", LIBRARY_GTK);
2452 	Linker.link(gtk_native_dialog_run, "gtk_native_dialog_run", LIBRARY_GTK);
2453 	Linker.link(gtk_native_dialog_set_modal, "gtk_native_dialog_set_modal", LIBRARY_GTK);
2454 	Linker.link(gtk_native_dialog_set_title, "gtk_native_dialog_set_title", LIBRARY_GTK);
2455 	Linker.link(gtk_native_dialog_set_transient_for, "gtk_native_dialog_set_transient_for", LIBRARY_GTK);
2456 	Linker.link(gtk_native_dialog_show, "gtk_native_dialog_show", LIBRARY_GTK);
2457 
2458 	// gtk.Notebook
2459 
2460 	Linker.link(gtk_notebook_get_type, "gtk_notebook_get_type", LIBRARY_GTK);
2461 	Linker.link(gtk_notebook_new, "gtk_notebook_new", LIBRARY_GTK);
2462 	Linker.link(gtk_notebook_append_page, "gtk_notebook_append_page", LIBRARY_GTK);
2463 	Linker.link(gtk_notebook_append_page_menu, "gtk_notebook_append_page_menu", LIBRARY_GTK);
2464 	Linker.link(gtk_notebook_detach_tab, "gtk_notebook_detach_tab", LIBRARY_GTK);
2465 	Linker.link(gtk_notebook_get_action_widget, "gtk_notebook_get_action_widget", LIBRARY_GTK);
2466 	Linker.link(gtk_notebook_get_current_page, "gtk_notebook_get_current_page", LIBRARY_GTK);
2467 	Linker.link(gtk_notebook_get_group_name, "gtk_notebook_get_group_name", LIBRARY_GTK);
2468 	Linker.link(gtk_notebook_get_menu_label, "gtk_notebook_get_menu_label", LIBRARY_GTK);
2469 	Linker.link(gtk_notebook_get_menu_label_text, "gtk_notebook_get_menu_label_text", LIBRARY_GTK);
2470 	Linker.link(gtk_notebook_get_n_pages, "gtk_notebook_get_n_pages", LIBRARY_GTK);
2471 	Linker.link(gtk_notebook_get_nth_page, "gtk_notebook_get_nth_page", LIBRARY_GTK);
2472 	Linker.link(gtk_notebook_get_scrollable, "gtk_notebook_get_scrollable", LIBRARY_GTK);
2473 	Linker.link(gtk_notebook_get_show_border, "gtk_notebook_get_show_border", LIBRARY_GTK);
2474 	Linker.link(gtk_notebook_get_show_tabs, "gtk_notebook_get_show_tabs", LIBRARY_GTK);
2475 	Linker.link(gtk_notebook_get_tab_detachable, "gtk_notebook_get_tab_detachable", LIBRARY_GTK);
2476 	Linker.link(gtk_notebook_get_tab_hborder, "gtk_notebook_get_tab_hborder", LIBRARY_GTK);
2477 	Linker.link(gtk_notebook_get_tab_label, "gtk_notebook_get_tab_label", LIBRARY_GTK);
2478 	Linker.link(gtk_notebook_get_tab_label_text, "gtk_notebook_get_tab_label_text", LIBRARY_GTK);
2479 	Linker.link(gtk_notebook_get_tab_pos, "gtk_notebook_get_tab_pos", LIBRARY_GTK);
2480 	Linker.link(gtk_notebook_get_tab_reorderable, "gtk_notebook_get_tab_reorderable", LIBRARY_GTK);
2481 	Linker.link(gtk_notebook_get_tab_vborder, "gtk_notebook_get_tab_vborder", LIBRARY_GTK);
2482 	Linker.link(gtk_notebook_insert_page, "gtk_notebook_insert_page", LIBRARY_GTK);
2483 	Linker.link(gtk_notebook_insert_page_menu, "gtk_notebook_insert_page_menu", LIBRARY_GTK);
2484 	Linker.link(gtk_notebook_next_page, "gtk_notebook_next_page", LIBRARY_GTK);
2485 	Linker.link(gtk_notebook_page_num, "gtk_notebook_page_num", LIBRARY_GTK);
2486 	Linker.link(gtk_notebook_popup_disable, "gtk_notebook_popup_disable", LIBRARY_GTK);
2487 	Linker.link(gtk_notebook_popup_enable, "gtk_notebook_popup_enable", LIBRARY_GTK);
2488 	Linker.link(gtk_notebook_prepend_page, "gtk_notebook_prepend_page", LIBRARY_GTK);
2489 	Linker.link(gtk_notebook_prepend_page_menu, "gtk_notebook_prepend_page_menu", LIBRARY_GTK);
2490 	Linker.link(gtk_notebook_prev_page, "gtk_notebook_prev_page", LIBRARY_GTK);
2491 	Linker.link(gtk_notebook_remove_page, "gtk_notebook_remove_page", LIBRARY_GTK);
2492 	Linker.link(gtk_notebook_reorder_child, "gtk_notebook_reorder_child", LIBRARY_GTK);
2493 	Linker.link(gtk_notebook_set_action_widget, "gtk_notebook_set_action_widget", LIBRARY_GTK);
2494 	Linker.link(gtk_notebook_set_current_page, "gtk_notebook_set_current_page", LIBRARY_GTK);
2495 	Linker.link(gtk_notebook_set_group_name, "gtk_notebook_set_group_name", LIBRARY_GTK);
2496 	Linker.link(gtk_notebook_set_menu_label, "gtk_notebook_set_menu_label", LIBRARY_GTK);
2497 	Linker.link(gtk_notebook_set_menu_label_text, "gtk_notebook_set_menu_label_text", LIBRARY_GTK);
2498 	Linker.link(gtk_notebook_set_scrollable, "gtk_notebook_set_scrollable", LIBRARY_GTK);
2499 	Linker.link(gtk_notebook_set_show_border, "gtk_notebook_set_show_border", LIBRARY_GTK);
2500 	Linker.link(gtk_notebook_set_show_tabs, "gtk_notebook_set_show_tabs", LIBRARY_GTK);
2501 	Linker.link(gtk_notebook_set_tab_detachable, "gtk_notebook_set_tab_detachable", LIBRARY_GTK);
2502 	Linker.link(gtk_notebook_set_tab_label, "gtk_notebook_set_tab_label", LIBRARY_GTK);
2503 	Linker.link(gtk_notebook_set_tab_label_text, "gtk_notebook_set_tab_label_text", LIBRARY_GTK);
2504 	Linker.link(gtk_notebook_set_tab_pos, "gtk_notebook_set_tab_pos", LIBRARY_GTK);
2505 	Linker.link(gtk_notebook_set_tab_reorderable, "gtk_notebook_set_tab_reorderable", LIBRARY_GTK);
2506 
2507 	// gtk.NotebookAccessible
2508 
2509 	Linker.link(gtk_notebook_accessible_get_type, "gtk_notebook_accessible_get_type", LIBRARY_GTK);
2510 
2511 	// gtk.NotebookPageAccessible
2512 
2513 	Linker.link(gtk_notebook_page_accessible_get_type, "gtk_notebook_page_accessible_get_type", LIBRARY_GTK);
2514 	Linker.link(gtk_notebook_page_accessible_new, "gtk_notebook_page_accessible_new", LIBRARY_GTK);
2515 	Linker.link(gtk_notebook_page_accessible_invalidate, "gtk_notebook_page_accessible_invalidate", LIBRARY_GTK);
2516 
2517 	// gtk.NumerableIcon
2518 
2519 	Linker.link(gtk_numerable_icon_get_type, "gtk_numerable_icon_get_type", LIBRARY_GTK);
2520 	Linker.link(gtk_numerable_icon_new, "gtk_numerable_icon_new", LIBRARY_GTK);
2521 	Linker.link(gtk_numerable_icon_new_with_style_context, "gtk_numerable_icon_new_with_style_context", LIBRARY_GTK);
2522 	Linker.link(gtk_numerable_icon_get_background_gicon, "gtk_numerable_icon_get_background_gicon", LIBRARY_GTK);
2523 	Linker.link(gtk_numerable_icon_get_background_icon_name, "gtk_numerable_icon_get_background_icon_name", LIBRARY_GTK);
2524 	Linker.link(gtk_numerable_icon_get_count, "gtk_numerable_icon_get_count", LIBRARY_GTK);
2525 	Linker.link(gtk_numerable_icon_get_label, "gtk_numerable_icon_get_label", LIBRARY_GTK);
2526 	Linker.link(gtk_numerable_icon_get_style_context, "gtk_numerable_icon_get_style_context", LIBRARY_GTK);
2527 	Linker.link(gtk_numerable_icon_set_background_gicon, "gtk_numerable_icon_set_background_gicon", LIBRARY_GTK);
2528 	Linker.link(gtk_numerable_icon_set_background_icon_name, "gtk_numerable_icon_set_background_icon_name", LIBRARY_GTK);
2529 	Linker.link(gtk_numerable_icon_set_count, "gtk_numerable_icon_set_count", LIBRARY_GTK);
2530 	Linker.link(gtk_numerable_icon_set_label, "gtk_numerable_icon_set_label", LIBRARY_GTK);
2531 	Linker.link(gtk_numerable_icon_set_style_context, "gtk_numerable_icon_set_style_context", LIBRARY_GTK);
2532 
2533 	// gtk.OffscreenWindow
2534 
2535 	Linker.link(gtk_offscreen_window_get_type, "gtk_offscreen_window_get_type", LIBRARY_GTK);
2536 	Linker.link(gtk_offscreen_window_new, "gtk_offscreen_window_new", LIBRARY_GTK);
2537 	Linker.link(gtk_offscreen_window_get_pixbuf, "gtk_offscreen_window_get_pixbuf", LIBRARY_GTK);
2538 	Linker.link(gtk_offscreen_window_get_surface, "gtk_offscreen_window_get_surface", LIBRARY_GTK);
2539 
2540 	// gtk.Orientable
2541 
2542 	Linker.link(gtk_orientable_get_type, "gtk_orientable_get_type", LIBRARY_GTK);
2543 	Linker.link(gtk_orientable_get_orientation, "gtk_orientable_get_orientation", LIBRARY_GTK);
2544 	Linker.link(gtk_orientable_set_orientation, "gtk_orientable_set_orientation", LIBRARY_GTK);
2545 
2546 	// gtk.Overlay
2547 
2548 	Linker.link(gtk_overlay_get_type, "gtk_overlay_get_type", LIBRARY_GTK);
2549 	Linker.link(gtk_overlay_new, "gtk_overlay_new", LIBRARY_GTK);
2550 	Linker.link(gtk_overlay_add_overlay, "gtk_overlay_add_overlay", LIBRARY_GTK);
2551 	Linker.link(gtk_overlay_get_overlay_pass_through, "gtk_overlay_get_overlay_pass_through", LIBRARY_GTK);
2552 	Linker.link(gtk_overlay_reorder_overlay, "gtk_overlay_reorder_overlay", LIBRARY_GTK);
2553 	Linker.link(gtk_overlay_set_overlay_pass_through, "gtk_overlay_set_overlay_pass_through", LIBRARY_GTK);
2554 
2555 	// gtk.PadController
2556 
2557 	Linker.link(gtk_pad_controller_get_type, "gtk_pad_controller_get_type", LIBRARY_GTK);
2558 	Linker.link(gtk_pad_controller_new, "gtk_pad_controller_new", LIBRARY_GTK);
2559 	Linker.link(gtk_pad_controller_set_action, "gtk_pad_controller_set_action", LIBRARY_GTK);
2560 	Linker.link(gtk_pad_controller_set_action_entries, "gtk_pad_controller_set_action_entries", LIBRARY_GTK);
2561 
2562 	// gtk.PageSetup
2563 
2564 	Linker.link(gtk_page_setup_get_type, "gtk_page_setup_get_type", LIBRARY_GTK);
2565 	Linker.link(gtk_page_setup_new, "gtk_page_setup_new", LIBRARY_GTK);
2566 	Linker.link(gtk_page_setup_new_from_file, "gtk_page_setup_new_from_file", LIBRARY_GTK);
2567 	Linker.link(gtk_page_setup_new_from_gvariant, "gtk_page_setup_new_from_gvariant", LIBRARY_GTK);
2568 	Linker.link(gtk_page_setup_new_from_key_file, "gtk_page_setup_new_from_key_file", LIBRARY_GTK);
2569 	Linker.link(gtk_page_setup_copy, "gtk_page_setup_copy", LIBRARY_GTK);
2570 	Linker.link(gtk_page_setup_get_bottom_margin, "gtk_page_setup_get_bottom_margin", LIBRARY_GTK);
2571 	Linker.link(gtk_page_setup_get_left_margin, "gtk_page_setup_get_left_margin", LIBRARY_GTK);
2572 	Linker.link(gtk_page_setup_get_orientation, "gtk_page_setup_get_orientation", LIBRARY_GTK);
2573 	Linker.link(gtk_page_setup_get_page_height, "gtk_page_setup_get_page_height", LIBRARY_GTK);
2574 	Linker.link(gtk_page_setup_get_page_width, "gtk_page_setup_get_page_width", LIBRARY_GTK);
2575 	Linker.link(gtk_page_setup_get_paper_height, "gtk_page_setup_get_paper_height", LIBRARY_GTK);
2576 	Linker.link(gtk_page_setup_get_paper_size, "gtk_page_setup_get_paper_size", LIBRARY_GTK);
2577 	Linker.link(gtk_page_setup_get_paper_width, "gtk_page_setup_get_paper_width", LIBRARY_GTK);
2578 	Linker.link(gtk_page_setup_get_right_margin, "gtk_page_setup_get_right_margin", LIBRARY_GTK);
2579 	Linker.link(gtk_page_setup_get_top_margin, "gtk_page_setup_get_top_margin", LIBRARY_GTK);
2580 	Linker.link(gtk_page_setup_load_file, "gtk_page_setup_load_file", LIBRARY_GTK);
2581 	Linker.link(gtk_page_setup_load_key_file, "gtk_page_setup_load_key_file", LIBRARY_GTK);
2582 	Linker.link(gtk_page_setup_set_bottom_margin, "gtk_page_setup_set_bottom_margin", LIBRARY_GTK);
2583 	Linker.link(gtk_page_setup_set_left_margin, "gtk_page_setup_set_left_margin", LIBRARY_GTK);
2584 	Linker.link(gtk_page_setup_set_orientation, "gtk_page_setup_set_orientation", LIBRARY_GTK);
2585 	Linker.link(gtk_page_setup_set_paper_size, "gtk_page_setup_set_paper_size", LIBRARY_GTK);
2586 	Linker.link(gtk_page_setup_set_paper_size_and_default_margins, "gtk_page_setup_set_paper_size_and_default_margins", LIBRARY_GTK);
2587 	Linker.link(gtk_page_setup_set_right_margin, "gtk_page_setup_set_right_margin", LIBRARY_GTK);
2588 	Linker.link(gtk_page_setup_set_top_margin, "gtk_page_setup_set_top_margin", LIBRARY_GTK);
2589 	Linker.link(gtk_page_setup_to_file, "gtk_page_setup_to_file", LIBRARY_GTK);
2590 	Linker.link(gtk_page_setup_to_gvariant, "gtk_page_setup_to_gvariant", LIBRARY_GTK);
2591 	Linker.link(gtk_page_setup_to_key_file, "gtk_page_setup_to_key_file", LIBRARY_GTK);
2592 
2593 	// gtk.Paned
2594 
2595 	Linker.link(gtk_paned_get_type, "gtk_paned_get_type", LIBRARY_GTK);
2596 	Linker.link(gtk_paned_new, "gtk_paned_new", LIBRARY_GTK);
2597 	Linker.link(gtk_paned_add1, "gtk_paned_add1", LIBRARY_GTK);
2598 	Linker.link(gtk_paned_add2, "gtk_paned_add2", LIBRARY_GTK);
2599 	Linker.link(gtk_paned_get_child1, "gtk_paned_get_child1", LIBRARY_GTK);
2600 	Linker.link(gtk_paned_get_child2, "gtk_paned_get_child2", LIBRARY_GTK);
2601 	Linker.link(gtk_paned_get_handle_window, "gtk_paned_get_handle_window", LIBRARY_GTK);
2602 	Linker.link(gtk_paned_get_position, "gtk_paned_get_position", LIBRARY_GTK);
2603 	Linker.link(gtk_paned_get_wide_handle, "gtk_paned_get_wide_handle", LIBRARY_GTK);
2604 	Linker.link(gtk_paned_pack1, "gtk_paned_pack1", LIBRARY_GTK);
2605 	Linker.link(gtk_paned_pack2, "gtk_paned_pack2", LIBRARY_GTK);
2606 	Linker.link(gtk_paned_set_position, "gtk_paned_set_position", LIBRARY_GTK);
2607 	Linker.link(gtk_paned_set_wide_handle, "gtk_paned_set_wide_handle", LIBRARY_GTK);
2608 
2609 	// gtk.PanedAccessible
2610 
2611 	Linker.link(gtk_paned_accessible_get_type, "gtk_paned_accessible_get_type", LIBRARY_GTK);
2612 
2613 	// gtk.PaperSize
2614 
2615 	Linker.link(gtk_paper_size_get_type, "gtk_paper_size_get_type", LIBRARY_GTK);
2616 	Linker.link(gtk_paper_size_new, "gtk_paper_size_new", LIBRARY_GTK);
2617 	Linker.link(gtk_paper_size_new_custom, "gtk_paper_size_new_custom", LIBRARY_GTK);
2618 	Linker.link(gtk_paper_size_new_from_gvariant, "gtk_paper_size_new_from_gvariant", LIBRARY_GTK);
2619 	Linker.link(gtk_paper_size_new_from_ipp, "gtk_paper_size_new_from_ipp", LIBRARY_GTK);
2620 	Linker.link(gtk_paper_size_new_from_key_file, "gtk_paper_size_new_from_key_file", LIBRARY_GTK);
2621 	Linker.link(gtk_paper_size_new_from_ppd, "gtk_paper_size_new_from_ppd", LIBRARY_GTK);
2622 	Linker.link(gtk_paper_size_copy, "gtk_paper_size_copy", LIBRARY_GTK);
2623 	Linker.link(gtk_paper_size_free, "gtk_paper_size_free", LIBRARY_GTK);
2624 	Linker.link(gtk_paper_size_get_default_bottom_margin, "gtk_paper_size_get_default_bottom_margin", LIBRARY_GTK);
2625 	Linker.link(gtk_paper_size_get_default_left_margin, "gtk_paper_size_get_default_left_margin", LIBRARY_GTK);
2626 	Linker.link(gtk_paper_size_get_default_right_margin, "gtk_paper_size_get_default_right_margin", LIBRARY_GTK);
2627 	Linker.link(gtk_paper_size_get_default_top_margin, "gtk_paper_size_get_default_top_margin", LIBRARY_GTK);
2628 	Linker.link(gtk_paper_size_get_display_name, "gtk_paper_size_get_display_name", LIBRARY_GTK);
2629 	Linker.link(gtk_paper_size_get_height, "gtk_paper_size_get_height", LIBRARY_GTK);
2630 	Linker.link(gtk_paper_size_get_name, "gtk_paper_size_get_name", LIBRARY_GTK);
2631 	Linker.link(gtk_paper_size_get_ppd_name, "gtk_paper_size_get_ppd_name", LIBRARY_GTK);
2632 	Linker.link(gtk_paper_size_get_width, "gtk_paper_size_get_width", LIBRARY_GTK);
2633 	Linker.link(gtk_paper_size_is_custom, "gtk_paper_size_is_custom", LIBRARY_GTK);
2634 	Linker.link(gtk_paper_size_is_equal, "gtk_paper_size_is_equal", LIBRARY_GTK);
2635 	Linker.link(gtk_paper_size_is_ipp, "gtk_paper_size_is_ipp", LIBRARY_GTK);
2636 	Linker.link(gtk_paper_size_set_size, "gtk_paper_size_set_size", LIBRARY_GTK);
2637 	Linker.link(gtk_paper_size_to_gvariant, "gtk_paper_size_to_gvariant", LIBRARY_GTK);
2638 	Linker.link(gtk_paper_size_to_key_file, "gtk_paper_size_to_key_file", LIBRARY_GTK);
2639 	Linker.link(gtk_paper_size_get_default, "gtk_paper_size_get_default", LIBRARY_GTK);
2640 	Linker.link(gtk_paper_size_get_paper_sizes, "gtk_paper_size_get_paper_sizes", LIBRARY_GTK);
2641 
2642 	// gtk.PlacesSidebar
2643 
2644 	Linker.link(gtk_places_sidebar_get_type, "gtk_places_sidebar_get_type", LIBRARY_GTK);
2645 	Linker.link(gtk_places_sidebar_new, "gtk_places_sidebar_new", LIBRARY_GTK);
2646 	Linker.link(gtk_places_sidebar_add_shortcut, "gtk_places_sidebar_add_shortcut", LIBRARY_GTK);
2647 	Linker.link(gtk_places_sidebar_get_local_only, "gtk_places_sidebar_get_local_only", LIBRARY_GTK);
2648 	Linker.link(gtk_places_sidebar_get_location, "gtk_places_sidebar_get_location", LIBRARY_GTK);
2649 	Linker.link(gtk_places_sidebar_get_nth_bookmark, "gtk_places_sidebar_get_nth_bookmark", LIBRARY_GTK);
2650 	Linker.link(gtk_places_sidebar_get_open_flags, "gtk_places_sidebar_get_open_flags", LIBRARY_GTK);
2651 	Linker.link(gtk_places_sidebar_get_show_connect_to_server, "gtk_places_sidebar_get_show_connect_to_server", LIBRARY_GTK);
2652 	Linker.link(gtk_places_sidebar_get_show_desktop, "gtk_places_sidebar_get_show_desktop", LIBRARY_GTK);
2653 	Linker.link(gtk_places_sidebar_get_show_enter_location, "gtk_places_sidebar_get_show_enter_location", LIBRARY_GTK);
2654 	Linker.link(gtk_places_sidebar_get_show_other_locations, "gtk_places_sidebar_get_show_other_locations", LIBRARY_GTK);
2655 	Linker.link(gtk_places_sidebar_get_show_recent, "gtk_places_sidebar_get_show_recent", LIBRARY_GTK);
2656 	Linker.link(gtk_places_sidebar_get_show_starred_location, "gtk_places_sidebar_get_show_starred_location", LIBRARY_GTK);
2657 	Linker.link(gtk_places_sidebar_get_show_trash, "gtk_places_sidebar_get_show_trash", LIBRARY_GTK);
2658 	Linker.link(gtk_places_sidebar_list_shortcuts, "gtk_places_sidebar_list_shortcuts", LIBRARY_GTK);
2659 	Linker.link(gtk_places_sidebar_remove_shortcut, "gtk_places_sidebar_remove_shortcut", LIBRARY_GTK);
2660 	Linker.link(gtk_places_sidebar_set_drop_targets_visible, "gtk_places_sidebar_set_drop_targets_visible", LIBRARY_GTK);
2661 	Linker.link(gtk_places_sidebar_set_local_only, "gtk_places_sidebar_set_local_only", LIBRARY_GTK);
2662 	Linker.link(gtk_places_sidebar_set_location, "gtk_places_sidebar_set_location", LIBRARY_GTK);
2663 	Linker.link(gtk_places_sidebar_set_open_flags, "gtk_places_sidebar_set_open_flags", LIBRARY_GTK);
2664 	Linker.link(gtk_places_sidebar_set_show_connect_to_server, "gtk_places_sidebar_set_show_connect_to_server", LIBRARY_GTK);
2665 	Linker.link(gtk_places_sidebar_set_show_desktop, "gtk_places_sidebar_set_show_desktop", LIBRARY_GTK);
2666 	Linker.link(gtk_places_sidebar_set_show_enter_location, "gtk_places_sidebar_set_show_enter_location", LIBRARY_GTK);
2667 	Linker.link(gtk_places_sidebar_set_show_other_locations, "gtk_places_sidebar_set_show_other_locations", LIBRARY_GTK);
2668 	Linker.link(gtk_places_sidebar_set_show_recent, "gtk_places_sidebar_set_show_recent", LIBRARY_GTK);
2669 	Linker.link(gtk_places_sidebar_set_show_starred_location, "gtk_places_sidebar_set_show_starred_location", LIBRARY_GTK);
2670 	Linker.link(gtk_places_sidebar_set_show_trash, "gtk_places_sidebar_set_show_trash", LIBRARY_GTK);
2671 
2672 	// gtk.Plug
2673 
2674 	Linker.link(gtk_plug_get_type, "gtk_plug_get_type", LIBRARY_GTK);
2675 	Linker.link(gtk_plug_new, "gtk_plug_new", LIBRARY_GTK);
2676 	Linker.link(gtk_plug_new_for_display, "gtk_plug_new_for_display", LIBRARY_GTK);
2677 	Linker.link(gtk_plug_construct, "gtk_plug_construct", LIBRARY_GTK);
2678 	Linker.link(gtk_plug_construct_for_display, "gtk_plug_construct_for_display", LIBRARY_GTK);
2679 	Linker.link(gtk_plug_get_embedded, "gtk_plug_get_embedded", LIBRARY_GTK);
2680 	Linker.link(gtk_plug_get_id, "gtk_plug_get_id", LIBRARY_GTK);
2681 	Linker.link(gtk_plug_get_socket_window, "gtk_plug_get_socket_window", LIBRARY_GTK);
2682 
2683 	// gtk.Popover
2684 
2685 	Linker.link(gtk_popover_get_type, "gtk_popover_get_type", LIBRARY_GTK);
2686 	Linker.link(gtk_popover_new, "gtk_popover_new", LIBRARY_GTK);
2687 	Linker.link(gtk_popover_new_from_model, "gtk_popover_new_from_model", LIBRARY_GTK);
2688 	Linker.link(gtk_popover_bind_model, "gtk_popover_bind_model", LIBRARY_GTK);
2689 	Linker.link(gtk_popover_get_constrain_to, "gtk_popover_get_constrain_to", LIBRARY_GTK);
2690 	Linker.link(gtk_popover_get_default_widget, "gtk_popover_get_default_widget", LIBRARY_GTK);
2691 	Linker.link(gtk_popover_get_modal, "gtk_popover_get_modal", LIBRARY_GTK);
2692 	Linker.link(gtk_popover_get_pointing_to, "gtk_popover_get_pointing_to", LIBRARY_GTK);
2693 	Linker.link(gtk_popover_get_position, "gtk_popover_get_position", LIBRARY_GTK);
2694 	Linker.link(gtk_popover_get_relative_to, "gtk_popover_get_relative_to", LIBRARY_GTK);
2695 	Linker.link(gtk_popover_get_transitions_enabled, "gtk_popover_get_transitions_enabled", LIBRARY_GTK);
2696 	Linker.link(gtk_popover_popdown, "gtk_popover_popdown", LIBRARY_GTK);
2697 	Linker.link(gtk_popover_popup, "gtk_popover_popup", LIBRARY_GTK);
2698 	Linker.link(gtk_popover_set_constrain_to, "gtk_popover_set_constrain_to", LIBRARY_GTK);
2699 	Linker.link(gtk_popover_set_default_widget, "gtk_popover_set_default_widget", LIBRARY_GTK);
2700 	Linker.link(gtk_popover_set_modal, "gtk_popover_set_modal", LIBRARY_GTK);
2701 	Linker.link(gtk_popover_set_pointing_to, "gtk_popover_set_pointing_to", LIBRARY_GTK);
2702 	Linker.link(gtk_popover_set_position, "gtk_popover_set_position", LIBRARY_GTK);
2703 	Linker.link(gtk_popover_set_relative_to, "gtk_popover_set_relative_to", LIBRARY_GTK);
2704 	Linker.link(gtk_popover_set_transitions_enabled, "gtk_popover_set_transitions_enabled", LIBRARY_GTK);
2705 
2706 	// gtk.PopoverAccessible
2707 
2708 	Linker.link(gtk_popover_accessible_get_type, "gtk_popover_accessible_get_type", LIBRARY_GTK);
2709 
2710 	// gtk.PopoverMenu
2711 
2712 	Linker.link(gtk_popover_menu_get_type, "gtk_popover_menu_get_type", LIBRARY_GTK);
2713 	Linker.link(gtk_popover_menu_new, "gtk_popover_menu_new", LIBRARY_GTK);
2714 	Linker.link(gtk_popover_menu_open_submenu, "gtk_popover_menu_open_submenu", LIBRARY_GTK);
2715 
2716 	// gtk.PrintContext
2717 
2718 	Linker.link(gtk_print_context_get_type, "gtk_print_context_get_type", LIBRARY_GTK);
2719 	Linker.link(gtk_print_context_create_pango_context, "gtk_print_context_create_pango_context", LIBRARY_GTK);
2720 	Linker.link(gtk_print_context_create_pango_layout, "gtk_print_context_create_pango_layout", LIBRARY_GTK);
2721 	Linker.link(gtk_print_context_get_cairo_context, "gtk_print_context_get_cairo_context", LIBRARY_GTK);
2722 	Linker.link(gtk_print_context_get_dpi_x, "gtk_print_context_get_dpi_x", LIBRARY_GTK);
2723 	Linker.link(gtk_print_context_get_dpi_y, "gtk_print_context_get_dpi_y", LIBRARY_GTK);
2724 	Linker.link(gtk_print_context_get_hard_margins, "gtk_print_context_get_hard_margins", LIBRARY_GTK);
2725 	Linker.link(gtk_print_context_get_height, "gtk_print_context_get_height", LIBRARY_GTK);
2726 	Linker.link(gtk_print_context_get_page_setup, "gtk_print_context_get_page_setup", LIBRARY_GTK);
2727 	Linker.link(gtk_print_context_get_pango_fontmap, "gtk_print_context_get_pango_fontmap", LIBRARY_GTK);
2728 	Linker.link(gtk_print_context_get_width, "gtk_print_context_get_width", LIBRARY_GTK);
2729 	Linker.link(gtk_print_context_set_cairo_context, "gtk_print_context_set_cairo_context", LIBRARY_GTK);
2730 
2731 	// gtk.PrintOperation
2732 
2733 	Linker.link(gtk_print_operation_get_type, "gtk_print_operation_get_type", LIBRARY_GTK);
2734 	Linker.link(gtk_print_operation_new, "gtk_print_operation_new", LIBRARY_GTK);
2735 	Linker.link(gtk_print_operation_cancel, "gtk_print_operation_cancel", LIBRARY_GTK);
2736 	Linker.link(gtk_print_operation_draw_page_finish, "gtk_print_operation_draw_page_finish", LIBRARY_GTK);
2737 	Linker.link(gtk_print_operation_get_default_page_setup, "gtk_print_operation_get_default_page_setup", LIBRARY_GTK);
2738 	Linker.link(gtk_print_operation_get_embed_page_setup, "gtk_print_operation_get_embed_page_setup", LIBRARY_GTK);
2739 	Linker.link(gtk_print_operation_get_error, "gtk_print_operation_get_error", LIBRARY_GTK);
2740 	Linker.link(gtk_print_operation_get_has_selection, "gtk_print_operation_get_has_selection", LIBRARY_GTK);
2741 	Linker.link(gtk_print_operation_get_n_pages_to_print, "gtk_print_operation_get_n_pages_to_print", LIBRARY_GTK);
2742 	Linker.link(gtk_print_operation_get_print_settings, "gtk_print_operation_get_print_settings", LIBRARY_GTK);
2743 	Linker.link(gtk_print_operation_get_status, "gtk_print_operation_get_status", LIBRARY_GTK);
2744 	Linker.link(gtk_print_operation_get_status_string, "gtk_print_operation_get_status_string", LIBRARY_GTK);
2745 	Linker.link(gtk_print_operation_get_support_selection, "gtk_print_operation_get_support_selection", LIBRARY_GTK);
2746 	Linker.link(gtk_print_operation_is_finished, "gtk_print_operation_is_finished", LIBRARY_GTK);
2747 	Linker.link(gtk_print_operation_run, "gtk_print_operation_run", LIBRARY_GTK);
2748 	Linker.link(gtk_print_operation_set_allow_async, "gtk_print_operation_set_allow_async", LIBRARY_GTK);
2749 	Linker.link(gtk_print_operation_set_current_page, "gtk_print_operation_set_current_page", LIBRARY_GTK);
2750 	Linker.link(gtk_print_operation_set_custom_tab_label, "gtk_print_operation_set_custom_tab_label", LIBRARY_GTK);
2751 	Linker.link(gtk_print_operation_set_default_page_setup, "gtk_print_operation_set_default_page_setup", LIBRARY_GTK);
2752 	Linker.link(gtk_print_operation_set_defer_drawing, "gtk_print_operation_set_defer_drawing", LIBRARY_GTK);
2753 	Linker.link(gtk_print_operation_set_embed_page_setup, "gtk_print_operation_set_embed_page_setup", LIBRARY_GTK);
2754 	Linker.link(gtk_print_operation_set_export_filename, "gtk_print_operation_set_export_filename", LIBRARY_GTK);
2755 	Linker.link(gtk_print_operation_set_has_selection, "gtk_print_operation_set_has_selection", LIBRARY_GTK);
2756 	Linker.link(gtk_print_operation_set_job_name, "gtk_print_operation_set_job_name", LIBRARY_GTK);
2757 	Linker.link(gtk_print_operation_set_n_pages, "gtk_print_operation_set_n_pages", LIBRARY_GTK);
2758 	Linker.link(gtk_print_operation_set_print_settings, "gtk_print_operation_set_print_settings", LIBRARY_GTK);
2759 	Linker.link(gtk_print_operation_set_show_progress, "gtk_print_operation_set_show_progress", LIBRARY_GTK);
2760 	Linker.link(gtk_print_operation_set_support_selection, "gtk_print_operation_set_support_selection", LIBRARY_GTK);
2761 	Linker.link(gtk_print_operation_set_track_print_status, "gtk_print_operation_set_track_print_status", LIBRARY_GTK);
2762 	Linker.link(gtk_print_operation_set_unit, "gtk_print_operation_set_unit", LIBRARY_GTK);
2763 	Linker.link(gtk_print_operation_set_use_full_page, "gtk_print_operation_set_use_full_page", LIBRARY_GTK);
2764 	Linker.link(gtk_print_run_page_setup_dialog, "gtk_print_run_page_setup_dialog", LIBRARY_GTK);
2765 	Linker.link(gtk_print_run_page_setup_dialog_async, "gtk_print_run_page_setup_dialog_async", LIBRARY_GTK);
2766 
2767 	// gtk.PrintOperationPreview
2768 
2769 	Linker.link(gtk_print_operation_preview_get_type, "gtk_print_operation_preview_get_type", LIBRARY_GTK);
2770 	Linker.link(gtk_print_operation_preview_end_preview, "gtk_print_operation_preview_end_preview", LIBRARY_GTK);
2771 	Linker.link(gtk_print_operation_preview_is_selected, "gtk_print_operation_preview_is_selected", LIBRARY_GTK);
2772 	Linker.link(gtk_print_operation_preview_render_page, "gtk_print_operation_preview_render_page", LIBRARY_GTK);
2773 
2774 	// gtk.PrintSettings
2775 
2776 	Linker.link(gtk_print_settings_get_type, "gtk_print_settings_get_type", LIBRARY_GTK);
2777 	Linker.link(gtk_print_settings_new, "gtk_print_settings_new", LIBRARY_GTK);
2778 	Linker.link(gtk_print_settings_new_from_file, "gtk_print_settings_new_from_file", LIBRARY_GTK);
2779 	Linker.link(gtk_print_settings_new_from_gvariant, "gtk_print_settings_new_from_gvariant", LIBRARY_GTK);
2780 	Linker.link(gtk_print_settings_new_from_key_file, "gtk_print_settings_new_from_key_file", LIBRARY_GTK);
2781 	Linker.link(gtk_print_settings_copy, "gtk_print_settings_copy", LIBRARY_GTK);
2782 	Linker.link(gtk_print_settings_foreach, "gtk_print_settings_foreach", LIBRARY_GTK);
2783 	Linker.link(gtk_print_settings_get, "gtk_print_settings_get", LIBRARY_GTK);
2784 	Linker.link(gtk_print_settings_get_bool, "gtk_print_settings_get_bool", LIBRARY_GTK);
2785 	Linker.link(gtk_print_settings_get_collate, "gtk_print_settings_get_collate", LIBRARY_GTK);
2786 	Linker.link(gtk_print_settings_get_default_source, "gtk_print_settings_get_default_source", LIBRARY_GTK);
2787 	Linker.link(gtk_print_settings_get_dither, "gtk_print_settings_get_dither", LIBRARY_GTK);
2788 	Linker.link(gtk_print_settings_get_double, "gtk_print_settings_get_double", LIBRARY_GTK);
2789 	Linker.link(gtk_print_settings_get_double_with_default, "gtk_print_settings_get_double_with_default", LIBRARY_GTK);
2790 	Linker.link(gtk_print_settings_get_duplex, "gtk_print_settings_get_duplex", LIBRARY_GTK);
2791 	Linker.link(gtk_print_settings_get_finishings, "gtk_print_settings_get_finishings", LIBRARY_GTK);
2792 	Linker.link(gtk_print_settings_get_int, "gtk_print_settings_get_int", LIBRARY_GTK);
2793 	Linker.link(gtk_print_settings_get_int_with_default, "gtk_print_settings_get_int_with_default", LIBRARY_GTK);
2794 	Linker.link(gtk_print_settings_get_length, "gtk_print_settings_get_length", LIBRARY_GTK);
2795 	Linker.link(gtk_print_settings_get_media_type, "gtk_print_settings_get_media_type", LIBRARY_GTK);
2796 	Linker.link(gtk_print_settings_get_n_copies, "gtk_print_settings_get_n_copies", LIBRARY_GTK);
2797 	Linker.link(gtk_print_settings_get_number_up, "gtk_print_settings_get_number_up", LIBRARY_GTK);
2798 	Linker.link(gtk_print_settings_get_number_up_layout, "gtk_print_settings_get_number_up_layout", LIBRARY_GTK);
2799 	Linker.link(gtk_print_settings_get_orientation, "gtk_print_settings_get_orientation", LIBRARY_GTK);
2800 	Linker.link(gtk_print_settings_get_output_bin, "gtk_print_settings_get_output_bin", LIBRARY_GTK);
2801 	Linker.link(gtk_print_settings_get_page_ranges, "gtk_print_settings_get_page_ranges", LIBRARY_GTK);
2802 	Linker.link(gtk_print_settings_get_page_set, "gtk_print_settings_get_page_set", LIBRARY_GTK);
2803 	Linker.link(gtk_print_settings_get_paper_height, "gtk_print_settings_get_paper_height", LIBRARY_GTK);
2804 	Linker.link(gtk_print_settings_get_paper_size, "gtk_print_settings_get_paper_size", LIBRARY_GTK);
2805 	Linker.link(gtk_print_settings_get_paper_width, "gtk_print_settings_get_paper_width", LIBRARY_GTK);
2806 	Linker.link(gtk_print_settings_get_print_pages, "gtk_print_settings_get_print_pages", LIBRARY_GTK);
2807 	Linker.link(gtk_print_settings_get_printer, "gtk_print_settings_get_printer", LIBRARY_GTK);
2808 	Linker.link(gtk_print_settings_get_printer_lpi, "gtk_print_settings_get_printer_lpi", LIBRARY_GTK);
2809 	Linker.link(gtk_print_settings_get_quality, "gtk_print_settings_get_quality", LIBRARY_GTK);
2810 	Linker.link(gtk_print_settings_get_resolution, "gtk_print_settings_get_resolution", LIBRARY_GTK);
2811 	Linker.link(gtk_print_settings_get_resolution_x, "gtk_print_settings_get_resolution_x", LIBRARY_GTK);
2812 	Linker.link(gtk_print_settings_get_resolution_y, "gtk_print_settings_get_resolution_y", LIBRARY_GTK);
2813 	Linker.link(gtk_print_settings_get_reverse, "gtk_print_settings_get_reverse", LIBRARY_GTK);
2814 	Linker.link(gtk_print_settings_get_scale, "gtk_print_settings_get_scale", LIBRARY_GTK);
2815 	Linker.link(gtk_print_settings_get_use_color, "gtk_print_settings_get_use_color", LIBRARY_GTK);
2816 	Linker.link(gtk_print_settings_has_key, "gtk_print_settings_has_key", LIBRARY_GTK);
2817 	Linker.link(gtk_print_settings_load_file, "gtk_print_settings_load_file", LIBRARY_GTK);
2818 	Linker.link(gtk_print_settings_load_key_file, "gtk_print_settings_load_key_file", LIBRARY_GTK);
2819 	Linker.link(gtk_print_settings_set, "gtk_print_settings_set", LIBRARY_GTK);
2820 	Linker.link(gtk_print_settings_set_bool, "gtk_print_settings_set_bool", LIBRARY_GTK);
2821 	Linker.link(gtk_print_settings_set_collate, "gtk_print_settings_set_collate", LIBRARY_GTK);
2822 	Linker.link(gtk_print_settings_set_default_source, "gtk_print_settings_set_default_source", LIBRARY_GTK);
2823 	Linker.link(gtk_print_settings_set_dither, "gtk_print_settings_set_dither", LIBRARY_GTK);
2824 	Linker.link(gtk_print_settings_set_double, "gtk_print_settings_set_double", LIBRARY_GTK);
2825 	Linker.link(gtk_print_settings_set_duplex, "gtk_print_settings_set_duplex", LIBRARY_GTK);
2826 	Linker.link(gtk_print_settings_set_finishings, "gtk_print_settings_set_finishings", LIBRARY_GTK);
2827 	Linker.link(gtk_print_settings_set_int, "gtk_print_settings_set_int", LIBRARY_GTK);
2828 	Linker.link(gtk_print_settings_set_length, "gtk_print_settings_set_length", LIBRARY_GTK);
2829 	Linker.link(gtk_print_settings_set_media_type, "gtk_print_settings_set_media_type", LIBRARY_GTK);
2830 	Linker.link(gtk_print_settings_set_n_copies, "gtk_print_settings_set_n_copies", LIBRARY_GTK);
2831 	Linker.link(gtk_print_settings_set_number_up, "gtk_print_settings_set_number_up", LIBRARY_GTK);
2832 	Linker.link(gtk_print_settings_set_number_up_layout, "gtk_print_settings_set_number_up_layout", LIBRARY_GTK);
2833 	Linker.link(gtk_print_settings_set_orientation, "gtk_print_settings_set_orientation", LIBRARY_GTK);
2834 	Linker.link(gtk_print_settings_set_output_bin, "gtk_print_settings_set_output_bin", LIBRARY_GTK);
2835 	Linker.link(gtk_print_settings_set_page_ranges, "gtk_print_settings_set_page_ranges", LIBRARY_GTK);
2836 	Linker.link(gtk_print_settings_set_page_set, "gtk_print_settings_set_page_set", LIBRARY_GTK);
2837 	Linker.link(gtk_print_settings_set_paper_height, "gtk_print_settings_set_paper_height", LIBRARY_GTK);
2838 	Linker.link(gtk_print_settings_set_paper_size, "gtk_print_settings_set_paper_size", LIBRARY_GTK);
2839 	Linker.link(gtk_print_settings_set_paper_width, "gtk_print_settings_set_paper_width", LIBRARY_GTK);
2840 	Linker.link(gtk_print_settings_set_print_pages, "gtk_print_settings_set_print_pages", LIBRARY_GTK);
2841 	Linker.link(gtk_print_settings_set_printer, "gtk_print_settings_set_printer", LIBRARY_GTK);
2842 	Linker.link(gtk_print_settings_set_printer_lpi, "gtk_print_settings_set_printer_lpi", LIBRARY_GTK);
2843 	Linker.link(gtk_print_settings_set_quality, "gtk_print_settings_set_quality", LIBRARY_GTK);
2844 	Linker.link(gtk_print_settings_set_resolution, "gtk_print_settings_set_resolution", LIBRARY_GTK);
2845 	Linker.link(gtk_print_settings_set_resolution_xy, "gtk_print_settings_set_resolution_xy", LIBRARY_GTK);
2846 	Linker.link(gtk_print_settings_set_reverse, "gtk_print_settings_set_reverse", LIBRARY_GTK);
2847 	Linker.link(gtk_print_settings_set_scale, "gtk_print_settings_set_scale", LIBRARY_GTK);
2848 	Linker.link(gtk_print_settings_set_use_color, "gtk_print_settings_set_use_color", LIBRARY_GTK);
2849 	Linker.link(gtk_print_settings_to_file, "gtk_print_settings_to_file", LIBRARY_GTK);
2850 	Linker.link(gtk_print_settings_to_gvariant, "gtk_print_settings_to_gvariant", LIBRARY_GTK);
2851 	Linker.link(gtk_print_settings_to_key_file, "gtk_print_settings_to_key_file", LIBRARY_GTK);
2852 	Linker.link(gtk_print_settings_unset, "gtk_print_settings_unset", LIBRARY_GTK);
2853 
2854 	// gtk.ProgressBar
2855 
2856 	Linker.link(gtk_progress_bar_get_type, "gtk_progress_bar_get_type", LIBRARY_GTK);
2857 	Linker.link(gtk_progress_bar_new, "gtk_progress_bar_new", LIBRARY_GTK);
2858 	Linker.link(gtk_progress_bar_get_ellipsize, "gtk_progress_bar_get_ellipsize", LIBRARY_GTK);
2859 	Linker.link(gtk_progress_bar_get_fraction, "gtk_progress_bar_get_fraction", LIBRARY_GTK);
2860 	Linker.link(gtk_progress_bar_get_inverted, "gtk_progress_bar_get_inverted", LIBRARY_GTK);
2861 	Linker.link(gtk_progress_bar_get_pulse_step, "gtk_progress_bar_get_pulse_step", LIBRARY_GTK);
2862 	Linker.link(gtk_progress_bar_get_show_text, "gtk_progress_bar_get_show_text", LIBRARY_GTK);
2863 	Linker.link(gtk_progress_bar_get_text, "gtk_progress_bar_get_text", LIBRARY_GTK);
2864 	Linker.link(gtk_progress_bar_pulse, "gtk_progress_bar_pulse", LIBRARY_GTK);
2865 	Linker.link(gtk_progress_bar_set_ellipsize, "gtk_progress_bar_set_ellipsize", LIBRARY_GTK);
2866 	Linker.link(gtk_progress_bar_set_fraction, "gtk_progress_bar_set_fraction", LIBRARY_GTK);
2867 	Linker.link(gtk_progress_bar_set_inverted, "gtk_progress_bar_set_inverted", LIBRARY_GTK);
2868 	Linker.link(gtk_progress_bar_set_pulse_step, "gtk_progress_bar_set_pulse_step", LIBRARY_GTK);
2869 	Linker.link(gtk_progress_bar_set_show_text, "gtk_progress_bar_set_show_text", LIBRARY_GTK);
2870 	Linker.link(gtk_progress_bar_set_text, "gtk_progress_bar_set_text", LIBRARY_GTK);
2871 
2872 	// gtk.ProgressBarAccessible
2873 
2874 	Linker.link(gtk_progress_bar_accessible_get_type, "gtk_progress_bar_accessible_get_type", LIBRARY_GTK);
2875 
2876 	// gtk.RadioAction
2877 
2878 	Linker.link(gtk_radio_action_get_type, "gtk_radio_action_get_type", LIBRARY_GTK);
2879 	Linker.link(gtk_radio_action_new, "gtk_radio_action_new", LIBRARY_GTK);
2880 	Linker.link(gtk_radio_action_get_current_value, "gtk_radio_action_get_current_value", LIBRARY_GTK);
2881 	Linker.link(gtk_radio_action_get_group, "gtk_radio_action_get_group", LIBRARY_GTK);
2882 	Linker.link(gtk_radio_action_join_group, "gtk_radio_action_join_group", LIBRARY_GTK);
2883 	Linker.link(gtk_radio_action_set_current_value, "gtk_radio_action_set_current_value", LIBRARY_GTK);
2884 	Linker.link(gtk_radio_action_set_group, "gtk_radio_action_set_group", LIBRARY_GTK);
2885 
2886 	// gtk.RadioButton
2887 
2888 	Linker.link(gtk_radio_button_get_type, "gtk_radio_button_get_type", LIBRARY_GTK);
2889 	Linker.link(gtk_radio_button_new, "gtk_radio_button_new", LIBRARY_GTK);
2890 	Linker.link(gtk_radio_button_new_from_widget, "gtk_radio_button_new_from_widget", LIBRARY_GTK);
2891 	Linker.link(gtk_radio_button_new_with_label, "gtk_radio_button_new_with_label", LIBRARY_GTK);
2892 	Linker.link(gtk_radio_button_new_with_label_from_widget, "gtk_radio_button_new_with_label_from_widget", LIBRARY_GTK);
2893 	Linker.link(gtk_radio_button_new_with_mnemonic, "gtk_radio_button_new_with_mnemonic", LIBRARY_GTK);
2894 	Linker.link(gtk_radio_button_new_with_mnemonic_from_widget, "gtk_radio_button_new_with_mnemonic_from_widget", LIBRARY_GTK);
2895 	Linker.link(gtk_radio_button_get_group, "gtk_radio_button_get_group", LIBRARY_GTK);
2896 	Linker.link(gtk_radio_button_join_group, "gtk_radio_button_join_group", LIBRARY_GTK);
2897 	Linker.link(gtk_radio_button_set_group, "gtk_radio_button_set_group", LIBRARY_GTK);
2898 
2899 	// gtk.RadioButtonAccessible
2900 
2901 	Linker.link(gtk_radio_button_accessible_get_type, "gtk_radio_button_accessible_get_type", LIBRARY_GTK);
2902 
2903 	// gtk.RadioMenuItem
2904 
2905 	Linker.link(gtk_radio_menu_item_get_type, "gtk_radio_menu_item_get_type", LIBRARY_GTK);
2906 	Linker.link(gtk_radio_menu_item_new, "gtk_radio_menu_item_new", LIBRARY_GTK);
2907 	Linker.link(gtk_radio_menu_item_new_from_widget, "gtk_radio_menu_item_new_from_widget", LIBRARY_GTK);
2908 	Linker.link(gtk_radio_menu_item_new_with_label, "gtk_radio_menu_item_new_with_label", LIBRARY_GTK);
2909 	Linker.link(gtk_radio_menu_item_new_with_label_from_widget, "gtk_radio_menu_item_new_with_label_from_widget", LIBRARY_GTK);
2910 	Linker.link(gtk_radio_menu_item_new_with_mnemonic, "gtk_radio_menu_item_new_with_mnemonic", LIBRARY_GTK);
2911 	Linker.link(gtk_radio_menu_item_new_with_mnemonic_from_widget, "gtk_radio_menu_item_new_with_mnemonic_from_widget", LIBRARY_GTK);
2912 	Linker.link(gtk_radio_menu_item_get_group, "gtk_radio_menu_item_get_group", LIBRARY_GTK);
2913 	Linker.link(gtk_radio_menu_item_join_group, "gtk_radio_menu_item_join_group", LIBRARY_GTK);
2914 	Linker.link(gtk_radio_menu_item_set_group, "gtk_radio_menu_item_set_group", LIBRARY_GTK);
2915 
2916 	// gtk.RadioMenuItemAccessible
2917 
2918 	Linker.link(gtk_radio_menu_item_accessible_get_type, "gtk_radio_menu_item_accessible_get_type", LIBRARY_GTK);
2919 
2920 	// gtk.RadioToolButton
2921 
2922 	Linker.link(gtk_radio_tool_button_get_type, "gtk_radio_tool_button_get_type", LIBRARY_GTK);
2923 	Linker.link(gtk_radio_tool_button_new, "gtk_radio_tool_button_new", LIBRARY_GTK);
2924 	Linker.link(gtk_radio_tool_button_new_from_stock, "gtk_radio_tool_button_new_from_stock", LIBRARY_GTK);
2925 	Linker.link(gtk_radio_tool_button_new_from_widget, "gtk_radio_tool_button_new_from_widget", LIBRARY_GTK);
2926 	Linker.link(gtk_radio_tool_button_new_with_stock_from_widget, "gtk_radio_tool_button_new_with_stock_from_widget", LIBRARY_GTK);
2927 	Linker.link(gtk_radio_tool_button_get_group, "gtk_radio_tool_button_get_group", LIBRARY_GTK);
2928 	Linker.link(gtk_radio_tool_button_set_group, "gtk_radio_tool_button_set_group", LIBRARY_GTK);
2929 
2930 	// gtk.Range
2931 
2932 	Linker.link(gtk_range_get_type, "gtk_range_get_type", LIBRARY_GTK);
2933 	Linker.link(gtk_range_get_adjustment, "gtk_range_get_adjustment", LIBRARY_GTK);
2934 	Linker.link(gtk_range_get_fill_level, "gtk_range_get_fill_level", LIBRARY_GTK);
2935 	Linker.link(gtk_range_get_flippable, "gtk_range_get_flippable", LIBRARY_GTK);
2936 	Linker.link(gtk_range_get_inverted, "gtk_range_get_inverted", LIBRARY_GTK);
2937 	Linker.link(gtk_range_get_lower_stepper_sensitivity, "gtk_range_get_lower_stepper_sensitivity", LIBRARY_GTK);
2938 	Linker.link(gtk_range_get_min_slider_size, "gtk_range_get_min_slider_size", LIBRARY_GTK);
2939 	Linker.link(gtk_range_get_range_rect, "gtk_range_get_range_rect", LIBRARY_GTK);
2940 	Linker.link(gtk_range_get_restrict_to_fill_level, "gtk_range_get_restrict_to_fill_level", LIBRARY_GTK);
2941 	Linker.link(gtk_range_get_round_digits, "gtk_range_get_round_digits", LIBRARY_GTK);
2942 	Linker.link(gtk_range_get_show_fill_level, "gtk_range_get_show_fill_level", LIBRARY_GTK);
2943 	Linker.link(gtk_range_get_slider_range, "gtk_range_get_slider_range", LIBRARY_GTK);
2944 	Linker.link(gtk_range_get_slider_size_fixed, "gtk_range_get_slider_size_fixed", LIBRARY_GTK);
2945 	Linker.link(gtk_range_get_upper_stepper_sensitivity, "gtk_range_get_upper_stepper_sensitivity", LIBRARY_GTK);
2946 	Linker.link(gtk_range_get_value, "gtk_range_get_value", LIBRARY_GTK);
2947 	Linker.link(gtk_range_set_adjustment, "gtk_range_set_adjustment", LIBRARY_GTK);
2948 	Linker.link(gtk_range_set_fill_level, "gtk_range_set_fill_level", LIBRARY_GTK);
2949 	Linker.link(gtk_range_set_flippable, "gtk_range_set_flippable", LIBRARY_GTK);
2950 	Linker.link(gtk_range_set_increments, "gtk_range_set_increments", LIBRARY_GTK);
2951 	Linker.link(gtk_range_set_inverted, "gtk_range_set_inverted", LIBRARY_GTK);
2952 	Linker.link(gtk_range_set_lower_stepper_sensitivity, "gtk_range_set_lower_stepper_sensitivity", LIBRARY_GTK);
2953 	Linker.link(gtk_range_set_min_slider_size, "gtk_range_set_min_slider_size", LIBRARY_GTK);
2954 	Linker.link(gtk_range_set_range, "gtk_range_set_range", LIBRARY_GTK);
2955 	Linker.link(gtk_range_set_restrict_to_fill_level, "gtk_range_set_restrict_to_fill_level", LIBRARY_GTK);
2956 	Linker.link(gtk_range_set_round_digits, "gtk_range_set_round_digits", LIBRARY_GTK);
2957 	Linker.link(gtk_range_set_show_fill_level, "gtk_range_set_show_fill_level", LIBRARY_GTK);
2958 	Linker.link(gtk_range_set_slider_size_fixed, "gtk_range_set_slider_size_fixed", LIBRARY_GTK);
2959 	Linker.link(gtk_range_set_upper_stepper_sensitivity, "gtk_range_set_upper_stepper_sensitivity", LIBRARY_GTK);
2960 	Linker.link(gtk_range_set_value, "gtk_range_set_value", LIBRARY_GTK);
2961 
2962 	// gtk.RangeAccessible
2963 
2964 	Linker.link(gtk_range_accessible_get_type, "gtk_range_accessible_get_type", LIBRARY_GTK);
2965 
2966 	// gtk.RcProperty
2967 
2968 	Linker.link(gtk_rc_property_parse_border, "gtk_rc_property_parse_border", LIBRARY_GTK);
2969 	Linker.link(gtk_rc_property_parse_color, "gtk_rc_property_parse_color", LIBRARY_GTK);
2970 	Linker.link(gtk_rc_property_parse_enum, "gtk_rc_property_parse_enum", LIBRARY_GTK);
2971 	Linker.link(gtk_rc_property_parse_flags, "gtk_rc_property_parse_flags", LIBRARY_GTK);
2972 	Linker.link(gtk_rc_property_parse_requisition, "gtk_rc_property_parse_requisition", LIBRARY_GTK);
2973 
2974 	// gtk.RcStyle
2975 
2976 	Linker.link(gtk_rc_style_get_type, "gtk_rc_style_get_type", LIBRARY_GTK);
2977 	Linker.link(gtk_rc_style_new, "gtk_rc_style_new", LIBRARY_GTK);
2978 	Linker.link(gtk_rc_style_copy, "gtk_rc_style_copy", LIBRARY_GTK);
2979 	Linker.link(gtk_rc_add_default_file, "gtk_rc_add_default_file", LIBRARY_GTK);
2980 	Linker.link(gtk_rc_find_module_in_path, "gtk_rc_find_module_in_path", LIBRARY_GTK);
2981 	Linker.link(gtk_rc_find_pixmap_in_path, "gtk_rc_find_pixmap_in_path", LIBRARY_GTK);
2982 	Linker.link(gtk_rc_get_default_files, "gtk_rc_get_default_files", LIBRARY_GTK);
2983 	Linker.link(gtk_rc_get_im_module_file, "gtk_rc_get_im_module_file", LIBRARY_GTK);
2984 	Linker.link(gtk_rc_get_im_module_path, "gtk_rc_get_im_module_path", LIBRARY_GTK);
2985 	Linker.link(gtk_rc_get_module_dir, "gtk_rc_get_module_dir", LIBRARY_GTK);
2986 	Linker.link(gtk_rc_get_style, "gtk_rc_get_style", LIBRARY_GTK);
2987 	Linker.link(gtk_rc_get_style_by_paths, "gtk_rc_get_style_by_paths", LIBRARY_GTK);
2988 	Linker.link(gtk_rc_get_theme_dir, "gtk_rc_get_theme_dir", LIBRARY_GTK);
2989 	Linker.link(gtk_rc_parse, "gtk_rc_parse", LIBRARY_GTK);
2990 	Linker.link(gtk_rc_parse_color, "gtk_rc_parse_color", LIBRARY_GTK);
2991 	Linker.link(gtk_rc_parse_color_full, "gtk_rc_parse_color_full", LIBRARY_GTK);
2992 	Linker.link(gtk_rc_parse_priority, "gtk_rc_parse_priority", LIBRARY_GTK);
2993 	Linker.link(gtk_rc_parse_state, "gtk_rc_parse_state", LIBRARY_GTK);
2994 	Linker.link(gtk_rc_parse_string, "gtk_rc_parse_string", LIBRARY_GTK);
2995 	Linker.link(gtk_rc_reparse_all, "gtk_rc_reparse_all", LIBRARY_GTK);
2996 	Linker.link(gtk_rc_reparse_all_for_settings, "gtk_rc_reparse_all_for_settings", LIBRARY_GTK);
2997 	Linker.link(gtk_rc_reset_styles, "gtk_rc_reset_styles", LIBRARY_GTK);
2998 	Linker.link(gtk_rc_scanner_new, "gtk_rc_scanner_new", LIBRARY_GTK);
2999 	Linker.link(gtk_rc_set_default_files, "gtk_rc_set_default_files", LIBRARY_GTK);
3000 
3001 	// gtk.RecentAction
3002 
3003 	Linker.link(gtk_recent_action_get_type, "gtk_recent_action_get_type", LIBRARY_GTK);
3004 	Linker.link(gtk_recent_action_new, "gtk_recent_action_new", LIBRARY_GTK);
3005 	Linker.link(gtk_recent_action_new_for_manager, "gtk_recent_action_new_for_manager", LIBRARY_GTK);
3006 	Linker.link(gtk_recent_action_get_show_numbers, "gtk_recent_action_get_show_numbers", LIBRARY_GTK);
3007 	Linker.link(gtk_recent_action_set_show_numbers, "gtk_recent_action_set_show_numbers", LIBRARY_GTK);
3008 
3009 	// gtk.RecentChooser
3010 
3011 	Linker.link(gtk_recent_chooser_get_type, "gtk_recent_chooser_get_type", LIBRARY_GTK);
3012 	Linker.link(gtk_recent_chooser_add_filter, "gtk_recent_chooser_add_filter", LIBRARY_GTK);
3013 	Linker.link(gtk_recent_chooser_get_current_item, "gtk_recent_chooser_get_current_item", LIBRARY_GTK);
3014 	Linker.link(gtk_recent_chooser_get_current_uri, "gtk_recent_chooser_get_current_uri", LIBRARY_GTK);
3015 	Linker.link(gtk_recent_chooser_get_filter, "gtk_recent_chooser_get_filter", LIBRARY_GTK);
3016 	Linker.link(gtk_recent_chooser_get_items, "gtk_recent_chooser_get_items", LIBRARY_GTK);
3017 	Linker.link(gtk_recent_chooser_get_limit, "gtk_recent_chooser_get_limit", LIBRARY_GTK);
3018 	Linker.link(gtk_recent_chooser_get_local_only, "gtk_recent_chooser_get_local_only", LIBRARY_GTK);
3019 	Linker.link(gtk_recent_chooser_get_select_multiple, "gtk_recent_chooser_get_select_multiple", LIBRARY_GTK);
3020 	Linker.link(gtk_recent_chooser_get_show_icons, "gtk_recent_chooser_get_show_icons", LIBRARY_GTK);
3021 	Linker.link(gtk_recent_chooser_get_show_not_found, "gtk_recent_chooser_get_show_not_found", LIBRARY_GTK);
3022 	Linker.link(gtk_recent_chooser_get_show_private, "gtk_recent_chooser_get_show_private", LIBRARY_GTK);
3023 	Linker.link(gtk_recent_chooser_get_show_tips, "gtk_recent_chooser_get_show_tips", LIBRARY_GTK);
3024 	Linker.link(gtk_recent_chooser_get_sort_type, "gtk_recent_chooser_get_sort_type", LIBRARY_GTK);
3025 	Linker.link(gtk_recent_chooser_get_uris, "gtk_recent_chooser_get_uris", LIBRARY_GTK);
3026 	Linker.link(gtk_recent_chooser_list_filters, "gtk_recent_chooser_list_filters", LIBRARY_GTK);
3027 	Linker.link(gtk_recent_chooser_remove_filter, "gtk_recent_chooser_remove_filter", LIBRARY_GTK);
3028 	Linker.link(gtk_recent_chooser_select_all, "gtk_recent_chooser_select_all", LIBRARY_GTK);
3029 	Linker.link(gtk_recent_chooser_select_uri, "gtk_recent_chooser_select_uri", LIBRARY_GTK);
3030 	Linker.link(gtk_recent_chooser_set_current_uri, "gtk_recent_chooser_set_current_uri", LIBRARY_GTK);
3031 	Linker.link(gtk_recent_chooser_set_filter, "gtk_recent_chooser_set_filter", LIBRARY_GTK);
3032 	Linker.link(gtk_recent_chooser_set_limit, "gtk_recent_chooser_set_limit", LIBRARY_GTK);
3033 	Linker.link(gtk_recent_chooser_set_local_only, "gtk_recent_chooser_set_local_only", LIBRARY_GTK);
3034 	Linker.link(gtk_recent_chooser_set_select_multiple, "gtk_recent_chooser_set_select_multiple", LIBRARY_GTK);
3035 	Linker.link(gtk_recent_chooser_set_show_icons, "gtk_recent_chooser_set_show_icons", LIBRARY_GTK);
3036 	Linker.link(gtk_recent_chooser_set_show_not_found, "gtk_recent_chooser_set_show_not_found", LIBRARY_GTK);
3037 	Linker.link(gtk_recent_chooser_set_show_private, "gtk_recent_chooser_set_show_private", LIBRARY_GTK);
3038 	Linker.link(gtk_recent_chooser_set_show_tips, "gtk_recent_chooser_set_show_tips", LIBRARY_GTK);
3039 	Linker.link(gtk_recent_chooser_set_sort_func, "gtk_recent_chooser_set_sort_func", LIBRARY_GTK);
3040 	Linker.link(gtk_recent_chooser_set_sort_type, "gtk_recent_chooser_set_sort_type", LIBRARY_GTK);
3041 	Linker.link(gtk_recent_chooser_unselect_all, "gtk_recent_chooser_unselect_all", LIBRARY_GTK);
3042 	Linker.link(gtk_recent_chooser_unselect_uri, "gtk_recent_chooser_unselect_uri", LIBRARY_GTK);
3043 
3044 	// gtk.RecentChooserDialog
3045 
3046 	Linker.link(gtk_recent_chooser_dialog_get_type, "gtk_recent_chooser_dialog_get_type", LIBRARY_GTK);
3047 	Linker.link(gtk_recent_chooser_dialog_new, "gtk_recent_chooser_dialog_new", LIBRARY_GTK);
3048 	Linker.link(gtk_recent_chooser_dialog_new_for_manager, "gtk_recent_chooser_dialog_new_for_manager", LIBRARY_GTK);
3049 
3050 	// gtk.RecentChooserMenu
3051 
3052 	Linker.link(gtk_recent_chooser_menu_get_type, "gtk_recent_chooser_menu_get_type", LIBRARY_GTK);
3053 	Linker.link(gtk_recent_chooser_menu_new, "gtk_recent_chooser_menu_new", LIBRARY_GTK);
3054 	Linker.link(gtk_recent_chooser_menu_new_for_manager, "gtk_recent_chooser_menu_new_for_manager", LIBRARY_GTK);
3055 	Linker.link(gtk_recent_chooser_menu_get_show_numbers, "gtk_recent_chooser_menu_get_show_numbers", LIBRARY_GTK);
3056 	Linker.link(gtk_recent_chooser_menu_set_show_numbers, "gtk_recent_chooser_menu_set_show_numbers", LIBRARY_GTK);
3057 
3058 	// gtk.RecentChooserWidget
3059 
3060 	Linker.link(gtk_recent_chooser_widget_get_type, "gtk_recent_chooser_widget_get_type", LIBRARY_GTK);
3061 	Linker.link(gtk_recent_chooser_widget_new, "gtk_recent_chooser_widget_new", LIBRARY_GTK);
3062 	Linker.link(gtk_recent_chooser_widget_new_for_manager, "gtk_recent_chooser_widget_new_for_manager", LIBRARY_GTK);
3063 
3064 	// gtk.RecentFilter
3065 
3066 	Linker.link(gtk_recent_filter_get_type, "gtk_recent_filter_get_type", LIBRARY_GTK);
3067 	Linker.link(gtk_recent_filter_new, "gtk_recent_filter_new", LIBRARY_GTK);
3068 	Linker.link(gtk_recent_filter_add_age, "gtk_recent_filter_add_age", LIBRARY_GTK);
3069 	Linker.link(gtk_recent_filter_add_application, "gtk_recent_filter_add_application", LIBRARY_GTK);
3070 	Linker.link(gtk_recent_filter_add_custom, "gtk_recent_filter_add_custom", LIBRARY_GTK);
3071 	Linker.link(gtk_recent_filter_add_group, "gtk_recent_filter_add_group", LIBRARY_GTK);
3072 	Linker.link(gtk_recent_filter_add_mime_type, "gtk_recent_filter_add_mime_type", LIBRARY_GTK);
3073 	Linker.link(gtk_recent_filter_add_pattern, "gtk_recent_filter_add_pattern", LIBRARY_GTK);
3074 	Linker.link(gtk_recent_filter_add_pixbuf_formats, "gtk_recent_filter_add_pixbuf_formats", LIBRARY_GTK);
3075 	Linker.link(gtk_recent_filter_filter, "gtk_recent_filter_filter", LIBRARY_GTK);
3076 	Linker.link(gtk_recent_filter_get_name, "gtk_recent_filter_get_name", LIBRARY_GTK);
3077 	Linker.link(gtk_recent_filter_get_needed, "gtk_recent_filter_get_needed", LIBRARY_GTK);
3078 	Linker.link(gtk_recent_filter_set_name, "gtk_recent_filter_set_name", LIBRARY_GTK);
3079 
3080 	// gtk.RecentInfo
3081 
3082 	Linker.link(gtk_recent_info_get_type, "gtk_recent_info_get_type", LIBRARY_GTK);
3083 	Linker.link(gtk_recent_info_create_app_info, "gtk_recent_info_create_app_info", LIBRARY_GTK);
3084 	Linker.link(gtk_recent_info_exists, "gtk_recent_info_exists", LIBRARY_GTK);
3085 	Linker.link(gtk_recent_info_get_added, "gtk_recent_info_get_added", LIBRARY_GTK);
3086 	Linker.link(gtk_recent_info_get_age, "gtk_recent_info_get_age", LIBRARY_GTK);
3087 	Linker.link(gtk_recent_info_get_application_info, "gtk_recent_info_get_application_info", LIBRARY_GTK);
3088 	Linker.link(gtk_recent_info_get_applications, "gtk_recent_info_get_applications", LIBRARY_GTK);
3089 	Linker.link(gtk_recent_info_get_description, "gtk_recent_info_get_description", LIBRARY_GTK);
3090 	Linker.link(gtk_recent_info_get_display_name, "gtk_recent_info_get_display_name", LIBRARY_GTK);
3091 	Linker.link(gtk_recent_info_get_gicon, "gtk_recent_info_get_gicon", LIBRARY_GTK);
3092 	Linker.link(gtk_recent_info_get_groups, "gtk_recent_info_get_groups", LIBRARY_GTK);
3093 	Linker.link(gtk_recent_info_get_icon, "gtk_recent_info_get_icon", LIBRARY_GTK);
3094 	Linker.link(gtk_recent_info_get_mime_type, "gtk_recent_info_get_mime_type", LIBRARY_GTK);
3095 	Linker.link(gtk_recent_info_get_modified, "gtk_recent_info_get_modified", LIBRARY_GTK);
3096 	Linker.link(gtk_recent_info_get_private_hint, "gtk_recent_info_get_private_hint", LIBRARY_GTK);
3097 	Linker.link(gtk_recent_info_get_short_name, "gtk_recent_info_get_short_name", LIBRARY_GTK);
3098 	Linker.link(gtk_recent_info_get_uri, "gtk_recent_info_get_uri", LIBRARY_GTK);
3099 	Linker.link(gtk_recent_info_get_uri_display, "gtk_recent_info_get_uri_display", LIBRARY_GTK);
3100 	Linker.link(gtk_recent_info_get_visited, "gtk_recent_info_get_visited", LIBRARY_GTK);
3101 	Linker.link(gtk_recent_info_has_application, "gtk_recent_info_has_application", LIBRARY_GTK);
3102 	Linker.link(gtk_recent_info_has_group, "gtk_recent_info_has_group", LIBRARY_GTK);
3103 	Linker.link(gtk_recent_info_is_local, "gtk_recent_info_is_local", LIBRARY_GTK);
3104 	Linker.link(gtk_recent_info_last_application, "gtk_recent_info_last_application", LIBRARY_GTK);
3105 	Linker.link(gtk_recent_info_match, "gtk_recent_info_match", LIBRARY_GTK);
3106 	Linker.link(gtk_recent_info_ref, "gtk_recent_info_ref", LIBRARY_GTK);
3107 	Linker.link(gtk_recent_info_unref, "gtk_recent_info_unref", LIBRARY_GTK);
3108 
3109 	// gtk.RecentManager
3110 
3111 	Linker.link(gtk_recent_manager_get_type, "gtk_recent_manager_get_type", LIBRARY_GTK);
3112 	Linker.link(gtk_recent_manager_new, "gtk_recent_manager_new", LIBRARY_GTK);
3113 	Linker.link(gtk_recent_manager_get_default, "gtk_recent_manager_get_default", LIBRARY_GTK);
3114 	Linker.link(gtk_recent_manager_add_full, "gtk_recent_manager_add_full", LIBRARY_GTK);
3115 	Linker.link(gtk_recent_manager_add_item, "gtk_recent_manager_add_item", LIBRARY_GTK);
3116 	Linker.link(gtk_recent_manager_get_items, "gtk_recent_manager_get_items", LIBRARY_GTK);
3117 	Linker.link(gtk_recent_manager_has_item, "gtk_recent_manager_has_item", LIBRARY_GTK);
3118 	Linker.link(gtk_recent_manager_lookup_item, "gtk_recent_manager_lookup_item", LIBRARY_GTK);
3119 	Linker.link(gtk_recent_manager_move_item, "gtk_recent_manager_move_item", LIBRARY_GTK);
3120 	Linker.link(gtk_recent_manager_purge_items, "gtk_recent_manager_purge_items", LIBRARY_GTK);
3121 	Linker.link(gtk_recent_manager_remove_item, "gtk_recent_manager_remove_item", LIBRARY_GTK);
3122 
3123 	// gtk.RendererCellAccessible
3124 
3125 	Linker.link(gtk_renderer_cell_accessible_get_type, "gtk_renderer_cell_accessible_get_type", LIBRARY_GTK);
3126 	Linker.link(gtk_renderer_cell_accessible_new, "gtk_renderer_cell_accessible_new", LIBRARY_GTK);
3127 
3128 	// gtk.Requisition
3129 
3130 	Linker.link(gtk_requisition_get_type, "gtk_requisition_get_type", LIBRARY_GTK);
3131 	Linker.link(gtk_requisition_new, "gtk_requisition_new", LIBRARY_GTK);
3132 	Linker.link(gtk_requisition_copy, "gtk_requisition_copy", LIBRARY_GTK);
3133 	Linker.link(gtk_requisition_free, "gtk_requisition_free", LIBRARY_GTK);
3134 
3135 	// gtk.Revealer
3136 
3137 	Linker.link(gtk_revealer_get_type, "gtk_revealer_get_type", LIBRARY_GTK);
3138 	Linker.link(gtk_revealer_new, "gtk_revealer_new", LIBRARY_GTK);
3139 	Linker.link(gtk_revealer_get_child_revealed, "gtk_revealer_get_child_revealed", LIBRARY_GTK);
3140 	Linker.link(gtk_revealer_get_reveal_child, "gtk_revealer_get_reveal_child", LIBRARY_GTK);
3141 	Linker.link(gtk_revealer_get_transition_duration, "gtk_revealer_get_transition_duration", LIBRARY_GTK);
3142 	Linker.link(gtk_revealer_get_transition_type, "gtk_revealer_get_transition_type", LIBRARY_GTK);
3143 	Linker.link(gtk_revealer_set_reveal_child, "gtk_revealer_set_reveal_child", LIBRARY_GTK);
3144 	Linker.link(gtk_revealer_set_transition_duration, "gtk_revealer_set_transition_duration", LIBRARY_GTK);
3145 	Linker.link(gtk_revealer_set_transition_type, "gtk_revealer_set_transition_type", LIBRARY_GTK);
3146 
3147 	// gtk.Scale
3148 
3149 	Linker.link(gtk_scale_get_type, "gtk_scale_get_type", LIBRARY_GTK);
3150 	Linker.link(gtk_scale_new, "gtk_scale_new", LIBRARY_GTK);
3151 	Linker.link(gtk_scale_new_with_range, "gtk_scale_new_with_range", LIBRARY_GTK);
3152 	Linker.link(gtk_scale_add_mark, "gtk_scale_add_mark", LIBRARY_GTK);
3153 	Linker.link(gtk_scale_clear_marks, "gtk_scale_clear_marks", LIBRARY_GTK);
3154 	Linker.link(gtk_scale_get_digits, "gtk_scale_get_digits", LIBRARY_GTK);
3155 	Linker.link(gtk_scale_get_draw_value, "gtk_scale_get_draw_value", LIBRARY_GTK);
3156 	Linker.link(gtk_scale_get_has_origin, "gtk_scale_get_has_origin", LIBRARY_GTK);
3157 	Linker.link(gtk_scale_get_layout, "gtk_scale_get_layout", LIBRARY_GTK);
3158 	Linker.link(gtk_scale_get_layout_offsets, "gtk_scale_get_layout_offsets", LIBRARY_GTK);
3159 	Linker.link(gtk_scale_get_value_pos, "gtk_scale_get_value_pos", LIBRARY_GTK);
3160 	Linker.link(gtk_scale_set_digits, "gtk_scale_set_digits", LIBRARY_GTK);
3161 	Linker.link(gtk_scale_set_draw_value, "gtk_scale_set_draw_value", LIBRARY_GTK);
3162 	Linker.link(gtk_scale_set_has_origin, "gtk_scale_set_has_origin", LIBRARY_GTK);
3163 	Linker.link(gtk_scale_set_value_pos, "gtk_scale_set_value_pos", LIBRARY_GTK);
3164 
3165 	// gtk.ScaleAccessible
3166 
3167 	Linker.link(gtk_scale_accessible_get_type, "gtk_scale_accessible_get_type", LIBRARY_GTK);
3168 
3169 	// gtk.ScaleButton
3170 
3171 	Linker.link(gtk_scale_button_get_type, "gtk_scale_button_get_type", LIBRARY_GTK);
3172 	Linker.link(gtk_scale_button_new, "gtk_scale_button_new", LIBRARY_GTK);
3173 	Linker.link(gtk_scale_button_get_adjustment, "gtk_scale_button_get_adjustment", LIBRARY_GTK);
3174 	Linker.link(gtk_scale_button_get_minus_button, "gtk_scale_button_get_minus_button", LIBRARY_GTK);
3175 	Linker.link(gtk_scale_button_get_plus_button, "gtk_scale_button_get_plus_button", LIBRARY_GTK);
3176 	Linker.link(gtk_scale_button_get_popup, "gtk_scale_button_get_popup", LIBRARY_GTK);
3177 	Linker.link(gtk_scale_button_get_value, "gtk_scale_button_get_value", LIBRARY_GTK);
3178 	Linker.link(gtk_scale_button_set_adjustment, "gtk_scale_button_set_adjustment", LIBRARY_GTK);
3179 	Linker.link(gtk_scale_button_set_icons, "gtk_scale_button_set_icons", LIBRARY_GTK);
3180 	Linker.link(gtk_scale_button_set_value, "gtk_scale_button_set_value", LIBRARY_GTK);
3181 
3182 	// gtk.ScaleButtonAccessible
3183 
3184 	Linker.link(gtk_scale_button_accessible_get_type, "gtk_scale_button_accessible_get_type", LIBRARY_GTK);
3185 
3186 	// gtk.Scrollable
3187 
3188 	Linker.link(gtk_scrollable_get_type, "gtk_scrollable_get_type", LIBRARY_GTK);
3189 	Linker.link(gtk_scrollable_get_border, "gtk_scrollable_get_border", LIBRARY_GTK);
3190 	Linker.link(gtk_scrollable_get_hadjustment, "gtk_scrollable_get_hadjustment", LIBRARY_GTK);
3191 	Linker.link(gtk_scrollable_get_hscroll_policy, "gtk_scrollable_get_hscroll_policy", LIBRARY_GTK);
3192 	Linker.link(gtk_scrollable_get_vadjustment, "gtk_scrollable_get_vadjustment", LIBRARY_GTK);
3193 	Linker.link(gtk_scrollable_get_vscroll_policy, "gtk_scrollable_get_vscroll_policy", LIBRARY_GTK);
3194 	Linker.link(gtk_scrollable_set_hadjustment, "gtk_scrollable_set_hadjustment", LIBRARY_GTK);
3195 	Linker.link(gtk_scrollable_set_hscroll_policy, "gtk_scrollable_set_hscroll_policy", LIBRARY_GTK);
3196 	Linker.link(gtk_scrollable_set_vadjustment, "gtk_scrollable_set_vadjustment", LIBRARY_GTK);
3197 	Linker.link(gtk_scrollable_set_vscroll_policy, "gtk_scrollable_set_vscroll_policy", LIBRARY_GTK);
3198 
3199 	// gtk.Scrollbar
3200 
3201 	Linker.link(gtk_scrollbar_get_type, "gtk_scrollbar_get_type", LIBRARY_GTK);
3202 	Linker.link(gtk_scrollbar_new, "gtk_scrollbar_new", LIBRARY_GTK);
3203 
3204 	// gtk.ScrolledWindow
3205 
3206 	Linker.link(gtk_scrolled_window_get_type, "gtk_scrolled_window_get_type", LIBRARY_GTK);
3207 	Linker.link(gtk_scrolled_window_new, "gtk_scrolled_window_new", LIBRARY_GTK);
3208 	Linker.link(gtk_scrolled_window_add_with_viewport, "gtk_scrolled_window_add_with_viewport", LIBRARY_GTK);
3209 	Linker.link(gtk_scrolled_window_get_capture_button_press, "gtk_scrolled_window_get_capture_button_press", LIBRARY_GTK);
3210 	Linker.link(gtk_scrolled_window_get_hadjustment, "gtk_scrolled_window_get_hadjustment", LIBRARY_GTK);
3211 	Linker.link(gtk_scrolled_window_get_hscrollbar, "gtk_scrolled_window_get_hscrollbar", LIBRARY_GTK);
3212 	Linker.link(gtk_scrolled_window_get_kinetic_scrolling, "gtk_scrolled_window_get_kinetic_scrolling", LIBRARY_GTK);
3213 	Linker.link(gtk_scrolled_window_get_max_content_height, "gtk_scrolled_window_get_max_content_height", LIBRARY_GTK);
3214 	Linker.link(gtk_scrolled_window_get_max_content_width, "gtk_scrolled_window_get_max_content_width", LIBRARY_GTK);
3215 	Linker.link(gtk_scrolled_window_get_min_content_height, "gtk_scrolled_window_get_min_content_height", LIBRARY_GTK);
3216 	Linker.link(gtk_scrolled_window_get_min_content_width, "gtk_scrolled_window_get_min_content_width", LIBRARY_GTK);
3217 	Linker.link(gtk_scrolled_window_get_overlay_scrolling, "gtk_scrolled_window_get_overlay_scrolling", LIBRARY_GTK);
3218 	Linker.link(gtk_scrolled_window_get_placement, "gtk_scrolled_window_get_placement", LIBRARY_GTK);
3219 	Linker.link(gtk_scrolled_window_get_policy, "gtk_scrolled_window_get_policy", LIBRARY_GTK);
3220 	Linker.link(gtk_scrolled_window_get_propagate_natural_height, "gtk_scrolled_window_get_propagate_natural_height", LIBRARY_GTK);
3221 	Linker.link(gtk_scrolled_window_get_propagate_natural_width, "gtk_scrolled_window_get_propagate_natural_width", LIBRARY_GTK);
3222 	Linker.link(gtk_scrolled_window_get_shadow_type, "gtk_scrolled_window_get_shadow_type", LIBRARY_GTK);
3223 	Linker.link(gtk_scrolled_window_get_vadjustment, "gtk_scrolled_window_get_vadjustment", LIBRARY_GTK);
3224 	Linker.link(gtk_scrolled_window_get_vscrollbar, "gtk_scrolled_window_get_vscrollbar", LIBRARY_GTK);
3225 	Linker.link(gtk_scrolled_window_set_capture_button_press, "gtk_scrolled_window_set_capture_button_press", LIBRARY_GTK);
3226 	Linker.link(gtk_scrolled_window_set_hadjustment, "gtk_scrolled_window_set_hadjustment", LIBRARY_GTK);
3227 	Linker.link(gtk_scrolled_window_set_kinetic_scrolling, "gtk_scrolled_window_set_kinetic_scrolling", LIBRARY_GTK);
3228 	Linker.link(gtk_scrolled_window_set_max_content_height, "gtk_scrolled_window_set_max_content_height", LIBRARY_GTK);
3229 	Linker.link(gtk_scrolled_window_set_max_content_width, "gtk_scrolled_window_set_max_content_width", LIBRARY_GTK);
3230 	Linker.link(gtk_scrolled_window_set_min_content_height, "gtk_scrolled_window_set_min_content_height", LIBRARY_GTK);
3231 	Linker.link(gtk_scrolled_window_set_min_content_width, "gtk_scrolled_window_set_min_content_width", LIBRARY_GTK);
3232 	Linker.link(gtk_scrolled_window_set_overlay_scrolling, "gtk_scrolled_window_set_overlay_scrolling", LIBRARY_GTK);
3233 	Linker.link(gtk_scrolled_window_set_placement, "gtk_scrolled_window_set_placement", LIBRARY_GTK);
3234 	Linker.link(gtk_scrolled_window_set_policy, "gtk_scrolled_window_set_policy", LIBRARY_GTK);
3235 	Linker.link(gtk_scrolled_window_set_propagate_natural_height, "gtk_scrolled_window_set_propagate_natural_height", LIBRARY_GTK);
3236 	Linker.link(gtk_scrolled_window_set_propagate_natural_width, "gtk_scrolled_window_set_propagate_natural_width", LIBRARY_GTK);
3237 	Linker.link(gtk_scrolled_window_set_shadow_type, "gtk_scrolled_window_set_shadow_type", LIBRARY_GTK);
3238 	Linker.link(gtk_scrolled_window_set_vadjustment, "gtk_scrolled_window_set_vadjustment", LIBRARY_GTK);
3239 	Linker.link(gtk_scrolled_window_unset_placement, "gtk_scrolled_window_unset_placement", LIBRARY_GTK);
3240 
3241 	// gtk.ScrolledWindowAccessible
3242 
3243 	Linker.link(gtk_scrolled_window_accessible_get_type, "gtk_scrolled_window_accessible_get_type", LIBRARY_GTK);
3244 
3245 	// gtk.SearchBar
3246 
3247 	Linker.link(gtk_search_bar_get_type, "gtk_search_bar_get_type", LIBRARY_GTK);
3248 	Linker.link(gtk_search_bar_new, "gtk_search_bar_new", LIBRARY_GTK);
3249 	Linker.link(gtk_search_bar_connect_entry, "gtk_search_bar_connect_entry", LIBRARY_GTK);
3250 	Linker.link(gtk_search_bar_get_search_mode, "gtk_search_bar_get_search_mode", LIBRARY_GTK);
3251 	Linker.link(gtk_search_bar_get_show_close_button, "gtk_search_bar_get_show_close_button", LIBRARY_GTK);
3252 	Linker.link(gtk_search_bar_handle_event, "gtk_search_bar_handle_event", LIBRARY_GTK);
3253 	Linker.link(gtk_search_bar_set_search_mode, "gtk_search_bar_set_search_mode", LIBRARY_GTK);
3254 	Linker.link(gtk_search_bar_set_show_close_button, "gtk_search_bar_set_show_close_button", LIBRARY_GTK);
3255 
3256 	// gtk.SearchEntry
3257 
3258 	Linker.link(gtk_search_entry_get_type, "gtk_search_entry_get_type", LIBRARY_GTK);
3259 	Linker.link(gtk_search_entry_new, "gtk_search_entry_new", LIBRARY_GTK);
3260 	Linker.link(gtk_search_entry_handle_event, "gtk_search_entry_handle_event", LIBRARY_GTK);
3261 
3262 	// gtk.SelectionData
3263 
3264 	Linker.link(gtk_selection_data_get_type, "gtk_selection_data_get_type", LIBRARY_GTK);
3265 	Linker.link(gtk_selection_data_copy, "gtk_selection_data_copy", LIBRARY_GTK);
3266 	Linker.link(gtk_selection_data_free, "gtk_selection_data_free", LIBRARY_GTK);
3267 	Linker.link(gtk_selection_data_get_data, "gtk_selection_data_get_data", LIBRARY_GTK);
3268 	Linker.link(gtk_selection_data_get_data_type, "gtk_selection_data_get_data_type", LIBRARY_GTK);
3269 	Linker.link(gtk_selection_data_get_data_with_length, "gtk_selection_data_get_data_with_length", LIBRARY_GTK);
3270 	Linker.link(gtk_selection_data_get_display, "gtk_selection_data_get_display", LIBRARY_GTK);
3271 	Linker.link(gtk_selection_data_get_format, "gtk_selection_data_get_format", LIBRARY_GTK);
3272 	Linker.link(gtk_selection_data_get_length, "gtk_selection_data_get_length", LIBRARY_GTK);
3273 	Linker.link(gtk_selection_data_get_pixbuf, "gtk_selection_data_get_pixbuf", LIBRARY_GTK);
3274 	Linker.link(gtk_selection_data_get_selection, "gtk_selection_data_get_selection", LIBRARY_GTK);
3275 	Linker.link(gtk_selection_data_get_target, "gtk_selection_data_get_target", LIBRARY_GTK);
3276 	Linker.link(gtk_selection_data_get_targets, "gtk_selection_data_get_targets", LIBRARY_GTK);
3277 	Linker.link(gtk_selection_data_get_text, "gtk_selection_data_get_text", LIBRARY_GTK);
3278 	Linker.link(gtk_selection_data_get_uris, "gtk_selection_data_get_uris", LIBRARY_GTK);
3279 	Linker.link(gtk_selection_data_set, "gtk_selection_data_set", LIBRARY_GTK);
3280 	Linker.link(gtk_selection_data_set_pixbuf, "gtk_selection_data_set_pixbuf", LIBRARY_GTK);
3281 	Linker.link(gtk_selection_data_set_text, "gtk_selection_data_set_text", LIBRARY_GTK);
3282 	Linker.link(gtk_selection_data_set_uris, "gtk_selection_data_set_uris", LIBRARY_GTK);
3283 	Linker.link(gtk_selection_data_targets_include_image, "gtk_selection_data_targets_include_image", LIBRARY_GTK);
3284 	Linker.link(gtk_selection_data_targets_include_rich_text, "gtk_selection_data_targets_include_rich_text", LIBRARY_GTK);
3285 	Linker.link(gtk_selection_data_targets_include_text, "gtk_selection_data_targets_include_text", LIBRARY_GTK);
3286 	Linker.link(gtk_selection_data_targets_include_uri, "gtk_selection_data_targets_include_uri", LIBRARY_GTK);
3287 	Linker.link(gtk_selection_add_target, "gtk_selection_add_target", LIBRARY_GTK);
3288 	Linker.link(gtk_selection_add_targets, "gtk_selection_add_targets", LIBRARY_GTK);
3289 	Linker.link(gtk_selection_clear_targets, "gtk_selection_clear_targets", LIBRARY_GTK);
3290 	Linker.link(gtk_selection_convert, "gtk_selection_convert", LIBRARY_GTK);
3291 	Linker.link(gtk_selection_owner_set, "gtk_selection_owner_set", LIBRARY_GTK);
3292 	Linker.link(gtk_selection_owner_set_for_display, "gtk_selection_owner_set_for_display", LIBRARY_GTK);
3293 	Linker.link(gtk_selection_remove_all, "gtk_selection_remove_all", LIBRARY_GTK);
3294 
3295 	// gtk.Separator
3296 
3297 	Linker.link(gtk_separator_get_type, "gtk_separator_get_type", LIBRARY_GTK);
3298 	Linker.link(gtk_separator_new, "gtk_separator_new", LIBRARY_GTK);
3299 
3300 	// gtk.SeparatorMenuItem
3301 
3302 	Linker.link(gtk_separator_menu_item_get_type, "gtk_separator_menu_item_get_type", LIBRARY_GTK);
3303 	Linker.link(gtk_separator_menu_item_new, "gtk_separator_menu_item_new", LIBRARY_GTK);
3304 
3305 	// gtk.SeparatorToolItem
3306 
3307 	Linker.link(gtk_separator_tool_item_get_type, "gtk_separator_tool_item_get_type", LIBRARY_GTK);
3308 	Linker.link(gtk_separator_tool_item_new, "gtk_separator_tool_item_new", LIBRARY_GTK);
3309 	Linker.link(gtk_separator_tool_item_get_draw, "gtk_separator_tool_item_get_draw", LIBRARY_GTK);
3310 	Linker.link(gtk_separator_tool_item_set_draw, "gtk_separator_tool_item_set_draw", LIBRARY_GTK);
3311 
3312 	// gtk.Settings
3313 
3314 	Linker.link(gtk_settings_get_type, "gtk_settings_get_type", LIBRARY_GTK);
3315 	Linker.link(gtk_settings_get_default, "gtk_settings_get_default", LIBRARY_GTK);
3316 	Linker.link(gtk_settings_get_for_screen, "gtk_settings_get_for_screen", LIBRARY_GTK);
3317 	Linker.link(gtk_settings_install_property, "gtk_settings_install_property", LIBRARY_GTK);
3318 	Linker.link(gtk_settings_install_property_parser, "gtk_settings_install_property_parser", LIBRARY_GTK);
3319 	Linker.link(gtk_settings_reset_property, "gtk_settings_reset_property", LIBRARY_GTK);
3320 	Linker.link(gtk_settings_set_double_property, "gtk_settings_set_double_property", LIBRARY_GTK);
3321 	Linker.link(gtk_settings_set_long_property, "gtk_settings_set_long_property", LIBRARY_GTK);
3322 	Linker.link(gtk_settings_set_property_value, "gtk_settings_set_property_value", LIBRARY_GTK);
3323 	Linker.link(gtk_settings_set_string_property, "gtk_settings_set_string_property", LIBRARY_GTK);
3324 
3325 	// gtk.ShortcutLabel
3326 
3327 	Linker.link(gtk_shortcut_label_get_type, "gtk_shortcut_label_get_type", LIBRARY_GTK);
3328 	Linker.link(gtk_shortcut_label_new, "gtk_shortcut_label_new", LIBRARY_GTK);
3329 	Linker.link(gtk_shortcut_label_get_accelerator, "gtk_shortcut_label_get_accelerator", LIBRARY_GTK);
3330 	Linker.link(gtk_shortcut_label_get_disabled_text, "gtk_shortcut_label_get_disabled_text", LIBRARY_GTK);
3331 	Linker.link(gtk_shortcut_label_set_accelerator, "gtk_shortcut_label_set_accelerator", LIBRARY_GTK);
3332 	Linker.link(gtk_shortcut_label_set_disabled_text, "gtk_shortcut_label_set_disabled_text", LIBRARY_GTK);
3333 
3334 	// gtk.ShortcutsGroup
3335 
3336 	Linker.link(gtk_shortcuts_group_get_type, "gtk_shortcuts_group_get_type", LIBRARY_GTK);
3337 
3338 	// gtk.ShortcutsSection
3339 
3340 	Linker.link(gtk_shortcuts_section_get_type, "gtk_shortcuts_section_get_type", LIBRARY_GTK);
3341 
3342 	// gtk.ShortcutsShortcut
3343 
3344 	Linker.link(gtk_shortcuts_shortcut_get_type, "gtk_shortcuts_shortcut_get_type", LIBRARY_GTK);
3345 
3346 	// gtk.ShortcutsWindow
3347 
3348 	Linker.link(gtk_shortcuts_window_get_type, "gtk_shortcuts_window_get_type", LIBRARY_GTK);
3349 
3350 	// gtk.SizeGroup
3351 
3352 	Linker.link(gtk_size_group_get_type, "gtk_size_group_get_type", LIBRARY_GTK);
3353 	Linker.link(gtk_size_group_new, "gtk_size_group_new", LIBRARY_GTK);
3354 	Linker.link(gtk_size_group_add_widget, "gtk_size_group_add_widget", LIBRARY_GTK);
3355 	Linker.link(gtk_size_group_get_ignore_hidden, "gtk_size_group_get_ignore_hidden", LIBRARY_GTK);
3356 	Linker.link(gtk_size_group_get_mode, "gtk_size_group_get_mode", LIBRARY_GTK);
3357 	Linker.link(gtk_size_group_get_widgets, "gtk_size_group_get_widgets", LIBRARY_GTK);
3358 	Linker.link(gtk_size_group_remove_widget, "gtk_size_group_remove_widget", LIBRARY_GTK);
3359 	Linker.link(gtk_size_group_set_ignore_hidden, "gtk_size_group_set_ignore_hidden", LIBRARY_GTK);
3360 	Linker.link(gtk_size_group_set_mode, "gtk_size_group_set_mode", LIBRARY_GTK);
3361 
3362 	// gtk.Socket
3363 
3364 	Linker.link(gtk_socket_get_type, "gtk_socket_get_type", LIBRARY_GTK);
3365 	Linker.link(gtk_socket_new, "gtk_socket_new", LIBRARY_GTK);
3366 	Linker.link(gtk_socket_add_id, "gtk_socket_add_id", LIBRARY_GTK);
3367 	Linker.link(gtk_socket_get_id, "gtk_socket_get_id", LIBRARY_GTK);
3368 	Linker.link(gtk_socket_get_plug_window, "gtk_socket_get_plug_window", LIBRARY_GTK);
3369 
3370 	// gtk.SpinButton
3371 
3372 	Linker.link(gtk_spin_button_get_type, "gtk_spin_button_get_type", LIBRARY_GTK);
3373 	Linker.link(gtk_spin_button_new, "gtk_spin_button_new", LIBRARY_GTK);
3374 	Linker.link(gtk_spin_button_new_with_range, "gtk_spin_button_new_with_range", LIBRARY_GTK);
3375 	Linker.link(gtk_spin_button_configure, "gtk_spin_button_configure", LIBRARY_GTK);
3376 	Linker.link(gtk_spin_button_get_adjustment, "gtk_spin_button_get_adjustment", LIBRARY_GTK);
3377 	Linker.link(gtk_spin_button_get_digits, "gtk_spin_button_get_digits", LIBRARY_GTK);
3378 	Linker.link(gtk_spin_button_get_increments, "gtk_spin_button_get_increments", LIBRARY_GTK);
3379 	Linker.link(gtk_spin_button_get_numeric, "gtk_spin_button_get_numeric", LIBRARY_GTK);
3380 	Linker.link(gtk_spin_button_get_range, "gtk_spin_button_get_range", LIBRARY_GTK);
3381 	Linker.link(gtk_spin_button_get_snap_to_ticks, "gtk_spin_button_get_snap_to_ticks", LIBRARY_GTK);
3382 	Linker.link(gtk_spin_button_get_update_policy, "gtk_spin_button_get_update_policy", LIBRARY_GTK);
3383 	Linker.link(gtk_spin_button_get_value, "gtk_spin_button_get_value", LIBRARY_GTK);
3384 	Linker.link(gtk_spin_button_get_value_as_int, "gtk_spin_button_get_value_as_int", LIBRARY_GTK);
3385 	Linker.link(gtk_spin_button_get_wrap, "gtk_spin_button_get_wrap", LIBRARY_GTK);
3386 	Linker.link(gtk_spin_button_set_adjustment, "gtk_spin_button_set_adjustment", LIBRARY_GTK);
3387 	Linker.link(gtk_spin_button_set_digits, "gtk_spin_button_set_digits", LIBRARY_GTK);
3388 	Linker.link(gtk_spin_button_set_increments, "gtk_spin_button_set_increments", LIBRARY_GTK);
3389 	Linker.link(gtk_spin_button_set_numeric, "gtk_spin_button_set_numeric", LIBRARY_GTK);
3390 	Linker.link(gtk_spin_button_set_range, "gtk_spin_button_set_range", LIBRARY_GTK);
3391 	Linker.link(gtk_spin_button_set_snap_to_ticks, "gtk_spin_button_set_snap_to_ticks", LIBRARY_GTK);
3392 	Linker.link(gtk_spin_button_set_update_policy, "gtk_spin_button_set_update_policy", LIBRARY_GTK);
3393 	Linker.link(gtk_spin_button_set_value, "gtk_spin_button_set_value", LIBRARY_GTK);
3394 	Linker.link(gtk_spin_button_set_wrap, "gtk_spin_button_set_wrap", LIBRARY_GTK);
3395 	Linker.link(gtk_spin_button_spin, "gtk_spin_button_spin", LIBRARY_GTK);
3396 	Linker.link(gtk_spin_button_update, "gtk_spin_button_update", LIBRARY_GTK);
3397 
3398 	// gtk.SpinButtonAccessible
3399 
3400 	Linker.link(gtk_spin_button_accessible_get_type, "gtk_spin_button_accessible_get_type", LIBRARY_GTK);
3401 
3402 	// gtk.Spinner
3403 
3404 	Linker.link(gtk_spinner_get_type, "gtk_spinner_get_type", LIBRARY_GTK);
3405 	Linker.link(gtk_spinner_new, "gtk_spinner_new", LIBRARY_GTK);
3406 	Linker.link(gtk_spinner_start, "gtk_spinner_start", LIBRARY_GTK);
3407 	Linker.link(gtk_spinner_stop, "gtk_spinner_stop", LIBRARY_GTK);
3408 
3409 	// gtk.SpinnerAccessible
3410 
3411 	Linker.link(gtk_spinner_accessible_get_type, "gtk_spinner_accessible_get_type", LIBRARY_GTK);
3412 
3413 	// gtk.Stack
3414 
3415 	Linker.link(gtk_stack_get_type, "gtk_stack_get_type", LIBRARY_GTK);
3416 	Linker.link(gtk_stack_new, "gtk_stack_new", LIBRARY_GTK);
3417 	Linker.link(gtk_stack_add_named, "gtk_stack_add_named", LIBRARY_GTK);
3418 	Linker.link(gtk_stack_add_titled, "gtk_stack_add_titled", LIBRARY_GTK);
3419 	Linker.link(gtk_stack_get_child_by_name, "gtk_stack_get_child_by_name", LIBRARY_GTK);
3420 	Linker.link(gtk_stack_get_hhomogeneous, "gtk_stack_get_hhomogeneous", LIBRARY_GTK);
3421 	Linker.link(gtk_stack_get_homogeneous, "gtk_stack_get_homogeneous", LIBRARY_GTK);
3422 	Linker.link(gtk_stack_get_interpolate_size, "gtk_stack_get_interpolate_size", LIBRARY_GTK);
3423 	Linker.link(gtk_stack_get_transition_duration, "gtk_stack_get_transition_duration", LIBRARY_GTK);
3424 	Linker.link(gtk_stack_get_transition_running, "gtk_stack_get_transition_running", LIBRARY_GTK);
3425 	Linker.link(gtk_stack_get_transition_type, "gtk_stack_get_transition_type", LIBRARY_GTK);
3426 	Linker.link(gtk_stack_get_vhomogeneous, "gtk_stack_get_vhomogeneous", LIBRARY_GTK);
3427 	Linker.link(gtk_stack_get_visible_child, "gtk_stack_get_visible_child", LIBRARY_GTK);
3428 	Linker.link(gtk_stack_get_visible_child_name, "gtk_stack_get_visible_child_name", LIBRARY_GTK);
3429 	Linker.link(gtk_stack_set_hhomogeneous, "gtk_stack_set_hhomogeneous", LIBRARY_GTK);
3430 	Linker.link(gtk_stack_set_homogeneous, "gtk_stack_set_homogeneous", LIBRARY_GTK);
3431 	Linker.link(gtk_stack_set_interpolate_size, "gtk_stack_set_interpolate_size", LIBRARY_GTK);
3432 	Linker.link(gtk_stack_set_transition_duration, "gtk_stack_set_transition_duration", LIBRARY_GTK);
3433 	Linker.link(gtk_stack_set_transition_type, "gtk_stack_set_transition_type", LIBRARY_GTK);
3434 	Linker.link(gtk_stack_set_vhomogeneous, "gtk_stack_set_vhomogeneous", LIBRARY_GTK);
3435 	Linker.link(gtk_stack_set_visible_child, "gtk_stack_set_visible_child", LIBRARY_GTK);
3436 	Linker.link(gtk_stack_set_visible_child_full, "gtk_stack_set_visible_child_full", LIBRARY_GTK);
3437 	Linker.link(gtk_stack_set_visible_child_name, "gtk_stack_set_visible_child_name", LIBRARY_GTK);
3438 
3439 	// gtk.StackAccessible
3440 
3441 	Linker.link(gtk_stack_accessible_get_type, "gtk_stack_accessible_get_type", LIBRARY_GTK);
3442 
3443 	// gtk.StackSidebar
3444 
3445 	Linker.link(gtk_stack_sidebar_get_type, "gtk_stack_sidebar_get_type", LIBRARY_GTK);
3446 	Linker.link(gtk_stack_sidebar_new, "gtk_stack_sidebar_new", LIBRARY_GTK);
3447 	Linker.link(gtk_stack_sidebar_get_stack, "gtk_stack_sidebar_get_stack", LIBRARY_GTK);
3448 	Linker.link(gtk_stack_sidebar_set_stack, "gtk_stack_sidebar_set_stack", LIBRARY_GTK);
3449 
3450 	// gtk.StackSwitcher
3451 
3452 	Linker.link(gtk_stack_switcher_get_type, "gtk_stack_switcher_get_type", LIBRARY_GTK);
3453 	Linker.link(gtk_stack_switcher_new, "gtk_stack_switcher_new", LIBRARY_GTK);
3454 	Linker.link(gtk_stack_switcher_get_stack, "gtk_stack_switcher_get_stack", LIBRARY_GTK);
3455 	Linker.link(gtk_stack_switcher_set_stack, "gtk_stack_switcher_set_stack", LIBRARY_GTK);
3456 
3457 	// gtk.StatusIcon
3458 
3459 	Linker.link(gtk_status_icon_get_type, "gtk_status_icon_get_type", LIBRARY_GTK);
3460 	Linker.link(gtk_status_icon_new, "gtk_status_icon_new", LIBRARY_GTK);
3461 	Linker.link(gtk_status_icon_new_from_file, "gtk_status_icon_new_from_file", LIBRARY_GTK);
3462 	Linker.link(gtk_status_icon_new_from_gicon, "gtk_status_icon_new_from_gicon", LIBRARY_GTK);
3463 	Linker.link(gtk_status_icon_new_from_icon_name, "gtk_status_icon_new_from_icon_name", LIBRARY_GTK);
3464 	Linker.link(gtk_status_icon_new_from_pixbuf, "gtk_status_icon_new_from_pixbuf", LIBRARY_GTK);
3465 	Linker.link(gtk_status_icon_new_from_stock, "gtk_status_icon_new_from_stock", LIBRARY_GTK);
3466 	Linker.link(gtk_status_icon_position_menu, "gtk_status_icon_position_menu", LIBRARY_GTK);
3467 	Linker.link(gtk_status_icon_get_geometry, "gtk_status_icon_get_geometry", LIBRARY_GTK);
3468 	Linker.link(gtk_status_icon_get_gicon, "gtk_status_icon_get_gicon", LIBRARY_GTK);
3469 	Linker.link(gtk_status_icon_get_has_tooltip, "gtk_status_icon_get_has_tooltip", LIBRARY_GTK);
3470 	Linker.link(gtk_status_icon_get_icon_name, "gtk_status_icon_get_icon_name", LIBRARY_GTK);
3471 	Linker.link(gtk_status_icon_get_pixbuf, "gtk_status_icon_get_pixbuf", LIBRARY_GTK);
3472 	Linker.link(gtk_status_icon_get_screen, "gtk_status_icon_get_screen", LIBRARY_GTK);
3473 	Linker.link(gtk_status_icon_get_size, "gtk_status_icon_get_size", LIBRARY_GTK);
3474 	Linker.link(gtk_status_icon_get_stock, "gtk_status_icon_get_stock", LIBRARY_GTK);
3475 	Linker.link(gtk_status_icon_get_storage_type, "gtk_status_icon_get_storage_type", LIBRARY_GTK);
3476 	Linker.link(gtk_status_icon_get_title, "gtk_status_icon_get_title", LIBRARY_GTK);
3477 	Linker.link(gtk_status_icon_get_tooltip_markup, "gtk_status_icon_get_tooltip_markup", LIBRARY_GTK);
3478 	Linker.link(gtk_status_icon_get_tooltip_text, "gtk_status_icon_get_tooltip_text", LIBRARY_GTK);
3479 	Linker.link(gtk_status_icon_get_visible, "gtk_status_icon_get_visible", LIBRARY_GTK);
3480 	Linker.link(gtk_status_icon_get_x11_window_id, "gtk_status_icon_get_x11_window_id", LIBRARY_GTK);
3481 	Linker.link(gtk_status_icon_is_embedded, "gtk_status_icon_is_embedded", LIBRARY_GTK);
3482 	Linker.link(gtk_status_icon_set_from_file, "gtk_status_icon_set_from_file", LIBRARY_GTK);
3483 	Linker.link(gtk_status_icon_set_from_gicon, "gtk_status_icon_set_from_gicon", LIBRARY_GTK);
3484 	Linker.link(gtk_status_icon_set_from_icon_name, "gtk_status_icon_set_from_icon_name", LIBRARY_GTK);
3485 	Linker.link(gtk_status_icon_set_from_pixbuf, "gtk_status_icon_set_from_pixbuf", LIBRARY_GTK);
3486 	Linker.link(gtk_status_icon_set_from_stock, "gtk_status_icon_set_from_stock", LIBRARY_GTK);
3487 	Linker.link(gtk_status_icon_set_has_tooltip, "gtk_status_icon_set_has_tooltip", LIBRARY_GTK);
3488 	Linker.link(gtk_status_icon_set_name, "gtk_status_icon_set_name", LIBRARY_GTK);
3489 	Linker.link(gtk_status_icon_set_screen, "gtk_status_icon_set_screen", LIBRARY_GTK);
3490 	Linker.link(gtk_status_icon_set_title, "gtk_status_icon_set_title", LIBRARY_GTK);
3491 	Linker.link(gtk_status_icon_set_tooltip_markup, "gtk_status_icon_set_tooltip_markup", LIBRARY_GTK);
3492 	Linker.link(gtk_status_icon_set_tooltip_text, "gtk_status_icon_set_tooltip_text", LIBRARY_GTK);
3493 	Linker.link(gtk_status_icon_set_visible, "gtk_status_icon_set_visible", LIBRARY_GTK);
3494 
3495 	// gtk.Statusbar
3496 
3497 	Linker.link(gtk_statusbar_get_type, "gtk_statusbar_get_type", LIBRARY_GTK);
3498 	Linker.link(gtk_statusbar_new, "gtk_statusbar_new", LIBRARY_GTK);
3499 	Linker.link(gtk_statusbar_get_context_id, "gtk_statusbar_get_context_id", LIBRARY_GTK);
3500 	Linker.link(gtk_statusbar_get_message_area, "gtk_statusbar_get_message_area", LIBRARY_GTK);
3501 	Linker.link(gtk_statusbar_pop, "gtk_statusbar_pop", LIBRARY_GTK);
3502 	Linker.link(gtk_statusbar_push, "gtk_statusbar_push", LIBRARY_GTK);
3503 	Linker.link(gtk_statusbar_remove, "gtk_statusbar_remove", LIBRARY_GTK);
3504 	Linker.link(gtk_statusbar_remove_all, "gtk_statusbar_remove_all", LIBRARY_GTK);
3505 
3506 	// gtk.StatusbarAccessible
3507 
3508 	Linker.link(gtk_statusbar_accessible_get_type, "gtk_statusbar_accessible_get_type", LIBRARY_GTK);
3509 
3510 	// gtk.StockItem
3511 
3512 	Linker.link(gtk_stock_item_copy, "gtk_stock_item_copy", LIBRARY_GTK);
3513 	Linker.link(gtk_stock_item_free, "gtk_stock_item_free", LIBRARY_GTK);
3514 	Linker.link(gtk_stock_add, "gtk_stock_add", LIBRARY_GTK);
3515 	Linker.link(gtk_stock_add_static, "gtk_stock_add_static", LIBRARY_GTK);
3516 	Linker.link(gtk_stock_list_ids, "gtk_stock_list_ids", LIBRARY_GTK);
3517 	Linker.link(gtk_stock_lookup, "gtk_stock_lookup", LIBRARY_GTK);
3518 	Linker.link(gtk_stock_set_translate_func, "gtk_stock_set_translate_func", LIBRARY_GTK);
3519 
3520 	// gtk.Style
3521 
3522 	Linker.link(gtk_style_get_type, "gtk_style_get_type", LIBRARY_GTK);
3523 	Linker.link(gtk_style_new, "gtk_style_new", LIBRARY_GTK);
3524 	Linker.link(gtk_style_apply_default_background, "gtk_style_apply_default_background", LIBRARY_GTK);
3525 	Linker.link(gtk_style_attach, "gtk_style_attach", LIBRARY_GTK);
3526 	Linker.link(gtk_style_copy, "gtk_style_copy", LIBRARY_GTK);
3527 	Linker.link(gtk_style_detach, "gtk_style_detach", LIBRARY_GTK);
3528 	Linker.link(gtk_style_get, "gtk_style_get", LIBRARY_GTK);
3529 	Linker.link(gtk_style_get_style_property, "gtk_style_get_style_property", LIBRARY_GTK);
3530 	Linker.link(gtk_style_get_valist, "gtk_style_get_valist", LIBRARY_GTK);
3531 	Linker.link(gtk_style_has_context, "gtk_style_has_context", LIBRARY_GTK);
3532 	Linker.link(gtk_style_lookup_color, "gtk_style_lookup_color", LIBRARY_GTK);
3533 	Linker.link(gtk_style_lookup_icon_set, "gtk_style_lookup_icon_set", LIBRARY_GTK);
3534 	Linker.link(gtk_style_render_icon, "gtk_style_render_icon", LIBRARY_GTK);
3535 	Linker.link(gtk_style_set_background, "gtk_style_set_background", LIBRARY_GTK);
3536 	Linker.link(gtk_paint_arrow, "gtk_paint_arrow", LIBRARY_GTK);
3537 	Linker.link(gtk_paint_box, "gtk_paint_box", LIBRARY_GTK);
3538 	Linker.link(gtk_paint_box_gap, "gtk_paint_box_gap", LIBRARY_GTK);
3539 	Linker.link(gtk_paint_check, "gtk_paint_check", LIBRARY_GTK);
3540 	Linker.link(gtk_paint_diamond, "gtk_paint_diamond", LIBRARY_GTK);
3541 	Linker.link(gtk_paint_expander, "gtk_paint_expander", LIBRARY_GTK);
3542 	Linker.link(gtk_paint_extension, "gtk_paint_extension", LIBRARY_GTK);
3543 	Linker.link(gtk_paint_flat_box, "gtk_paint_flat_box", LIBRARY_GTK);
3544 	Linker.link(gtk_paint_focus, "gtk_paint_focus", LIBRARY_GTK);
3545 	Linker.link(gtk_paint_handle, "gtk_paint_handle", LIBRARY_GTK);
3546 	Linker.link(gtk_paint_hline, "gtk_paint_hline", LIBRARY_GTK);
3547 	Linker.link(gtk_paint_layout, "gtk_paint_layout", LIBRARY_GTK);
3548 	Linker.link(gtk_paint_option, "gtk_paint_option", LIBRARY_GTK);
3549 	Linker.link(gtk_paint_resize_grip, "gtk_paint_resize_grip", LIBRARY_GTK);
3550 	Linker.link(gtk_paint_shadow, "gtk_paint_shadow", LIBRARY_GTK);
3551 	Linker.link(gtk_paint_shadow_gap, "gtk_paint_shadow_gap", LIBRARY_GTK);
3552 	Linker.link(gtk_paint_slider, "gtk_paint_slider", LIBRARY_GTK);
3553 	Linker.link(gtk_paint_spinner, "gtk_paint_spinner", LIBRARY_GTK);
3554 	Linker.link(gtk_paint_tab, "gtk_paint_tab", LIBRARY_GTK);
3555 	Linker.link(gtk_paint_vline, "gtk_paint_vline", LIBRARY_GTK);
3556 
3557 	// gtk.StyleContext
3558 
3559 	Linker.link(gtk_style_context_get_type, "gtk_style_context_get_type", LIBRARY_GTK);
3560 	Linker.link(gtk_style_context_new, "gtk_style_context_new", LIBRARY_GTK);
3561 	Linker.link(gtk_style_context_add_provider_for_screen, "gtk_style_context_add_provider_for_screen", LIBRARY_GTK);
3562 	Linker.link(gtk_style_context_remove_provider_for_screen, "gtk_style_context_remove_provider_for_screen", LIBRARY_GTK);
3563 	Linker.link(gtk_style_context_reset_widgets, "gtk_style_context_reset_widgets", LIBRARY_GTK);
3564 	Linker.link(gtk_style_context_add_class, "gtk_style_context_add_class", LIBRARY_GTK);
3565 	Linker.link(gtk_style_context_add_provider, "gtk_style_context_add_provider", LIBRARY_GTK);
3566 	Linker.link(gtk_style_context_add_region, "gtk_style_context_add_region", LIBRARY_GTK);
3567 	Linker.link(gtk_style_context_cancel_animations, "gtk_style_context_cancel_animations", LIBRARY_GTK);
3568 	Linker.link(gtk_style_context_get, "gtk_style_context_get", LIBRARY_GTK);
3569 	Linker.link(gtk_style_context_get_background_color, "gtk_style_context_get_background_color", LIBRARY_GTK);
3570 	Linker.link(gtk_style_context_get_border, "gtk_style_context_get_border", LIBRARY_GTK);
3571 	Linker.link(gtk_style_context_get_border_color, "gtk_style_context_get_border_color", LIBRARY_GTK);
3572 	Linker.link(gtk_style_context_get_color, "gtk_style_context_get_color", LIBRARY_GTK);
3573 	Linker.link(gtk_style_context_get_direction, "gtk_style_context_get_direction", LIBRARY_GTK);
3574 	Linker.link(gtk_style_context_get_font, "gtk_style_context_get_font", LIBRARY_GTK);
3575 	Linker.link(gtk_style_context_get_frame_clock, "gtk_style_context_get_frame_clock", LIBRARY_GTK);
3576 	Linker.link(gtk_style_context_get_junction_sides, "gtk_style_context_get_junction_sides", LIBRARY_GTK);
3577 	Linker.link(gtk_style_context_get_margin, "gtk_style_context_get_margin", LIBRARY_GTK);
3578 	Linker.link(gtk_style_context_get_padding, "gtk_style_context_get_padding", LIBRARY_GTK);
3579 	Linker.link(gtk_style_context_get_parent, "gtk_style_context_get_parent", LIBRARY_GTK);
3580 	Linker.link(gtk_style_context_get_path, "gtk_style_context_get_path", LIBRARY_GTK);
3581 	Linker.link(gtk_style_context_get_property, "gtk_style_context_get_property", LIBRARY_GTK);
3582 	Linker.link(gtk_style_context_get_scale, "gtk_style_context_get_scale", LIBRARY_GTK);
3583 	Linker.link(gtk_style_context_get_screen, "gtk_style_context_get_screen", LIBRARY_GTK);
3584 	Linker.link(gtk_style_context_get_section, "gtk_style_context_get_section", LIBRARY_GTK);
3585 	Linker.link(gtk_style_context_get_state, "gtk_style_context_get_state", LIBRARY_GTK);
3586 	Linker.link(gtk_style_context_get_style, "gtk_style_context_get_style", LIBRARY_GTK);
3587 	Linker.link(gtk_style_context_get_style_property, "gtk_style_context_get_style_property", LIBRARY_GTK);
3588 	Linker.link(gtk_style_context_get_style_valist, "gtk_style_context_get_style_valist", LIBRARY_GTK);
3589 	Linker.link(gtk_style_context_get_valist, "gtk_style_context_get_valist", LIBRARY_GTK);
3590 	Linker.link(gtk_style_context_has_class, "gtk_style_context_has_class", LIBRARY_GTK);
3591 	Linker.link(gtk_style_context_has_region, "gtk_style_context_has_region", LIBRARY_GTK);
3592 	Linker.link(gtk_style_context_invalidate, "gtk_style_context_invalidate", LIBRARY_GTK);
3593 	Linker.link(gtk_style_context_list_classes, "gtk_style_context_list_classes", LIBRARY_GTK);
3594 	Linker.link(gtk_style_context_list_regions, "gtk_style_context_list_regions", LIBRARY_GTK);
3595 	Linker.link(gtk_style_context_lookup_color, "gtk_style_context_lookup_color", LIBRARY_GTK);
3596 	Linker.link(gtk_style_context_lookup_icon_set, "gtk_style_context_lookup_icon_set", LIBRARY_GTK);
3597 	Linker.link(gtk_style_context_notify_state_change, "gtk_style_context_notify_state_change", LIBRARY_GTK);
3598 	Linker.link(gtk_style_context_pop_animatable_region, "gtk_style_context_pop_animatable_region", LIBRARY_GTK);
3599 	Linker.link(gtk_style_context_push_animatable_region, "gtk_style_context_push_animatable_region", LIBRARY_GTK);
3600 	Linker.link(gtk_style_context_remove_class, "gtk_style_context_remove_class", LIBRARY_GTK);
3601 	Linker.link(gtk_style_context_remove_provider, "gtk_style_context_remove_provider", LIBRARY_GTK);
3602 	Linker.link(gtk_style_context_remove_region, "gtk_style_context_remove_region", LIBRARY_GTK);
3603 	Linker.link(gtk_style_context_restore, "gtk_style_context_restore", LIBRARY_GTK);
3604 	Linker.link(gtk_style_context_save, "gtk_style_context_save", LIBRARY_GTK);
3605 	Linker.link(gtk_style_context_scroll_animations, "gtk_style_context_scroll_animations", LIBRARY_GTK);
3606 	Linker.link(gtk_style_context_set_background, "gtk_style_context_set_background", LIBRARY_GTK);
3607 	Linker.link(gtk_style_context_set_direction, "gtk_style_context_set_direction", LIBRARY_GTK);
3608 	Linker.link(gtk_style_context_set_frame_clock, "gtk_style_context_set_frame_clock", LIBRARY_GTK);
3609 	Linker.link(gtk_style_context_set_junction_sides, "gtk_style_context_set_junction_sides", LIBRARY_GTK);
3610 	Linker.link(gtk_style_context_set_parent, "gtk_style_context_set_parent", LIBRARY_GTK);
3611 	Linker.link(gtk_style_context_set_path, "gtk_style_context_set_path", LIBRARY_GTK);
3612 	Linker.link(gtk_style_context_set_scale, "gtk_style_context_set_scale", LIBRARY_GTK);
3613 	Linker.link(gtk_style_context_set_screen, "gtk_style_context_set_screen", LIBRARY_GTK);
3614 	Linker.link(gtk_style_context_set_state, "gtk_style_context_set_state", LIBRARY_GTK);
3615 	Linker.link(gtk_style_context_state_is_running, "gtk_style_context_state_is_running", LIBRARY_GTK);
3616 	Linker.link(gtk_style_context_to_string, "gtk_style_context_to_string", LIBRARY_GTK);
3617 	Linker.link(gtk_render_activity, "gtk_render_activity", LIBRARY_GTK);
3618 	Linker.link(gtk_render_arrow, "gtk_render_arrow", LIBRARY_GTK);
3619 	Linker.link(gtk_render_background, "gtk_render_background", LIBRARY_GTK);
3620 	Linker.link(gtk_render_background_get_clip, "gtk_render_background_get_clip", LIBRARY_GTK);
3621 	Linker.link(gtk_render_check, "gtk_render_check", LIBRARY_GTK);
3622 	Linker.link(gtk_render_expander, "gtk_render_expander", LIBRARY_GTK);
3623 	Linker.link(gtk_render_extension, "gtk_render_extension", LIBRARY_GTK);
3624 	Linker.link(gtk_render_focus, "gtk_render_focus", LIBRARY_GTK);
3625 	Linker.link(gtk_render_frame, "gtk_render_frame", LIBRARY_GTK);
3626 	Linker.link(gtk_render_frame_gap, "gtk_render_frame_gap", LIBRARY_GTK);
3627 	Linker.link(gtk_render_handle, "gtk_render_handle", LIBRARY_GTK);
3628 	Linker.link(gtk_render_icon, "gtk_render_icon", LIBRARY_GTK);
3629 	Linker.link(gtk_render_icon_pixbuf, "gtk_render_icon_pixbuf", LIBRARY_GTK);
3630 	Linker.link(gtk_render_icon_surface, "gtk_render_icon_surface", LIBRARY_GTK);
3631 	Linker.link(gtk_render_insertion_cursor, "gtk_render_insertion_cursor", LIBRARY_GTK);
3632 	Linker.link(gtk_render_layout, "gtk_render_layout", LIBRARY_GTK);
3633 	Linker.link(gtk_render_line, "gtk_render_line", LIBRARY_GTK);
3634 	Linker.link(gtk_render_option, "gtk_render_option", LIBRARY_GTK);
3635 	Linker.link(gtk_render_slider, "gtk_render_slider", LIBRARY_GTK);
3636 
3637 	// gtk.StyleProperties
3638 
3639 	Linker.link(gtk_style_properties_get_type, "gtk_style_properties_get_type", LIBRARY_GTK);
3640 	Linker.link(gtk_style_properties_new, "gtk_style_properties_new", LIBRARY_GTK);
3641 	Linker.link(gtk_style_properties_lookup_property, "gtk_style_properties_lookup_property", LIBRARY_GTK);
3642 	Linker.link(gtk_style_properties_register_property, "gtk_style_properties_register_property", LIBRARY_GTK);
3643 	Linker.link(gtk_style_properties_clear, "gtk_style_properties_clear", LIBRARY_GTK);
3644 	Linker.link(gtk_style_properties_get, "gtk_style_properties_get", LIBRARY_GTK);
3645 	Linker.link(gtk_style_properties_get_property, "gtk_style_properties_get_property", LIBRARY_GTK);
3646 	Linker.link(gtk_style_properties_get_valist, "gtk_style_properties_get_valist", LIBRARY_GTK);
3647 	Linker.link(gtk_style_properties_lookup_color, "gtk_style_properties_lookup_color", LIBRARY_GTK);
3648 	Linker.link(gtk_style_properties_map_color, "gtk_style_properties_map_color", LIBRARY_GTK);
3649 	Linker.link(gtk_style_properties_merge, "gtk_style_properties_merge", LIBRARY_GTK);
3650 	Linker.link(gtk_style_properties_set, "gtk_style_properties_set", LIBRARY_GTK);
3651 	Linker.link(gtk_style_properties_set_property, "gtk_style_properties_set_property", LIBRARY_GTK);
3652 	Linker.link(gtk_style_properties_set_valist, "gtk_style_properties_set_valist", LIBRARY_GTK);
3653 	Linker.link(gtk_style_properties_unset_property, "gtk_style_properties_unset_property", LIBRARY_GTK);
3654 
3655 	// gtk.StyleProvider
3656 
3657 	Linker.link(gtk_style_provider_get_type, "gtk_style_provider_get_type", LIBRARY_GTK);
3658 	Linker.link(gtk_style_provider_get_icon_factory, "gtk_style_provider_get_icon_factory", LIBRARY_GTK);
3659 	Linker.link(gtk_style_provider_get_style, "gtk_style_provider_get_style", LIBRARY_GTK);
3660 	Linker.link(gtk_style_provider_get_style_property, "gtk_style_provider_get_style_property", LIBRARY_GTK);
3661 
3662 	// gtk.Switch
3663 
3664 	Linker.link(gtk_switch_get_type, "gtk_switch_get_type", LIBRARY_GTK);
3665 	Linker.link(gtk_switch_new, "gtk_switch_new", LIBRARY_GTK);
3666 	Linker.link(gtk_switch_get_active, "gtk_switch_get_active", LIBRARY_GTK);
3667 	Linker.link(gtk_switch_get_state, "gtk_switch_get_state", LIBRARY_GTK);
3668 	Linker.link(gtk_switch_set_active, "gtk_switch_set_active", LIBRARY_GTK);
3669 	Linker.link(gtk_switch_set_state, "gtk_switch_set_state", LIBRARY_GTK);
3670 
3671 	// gtk.SwitchAccessible
3672 
3673 	Linker.link(gtk_switch_accessible_get_type, "gtk_switch_accessible_get_type", LIBRARY_GTK);
3674 
3675 	// gtk.SymbolicColor
3676 
3677 	Linker.link(gtk_symbolic_color_get_type, "gtk_symbolic_color_get_type", LIBRARY_GTK);
3678 	Linker.link(gtk_symbolic_color_new_alpha, "gtk_symbolic_color_new_alpha", LIBRARY_GTK);
3679 	Linker.link(gtk_symbolic_color_new_literal, "gtk_symbolic_color_new_literal", LIBRARY_GTK);
3680 	Linker.link(gtk_symbolic_color_new_mix, "gtk_symbolic_color_new_mix", LIBRARY_GTK);
3681 	Linker.link(gtk_symbolic_color_new_name, "gtk_symbolic_color_new_name", LIBRARY_GTK);
3682 	Linker.link(gtk_symbolic_color_new_shade, "gtk_symbolic_color_new_shade", LIBRARY_GTK);
3683 	Linker.link(gtk_symbolic_color_new_win32, "gtk_symbolic_color_new_win32", LIBRARY_GTK);
3684 	Linker.link(gtk_symbolic_color_ref, "gtk_symbolic_color_ref", LIBRARY_GTK);
3685 	Linker.link(gtk_symbolic_color_resolve, "gtk_symbolic_color_resolve", LIBRARY_GTK);
3686 	Linker.link(gtk_symbolic_color_to_string, "gtk_symbolic_color_to_string", LIBRARY_GTK);
3687 	Linker.link(gtk_symbolic_color_unref, "gtk_symbolic_color_unref", LIBRARY_GTK);
3688 
3689 	// gtk.Table
3690 
3691 	Linker.link(gtk_table_get_type, "gtk_table_get_type", LIBRARY_GTK);
3692 	Linker.link(gtk_table_new, "gtk_table_new", LIBRARY_GTK);
3693 	Linker.link(gtk_table_attach, "gtk_table_attach", LIBRARY_GTK);
3694 	Linker.link(gtk_table_attach_defaults, "gtk_table_attach_defaults", LIBRARY_GTK);
3695 	Linker.link(gtk_table_get_col_spacing, "gtk_table_get_col_spacing", LIBRARY_GTK);
3696 	Linker.link(gtk_table_get_default_col_spacing, "gtk_table_get_default_col_spacing", LIBRARY_GTK);
3697 	Linker.link(gtk_table_get_default_row_spacing, "gtk_table_get_default_row_spacing", LIBRARY_GTK);
3698 	Linker.link(gtk_table_get_homogeneous, "gtk_table_get_homogeneous", LIBRARY_GTK);
3699 	Linker.link(gtk_table_get_row_spacing, "gtk_table_get_row_spacing", LIBRARY_GTK);
3700 	Linker.link(gtk_table_get_size, "gtk_table_get_size", LIBRARY_GTK);
3701 	Linker.link(gtk_table_resize, "gtk_table_resize", LIBRARY_GTK);
3702 	Linker.link(gtk_table_set_col_spacing, "gtk_table_set_col_spacing", LIBRARY_GTK);
3703 	Linker.link(gtk_table_set_col_spacings, "gtk_table_set_col_spacings", LIBRARY_GTK);
3704 	Linker.link(gtk_table_set_homogeneous, "gtk_table_set_homogeneous", LIBRARY_GTK);
3705 	Linker.link(gtk_table_set_row_spacing, "gtk_table_set_row_spacing", LIBRARY_GTK);
3706 	Linker.link(gtk_table_set_row_spacings, "gtk_table_set_row_spacings", LIBRARY_GTK);
3707 
3708 	// gtk.TargetEntry
3709 
3710 	Linker.link(gtk_target_entry_get_type, "gtk_target_entry_get_type", LIBRARY_GTK);
3711 	Linker.link(gtk_target_entry_new, "gtk_target_entry_new", LIBRARY_GTK);
3712 	Linker.link(gtk_target_entry_copy, "gtk_target_entry_copy", LIBRARY_GTK);
3713 	Linker.link(gtk_target_entry_free, "gtk_target_entry_free", LIBRARY_GTK);
3714 
3715 	// gtk.TargetList
3716 
3717 	Linker.link(gtk_target_list_get_type, "gtk_target_list_get_type", LIBRARY_GTK);
3718 	Linker.link(gtk_target_list_new, "gtk_target_list_new", LIBRARY_GTK);
3719 	Linker.link(gtk_target_list_add, "gtk_target_list_add", LIBRARY_GTK);
3720 	Linker.link(gtk_target_list_add_image_targets, "gtk_target_list_add_image_targets", LIBRARY_GTK);
3721 	Linker.link(gtk_target_list_add_rich_text_targets, "gtk_target_list_add_rich_text_targets", LIBRARY_GTK);
3722 	Linker.link(gtk_target_list_add_table, "gtk_target_list_add_table", LIBRARY_GTK);
3723 	Linker.link(gtk_target_list_add_text_targets, "gtk_target_list_add_text_targets", LIBRARY_GTK);
3724 	Linker.link(gtk_target_list_add_uri_targets, "gtk_target_list_add_uri_targets", LIBRARY_GTK);
3725 	Linker.link(gtk_target_list_find, "gtk_target_list_find", LIBRARY_GTK);
3726 	Linker.link(gtk_target_list_ref, "gtk_target_list_ref", LIBRARY_GTK);
3727 	Linker.link(gtk_target_list_remove, "gtk_target_list_remove", LIBRARY_GTK);
3728 	Linker.link(gtk_target_list_unref, "gtk_target_list_unref", LIBRARY_GTK);
3729 	Linker.link(gtk_target_table_free, "gtk_target_table_free", LIBRARY_GTK);
3730 	Linker.link(gtk_target_table_new_from_list, "gtk_target_table_new_from_list", LIBRARY_GTK);
3731 	Linker.link(gtk_targets_include_image, "gtk_targets_include_image", LIBRARY_GTK);
3732 	Linker.link(gtk_targets_include_rich_text, "gtk_targets_include_rich_text", LIBRARY_GTK);
3733 	Linker.link(gtk_targets_include_text, "gtk_targets_include_text", LIBRARY_GTK);
3734 	Linker.link(gtk_targets_include_uri, "gtk_targets_include_uri", LIBRARY_GTK);
3735 
3736 	// gtk.TearoffMenuItem
3737 
3738 	Linker.link(gtk_tearoff_menu_item_get_type, "gtk_tearoff_menu_item_get_type", LIBRARY_GTK);
3739 	Linker.link(gtk_tearoff_menu_item_new, "gtk_tearoff_menu_item_new", LIBRARY_GTK);
3740 
3741 	// gtk.TextAttributes
3742 
3743 	Linker.link(gtk_text_attributes_get_type, "gtk_text_attributes_get_type", LIBRARY_GTK);
3744 	Linker.link(gtk_text_attributes_new, "gtk_text_attributes_new", LIBRARY_GTK);
3745 	Linker.link(gtk_text_attributes_copy, "gtk_text_attributes_copy", LIBRARY_GTK);
3746 	Linker.link(gtk_text_attributes_copy_values, "gtk_text_attributes_copy_values", LIBRARY_GTK);
3747 	Linker.link(gtk_text_attributes_ref, "gtk_text_attributes_ref", LIBRARY_GTK);
3748 	Linker.link(gtk_text_attributes_unref, "gtk_text_attributes_unref", LIBRARY_GTK);
3749 
3750 	// gtk.TextBuffer
3751 
3752 	Linker.link(gtk_text_buffer_get_type, "gtk_text_buffer_get_type", LIBRARY_GTK);
3753 	Linker.link(gtk_text_buffer_new, "gtk_text_buffer_new", LIBRARY_GTK);
3754 	Linker.link(gtk_text_buffer_add_mark, "gtk_text_buffer_add_mark", LIBRARY_GTK);
3755 	Linker.link(gtk_text_buffer_add_selection_clipboard, "gtk_text_buffer_add_selection_clipboard", LIBRARY_GTK);
3756 	Linker.link(gtk_text_buffer_apply_tag, "gtk_text_buffer_apply_tag", LIBRARY_GTK);
3757 	Linker.link(gtk_text_buffer_apply_tag_by_name, "gtk_text_buffer_apply_tag_by_name", LIBRARY_GTK);
3758 	Linker.link(gtk_text_buffer_backspace, "gtk_text_buffer_backspace", LIBRARY_GTK);
3759 	Linker.link(gtk_text_buffer_begin_user_action, "gtk_text_buffer_begin_user_action", LIBRARY_GTK);
3760 	Linker.link(gtk_text_buffer_copy_clipboard, "gtk_text_buffer_copy_clipboard", LIBRARY_GTK);
3761 	Linker.link(gtk_text_buffer_create_child_anchor, "gtk_text_buffer_create_child_anchor", LIBRARY_GTK);
3762 	Linker.link(gtk_text_buffer_create_mark, "gtk_text_buffer_create_mark", LIBRARY_GTK);
3763 	Linker.link(gtk_text_buffer_create_tag, "gtk_text_buffer_create_tag", LIBRARY_GTK);
3764 	Linker.link(gtk_text_buffer_cut_clipboard, "gtk_text_buffer_cut_clipboard", LIBRARY_GTK);
3765 	Linker.link(gtk_text_buffer_delete, "gtk_text_buffer_delete", LIBRARY_GTK);
3766 	Linker.link(gtk_text_buffer_delete_interactive, "gtk_text_buffer_delete_interactive", LIBRARY_GTK);
3767 	Linker.link(gtk_text_buffer_delete_mark, "gtk_text_buffer_delete_mark", LIBRARY_GTK);
3768 	Linker.link(gtk_text_buffer_delete_mark_by_name, "gtk_text_buffer_delete_mark_by_name", LIBRARY_GTK);
3769 	Linker.link(gtk_text_buffer_delete_selection, "gtk_text_buffer_delete_selection", LIBRARY_GTK);
3770 	Linker.link(gtk_text_buffer_deserialize, "gtk_text_buffer_deserialize", LIBRARY_GTK);
3771 	Linker.link(gtk_text_buffer_deserialize_get_can_create_tags, "gtk_text_buffer_deserialize_get_can_create_tags", LIBRARY_GTK);
3772 	Linker.link(gtk_text_buffer_deserialize_set_can_create_tags, "gtk_text_buffer_deserialize_set_can_create_tags", LIBRARY_GTK);
3773 	Linker.link(gtk_text_buffer_end_user_action, "gtk_text_buffer_end_user_action", LIBRARY_GTK);
3774 	Linker.link(gtk_text_buffer_get_bounds, "gtk_text_buffer_get_bounds", LIBRARY_GTK);
3775 	Linker.link(gtk_text_buffer_get_char_count, "gtk_text_buffer_get_char_count", LIBRARY_GTK);
3776 	Linker.link(gtk_text_buffer_get_copy_target_list, "gtk_text_buffer_get_copy_target_list", LIBRARY_GTK);
3777 	Linker.link(gtk_text_buffer_get_deserialize_formats, "gtk_text_buffer_get_deserialize_formats", LIBRARY_GTK);
3778 	Linker.link(gtk_text_buffer_get_end_iter, "gtk_text_buffer_get_end_iter", LIBRARY_GTK);
3779 	Linker.link(gtk_text_buffer_get_has_selection, "gtk_text_buffer_get_has_selection", LIBRARY_GTK);
3780 	Linker.link(gtk_text_buffer_get_insert, "gtk_text_buffer_get_insert", LIBRARY_GTK);
3781 	Linker.link(gtk_text_buffer_get_iter_at_child_anchor, "gtk_text_buffer_get_iter_at_child_anchor", LIBRARY_GTK);
3782 	Linker.link(gtk_text_buffer_get_iter_at_line, "gtk_text_buffer_get_iter_at_line", LIBRARY_GTK);
3783 	Linker.link(gtk_text_buffer_get_iter_at_line_index, "gtk_text_buffer_get_iter_at_line_index", LIBRARY_GTK);
3784 	Linker.link(gtk_text_buffer_get_iter_at_line_offset, "gtk_text_buffer_get_iter_at_line_offset", LIBRARY_GTK);
3785 	Linker.link(gtk_text_buffer_get_iter_at_mark, "gtk_text_buffer_get_iter_at_mark", LIBRARY_GTK);
3786 	Linker.link(gtk_text_buffer_get_iter_at_offset, "gtk_text_buffer_get_iter_at_offset", LIBRARY_GTK);
3787 	Linker.link(gtk_text_buffer_get_line_count, "gtk_text_buffer_get_line_count", LIBRARY_GTK);
3788 	Linker.link(gtk_text_buffer_get_mark, "gtk_text_buffer_get_mark", LIBRARY_GTK);
3789 	Linker.link(gtk_text_buffer_get_modified, "gtk_text_buffer_get_modified", LIBRARY_GTK);
3790 	Linker.link(gtk_text_buffer_get_paste_target_list, "gtk_text_buffer_get_paste_target_list", LIBRARY_GTK);
3791 	Linker.link(gtk_text_buffer_get_selection_bound, "gtk_text_buffer_get_selection_bound", LIBRARY_GTK);
3792 	Linker.link(gtk_text_buffer_get_selection_bounds, "gtk_text_buffer_get_selection_bounds", LIBRARY_GTK);
3793 	Linker.link(gtk_text_buffer_get_serialize_formats, "gtk_text_buffer_get_serialize_formats", LIBRARY_GTK);
3794 	Linker.link(gtk_text_buffer_get_slice, "gtk_text_buffer_get_slice", LIBRARY_GTK);
3795 	Linker.link(gtk_text_buffer_get_start_iter, "gtk_text_buffer_get_start_iter", LIBRARY_GTK);
3796 	Linker.link(gtk_text_buffer_get_tag_table, "gtk_text_buffer_get_tag_table", LIBRARY_GTK);
3797 	Linker.link(gtk_text_buffer_get_text, "gtk_text_buffer_get_text", LIBRARY_GTK);
3798 	Linker.link(gtk_text_buffer_insert, "gtk_text_buffer_insert", LIBRARY_GTK);
3799 	Linker.link(gtk_text_buffer_insert_at_cursor, "gtk_text_buffer_insert_at_cursor", LIBRARY_GTK);
3800 	Linker.link(gtk_text_buffer_insert_child_anchor, "gtk_text_buffer_insert_child_anchor", LIBRARY_GTK);
3801 	Linker.link(gtk_text_buffer_insert_interactive, "gtk_text_buffer_insert_interactive", LIBRARY_GTK);
3802 	Linker.link(gtk_text_buffer_insert_interactive_at_cursor, "gtk_text_buffer_insert_interactive_at_cursor", LIBRARY_GTK);
3803 	Linker.link(gtk_text_buffer_insert_markup, "gtk_text_buffer_insert_markup", LIBRARY_GTK);
3804 	Linker.link(gtk_text_buffer_insert_pixbuf, "gtk_text_buffer_insert_pixbuf", LIBRARY_GTK);
3805 	Linker.link(gtk_text_buffer_insert_range, "gtk_text_buffer_insert_range", LIBRARY_GTK);
3806 	Linker.link(gtk_text_buffer_insert_range_interactive, "gtk_text_buffer_insert_range_interactive", LIBRARY_GTK);
3807 	Linker.link(gtk_text_buffer_insert_with_tags, "gtk_text_buffer_insert_with_tags", LIBRARY_GTK);
3808 	Linker.link(gtk_text_buffer_insert_with_tags_by_name, "gtk_text_buffer_insert_with_tags_by_name", LIBRARY_GTK);
3809 	Linker.link(gtk_text_buffer_move_mark, "gtk_text_buffer_move_mark", LIBRARY_GTK);
3810 	Linker.link(gtk_text_buffer_move_mark_by_name, "gtk_text_buffer_move_mark_by_name", LIBRARY_GTK);
3811 	Linker.link(gtk_text_buffer_paste_clipboard, "gtk_text_buffer_paste_clipboard", LIBRARY_GTK);
3812 	Linker.link(gtk_text_buffer_place_cursor, "gtk_text_buffer_place_cursor", LIBRARY_GTK);
3813 	Linker.link(gtk_text_buffer_register_deserialize_format, "gtk_text_buffer_register_deserialize_format", LIBRARY_GTK);
3814 	Linker.link(gtk_text_buffer_register_deserialize_tagset, "gtk_text_buffer_register_deserialize_tagset", LIBRARY_GTK);
3815 	Linker.link(gtk_text_buffer_register_serialize_format, "gtk_text_buffer_register_serialize_format", LIBRARY_GTK);
3816 	Linker.link(gtk_text_buffer_register_serialize_tagset, "gtk_text_buffer_register_serialize_tagset", LIBRARY_GTK);
3817 	Linker.link(gtk_text_buffer_remove_all_tags, "gtk_text_buffer_remove_all_tags", LIBRARY_GTK);
3818 	Linker.link(gtk_text_buffer_remove_selection_clipboard, "gtk_text_buffer_remove_selection_clipboard", LIBRARY_GTK);
3819 	Linker.link(gtk_text_buffer_remove_tag, "gtk_text_buffer_remove_tag", LIBRARY_GTK);
3820 	Linker.link(gtk_text_buffer_remove_tag_by_name, "gtk_text_buffer_remove_tag_by_name", LIBRARY_GTK);
3821 	Linker.link(gtk_text_buffer_select_range, "gtk_text_buffer_select_range", LIBRARY_GTK);
3822 	Linker.link(gtk_text_buffer_serialize, "gtk_text_buffer_serialize", LIBRARY_GTK);
3823 	Linker.link(gtk_text_buffer_set_modified, "gtk_text_buffer_set_modified", LIBRARY_GTK);
3824 	Linker.link(gtk_text_buffer_set_text, "gtk_text_buffer_set_text", LIBRARY_GTK);
3825 	Linker.link(gtk_text_buffer_unregister_deserialize_format, "gtk_text_buffer_unregister_deserialize_format", LIBRARY_GTK);
3826 	Linker.link(gtk_text_buffer_unregister_serialize_format, "gtk_text_buffer_unregister_serialize_format", LIBRARY_GTK);
3827 
3828 	// gtk.TextCellAccessible
3829 
3830 	Linker.link(gtk_text_cell_accessible_get_type, "gtk_text_cell_accessible_get_type", LIBRARY_GTK);
3831 
3832 	// gtk.TextChildAnchor
3833 
3834 	Linker.link(gtk_text_child_anchor_get_type, "gtk_text_child_anchor_get_type", LIBRARY_GTK);
3835 	Linker.link(gtk_text_child_anchor_new, "gtk_text_child_anchor_new", LIBRARY_GTK);
3836 	Linker.link(gtk_text_child_anchor_get_deleted, "gtk_text_child_anchor_get_deleted", LIBRARY_GTK);
3837 	Linker.link(gtk_text_child_anchor_get_widgets, "gtk_text_child_anchor_get_widgets", LIBRARY_GTK);
3838 
3839 	// gtk.TextIter
3840 
3841 	Linker.link(gtk_text_iter_get_type, "gtk_text_iter_get_type", LIBRARY_GTK);
3842 	Linker.link(gtk_text_iter_assign, "gtk_text_iter_assign", LIBRARY_GTK);
3843 	Linker.link(gtk_text_iter_backward_char, "gtk_text_iter_backward_char", LIBRARY_GTK);
3844 	Linker.link(gtk_text_iter_backward_chars, "gtk_text_iter_backward_chars", LIBRARY_GTK);
3845 	Linker.link(gtk_text_iter_backward_cursor_position, "gtk_text_iter_backward_cursor_position", LIBRARY_GTK);
3846 	Linker.link(gtk_text_iter_backward_cursor_positions, "gtk_text_iter_backward_cursor_positions", LIBRARY_GTK);
3847 	Linker.link(gtk_text_iter_backward_find_char, "gtk_text_iter_backward_find_char", LIBRARY_GTK);
3848 	Linker.link(gtk_text_iter_backward_line, "gtk_text_iter_backward_line", LIBRARY_GTK);
3849 	Linker.link(gtk_text_iter_backward_lines, "gtk_text_iter_backward_lines", LIBRARY_GTK);
3850 	Linker.link(gtk_text_iter_backward_search, "gtk_text_iter_backward_search", LIBRARY_GTK);
3851 	Linker.link(gtk_text_iter_backward_sentence_start, "gtk_text_iter_backward_sentence_start", LIBRARY_GTK);
3852 	Linker.link(gtk_text_iter_backward_sentence_starts, "gtk_text_iter_backward_sentence_starts", LIBRARY_GTK);
3853 	Linker.link(gtk_text_iter_backward_to_tag_toggle, "gtk_text_iter_backward_to_tag_toggle", LIBRARY_GTK);
3854 	Linker.link(gtk_text_iter_backward_visible_cursor_position, "gtk_text_iter_backward_visible_cursor_position", LIBRARY_GTK);
3855 	Linker.link(gtk_text_iter_backward_visible_cursor_positions, "gtk_text_iter_backward_visible_cursor_positions", LIBRARY_GTK);
3856 	Linker.link(gtk_text_iter_backward_visible_line, "gtk_text_iter_backward_visible_line", LIBRARY_GTK);
3857 	Linker.link(gtk_text_iter_backward_visible_lines, "gtk_text_iter_backward_visible_lines", LIBRARY_GTK);
3858 	Linker.link(gtk_text_iter_backward_visible_word_start, "gtk_text_iter_backward_visible_word_start", LIBRARY_GTK);
3859 	Linker.link(gtk_text_iter_backward_visible_word_starts, "gtk_text_iter_backward_visible_word_starts", LIBRARY_GTK);
3860 	Linker.link(gtk_text_iter_backward_word_start, "gtk_text_iter_backward_word_start", LIBRARY_GTK);
3861 	Linker.link(gtk_text_iter_backward_word_starts, "gtk_text_iter_backward_word_starts", LIBRARY_GTK);
3862 	Linker.link(gtk_text_iter_begins_tag, "gtk_text_iter_begins_tag", LIBRARY_GTK);
3863 	Linker.link(gtk_text_iter_can_insert, "gtk_text_iter_can_insert", LIBRARY_GTK);
3864 	Linker.link(gtk_text_iter_compare, "gtk_text_iter_compare", LIBRARY_GTK);
3865 	Linker.link(gtk_text_iter_copy, "gtk_text_iter_copy", LIBRARY_GTK);
3866 	Linker.link(gtk_text_iter_editable, "gtk_text_iter_editable", LIBRARY_GTK);
3867 	Linker.link(gtk_text_iter_ends_line, "gtk_text_iter_ends_line", LIBRARY_GTK);
3868 	Linker.link(gtk_text_iter_ends_sentence, "gtk_text_iter_ends_sentence", LIBRARY_GTK);
3869 	Linker.link(gtk_text_iter_ends_tag, "gtk_text_iter_ends_tag", LIBRARY_GTK);
3870 	Linker.link(gtk_text_iter_ends_word, "gtk_text_iter_ends_word", LIBRARY_GTK);
3871 	Linker.link(gtk_text_iter_equal, "gtk_text_iter_equal", LIBRARY_GTK);
3872 	Linker.link(gtk_text_iter_forward_char, "gtk_text_iter_forward_char", LIBRARY_GTK);
3873 	Linker.link(gtk_text_iter_forward_chars, "gtk_text_iter_forward_chars", LIBRARY_GTK);
3874 	Linker.link(gtk_text_iter_forward_cursor_position, "gtk_text_iter_forward_cursor_position", LIBRARY_GTK);
3875 	Linker.link(gtk_text_iter_forward_cursor_positions, "gtk_text_iter_forward_cursor_positions", LIBRARY_GTK);
3876 	Linker.link(gtk_text_iter_forward_find_char, "gtk_text_iter_forward_find_char", LIBRARY_GTK);
3877 	Linker.link(gtk_text_iter_forward_line, "gtk_text_iter_forward_line", LIBRARY_GTK);
3878 	Linker.link(gtk_text_iter_forward_lines, "gtk_text_iter_forward_lines", LIBRARY_GTK);
3879 	Linker.link(gtk_text_iter_forward_search, "gtk_text_iter_forward_search", LIBRARY_GTK);
3880 	Linker.link(gtk_text_iter_forward_sentence_end, "gtk_text_iter_forward_sentence_end", LIBRARY_GTK);
3881 	Linker.link(gtk_text_iter_forward_sentence_ends, "gtk_text_iter_forward_sentence_ends", LIBRARY_GTK);
3882 	Linker.link(gtk_text_iter_forward_to_end, "gtk_text_iter_forward_to_end", LIBRARY_GTK);
3883 	Linker.link(gtk_text_iter_forward_to_line_end, "gtk_text_iter_forward_to_line_end", LIBRARY_GTK);
3884 	Linker.link(gtk_text_iter_forward_to_tag_toggle, "gtk_text_iter_forward_to_tag_toggle", LIBRARY_GTK);
3885 	Linker.link(gtk_text_iter_forward_visible_cursor_position, "gtk_text_iter_forward_visible_cursor_position", LIBRARY_GTK);
3886 	Linker.link(gtk_text_iter_forward_visible_cursor_positions, "gtk_text_iter_forward_visible_cursor_positions", LIBRARY_GTK);
3887 	Linker.link(gtk_text_iter_forward_visible_line, "gtk_text_iter_forward_visible_line", LIBRARY_GTK);
3888 	Linker.link(gtk_text_iter_forward_visible_lines, "gtk_text_iter_forward_visible_lines", LIBRARY_GTK);
3889 	Linker.link(gtk_text_iter_forward_visible_word_end, "gtk_text_iter_forward_visible_word_end", LIBRARY_GTK);
3890 	Linker.link(gtk_text_iter_forward_visible_word_ends, "gtk_text_iter_forward_visible_word_ends", LIBRARY_GTK);
3891 	Linker.link(gtk_text_iter_forward_word_end, "gtk_text_iter_forward_word_end", LIBRARY_GTK);
3892 	Linker.link(gtk_text_iter_forward_word_ends, "gtk_text_iter_forward_word_ends", LIBRARY_GTK);
3893 	Linker.link(gtk_text_iter_free, "gtk_text_iter_free", LIBRARY_GTK);
3894 	Linker.link(gtk_text_iter_get_attributes, "gtk_text_iter_get_attributes", LIBRARY_GTK);
3895 	Linker.link(gtk_text_iter_get_buffer, "gtk_text_iter_get_buffer", LIBRARY_GTK);
3896 	Linker.link(gtk_text_iter_get_bytes_in_line, "gtk_text_iter_get_bytes_in_line", LIBRARY_GTK);
3897 	Linker.link(gtk_text_iter_get_char, "gtk_text_iter_get_char", LIBRARY_GTK);
3898 	Linker.link(gtk_text_iter_get_chars_in_line, "gtk_text_iter_get_chars_in_line", LIBRARY_GTK);
3899 	Linker.link(gtk_text_iter_get_child_anchor, "gtk_text_iter_get_child_anchor", LIBRARY_GTK);
3900 	Linker.link(gtk_text_iter_get_language, "gtk_text_iter_get_language", LIBRARY_GTK);
3901 	Linker.link(gtk_text_iter_get_line, "gtk_text_iter_get_line", LIBRARY_GTK);
3902 	Linker.link(gtk_text_iter_get_line_index, "gtk_text_iter_get_line_index", LIBRARY_GTK);
3903 	Linker.link(gtk_text_iter_get_line_offset, "gtk_text_iter_get_line_offset", LIBRARY_GTK);
3904 	Linker.link(gtk_text_iter_get_marks, "gtk_text_iter_get_marks", LIBRARY_GTK);
3905 	Linker.link(gtk_text_iter_get_offset, "gtk_text_iter_get_offset", LIBRARY_GTK);
3906 	Linker.link(gtk_text_iter_get_pixbuf, "gtk_text_iter_get_pixbuf", LIBRARY_GTK);
3907 	Linker.link(gtk_text_iter_get_slice, "gtk_text_iter_get_slice", LIBRARY_GTK);
3908 	Linker.link(gtk_text_iter_get_tags, "gtk_text_iter_get_tags", LIBRARY_GTK);
3909 	Linker.link(gtk_text_iter_get_text, "gtk_text_iter_get_text", LIBRARY_GTK);
3910 	Linker.link(gtk_text_iter_get_toggled_tags, "gtk_text_iter_get_toggled_tags", LIBRARY_GTK);
3911 	Linker.link(gtk_text_iter_get_visible_line_index, "gtk_text_iter_get_visible_line_index", LIBRARY_GTK);
3912 	Linker.link(gtk_text_iter_get_visible_line_offset, "gtk_text_iter_get_visible_line_offset", LIBRARY_GTK);
3913 	Linker.link(gtk_text_iter_get_visible_slice, "gtk_text_iter_get_visible_slice", LIBRARY_GTK);
3914 	Linker.link(gtk_text_iter_get_visible_text, "gtk_text_iter_get_visible_text", LIBRARY_GTK);
3915 	Linker.link(gtk_text_iter_has_tag, "gtk_text_iter_has_tag", LIBRARY_GTK);
3916 	Linker.link(gtk_text_iter_in_range, "gtk_text_iter_in_range", LIBRARY_GTK);
3917 	Linker.link(gtk_text_iter_inside_sentence, "gtk_text_iter_inside_sentence", LIBRARY_GTK);
3918 	Linker.link(gtk_text_iter_inside_word, "gtk_text_iter_inside_word", LIBRARY_GTK);
3919 	Linker.link(gtk_text_iter_is_cursor_position, "gtk_text_iter_is_cursor_position", LIBRARY_GTK);
3920 	Linker.link(gtk_text_iter_is_end, "gtk_text_iter_is_end", LIBRARY_GTK);
3921 	Linker.link(gtk_text_iter_is_start, "gtk_text_iter_is_start", LIBRARY_GTK);
3922 	Linker.link(gtk_text_iter_order, "gtk_text_iter_order", LIBRARY_GTK);
3923 	Linker.link(gtk_text_iter_set_line, "gtk_text_iter_set_line", LIBRARY_GTK);
3924 	Linker.link(gtk_text_iter_set_line_index, "gtk_text_iter_set_line_index", LIBRARY_GTK);
3925 	Linker.link(gtk_text_iter_set_line_offset, "gtk_text_iter_set_line_offset", LIBRARY_GTK);
3926 	Linker.link(gtk_text_iter_set_offset, "gtk_text_iter_set_offset", LIBRARY_GTK);
3927 	Linker.link(gtk_text_iter_set_visible_line_index, "gtk_text_iter_set_visible_line_index", LIBRARY_GTK);
3928 	Linker.link(gtk_text_iter_set_visible_line_offset, "gtk_text_iter_set_visible_line_offset", LIBRARY_GTK);
3929 	Linker.link(gtk_text_iter_starts_line, "gtk_text_iter_starts_line", LIBRARY_GTK);
3930 	Linker.link(gtk_text_iter_starts_sentence, "gtk_text_iter_starts_sentence", LIBRARY_GTK);
3931 	Linker.link(gtk_text_iter_starts_tag, "gtk_text_iter_starts_tag", LIBRARY_GTK);
3932 	Linker.link(gtk_text_iter_starts_word, "gtk_text_iter_starts_word", LIBRARY_GTK);
3933 	Linker.link(gtk_text_iter_toggles_tag, "gtk_text_iter_toggles_tag", LIBRARY_GTK);
3934 
3935 	// gtk.TextMark
3936 
3937 	Linker.link(gtk_text_mark_get_type, "gtk_text_mark_get_type", LIBRARY_GTK);
3938 	Linker.link(gtk_text_mark_new, "gtk_text_mark_new", LIBRARY_GTK);
3939 	Linker.link(gtk_text_mark_get_buffer, "gtk_text_mark_get_buffer", LIBRARY_GTK);
3940 	Linker.link(gtk_text_mark_get_deleted, "gtk_text_mark_get_deleted", LIBRARY_GTK);
3941 	Linker.link(gtk_text_mark_get_left_gravity, "gtk_text_mark_get_left_gravity", LIBRARY_GTK);
3942 	Linker.link(gtk_text_mark_get_name, "gtk_text_mark_get_name", LIBRARY_GTK);
3943 	Linker.link(gtk_text_mark_get_visible, "gtk_text_mark_get_visible", LIBRARY_GTK);
3944 	Linker.link(gtk_text_mark_set_visible, "gtk_text_mark_set_visible", LIBRARY_GTK);
3945 
3946 	// gtk.TextTag
3947 
3948 	Linker.link(gtk_text_tag_get_type, "gtk_text_tag_get_type", LIBRARY_GTK);
3949 	Linker.link(gtk_text_tag_new, "gtk_text_tag_new", LIBRARY_GTK);
3950 	Linker.link(gtk_text_tag_changed, "gtk_text_tag_changed", LIBRARY_GTK);
3951 	Linker.link(gtk_text_tag_event, "gtk_text_tag_event", LIBRARY_GTK);
3952 	Linker.link(gtk_text_tag_get_priority, "gtk_text_tag_get_priority", LIBRARY_GTK);
3953 	Linker.link(gtk_text_tag_set_priority, "gtk_text_tag_set_priority", LIBRARY_GTK);
3954 
3955 	// gtk.TextTagTable
3956 
3957 	Linker.link(gtk_text_tag_table_get_type, "gtk_text_tag_table_get_type", LIBRARY_GTK);
3958 	Linker.link(gtk_text_tag_table_new, "gtk_text_tag_table_new", LIBRARY_GTK);
3959 	Linker.link(gtk_text_tag_table_add, "gtk_text_tag_table_add", LIBRARY_GTK);
3960 	Linker.link(gtk_text_tag_table_foreach, "gtk_text_tag_table_foreach", LIBRARY_GTK);
3961 	Linker.link(gtk_text_tag_table_get_size, "gtk_text_tag_table_get_size", LIBRARY_GTK);
3962 	Linker.link(gtk_text_tag_table_lookup, "gtk_text_tag_table_lookup", LIBRARY_GTK);
3963 	Linker.link(gtk_text_tag_table_remove, "gtk_text_tag_table_remove", LIBRARY_GTK);
3964 
3965 	// gtk.TextView
3966 
3967 	Linker.link(gtk_text_view_get_type, "gtk_text_view_get_type", LIBRARY_GTK);
3968 	Linker.link(gtk_text_view_new, "gtk_text_view_new", LIBRARY_GTK);
3969 	Linker.link(gtk_text_view_new_with_buffer, "gtk_text_view_new_with_buffer", LIBRARY_GTK);
3970 	Linker.link(gtk_text_view_add_child_at_anchor, "gtk_text_view_add_child_at_anchor", LIBRARY_GTK);
3971 	Linker.link(gtk_text_view_add_child_in_window, "gtk_text_view_add_child_in_window", LIBRARY_GTK);
3972 	Linker.link(gtk_text_view_backward_display_line, "gtk_text_view_backward_display_line", LIBRARY_GTK);
3973 	Linker.link(gtk_text_view_backward_display_line_start, "gtk_text_view_backward_display_line_start", LIBRARY_GTK);
3974 	Linker.link(gtk_text_view_buffer_to_window_coords, "gtk_text_view_buffer_to_window_coords", LIBRARY_GTK);
3975 	Linker.link(gtk_text_view_forward_display_line, "gtk_text_view_forward_display_line", LIBRARY_GTK);
3976 	Linker.link(gtk_text_view_forward_display_line_end, "gtk_text_view_forward_display_line_end", LIBRARY_GTK);
3977 	Linker.link(gtk_text_view_get_accepts_tab, "gtk_text_view_get_accepts_tab", LIBRARY_GTK);
3978 	Linker.link(gtk_text_view_get_border_window_size, "gtk_text_view_get_border_window_size", LIBRARY_GTK);
3979 	Linker.link(gtk_text_view_get_bottom_margin, "gtk_text_view_get_bottom_margin", LIBRARY_GTK);
3980 	Linker.link(gtk_text_view_get_buffer, "gtk_text_view_get_buffer", LIBRARY_GTK);
3981 	Linker.link(gtk_text_view_get_cursor_locations, "gtk_text_view_get_cursor_locations", LIBRARY_GTK);
3982 	Linker.link(gtk_text_view_get_cursor_visible, "gtk_text_view_get_cursor_visible", LIBRARY_GTK);
3983 	Linker.link(gtk_text_view_get_default_attributes, "gtk_text_view_get_default_attributes", LIBRARY_GTK);
3984 	Linker.link(gtk_text_view_get_editable, "gtk_text_view_get_editable", LIBRARY_GTK);
3985 	Linker.link(gtk_text_view_get_hadjustment, "gtk_text_view_get_hadjustment", LIBRARY_GTK);
3986 	Linker.link(gtk_text_view_get_indent, "gtk_text_view_get_indent", LIBRARY_GTK);
3987 	Linker.link(gtk_text_view_get_input_hints, "gtk_text_view_get_input_hints", LIBRARY_GTK);
3988 	Linker.link(gtk_text_view_get_input_purpose, "gtk_text_view_get_input_purpose", LIBRARY_GTK);
3989 	Linker.link(gtk_text_view_get_iter_at_location, "gtk_text_view_get_iter_at_location", LIBRARY_GTK);
3990 	Linker.link(gtk_text_view_get_iter_at_position, "gtk_text_view_get_iter_at_position", LIBRARY_GTK);
3991 	Linker.link(gtk_text_view_get_iter_location, "gtk_text_view_get_iter_location", LIBRARY_GTK);
3992 	Linker.link(gtk_text_view_get_justification, "gtk_text_view_get_justification", LIBRARY_GTK);
3993 	Linker.link(gtk_text_view_get_left_margin, "gtk_text_view_get_left_margin", LIBRARY_GTK);
3994 	Linker.link(gtk_text_view_get_line_at_y, "gtk_text_view_get_line_at_y", LIBRARY_GTK);
3995 	Linker.link(gtk_text_view_get_line_yrange, "gtk_text_view_get_line_yrange", LIBRARY_GTK);
3996 	Linker.link(gtk_text_view_get_monospace, "gtk_text_view_get_monospace", LIBRARY_GTK);
3997 	Linker.link(gtk_text_view_get_overwrite, "gtk_text_view_get_overwrite", LIBRARY_GTK);
3998 	Linker.link(gtk_text_view_get_pixels_above_lines, "gtk_text_view_get_pixels_above_lines", LIBRARY_GTK);
3999 	Linker.link(gtk_text_view_get_pixels_below_lines, "gtk_text_view_get_pixels_below_lines", LIBRARY_GTK);
4000 	Linker.link(gtk_text_view_get_pixels_inside_wrap, "gtk_text_view_get_pixels_inside_wrap", LIBRARY_GTK);
4001 	Linker.link(gtk_text_view_get_right_margin, "gtk_text_view_get_right_margin", LIBRARY_GTK);
4002 	Linker.link(gtk_text_view_get_tabs, "gtk_text_view_get_tabs", LIBRARY_GTK);
4003 	Linker.link(gtk_text_view_get_top_margin, "gtk_text_view_get_top_margin", LIBRARY_GTK);
4004 	Linker.link(gtk_text_view_get_vadjustment, "gtk_text_view_get_vadjustment", LIBRARY_GTK);
4005 	Linker.link(gtk_text_view_get_visible_rect, "gtk_text_view_get_visible_rect", LIBRARY_GTK);
4006 	Linker.link(gtk_text_view_get_window, "gtk_text_view_get_window", LIBRARY_GTK);
4007 	Linker.link(gtk_text_view_get_window_type, "gtk_text_view_get_window_type", LIBRARY_GTK);
4008 	Linker.link(gtk_text_view_get_wrap_mode, "gtk_text_view_get_wrap_mode", LIBRARY_GTK);
4009 	Linker.link(gtk_text_view_im_context_filter_keypress, "gtk_text_view_im_context_filter_keypress", LIBRARY_GTK);
4010 	Linker.link(gtk_text_view_move_child, "gtk_text_view_move_child", LIBRARY_GTK);
4011 	Linker.link(gtk_text_view_move_mark_onscreen, "gtk_text_view_move_mark_onscreen", LIBRARY_GTK);
4012 	Linker.link(gtk_text_view_move_visually, "gtk_text_view_move_visually", LIBRARY_GTK);
4013 	Linker.link(gtk_text_view_place_cursor_onscreen, "gtk_text_view_place_cursor_onscreen", LIBRARY_GTK);
4014 	Linker.link(gtk_text_view_reset_cursor_blink, "gtk_text_view_reset_cursor_blink", LIBRARY_GTK);
4015 	Linker.link(gtk_text_view_reset_im_context, "gtk_text_view_reset_im_context", LIBRARY_GTK);
4016 	Linker.link(gtk_text_view_scroll_mark_onscreen, "gtk_text_view_scroll_mark_onscreen", LIBRARY_GTK);
4017 	Linker.link(gtk_text_view_scroll_to_iter, "gtk_text_view_scroll_to_iter", LIBRARY_GTK);
4018 	Linker.link(gtk_text_view_scroll_to_mark, "gtk_text_view_scroll_to_mark", LIBRARY_GTK);
4019 	Linker.link(gtk_text_view_set_accepts_tab, "gtk_text_view_set_accepts_tab", LIBRARY_GTK);
4020 	Linker.link(gtk_text_view_set_border_window_size, "gtk_text_view_set_border_window_size", LIBRARY_GTK);
4021 	Linker.link(gtk_text_view_set_bottom_margin, "gtk_text_view_set_bottom_margin", LIBRARY_GTK);
4022 	Linker.link(gtk_text_view_set_buffer, "gtk_text_view_set_buffer", LIBRARY_GTK);
4023 	Linker.link(gtk_text_view_set_cursor_visible, "gtk_text_view_set_cursor_visible", LIBRARY_GTK);
4024 	Linker.link(gtk_text_view_set_editable, "gtk_text_view_set_editable", LIBRARY_GTK);
4025 	Linker.link(gtk_text_view_set_indent, "gtk_text_view_set_indent", LIBRARY_GTK);
4026 	Linker.link(gtk_text_view_set_input_hints, "gtk_text_view_set_input_hints", LIBRARY_GTK);
4027 	Linker.link(gtk_text_view_set_input_purpose, "gtk_text_view_set_input_purpose", LIBRARY_GTK);
4028 	Linker.link(gtk_text_view_set_justification, "gtk_text_view_set_justification", LIBRARY_GTK);
4029 	Linker.link(gtk_text_view_set_left_margin, "gtk_text_view_set_left_margin", LIBRARY_GTK);
4030 	Linker.link(gtk_text_view_set_monospace, "gtk_text_view_set_monospace", LIBRARY_GTK);
4031 	Linker.link(gtk_text_view_set_overwrite, "gtk_text_view_set_overwrite", LIBRARY_GTK);
4032 	Linker.link(gtk_text_view_set_pixels_above_lines, "gtk_text_view_set_pixels_above_lines", LIBRARY_GTK);
4033 	Linker.link(gtk_text_view_set_pixels_below_lines, "gtk_text_view_set_pixels_below_lines", LIBRARY_GTK);
4034 	Linker.link(gtk_text_view_set_pixels_inside_wrap, "gtk_text_view_set_pixels_inside_wrap", LIBRARY_GTK);
4035 	Linker.link(gtk_text_view_set_right_margin, "gtk_text_view_set_right_margin", LIBRARY_GTK);
4036 	Linker.link(gtk_text_view_set_tabs, "gtk_text_view_set_tabs", LIBRARY_GTK);
4037 	Linker.link(gtk_text_view_set_top_margin, "gtk_text_view_set_top_margin", LIBRARY_GTK);
4038 	Linker.link(gtk_text_view_set_wrap_mode, "gtk_text_view_set_wrap_mode", LIBRARY_GTK);
4039 	Linker.link(gtk_text_view_starts_display_line, "gtk_text_view_starts_display_line", LIBRARY_GTK);
4040 	Linker.link(gtk_text_view_window_to_buffer_coords, "gtk_text_view_window_to_buffer_coords", LIBRARY_GTK);
4041 
4042 	// gtk.TextViewAccessible
4043 
4044 	Linker.link(gtk_text_view_accessible_get_type, "gtk_text_view_accessible_get_type", LIBRARY_GTK);
4045 
4046 	// gtk.ThemingEngine
4047 
4048 	Linker.link(gtk_theming_engine_get_type, "gtk_theming_engine_get_type", LIBRARY_GTK);
4049 	Linker.link(gtk_theming_engine_load, "gtk_theming_engine_load", LIBRARY_GTK);
4050 	Linker.link(gtk_theming_engine_register_property, "gtk_theming_engine_register_property", LIBRARY_GTK);
4051 	Linker.link(gtk_theming_engine_get, "gtk_theming_engine_get", LIBRARY_GTK);
4052 	Linker.link(gtk_theming_engine_get_background_color, "gtk_theming_engine_get_background_color", LIBRARY_GTK);
4053 	Linker.link(gtk_theming_engine_get_border, "gtk_theming_engine_get_border", LIBRARY_GTK);
4054 	Linker.link(gtk_theming_engine_get_border_color, "gtk_theming_engine_get_border_color", LIBRARY_GTK);
4055 	Linker.link(gtk_theming_engine_get_color, "gtk_theming_engine_get_color", LIBRARY_GTK);
4056 	Linker.link(gtk_theming_engine_get_direction, "gtk_theming_engine_get_direction", LIBRARY_GTK);
4057 	Linker.link(gtk_theming_engine_get_font, "gtk_theming_engine_get_font", LIBRARY_GTK);
4058 	Linker.link(gtk_theming_engine_get_junction_sides, "gtk_theming_engine_get_junction_sides", LIBRARY_GTK);
4059 	Linker.link(gtk_theming_engine_get_margin, "gtk_theming_engine_get_margin", LIBRARY_GTK);
4060 	Linker.link(gtk_theming_engine_get_padding, "gtk_theming_engine_get_padding", LIBRARY_GTK);
4061 	Linker.link(gtk_theming_engine_get_path, "gtk_theming_engine_get_path", LIBRARY_GTK);
4062 	Linker.link(gtk_theming_engine_get_property, "gtk_theming_engine_get_property", LIBRARY_GTK);
4063 	Linker.link(gtk_theming_engine_get_screen, "gtk_theming_engine_get_screen", LIBRARY_GTK);
4064 	Linker.link(gtk_theming_engine_get_state, "gtk_theming_engine_get_state", LIBRARY_GTK);
4065 	Linker.link(gtk_theming_engine_get_style, "gtk_theming_engine_get_style", LIBRARY_GTK);
4066 	Linker.link(gtk_theming_engine_get_style_property, "gtk_theming_engine_get_style_property", LIBRARY_GTK);
4067 	Linker.link(gtk_theming_engine_get_style_valist, "gtk_theming_engine_get_style_valist", LIBRARY_GTK);
4068 	Linker.link(gtk_theming_engine_get_valist, "gtk_theming_engine_get_valist", LIBRARY_GTK);
4069 	Linker.link(gtk_theming_engine_has_class, "gtk_theming_engine_has_class", LIBRARY_GTK);
4070 	Linker.link(gtk_theming_engine_has_region, "gtk_theming_engine_has_region", LIBRARY_GTK);
4071 	Linker.link(gtk_theming_engine_lookup_color, "gtk_theming_engine_lookup_color", LIBRARY_GTK);
4072 	Linker.link(gtk_theming_engine_state_is_running, "gtk_theming_engine_state_is_running", LIBRARY_GTK);
4073 
4074 	// gtk.ToggleAction
4075 
4076 	Linker.link(gtk_toggle_action_get_type, "gtk_toggle_action_get_type", LIBRARY_GTK);
4077 	Linker.link(gtk_toggle_action_new, "gtk_toggle_action_new", LIBRARY_GTK);
4078 	Linker.link(gtk_toggle_action_get_active, "gtk_toggle_action_get_active", LIBRARY_GTK);
4079 	Linker.link(gtk_toggle_action_get_draw_as_radio, "gtk_toggle_action_get_draw_as_radio", LIBRARY_GTK);
4080 	Linker.link(gtk_toggle_action_set_active, "gtk_toggle_action_set_active", LIBRARY_GTK);
4081 	Linker.link(gtk_toggle_action_set_draw_as_radio, "gtk_toggle_action_set_draw_as_radio", LIBRARY_GTK);
4082 	Linker.link(gtk_toggle_action_toggled, "gtk_toggle_action_toggled", LIBRARY_GTK);
4083 
4084 	// gtk.ToggleButton
4085 
4086 	Linker.link(gtk_toggle_button_get_type, "gtk_toggle_button_get_type", LIBRARY_GTK);
4087 	Linker.link(gtk_toggle_button_new, "gtk_toggle_button_new", LIBRARY_GTK);
4088 	Linker.link(gtk_toggle_button_new_with_label, "gtk_toggle_button_new_with_label", LIBRARY_GTK);
4089 	Linker.link(gtk_toggle_button_new_with_mnemonic, "gtk_toggle_button_new_with_mnemonic", LIBRARY_GTK);
4090 	Linker.link(gtk_toggle_button_get_active, "gtk_toggle_button_get_active", LIBRARY_GTK);
4091 	Linker.link(gtk_toggle_button_get_inconsistent, "gtk_toggle_button_get_inconsistent", LIBRARY_GTK);
4092 	Linker.link(gtk_toggle_button_get_mode, "gtk_toggle_button_get_mode", LIBRARY_GTK);
4093 	Linker.link(gtk_toggle_button_set_active, "gtk_toggle_button_set_active", LIBRARY_GTK);
4094 	Linker.link(gtk_toggle_button_set_inconsistent, "gtk_toggle_button_set_inconsistent", LIBRARY_GTK);
4095 	Linker.link(gtk_toggle_button_set_mode, "gtk_toggle_button_set_mode", LIBRARY_GTK);
4096 	Linker.link(gtk_toggle_button_toggled, "gtk_toggle_button_toggled", LIBRARY_GTK);
4097 
4098 	// gtk.ToggleButtonAccessible
4099 
4100 	Linker.link(gtk_toggle_button_accessible_get_type, "gtk_toggle_button_accessible_get_type", LIBRARY_GTK);
4101 
4102 	// gtk.ToggleToolButton
4103 
4104 	Linker.link(gtk_toggle_tool_button_get_type, "gtk_toggle_tool_button_get_type", LIBRARY_GTK);
4105 	Linker.link(gtk_toggle_tool_button_new, "gtk_toggle_tool_button_new", LIBRARY_GTK);
4106 	Linker.link(gtk_toggle_tool_button_new_from_stock, "gtk_toggle_tool_button_new_from_stock", LIBRARY_GTK);
4107 	Linker.link(gtk_toggle_tool_button_get_active, "gtk_toggle_tool_button_get_active", LIBRARY_GTK);
4108 	Linker.link(gtk_toggle_tool_button_set_active, "gtk_toggle_tool_button_set_active", LIBRARY_GTK);
4109 
4110 	// gtk.ToolButton
4111 
4112 	Linker.link(gtk_tool_button_get_type, "gtk_tool_button_get_type", LIBRARY_GTK);
4113 	Linker.link(gtk_tool_button_new, "gtk_tool_button_new", LIBRARY_GTK);
4114 	Linker.link(gtk_tool_button_new_from_stock, "gtk_tool_button_new_from_stock", LIBRARY_GTK);
4115 	Linker.link(gtk_tool_button_get_icon_name, "gtk_tool_button_get_icon_name", LIBRARY_GTK);
4116 	Linker.link(gtk_tool_button_get_icon_widget, "gtk_tool_button_get_icon_widget", LIBRARY_GTK);
4117 	Linker.link(gtk_tool_button_get_label, "gtk_tool_button_get_label", LIBRARY_GTK);
4118 	Linker.link(gtk_tool_button_get_label_widget, "gtk_tool_button_get_label_widget", LIBRARY_GTK);
4119 	Linker.link(gtk_tool_button_get_stock_id, "gtk_tool_button_get_stock_id", LIBRARY_GTK);
4120 	Linker.link(gtk_tool_button_get_use_underline, "gtk_tool_button_get_use_underline", LIBRARY_GTK);
4121 	Linker.link(gtk_tool_button_set_icon_name, "gtk_tool_button_set_icon_name", LIBRARY_GTK);
4122 	Linker.link(gtk_tool_button_set_icon_widget, "gtk_tool_button_set_icon_widget", LIBRARY_GTK);
4123 	Linker.link(gtk_tool_button_set_label, "gtk_tool_button_set_label", LIBRARY_GTK);
4124 	Linker.link(gtk_tool_button_set_label_widget, "gtk_tool_button_set_label_widget", LIBRARY_GTK);
4125 	Linker.link(gtk_tool_button_set_stock_id, "gtk_tool_button_set_stock_id", LIBRARY_GTK);
4126 	Linker.link(gtk_tool_button_set_use_underline, "gtk_tool_button_set_use_underline", LIBRARY_GTK);
4127 
4128 	// gtk.ToolItem
4129 
4130 	Linker.link(gtk_tool_item_get_type, "gtk_tool_item_get_type", LIBRARY_GTK);
4131 	Linker.link(gtk_tool_item_new, "gtk_tool_item_new", LIBRARY_GTK);
4132 	Linker.link(gtk_tool_item_get_ellipsize_mode, "gtk_tool_item_get_ellipsize_mode", LIBRARY_GTK);
4133 	Linker.link(gtk_tool_item_get_expand, "gtk_tool_item_get_expand", LIBRARY_GTK);
4134 	Linker.link(gtk_tool_item_get_homogeneous, "gtk_tool_item_get_homogeneous", LIBRARY_GTK);
4135 	Linker.link(gtk_tool_item_get_icon_size, "gtk_tool_item_get_icon_size", LIBRARY_GTK);
4136 	Linker.link(gtk_tool_item_get_is_important, "gtk_tool_item_get_is_important", LIBRARY_GTK);
4137 	Linker.link(gtk_tool_item_get_orientation, "gtk_tool_item_get_orientation", LIBRARY_GTK);
4138 	Linker.link(gtk_tool_item_get_proxy_menu_item, "gtk_tool_item_get_proxy_menu_item", LIBRARY_GTK);
4139 	Linker.link(gtk_tool_item_get_relief_style, "gtk_tool_item_get_relief_style", LIBRARY_GTK);
4140 	Linker.link(gtk_tool_item_get_text_alignment, "gtk_tool_item_get_text_alignment", LIBRARY_GTK);
4141 	Linker.link(gtk_tool_item_get_text_orientation, "gtk_tool_item_get_text_orientation", LIBRARY_GTK);
4142 	Linker.link(gtk_tool_item_get_text_size_group, "gtk_tool_item_get_text_size_group", LIBRARY_GTK);
4143 	Linker.link(gtk_tool_item_get_toolbar_style, "gtk_tool_item_get_toolbar_style", LIBRARY_GTK);
4144 	Linker.link(gtk_tool_item_get_use_drag_window, "gtk_tool_item_get_use_drag_window", LIBRARY_GTK);
4145 	Linker.link(gtk_tool_item_get_visible_horizontal, "gtk_tool_item_get_visible_horizontal", LIBRARY_GTK);
4146 	Linker.link(gtk_tool_item_get_visible_vertical, "gtk_tool_item_get_visible_vertical", LIBRARY_GTK);
4147 	Linker.link(gtk_tool_item_rebuild_menu, "gtk_tool_item_rebuild_menu", LIBRARY_GTK);
4148 	Linker.link(gtk_tool_item_retrieve_proxy_menu_item, "gtk_tool_item_retrieve_proxy_menu_item", LIBRARY_GTK);
4149 	Linker.link(gtk_tool_item_set_expand, "gtk_tool_item_set_expand", LIBRARY_GTK);
4150 	Linker.link(gtk_tool_item_set_homogeneous, "gtk_tool_item_set_homogeneous", LIBRARY_GTK);
4151 	Linker.link(gtk_tool_item_set_is_important, "gtk_tool_item_set_is_important", LIBRARY_GTK);
4152 	Linker.link(gtk_tool_item_set_proxy_menu_item, "gtk_tool_item_set_proxy_menu_item", LIBRARY_GTK);
4153 	Linker.link(gtk_tool_item_set_tooltip_markup, "gtk_tool_item_set_tooltip_markup", LIBRARY_GTK);
4154 	Linker.link(gtk_tool_item_set_tooltip_text, "gtk_tool_item_set_tooltip_text", LIBRARY_GTK);
4155 	Linker.link(gtk_tool_item_set_use_drag_window, "gtk_tool_item_set_use_drag_window", LIBRARY_GTK);
4156 	Linker.link(gtk_tool_item_set_visible_horizontal, "gtk_tool_item_set_visible_horizontal", LIBRARY_GTK);
4157 	Linker.link(gtk_tool_item_set_visible_vertical, "gtk_tool_item_set_visible_vertical", LIBRARY_GTK);
4158 	Linker.link(gtk_tool_item_toolbar_reconfigured, "gtk_tool_item_toolbar_reconfigured", LIBRARY_GTK);
4159 
4160 	// gtk.ToolItemGroup
4161 
4162 	Linker.link(gtk_tool_item_group_get_type, "gtk_tool_item_group_get_type", LIBRARY_GTK);
4163 	Linker.link(gtk_tool_item_group_new, "gtk_tool_item_group_new", LIBRARY_GTK);
4164 	Linker.link(gtk_tool_item_group_get_collapsed, "gtk_tool_item_group_get_collapsed", LIBRARY_GTK);
4165 	Linker.link(gtk_tool_item_group_get_drop_item, "gtk_tool_item_group_get_drop_item", LIBRARY_GTK);
4166 	Linker.link(gtk_tool_item_group_get_ellipsize, "gtk_tool_item_group_get_ellipsize", LIBRARY_GTK);
4167 	Linker.link(gtk_tool_item_group_get_header_relief, "gtk_tool_item_group_get_header_relief", LIBRARY_GTK);
4168 	Linker.link(gtk_tool_item_group_get_item_position, "gtk_tool_item_group_get_item_position", LIBRARY_GTK);
4169 	Linker.link(gtk_tool_item_group_get_label, "gtk_tool_item_group_get_label", LIBRARY_GTK);
4170 	Linker.link(gtk_tool_item_group_get_label_widget, "gtk_tool_item_group_get_label_widget", LIBRARY_GTK);
4171 	Linker.link(gtk_tool_item_group_get_n_items, "gtk_tool_item_group_get_n_items", LIBRARY_GTK);
4172 	Linker.link(gtk_tool_item_group_get_nth_item, "gtk_tool_item_group_get_nth_item", LIBRARY_GTK);
4173 	Linker.link(gtk_tool_item_group_insert, "gtk_tool_item_group_insert", LIBRARY_GTK);
4174 	Linker.link(gtk_tool_item_group_set_collapsed, "gtk_tool_item_group_set_collapsed", LIBRARY_GTK);
4175 	Linker.link(gtk_tool_item_group_set_ellipsize, "gtk_tool_item_group_set_ellipsize", LIBRARY_GTK);
4176 	Linker.link(gtk_tool_item_group_set_header_relief, "gtk_tool_item_group_set_header_relief", LIBRARY_GTK);
4177 	Linker.link(gtk_tool_item_group_set_item_position, "gtk_tool_item_group_set_item_position", LIBRARY_GTK);
4178 	Linker.link(gtk_tool_item_group_set_label, "gtk_tool_item_group_set_label", LIBRARY_GTK);
4179 	Linker.link(gtk_tool_item_group_set_label_widget, "gtk_tool_item_group_set_label_widget", LIBRARY_GTK);
4180 
4181 	// gtk.ToolPalette
4182 
4183 	Linker.link(gtk_tool_palette_get_type, "gtk_tool_palette_get_type", LIBRARY_GTK);
4184 	Linker.link(gtk_tool_palette_new, "gtk_tool_palette_new", LIBRARY_GTK);
4185 	Linker.link(gtk_tool_palette_get_drag_target_group, "gtk_tool_palette_get_drag_target_group", LIBRARY_GTK);
4186 	Linker.link(gtk_tool_palette_get_drag_target_item, "gtk_tool_palette_get_drag_target_item", LIBRARY_GTK);
4187 	Linker.link(gtk_tool_palette_add_drag_dest, "gtk_tool_palette_add_drag_dest", LIBRARY_GTK);
4188 	Linker.link(gtk_tool_palette_get_drag_item, "gtk_tool_palette_get_drag_item", LIBRARY_GTK);
4189 	Linker.link(gtk_tool_palette_get_drop_group, "gtk_tool_palette_get_drop_group", LIBRARY_GTK);
4190 	Linker.link(gtk_tool_palette_get_drop_item, "gtk_tool_palette_get_drop_item", LIBRARY_GTK);
4191 	Linker.link(gtk_tool_palette_get_exclusive, "gtk_tool_palette_get_exclusive", LIBRARY_GTK);
4192 	Linker.link(gtk_tool_palette_get_expand, "gtk_tool_palette_get_expand", LIBRARY_GTK);
4193 	Linker.link(gtk_tool_palette_get_group_position, "gtk_tool_palette_get_group_position", LIBRARY_GTK);
4194 	Linker.link(gtk_tool_palette_get_hadjustment, "gtk_tool_palette_get_hadjustment", LIBRARY_GTK);
4195 	Linker.link(gtk_tool_palette_get_icon_size, "gtk_tool_palette_get_icon_size", LIBRARY_GTK);
4196 	Linker.link(gtk_tool_palette_get_style, "gtk_tool_palette_get_style", LIBRARY_GTK);
4197 	Linker.link(gtk_tool_palette_get_vadjustment, "gtk_tool_palette_get_vadjustment", LIBRARY_GTK);
4198 	Linker.link(gtk_tool_palette_set_drag_source, "gtk_tool_palette_set_drag_source", LIBRARY_GTK);
4199 	Linker.link(gtk_tool_palette_set_exclusive, "gtk_tool_palette_set_exclusive", LIBRARY_GTK);
4200 	Linker.link(gtk_tool_palette_set_expand, "gtk_tool_palette_set_expand", LIBRARY_GTK);
4201 	Linker.link(gtk_tool_palette_set_group_position, "gtk_tool_palette_set_group_position", LIBRARY_GTK);
4202 	Linker.link(gtk_tool_palette_set_icon_size, "gtk_tool_palette_set_icon_size", LIBRARY_GTK);
4203 	Linker.link(gtk_tool_palette_set_style, "gtk_tool_palette_set_style", LIBRARY_GTK);
4204 	Linker.link(gtk_tool_palette_unset_icon_size, "gtk_tool_palette_unset_icon_size", LIBRARY_GTK);
4205 	Linker.link(gtk_tool_palette_unset_style, "gtk_tool_palette_unset_style", LIBRARY_GTK);
4206 
4207 	// gtk.ToolShell
4208 
4209 	Linker.link(gtk_tool_shell_get_type, "gtk_tool_shell_get_type", LIBRARY_GTK);
4210 	Linker.link(gtk_tool_shell_get_ellipsize_mode, "gtk_tool_shell_get_ellipsize_mode", LIBRARY_GTK);
4211 	Linker.link(gtk_tool_shell_get_icon_size, "gtk_tool_shell_get_icon_size", LIBRARY_GTK);
4212 	Linker.link(gtk_tool_shell_get_orientation, "gtk_tool_shell_get_orientation", LIBRARY_GTK);
4213 	Linker.link(gtk_tool_shell_get_relief_style, "gtk_tool_shell_get_relief_style", LIBRARY_GTK);
4214 	Linker.link(gtk_tool_shell_get_style, "gtk_tool_shell_get_style", LIBRARY_GTK);
4215 	Linker.link(gtk_tool_shell_get_text_alignment, "gtk_tool_shell_get_text_alignment", LIBRARY_GTK);
4216 	Linker.link(gtk_tool_shell_get_text_orientation, "gtk_tool_shell_get_text_orientation", LIBRARY_GTK);
4217 	Linker.link(gtk_tool_shell_get_text_size_group, "gtk_tool_shell_get_text_size_group", LIBRARY_GTK);
4218 	Linker.link(gtk_tool_shell_rebuild_menu, "gtk_tool_shell_rebuild_menu", LIBRARY_GTK);
4219 
4220 	// gtk.Toolbar
4221 
4222 	Linker.link(gtk_toolbar_get_type, "gtk_toolbar_get_type", LIBRARY_GTK);
4223 	Linker.link(gtk_toolbar_new, "gtk_toolbar_new", LIBRARY_GTK);
4224 	Linker.link(gtk_toolbar_get_drop_index, "gtk_toolbar_get_drop_index", LIBRARY_GTK);
4225 	Linker.link(gtk_toolbar_get_icon_size, "gtk_toolbar_get_icon_size", LIBRARY_GTK);
4226 	Linker.link(gtk_toolbar_get_item_index, "gtk_toolbar_get_item_index", LIBRARY_GTK);
4227 	Linker.link(gtk_toolbar_get_n_items, "gtk_toolbar_get_n_items", LIBRARY_GTK);
4228 	Linker.link(gtk_toolbar_get_nth_item, "gtk_toolbar_get_nth_item", LIBRARY_GTK);
4229 	Linker.link(gtk_toolbar_get_relief_style, "gtk_toolbar_get_relief_style", LIBRARY_GTK);
4230 	Linker.link(gtk_toolbar_get_show_arrow, "gtk_toolbar_get_show_arrow", LIBRARY_GTK);
4231 	Linker.link(gtk_toolbar_get_style, "gtk_toolbar_get_style", LIBRARY_GTK);
4232 	Linker.link(gtk_toolbar_insert, "gtk_toolbar_insert", LIBRARY_GTK);
4233 	Linker.link(gtk_toolbar_set_drop_highlight_item, "gtk_toolbar_set_drop_highlight_item", LIBRARY_GTK);
4234 	Linker.link(gtk_toolbar_set_icon_size, "gtk_toolbar_set_icon_size", LIBRARY_GTK);
4235 	Linker.link(gtk_toolbar_set_show_arrow, "gtk_toolbar_set_show_arrow", LIBRARY_GTK);
4236 	Linker.link(gtk_toolbar_set_style, "gtk_toolbar_set_style", LIBRARY_GTK);
4237 	Linker.link(gtk_toolbar_unset_icon_size, "gtk_toolbar_unset_icon_size", LIBRARY_GTK);
4238 	Linker.link(gtk_toolbar_unset_style, "gtk_toolbar_unset_style", LIBRARY_GTK);
4239 
4240 	// gtk.Tooltip
4241 
4242 	Linker.link(gtk_tooltip_get_type, "gtk_tooltip_get_type", LIBRARY_GTK);
4243 	Linker.link(gtk_tooltip_trigger_tooltip_query, "gtk_tooltip_trigger_tooltip_query", LIBRARY_GTK);
4244 	Linker.link(gtk_tooltip_set_custom, "gtk_tooltip_set_custom", LIBRARY_GTK);
4245 	Linker.link(gtk_tooltip_set_icon, "gtk_tooltip_set_icon", LIBRARY_GTK);
4246 	Linker.link(gtk_tooltip_set_icon_from_gicon, "gtk_tooltip_set_icon_from_gicon", LIBRARY_GTK);
4247 	Linker.link(gtk_tooltip_set_icon_from_icon_name, "gtk_tooltip_set_icon_from_icon_name", LIBRARY_GTK);
4248 	Linker.link(gtk_tooltip_set_icon_from_stock, "gtk_tooltip_set_icon_from_stock", LIBRARY_GTK);
4249 	Linker.link(gtk_tooltip_set_markup, "gtk_tooltip_set_markup", LIBRARY_GTK);
4250 	Linker.link(gtk_tooltip_set_text, "gtk_tooltip_set_text", LIBRARY_GTK);
4251 	Linker.link(gtk_tooltip_set_tip_area, "gtk_tooltip_set_tip_area", LIBRARY_GTK);
4252 
4253 	// gtk.ToplevelAccessible
4254 
4255 	Linker.link(gtk_toplevel_accessible_get_type, "gtk_toplevel_accessible_get_type", LIBRARY_GTK);
4256 	Linker.link(gtk_toplevel_accessible_get_children, "gtk_toplevel_accessible_get_children", LIBRARY_GTK);
4257 
4258 	// gtk.TreeDragDest
4259 
4260 	Linker.link(gtk_tree_drag_dest_get_type, "gtk_tree_drag_dest_get_type", LIBRARY_GTK);
4261 	Linker.link(gtk_tree_drag_dest_drag_data_received, "gtk_tree_drag_dest_drag_data_received", LIBRARY_GTK);
4262 	Linker.link(gtk_tree_drag_dest_row_drop_possible, "gtk_tree_drag_dest_row_drop_possible", LIBRARY_GTK);
4263 
4264 	// gtk.TreeDragSource
4265 
4266 	Linker.link(gtk_tree_drag_source_get_type, "gtk_tree_drag_source_get_type", LIBRARY_GTK);
4267 	Linker.link(gtk_tree_drag_source_drag_data_delete, "gtk_tree_drag_source_drag_data_delete", LIBRARY_GTK);
4268 	Linker.link(gtk_tree_drag_source_drag_data_get, "gtk_tree_drag_source_drag_data_get", LIBRARY_GTK);
4269 	Linker.link(gtk_tree_drag_source_row_draggable, "gtk_tree_drag_source_row_draggable", LIBRARY_GTK);
4270 	Linker.link(gtk_tree_get_row_drag_data, "gtk_tree_get_row_drag_data", LIBRARY_GTK);
4271 	Linker.link(gtk_tree_set_row_drag_data, "gtk_tree_set_row_drag_data", LIBRARY_GTK);
4272 
4273 	// gtk.TreeIter
4274 
4275 	Linker.link(gtk_tree_iter_get_type, "gtk_tree_iter_get_type", LIBRARY_GTK);
4276 	Linker.link(gtk_tree_iter_copy, "gtk_tree_iter_copy", LIBRARY_GTK);
4277 	Linker.link(gtk_tree_iter_free, "gtk_tree_iter_free", LIBRARY_GTK);
4278 
4279 	// gtk.TreeModel
4280 
4281 	Linker.link(gtk_tree_model_get_type, "gtk_tree_model_get_type", LIBRARY_GTK);
4282 	Linker.link(gtk_tree_model_foreach, "gtk_tree_model_foreach", LIBRARY_GTK);
4283 	Linker.link(gtk_tree_model_get, "gtk_tree_model_get", LIBRARY_GTK);
4284 	Linker.link(gtk_tree_model_get_column_type, "gtk_tree_model_get_column_type", LIBRARY_GTK);
4285 	Linker.link(gtk_tree_model_get_flags, "gtk_tree_model_get_flags", LIBRARY_GTK);
4286 	Linker.link(gtk_tree_model_get_iter, "gtk_tree_model_get_iter", LIBRARY_GTK);
4287 	Linker.link(gtk_tree_model_get_iter_first, "gtk_tree_model_get_iter_first", LIBRARY_GTK);
4288 	Linker.link(gtk_tree_model_get_iter_from_string, "gtk_tree_model_get_iter_from_string", LIBRARY_GTK);
4289 	Linker.link(gtk_tree_model_get_n_columns, "gtk_tree_model_get_n_columns", LIBRARY_GTK);
4290 	Linker.link(gtk_tree_model_get_path, "gtk_tree_model_get_path", LIBRARY_GTK);
4291 	Linker.link(gtk_tree_model_get_string_from_iter, "gtk_tree_model_get_string_from_iter", LIBRARY_GTK);
4292 	Linker.link(gtk_tree_model_get_valist, "gtk_tree_model_get_valist", LIBRARY_GTK);
4293 	Linker.link(gtk_tree_model_get_value, "gtk_tree_model_get_value", LIBRARY_GTK);
4294 	Linker.link(gtk_tree_model_iter_children, "gtk_tree_model_iter_children", LIBRARY_GTK);
4295 	Linker.link(gtk_tree_model_iter_has_child, "gtk_tree_model_iter_has_child", LIBRARY_GTK);
4296 	Linker.link(gtk_tree_model_iter_n_children, "gtk_tree_model_iter_n_children", LIBRARY_GTK);
4297 	Linker.link(gtk_tree_model_iter_next, "gtk_tree_model_iter_next", LIBRARY_GTK);
4298 	Linker.link(gtk_tree_model_iter_nth_child, "gtk_tree_model_iter_nth_child", LIBRARY_GTK);
4299 	Linker.link(gtk_tree_model_iter_parent, "gtk_tree_model_iter_parent", LIBRARY_GTK);
4300 	Linker.link(gtk_tree_model_iter_previous, "gtk_tree_model_iter_previous", LIBRARY_GTK);
4301 	Linker.link(gtk_tree_model_ref_node, "gtk_tree_model_ref_node", LIBRARY_GTK);
4302 	Linker.link(gtk_tree_model_row_changed, "gtk_tree_model_row_changed", LIBRARY_GTK);
4303 	Linker.link(gtk_tree_model_row_deleted, "gtk_tree_model_row_deleted", LIBRARY_GTK);
4304 	Linker.link(gtk_tree_model_row_has_child_toggled, "gtk_tree_model_row_has_child_toggled", LIBRARY_GTK);
4305 	Linker.link(gtk_tree_model_row_inserted, "gtk_tree_model_row_inserted", LIBRARY_GTK);
4306 	Linker.link(gtk_tree_model_rows_reordered, "gtk_tree_model_rows_reordered", LIBRARY_GTK);
4307 	Linker.link(gtk_tree_model_rows_reordered_with_length, "gtk_tree_model_rows_reordered_with_length", LIBRARY_GTK);
4308 	Linker.link(gtk_tree_model_unref_node, "gtk_tree_model_unref_node", LIBRARY_GTK);
4309 
4310 	// gtk.TreeModelFilter
4311 
4312 	Linker.link(gtk_tree_model_filter_get_type, "gtk_tree_model_filter_get_type", LIBRARY_GTK);
4313 	Linker.link(gtk_tree_model_filter_clear_cache, "gtk_tree_model_filter_clear_cache", LIBRARY_GTK);
4314 	Linker.link(gtk_tree_model_filter_convert_child_iter_to_iter, "gtk_tree_model_filter_convert_child_iter_to_iter", LIBRARY_GTK);
4315 	Linker.link(gtk_tree_model_filter_convert_child_path_to_path, "gtk_tree_model_filter_convert_child_path_to_path", LIBRARY_GTK);
4316 	Linker.link(gtk_tree_model_filter_convert_iter_to_child_iter, "gtk_tree_model_filter_convert_iter_to_child_iter", LIBRARY_GTK);
4317 	Linker.link(gtk_tree_model_filter_convert_path_to_child_path, "gtk_tree_model_filter_convert_path_to_child_path", LIBRARY_GTK);
4318 	Linker.link(gtk_tree_model_filter_get_model, "gtk_tree_model_filter_get_model", LIBRARY_GTK);
4319 	Linker.link(gtk_tree_model_filter_refilter, "gtk_tree_model_filter_refilter", LIBRARY_GTK);
4320 	Linker.link(gtk_tree_model_filter_set_modify_func, "gtk_tree_model_filter_set_modify_func", LIBRARY_GTK);
4321 	Linker.link(gtk_tree_model_filter_set_visible_column, "gtk_tree_model_filter_set_visible_column", LIBRARY_GTK);
4322 	Linker.link(gtk_tree_model_filter_set_visible_func, "gtk_tree_model_filter_set_visible_func", LIBRARY_GTK);
4323 	Linker.link(gtk_tree_model_filter_new, "gtk_tree_model_filter_new", LIBRARY_GTK);
4324 
4325 	// gtk.TreeModelSort
4326 
4327 	Linker.link(gtk_tree_model_sort_get_type, "gtk_tree_model_sort_get_type", LIBRARY_GTK);
4328 	Linker.link(gtk_tree_model_sort_clear_cache, "gtk_tree_model_sort_clear_cache", LIBRARY_GTK);
4329 	Linker.link(gtk_tree_model_sort_convert_child_iter_to_iter, "gtk_tree_model_sort_convert_child_iter_to_iter", LIBRARY_GTK);
4330 	Linker.link(gtk_tree_model_sort_convert_child_path_to_path, "gtk_tree_model_sort_convert_child_path_to_path", LIBRARY_GTK);
4331 	Linker.link(gtk_tree_model_sort_convert_iter_to_child_iter, "gtk_tree_model_sort_convert_iter_to_child_iter", LIBRARY_GTK);
4332 	Linker.link(gtk_tree_model_sort_convert_path_to_child_path, "gtk_tree_model_sort_convert_path_to_child_path", LIBRARY_GTK);
4333 	Linker.link(gtk_tree_model_sort_get_model, "gtk_tree_model_sort_get_model", LIBRARY_GTK);
4334 	Linker.link(gtk_tree_model_sort_iter_is_valid, "gtk_tree_model_sort_iter_is_valid", LIBRARY_GTK);
4335 	Linker.link(gtk_tree_model_sort_reset_default_sort_func, "gtk_tree_model_sort_reset_default_sort_func", LIBRARY_GTK);
4336 	Linker.link(gtk_tree_model_sort_new_with_model, "gtk_tree_model_sort_new_with_model", LIBRARY_GTK);
4337 
4338 	// gtk.TreePath
4339 
4340 	Linker.link(gtk_tree_path_get_type, "gtk_tree_path_get_type", LIBRARY_GTK);
4341 	Linker.link(gtk_tree_path_new, "gtk_tree_path_new", LIBRARY_GTK);
4342 	Linker.link(gtk_tree_path_new_first, "gtk_tree_path_new_first", LIBRARY_GTK);
4343 	Linker.link(gtk_tree_path_new_from_indices, "gtk_tree_path_new_from_indices", LIBRARY_GTK);
4344 	Linker.link(gtk_tree_path_new_from_indicesv, "gtk_tree_path_new_from_indicesv", LIBRARY_GTK);
4345 	Linker.link(gtk_tree_path_new_from_string, "gtk_tree_path_new_from_string", LIBRARY_GTK);
4346 	Linker.link(gtk_tree_path_append_index, "gtk_tree_path_append_index", LIBRARY_GTK);
4347 	Linker.link(gtk_tree_path_compare, "gtk_tree_path_compare", LIBRARY_GTK);
4348 	Linker.link(gtk_tree_path_copy, "gtk_tree_path_copy", LIBRARY_GTK);
4349 	Linker.link(gtk_tree_path_down, "gtk_tree_path_down", LIBRARY_GTK);
4350 	Linker.link(gtk_tree_path_free, "gtk_tree_path_free", LIBRARY_GTK);
4351 	Linker.link(gtk_tree_path_get_depth, "gtk_tree_path_get_depth", LIBRARY_GTK);
4352 	Linker.link(gtk_tree_path_get_indices, "gtk_tree_path_get_indices", LIBRARY_GTK);
4353 	Linker.link(gtk_tree_path_get_indices_with_depth, "gtk_tree_path_get_indices_with_depth", LIBRARY_GTK);
4354 	Linker.link(gtk_tree_path_is_ancestor, "gtk_tree_path_is_ancestor", LIBRARY_GTK);
4355 	Linker.link(gtk_tree_path_is_descendant, "gtk_tree_path_is_descendant", LIBRARY_GTK);
4356 	Linker.link(gtk_tree_path_next, "gtk_tree_path_next", LIBRARY_GTK);
4357 	Linker.link(gtk_tree_path_prepend_index, "gtk_tree_path_prepend_index", LIBRARY_GTK);
4358 	Linker.link(gtk_tree_path_prev, "gtk_tree_path_prev", LIBRARY_GTK);
4359 	Linker.link(gtk_tree_path_to_string, "gtk_tree_path_to_string", LIBRARY_GTK);
4360 	Linker.link(gtk_tree_path_up, "gtk_tree_path_up", LIBRARY_GTK);
4361 
4362 	// gtk.TreeRowReference
4363 
4364 	Linker.link(gtk_tree_row_reference_get_type, "gtk_tree_row_reference_get_type", LIBRARY_GTK);
4365 	Linker.link(gtk_tree_row_reference_new, "gtk_tree_row_reference_new", LIBRARY_GTK);
4366 	Linker.link(gtk_tree_row_reference_new_proxy, "gtk_tree_row_reference_new_proxy", LIBRARY_GTK);
4367 	Linker.link(gtk_tree_row_reference_copy, "gtk_tree_row_reference_copy", LIBRARY_GTK);
4368 	Linker.link(gtk_tree_row_reference_free, "gtk_tree_row_reference_free", LIBRARY_GTK);
4369 	Linker.link(gtk_tree_row_reference_get_model, "gtk_tree_row_reference_get_model", LIBRARY_GTK);
4370 	Linker.link(gtk_tree_row_reference_get_path, "gtk_tree_row_reference_get_path", LIBRARY_GTK);
4371 	Linker.link(gtk_tree_row_reference_valid, "gtk_tree_row_reference_valid", LIBRARY_GTK);
4372 	Linker.link(gtk_tree_row_reference_deleted, "gtk_tree_row_reference_deleted", LIBRARY_GTK);
4373 	Linker.link(gtk_tree_row_reference_inserted, "gtk_tree_row_reference_inserted", LIBRARY_GTK);
4374 	Linker.link(gtk_tree_row_reference_reordered, "gtk_tree_row_reference_reordered", LIBRARY_GTK);
4375 
4376 	// gtk.TreeSelection
4377 
4378 	Linker.link(gtk_tree_selection_get_type, "gtk_tree_selection_get_type", LIBRARY_GTK);
4379 	Linker.link(gtk_tree_selection_count_selected_rows, "gtk_tree_selection_count_selected_rows", LIBRARY_GTK);
4380 	Linker.link(gtk_tree_selection_get_mode, "gtk_tree_selection_get_mode", LIBRARY_GTK);
4381 	Linker.link(gtk_tree_selection_get_select_function, "gtk_tree_selection_get_select_function", LIBRARY_GTK);
4382 	Linker.link(gtk_tree_selection_get_selected, "gtk_tree_selection_get_selected", LIBRARY_GTK);
4383 	Linker.link(gtk_tree_selection_get_selected_rows, "gtk_tree_selection_get_selected_rows", LIBRARY_GTK);
4384 	Linker.link(gtk_tree_selection_get_tree_view, "gtk_tree_selection_get_tree_view", LIBRARY_GTK);
4385 	Linker.link(gtk_tree_selection_get_user_data, "gtk_tree_selection_get_user_data", LIBRARY_GTK);
4386 	Linker.link(gtk_tree_selection_iter_is_selected, "gtk_tree_selection_iter_is_selected", LIBRARY_GTK);
4387 	Linker.link(gtk_tree_selection_path_is_selected, "gtk_tree_selection_path_is_selected", LIBRARY_GTK);
4388 	Linker.link(gtk_tree_selection_select_all, "gtk_tree_selection_select_all", LIBRARY_GTK);
4389 	Linker.link(gtk_tree_selection_select_iter, "gtk_tree_selection_select_iter", LIBRARY_GTK);
4390 	Linker.link(gtk_tree_selection_select_path, "gtk_tree_selection_select_path", LIBRARY_GTK);
4391 	Linker.link(gtk_tree_selection_select_range, "gtk_tree_selection_select_range", LIBRARY_GTK);
4392 	Linker.link(gtk_tree_selection_selected_foreach, "gtk_tree_selection_selected_foreach", LIBRARY_GTK);
4393 	Linker.link(gtk_tree_selection_set_mode, "gtk_tree_selection_set_mode", LIBRARY_GTK);
4394 	Linker.link(gtk_tree_selection_set_select_function, "gtk_tree_selection_set_select_function", LIBRARY_GTK);
4395 	Linker.link(gtk_tree_selection_unselect_all, "gtk_tree_selection_unselect_all", LIBRARY_GTK);
4396 	Linker.link(gtk_tree_selection_unselect_iter, "gtk_tree_selection_unselect_iter", LIBRARY_GTK);
4397 	Linker.link(gtk_tree_selection_unselect_path, "gtk_tree_selection_unselect_path", LIBRARY_GTK);
4398 	Linker.link(gtk_tree_selection_unselect_range, "gtk_tree_selection_unselect_range", LIBRARY_GTK);
4399 
4400 	// gtk.TreeSortable
4401 
4402 	Linker.link(gtk_tree_sortable_get_type, "gtk_tree_sortable_get_type", LIBRARY_GTK);
4403 	Linker.link(gtk_tree_sortable_get_sort_column_id, "gtk_tree_sortable_get_sort_column_id", LIBRARY_GTK);
4404 	Linker.link(gtk_tree_sortable_has_default_sort_func, "gtk_tree_sortable_has_default_sort_func", LIBRARY_GTK);
4405 	Linker.link(gtk_tree_sortable_set_default_sort_func, "gtk_tree_sortable_set_default_sort_func", LIBRARY_GTK);
4406 	Linker.link(gtk_tree_sortable_set_sort_column_id, "gtk_tree_sortable_set_sort_column_id", LIBRARY_GTK);
4407 	Linker.link(gtk_tree_sortable_set_sort_func, "gtk_tree_sortable_set_sort_func", LIBRARY_GTK);
4408 	Linker.link(gtk_tree_sortable_sort_column_changed, "gtk_tree_sortable_sort_column_changed", LIBRARY_GTK);
4409 
4410 	// gtk.TreeStore
4411 
4412 	Linker.link(gtk_tree_store_get_type, "gtk_tree_store_get_type", LIBRARY_GTK);
4413 	Linker.link(gtk_tree_store_new, "gtk_tree_store_new", LIBRARY_GTK);
4414 	Linker.link(gtk_tree_store_newv, "gtk_tree_store_newv", LIBRARY_GTK);
4415 	Linker.link(gtk_tree_store_append, "gtk_tree_store_append", LIBRARY_GTK);
4416 	Linker.link(gtk_tree_store_clear, "gtk_tree_store_clear", LIBRARY_GTK);
4417 	Linker.link(gtk_tree_store_insert, "gtk_tree_store_insert", LIBRARY_GTK);
4418 	Linker.link(gtk_tree_store_insert_after, "gtk_tree_store_insert_after", LIBRARY_GTK);
4419 	Linker.link(gtk_tree_store_insert_before, "gtk_tree_store_insert_before", LIBRARY_GTK);
4420 	Linker.link(gtk_tree_store_insert_with_values, "gtk_tree_store_insert_with_values", LIBRARY_GTK);
4421 	Linker.link(gtk_tree_store_insert_with_valuesv, "gtk_tree_store_insert_with_valuesv", LIBRARY_GTK);
4422 	Linker.link(gtk_tree_store_is_ancestor, "gtk_tree_store_is_ancestor", LIBRARY_GTK);
4423 	Linker.link(gtk_tree_store_iter_depth, "gtk_tree_store_iter_depth", LIBRARY_GTK);
4424 	Linker.link(gtk_tree_store_iter_is_valid, "gtk_tree_store_iter_is_valid", LIBRARY_GTK);
4425 	Linker.link(gtk_tree_store_move_after, "gtk_tree_store_move_after", LIBRARY_GTK);
4426 	Linker.link(gtk_tree_store_move_before, "gtk_tree_store_move_before", LIBRARY_GTK);
4427 	Linker.link(gtk_tree_store_prepend, "gtk_tree_store_prepend", LIBRARY_GTK);
4428 	Linker.link(gtk_tree_store_remove, "gtk_tree_store_remove", LIBRARY_GTK);
4429 	Linker.link(gtk_tree_store_reorder, "gtk_tree_store_reorder", LIBRARY_GTK);
4430 	Linker.link(gtk_tree_store_set, "gtk_tree_store_set", LIBRARY_GTK);
4431 	Linker.link(gtk_tree_store_set_column_types, "gtk_tree_store_set_column_types", LIBRARY_GTK);
4432 	Linker.link(gtk_tree_store_set_valist, "gtk_tree_store_set_valist", LIBRARY_GTK);
4433 	Linker.link(gtk_tree_store_set_value, "gtk_tree_store_set_value", LIBRARY_GTK);
4434 	Linker.link(gtk_tree_store_set_valuesv, "gtk_tree_store_set_valuesv", LIBRARY_GTK);
4435 	Linker.link(gtk_tree_store_swap, "gtk_tree_store_swap", LIBRARY_GTK);
4436 
4437 	// gtk.TreeView
4438 
4439 	Linker.link(gtk_tree_view_get_type, "gtk_tree_view_get_type", LIBRARY_GTK);
4440 	Linker.link(gtk_tree_view_new, "gtk_tree_view_new", LIBRARY_GTK);
4441 	Linker.link(gtk_tree_view_new_with_model, "gtk_tree_view_new_with_model", LIBRARY_GTK);
4442 	Linker.link(gtk_tree_view_append_column, "gtk_tree_view_append_column", LIBRARY_GTK);
4443 	Linker.link(gtk_tree_view_collapse_all, "gtk_tree_view_collapse_all", LIBRARY_GTK);
4444 	Linker.link(gtk_tree_view_collapse_row, "gtk_tree_view_collapse_row", LIBRARY_GTK);
4445 	Linker.link(gtk_tree_view_columns_autosize, "gtk_tree_view_columns_autosize", LIBRARY_GTK);
4446 	Linker.link(gtk_tree_view_convert_bin_window_to_tree_coords, "gtk_tree_view_convert_bin_window_to_tree_coords", LIBRARY_GTK);
4447 	Linker.link(gtk_tree_view_convert_bin_window_to_widget_coords, "gtk_tree_view_convert_bin_window_to_widget_coords", LIBRARY_GTK);
4448 	Linker.link(gtk_tree_view_convert_tree_to_bin_window_coords, "gtk_tree_view_convert_tree_to_bin_window_coords", LIBRARY_GTK);
4449 	Linker.link(gtk_tree_view_convert_tree_to_widget_coords, "gtk_tree_view_convert_tree_to_widget_coords", LIBRARY_GTK);
4450 	Linker.link(gtk_tree_view_convert_widget_to_bin_window_coords, "gtk_tree_view_convert_widget_to_bin_window_coords", LIBRARY_GTK);
4451 	Linker.link(gtk_tree_view_convert_widget_to_tree_coords, "gtk_tree_view_convert_widget_to_tree_coords", LIBRARY_GTK);
4452 	Linker.link(gtk_tree_view_create_row_drag_icon, "gtk_tree_view_create_row_drag_icon", LIBRARY_GTK);
4453 	Linker.link(gtk_tree_view_enable_model_drag_dest, "gtk_tree_view_enable_model_drag_dest", LIBRARY_GTK);
4454 	Linker.link(gtk_tree_view_enable_model_drag_source, "gtk_tree_view_enable_model_drag_source", LIBRARY_GTK);
4455 	Linker.link(gtk_tree_view_expand_all, "gtk_tree_view_expand_all", LIBRARY_GTK);
4456 	Linker.link(gtk_tree_view_expand_row, "gtk_tree_view_expand_row", LIBRARY_GTK);
4457 	Linker.link(gtk_tree_view_expand_to_path, "gtk_tree_view_expand_to_path", LIBRARY_GTK);
4458 	Linker.link(gtk_tree_view_get_activate_on_single_click, "gtk_tree_view_get_activate_on_single_click", LIBRARY_GTK);
4459 	Linker.link(gtk_tree_view_get_background_area, "gtk_tree_view_get_background_area", LIBRARY_GTK);
4460 	Linker.link(gtk_tree_view_get_bin_window, "gtk_tree_view_get_bin_window", LIBRARY_GTK);
4461 	Linker.link(gtk_tree_view_get_cell_area, "gtk_tree_view_get_cell_area", LIBRARY_GTK);
4462 	Linker.link(gtk_tree_view_get_column, "gtk_tree_view_get_column", LIBRARY_GTK);
4463 	Linker.link(gtk_tree_view_get_columns, "gtk_tree_view_get_columns", LIBRARY_GTK);
4464 	Linker.link(gtk_tree_view_get_cursor, "gtk_tree_view_get_cursor", LIBRARY_GTK);
4465 	Linker.link(gtk_tree_view_get_dest_row_at_pos, "gtk_tree_view_get_dest_row_at_pos", LIBRARY_GTK);
4466 	Linker.link(gtk_tree_view_get_drag_dest_row, "gtk_tree_view_get_drag_dest_row", LIBRARY_GTK);
4467 	Linker.link(gtk_tree_view_get_enable_search, "gtk_tree_view_get_enable_search", LIBRARY_GTK);
4468 	Linker.link(gtk_tree_view_get_enable_tree_lines, "gtk_tree_view_get_enable_tree_lines", LIBRARY_GTK);
4469 	Linker.link(gtk_tree_view_get_expander_column, "gtk_tree_view_get_expander_column", LIBRARY_GTK);
4470 	Linker.link(gtk_tree_view_get_fixed_height_mode, "gtk_tree_view_get_fixed_height_mode", LIBRARY_GTK);
4471 	Linker.link(gtk_tree_view_get_grid_lines, "gtk_tree_view_get_grid_lines", LIBRARY_GTK);
4472 	Linker.link(gtk_tree_view_get_hadjustment, "gtk_tree_view_get_hadjustment", LIBRARY_GTK);
4473 	Linker.link(gtk_tree_view_get_headers_clickable, "gtk_tree_view_get_headers_clickable", LIBRARY_GTK);
4474 	Linker.link(gtk_tree_view_get_headers_visible, "gtk_tree_view_get_headers_visible", LIBRARY_GTK);
4475 	Linker.link(gtk_tree_view_get_hover_expand, "gtk_tree_view_get_hover_expand", LIBRARY_GTK);
4476 	Linker.link(gtk_tree_view_get_hover_selection, "gtk_tree_view_get_hover_selection", LIBRARY_GTK);
4477 	Linker.link(gtk_tree_view_get_level_indentation, "gtk_tree_view_get_level_indentation", LIBRARY_GTK);
4478 	Linker.link(gtk_tree_view_get_model, "gtk_tree_view_get_model", LIBRARY_GTK);
4479 	Linker.link(gtk_tree_view_get_n_columns, "gtk_tree_view_get_n_columns", LIBRARY_GTK);
4480 	Linker.link(gtk_tree_view_get_path_at_pos, "gtk_tree_view_get_path_at_pos", LIBRARY_GTK);
4481 	Linker.link(gtk_tree_view_get_reorderable, "gtk_tree_view_get_reorderable", LIBRARY_GTK);
4482 	Linker.link(gtk_tree_view_get_row_separator_func, "gtk_tree_view_get_row_separator_func", LIBRARY_GTK);
4483 	Linker.link(gtk_tree_view_get_rubber_banding, "gtk_tree_view_get_rubber_banding", LIBRARY_GTK);
4484 	Linker.link(gtk_tree_view_get_rules_hint, "gtk_tree_view_get_rules_hint", LIBRARY_GTK);
4485 	Linker.link(gtk_tree_view_get_search_column, "gtk_tree_view_get_search_column", LIBRARY_GTK);
4486 	Linker.link(gtk_tree_view_get_search_entry, "gtk_tree_view_get_search_entry", LIBRARY_GTK);
4487 	Linker.link(gtk_tree_view_get_search_equal_func, "gtk_tree_view_get_search_equal_func", LIBRARY_GTK);
4488 	Linker.link(gtk_tree_view_get_search_position_func, "gtk_tree_view_get_search_position_func", LIBRARY_GTK);
4489 	Linker.link(gtk_tree_view_get_selection, "gtk_tree_view_get_selection", LIBRARY_GTK);
4490 	Linker.link(gtk_tree_view_get_show_expanders, "gtk_tree_view_get_show_expanders", LIBRARY_GTK);
4491 	Linker.link(gtk_tree_view_get_tooltip_column, "gtk_tree_view_get_tooltip_column", LIBRARY_GTK);
4492 	Linker.link(gtk_tree_view_get_tooltip_context, "gtk_tree_view_get_tooltip_context", LIBRARY_GTK);
4493 	Linker.link(gtk_tree_view_get_vadjustment, "gtk_tree_view_get_vadjustment", LIBRARY_GTK);
4494 	Linker.link(gtk_tree_view_get_visible_range, "gtk_tree_view_get_visible_range", LIBRARY_GTK);
4495 	Linker.link(gtk_tree_view_get_visible_rect, "gtk_tree_view_get_visible_rect", LIBRARY_GTK);
4496 	Linker.link(gtk_tree_view_insert_column, "gtk_tree_view_insert_column", LIBRARY_GTK);
4497 	Linker.link(gtk_tree_view_insert_column_with_attributes, "gtk_tree_view_insert_column_with_attributes", LIBRARY_GTK);
4498 	Linker.link(gtk_tree_view_insert_column_with_data_func, "gtk_tree_view_insert_column_with_data_func", LIBRARY_GTK);
4499 	Linker.link(gtk_tree_view_is_blank_at_pos, "gtk_tree_view_is_blank_at_pos", LIBRARY_GTK);
4500 	Linker.link(gtk_tree_view_is_rubber_banding_active, "gtk_tree_view_is_rubber_banding_active", LIBRARY_GTK);
4501 	Linker.link(gtk_tree_view_map_expanded_rows, "gtk_tree_view_map_expanded_rows", LIBRARY_GTK);
4502 	Linker.link(gtk_tree_view_move_column_after, "gtk_tree_view_move_column_after", LIBRARY_GTK);
4503 	Linker.link(gtk_tree_view_remove_column, "gtk_tree_view_remove_column", LIBRARY_GTK);
4504 	Linker.link(gtk_tree_view_row_activated, "gtk_tree_view_row_activated", LIBRARY_GTK);
4505 	Linker.link(gtk_tree_view_row_expanded, "gtk_tree_view_row_expanded", LIBRARY_GTK);
4506 	Linker.link(gtk_tree_view_scroll_to_cell, "gtk_tree_view_scroll_to_cell", LIBRARY_GTK);
4507 	Linker.link(gtk_tree_view_scroll_to_point, "gtk_tree_view_scroll_to_point", LIBRARY_GTK);
4508 	Linker.link(gtk_tree_view_set_activate_on_single_click, "gtk_tree_view_set_activate_on_single_click", LIBRARY_GTK);
4509 	Linker.link(gtk_tree_view_set_column_drag_function, "gtk_tree_view_set_column_drag_function", LIBRARY_GTK);
4510 	Linker.link(gtk_tree_view_set_cursor, "gtk_tree_view_set_cursor", LIBRARY_GTK);
4511 	Linker.link(gtk_tree_view_set_cursor_on_cell, "gtk_tree_view_set_cursor_on_cell", LIBRARY_GTK);
4512 	Linker.link(gtk_tree_view_set_destroy_count_func, "gtk_tree_view_set_destroy_count_func", LIBRARY_GTK);
4513 	Linker.link(gtk_tree_view_set_drag_dest_row, "gtk_tree_view_set_drag_dest_row", LIBRARY_GTK);
4514 	Linker.link(gtk_tree_view_set_enable_search, "gtk_tree_view_set_enable_search", LIBRARY_GTK);
4515 	Linker.link(gtk_tree_view_set_enable_tree_lines, "gtk_tree_view_set_enable_tree_lines", LIBRARY_GTK);
4516 	Linker.link(gtk_tree_view_set_expander_column, "gtk_tree_view_set_expander_column", LIBRARY_GTK);
4517 	Linker.link(gtk_tree_view_set_fixed_height_mode, "gtk_tree_view_set_fixed_height_mode", LIBRARY_GTK);
4518 	Linker.link(gtk_tree_view_set_grid_lines, "gtk_tree_view_set_grid_lines", LIBRARY_GTK);
4519 	Linker.link(gtk_tree_view_set_hadjustment, "gtk_tree_view_set_hadjustment", LIBRARY_GTK);
4520 	Linker.link(gtk_tree_view_set_headers_clickable, "gtk_tree_view_set_headers_clickable", LIBRARY_GTK);
4521 	Linker.link(gtk_tree_view_set_headers_visible, "gtk_tree_view_set_headers_visible", LIBRARY_GTK);
4522 	Linker.link(gtk_tree_view_set_hover_expand, "gtk_tree_view_set_hover_expand", LIBRARY_GTK);
4523 	Linker.link(gtk_tree_view_set_hover_selection, "gtk_tree_view_set_hover_selection", LIBRARY_GTK);
4524 	Linker.link(gtk_tree_view_set_level_indentation, "gtk_tree_view_set_level_indentation", LIBRARY_GTK);
4525 	Linker.link(gtk_tree_view_set_model, "gtk_tree_view_set_model", LIBRARY_GTK);
4526 	Linker.link(gtk_tree_view_set_reorderable, "gtk_tree_view_set_reorderable", LIBRARY_GTK);
4527 	Linker.link(gtk_tree_view_set_row_separator_func, "gtk_tree_view_set_row_separator_func", LIBRARY_GTK);
4528 	Linker.link(gtk_tree_view_set_rubber_banding, "gtk_tree_view_set_rubber_banding", LIBRARY_GTK);
4529 	Linker.link(gtk_tree_view_set_rules_hint, "gtk_tree_view_set_rules_hint", LIBRARY_GTK);
4530 	Linker.link(gtk_tree_view_set_search_column, "gtk_tree_view_set_search_column", LIBRARY_GTK);
4531 	Linker.link(gtk_tree_view_set_search_entry, "gtk_tree_view_set_search_entry", LIBRARY_GTK);
4532 	Linker.link(gtk_tree_view_set_search_equal_func, "gtk_tree_view_set_search_equal_func", LIBRARY_GTK);
4533 	Linker.link(gtk_tree_view_set_search_position_func, "gtk_tree_view_set_search_position_func", LIBRARY_GTK);
4534 	Linker.link(gtk_tree_view_set_show_expanders, "gtk_tree_view_set_show_expanders", LIBRARY_GTK);
4535 	Linker.link(gtk_tree_view_set_tooltip_cell, "gtk_tree_view_set_tooltip_cell", LIBRARY_GTK);
4536 	Linker.link(gtk_tree_view_set_tooltip_column, "gtk_tree_view_set_tooltip_column", LIBRARY_GTK);
4537 	Linker.link(gtk_tree_view_set_tooltip_row, "gtk_tree_view_set_tooltip_row", LIBRARY_GTK);
4538 	Linker.link(gtk_tree_view_set_vadjustment, "gtk_tree_view_set_vadjustment", LIBRARY_GTK);
4539 	Linker.link(gtk_tree_view_unset_rows_drag_dest, "gtk_tree_view_unset_rows_drag_dest", LIBRARY_GTK);
4540 	Linker.link(gtk_tree_view_unset_rows_drag_source, "gtk_tree_view_unset_rows_drag_source", LIBRARY_GTK);
4541 
4542 	// gtk.TreeViewAccessible
4543 
4544 	Linker.link(gtk_tree_view_accessible_get_type, "gtk_tree_view_accessible_get_type", LIBRARY_GTK);
4545 
4546 	// gtk.TreeViewColumn
4547 
4548 	Linker.link(gtk_tree_view_column_get_type, "gtk_tree_view_column_get_type", LIBRARY_GTK);
4549 	Linker.link(gtk_tree_view_column_new, "gtk_tree_view_column_new", LIBRARY_GTK);
4550 	Linker.link(gtk_tree_view_column_new_with_area, "gtk_tree_view_column_new_with_area", LIBRARY_GTK);
4551 	Linker.link(gtk_tree_view_column_new_with_attributes, "gtk_tree_view_column_new_with_attributes", LIBRARY_GTK);
4552 	Linker.link(gtk_tree_view_column_add_attribute, "gtk_tree_view_column_add_attribute", LIBRARY_GTK);
4553 	Linker.link(gtk_tree_view_column_cell_get_position, "gtk_tree_view_column_cell_get_position", LIBRARY_GTK);
4554 	Linker.link(gtk_tree_view_column_cell_get_size, "gtk_tree_view_column_cell_get_size", LIBRARY_GTK);
4555 	Linker.link(gtk_tree_view_column_cell_is_visible, "gtk_tree_view_column_cell_is_visible", LIBRARY_GTK);
4556 	Linker.link(gtk_tree_view_column_cell_set_cell_data, "gtk_tree_view_column_cell_set_cell_data", LIBRARY_GTK);
4557 	Linker.link(gtk_tree_view_column_clear, "gtk_tree_view_column_clear", LIBRARY_GTK);
4558 	Linker.link(gtk_tree_view_column_clear_attributes, "gtk_tree_view_column_clear_attributes", LIBRARY_GTK);
4559 	Linker.link(gtk_tree_view_column_clicked, "gtk_tree_view_column_clicked", LIBRARY_GTK);
4560 	Linker.link(gtk_tree_view_column_focus_cell, "gtk_tree_view_column_focus_cell", LIBRARY_GTK);
4561 	Linker.link(gtk_tree_view_column_get_alignment, "gtk_tree_view_column_get_alignment", LIBRARY_GTK);
4562 	Linker.link(gtk_tree_view_column_get_button, "gtk_tree_view_column_get_button", LIBRARY_GTK);
4563 	Linker.link(gtk_tree_view_column_get_clickable, "gtk_tree_view_column_get_clickable", LIBRARY_GTK);
4564 	Linker.link(gtk_tree_view_column_get_expand, "gtk_tree_view_column_get_expand", LIBRARY_GTK);
4565 	Linker.link(gtk_tree_view_column_get_fixed_width, "gtk_tree_view_column_get_fixed_width", LIBRARY_GTK);
4566 	Linker.link(gtk_tree_view_column_get_max_width, "gtk_tree_view_column_get_max_width", LIBRARY_GTK);
4567 	Linker.link(gtk_tree_view_column_get_min_width, "gtk_tree_view_column_get_min_width", LIBRARY_GTK);
4568 	Linker.link(gtk_tree_view_column_get_reorderable, "gtk_tree_view_column_get_reorderable", LIBRARY_GTK);
4569 	Linker.link(gtk_tree_view_column_get_resizable, "gtk_tree_view_column_get_resizable", LIBRARY_GTK);
4570 	Linker.link(gtk_tree_view_column_get_sizing, "gtk_tree_view_column_get_sizing", LIBRARY_GTK);
4571 	Linker.link(gtk_tree_view_column_get_sort_column_id, "gtk_tree_view_column_get_sort_column_id", LIBRARY_GTK);
4572 	Linker.link(gtk_tree_view_column_get_sort_indicator, "gtk_tree_view_column_get_sort_indicator", LIBRARY_GTK);
4573 	Linker.link(gtk_tree_view_column_get_sort_order, "gtk_tree_view_column_get_sort_order", LIBRARY_GTK);
4574 	Linker.link(gtk_tree_view_column_get_spacing, "gtk_tree_view_column_get_spacing", LIBRARY_GTK);
4575 	Linker.link(gtk_tree_view_column_get_title, "gtk_tree_view_column_get_title", LIBRARY_GTK);
4576 	Linker.link(gtk_tree_view_column_get_tree_view, "gtk_tree_view_column_get_tree_view", LIBRARY_GTK);
4577 	Linker.link(gtk_tree_view_column_get_visible, "gtk_tree_view_column_get_visible", LIBRARY_GTK);
4578 	Linker.link(gtk_tree_view_column_get_widget, "gtk_tree_view_column_get_widget", LIBRARY_GTK);
4579 	Linker.link(gtk_tree_view_column_get_width, "gtk_tree_view_column_get_width", LIBRARY_GTK);
4580 	Linker.link(gtk_tree_view_column_get_x_offset, "gtk_tree_view_column_get_x_offset", LIBRARY_GTK);
4581 	Linker.link(gtk_tree_view_column_pack_end, "gtk_tree_view_column_pack_end", LIBRARY_GTK);
4582 	Linker.link(gtk_tree_view_column_pack_start, "gtk_tree_view_column_pack_start", LIBRARY_GTK);
4583 	Linker.link(gtk_tree_view_column_queue_resize, "gtk_tree_view_column_queue_resize", LIBRARY_GTK);
4584 	Linker.link(gtk_tree_view_column_set_alignment, "gtk_tree_view_column_set_alignment", LIBRARY_GTK);
4585 	Linker.link(gtk_tree_view_column_set_attributes, "gtk_tree_view_column_set_attributes", LIBRARY_GTK);
4586 	Linker.link(gtk_tree_view_column_set_cell_data_func, "gtk_tree_view_column_set_cell_data_func", LIBRARY_GTK);
4587 	Linker.link(gtk_tree_view_column_set_clickable, "gtk_tree_view_column_set_clickable", LIBRARY_GTK);
4588 	Linker.link(gtk_tree_view_column_set_expand, "gtk_tree_view_column_set_expand", LIBRARY_GTK);
4589 	Linker.link(gtk_tree_view_column_set_fixed_width, "gtk_tree_view_column_set_fixed_width", LIBRARY_GTK);
4590 	Linker.link(gtk_tree_view_column_set_max_width, "gtk_tree_view_column_set_max_width", LIBRARY_GTK);
4591 	Linker.link(gtk_tree_view_column_set_min_width, "gtk_tree_view_column_set_min_width", LIBRARY_GTK);
4592 	Linker.link(gtk_tree_view_column_set_reorderable, "gtk_tree_view_column_set_reorderable", LIBRARY_GTK);
4593 	Linker.link(gtk_tree_view_column_set_resizable, "gtk_tree_view_column_set_resizable", LIBRARY_GTK);
4594 	Linker.link(gtk_tree_view_column_set_sizing, "gtk_tree_view_column_set_sizing", LIBRARY_GTK);
4595 	Linker.link(gtk_tree_view_column_set_sort_column_id, "gtk_tree_view_column_set_sort_column_id", LIBRARY_GTK);
4596 	Linker.link(gtk_tree_view_column_set_sort_indicator, "gtk_tree_view_column_set_sort_indicator", LIBRARY_GTK);
4597 	Linker.link(gtk_tree_view_column_set_sort_order, "gtk_tree_view_column_set_sort_order", LIBRARY_GTK);
4598 	Linker.link(gtk_tree_view_column_set_spacing, "gtk_tree_view_column_set_spacing", LIBRARY_GTK);
4599 	Linker.link(gtk_tree_view_column_set_title, "gtk_tree_view_column_set_title", LIBRARY_GTK);
4600 	Linker.link(gtk_tree_view_column_set_visible, "gtk_tree_view_column_set_visible", LIBRARY_GTK);
4601 	Linker.link(gtk_tree_view_column_set_widget, "gtk_tree_view_column_set_widget", LIBRARY_GTK);
4602 
4603 	// gtk.UIManager
4604 
4605 	Linker.link(gtk_ui_manager_get_type, "gtk_ui_manager_get_type", LIBRARY_GTK);
4606 	Linker.link(gtk_ui_manager_new, "gtk_ui_manager_new", LIBRARY_GTK);
4607 	Linker.link(gtk_ui_manager_add_ui, "gtk_ui_manager_add_ui", LIBRARY_GTK);
4608 	Linker.link(gtk_ui_manager_add_ui_from_file, "gtk_ui_manager_add_ui_from_file", LIBRARY_GTK);
4609 	Linker.link(gtk_ui_manager_add_ui_from_resource, "gtk_ui_manager_add_ui_from_resource", LIBRARY_GTK);
4610 	Linker.link(gtk_ui_manager_add_ui_from_string, "gtk_ui_manager_add_ui_from_string", LIBRARY_GTK);
4611 	Linker.link(gtk_ui_manager_ensure_update, "gtk_ui_manager_ensure_update", LIBRARY_GTK);
4612 	Linker.link(gtk_ui_manager_get_accel_group, "gtk_ui_manager_get_accel_group", LIBRARY_GTK);
4613 	Linker.link(gtk_ui_manager_get_action, "gtk_ui_manager_get_action", LIBRARY_GTK);
4614 	Linker.link(gtk_ui_manager_get_action_groups, "gtk_ui_manager_get_action_groups", LIBRARY_GTK);
4615 	Linker.link(gtk_ui_manager_get_add_tearoffs, "gtk_ui_manager_get_add_tearoffs", LIBRARY_GTK);
4616 	Linker.link(gtk_ui_manager_get_toplevels, "gtk_ui_manager_get_toplevels", LIBRARY_GTK);
4617 	Linker.link(gtk_ui_manager_get_ui, "gtk_ui_manager_get_ui", LIBRARY_GTK);
4618 	Linker.link(gtk_ui_manager_get_widget, "gtk_ui_manager_get_widget", LIBRARY_GTK);
4619 	Linker.link(gtk_ui_manager_insert_action_group, "gtk_ui_manager_insert_action_group", LIBRARY_GTK);
4620 	Linker.link(gtk_ui_manager_new_merge_id, "gtk_ui_manager_new_merge_id", LIBRARY_GTK);
4621 	Linker.link(gtk_ui_manager_remove_action_group, "gtk_ui_manager_remove_action_group", LIBRARY_GTK);
4622 	Linker.link(gtk_ui_manager_remove_ui, "gtk_ui_manager_remove_ui", LIBRARY_GTK);
4623 	Linker.link(gtk_ui_manager_set_add_tearoffs, "gtk_ui_manager_set_add_tearoffs", LIBRARY_GTK);
4624 
4625 	// gtk.VBox
4626 
4627 	Linker.link(gtk_vbox_get_type, "gtk_vbox_get_type", LIBRARY_GTK);
4628 	Linker.link(gtk_vbox_new, "gtk_vbox_new", LIBRARY_GTK);
4629 
4630 	// gtk.VButtonBox
4631 
4632 	Linker.link(gtk_vbutton_box_get_type, "gtk_vbutton_box_get_type", LIBRARY_GTK);
4633 	Linker.link(gtk_vbutton_box_new, "gtk_vbutton_box_new", LIBRARY_GTK);
4634 
4635 	// gtk.VPaned
4636 
4637 	Linker.link(gtk_vpaned_get_type, "gtk_vpaned_get_type", LIBRARY_GTK);
4638 	Linker.link(gtk_vpaned_new, "gtk_vpaned_new", LIBRARY_GTK);
4639 
4640 	// gtk.VScale
4641 
4642 	Linker.link(gtk_vscale_get_type, "gtk_vscale_get_type", LIBRARY_GTK);
4643 	Linker.link(gtk_vscale_new, "gtk_vscale_new", LIBRARY_GTK);
4644 	Linker.link(gtk_vscale_new_with_range, "gtk_vscale_new_with_range", LIBRARY_GTK);
4645 
4646 	// gtk.VScrollbar
4647 
4648 	Linker.link(gtk_vscrollbar_get_type, "gtk_vscrollbar_get_type", LIBRARY_GTK);
4649 	Linker.link(gtk_vscrollbar_new, "gtk_vscrollbar_new", LIBRARY_GTK);
4650 
4651 	// gtk.VSeparator
4652 
4653 	Linker.link(gtk_vseparator_get_type, "gtk_vseparator_get_type", LIBRARY_GTK);
4654 	Linker.link(gtk_vseparator_new, "gtk_vseparator_new", LIBRARY_GTK);
4655 
4656 	// gtk.Viewport
4657 
4658 	Linker.link(gtk_viewport_get_type, "gtk_viewport_get_type", LIBRARY_GTK);
4659 	Linker.link(gtk_viewport_new, "gtk_viewport_new", LIBRARY_GTK);
4660 	Linker.link(gtk_viewport_get_bin_window, "gtk_viewport_get_bin_window", LIBRARY_GTK);
4661 	Linker.link(gtk_viewport_get_hadjustment, "gtk_viewport_get_hadjustment", LIBRARY_GTK);
4662 	Linker.link(gtk_viewport_get_shadow_type, "gtk_viewport_get_shadow_type", LIBRARY_GTK);
4663 	Linker.link(gtk_viewport_get_vadjustment, "gtk_viewport_get_vadjustment", LIBRARY_GTK);
4664 	Linker.link(gtk_viewport_get_view_window, "gtk_viewport_get_view_window", LIBRARY_GTK);
4665 	Linker.link(gtk_viewport_set_hadjustment, "gtk_viewport_set_hadjustment", LIBRARY_GTK);
4666 	Linker.link(gtk_viewport_set_shadow_type, "gtk_viewport_set_shadow_type", LIBRARY_GTK);
4667 	Linker.link(gtk_viewport_set_vadjustment, "gtk_viewport_set_vadjustment", LIBRARY_GTK);
4668 
4669 	// gtk.VolumeButton
4670 
4671 	Linker.link(gtk_volume_button_get_type, "gtk_volume_button_get_type", LIBRARY_GTK);
4672 	Linker.link(gtk_volume_button_new, "gtk_volume_button_new", LIBRARY_GTK);
4673 
4674 	// gtk.Widget
4675 
4676 	Linker.link(gtk_widget_get_type, "gtk_widget_get_type", LIBRARY_GTK);
4677 	Linker.link(gtk_widget_new, "gtk_widget_new", LIBRARY_GTK);
4678 	Linker.link(gtk_widget_get_default_direction, "gtk_widget_get_default_direction", LIBRARY_GTK);
4679 	Linker.link(gtk_widget_get_default_style, "gtk_widget_get_default_style", LIBRARY_GTK);
4680 	Linker.link(gtk_widget_pop_composite_child, "gtk_widget_pop_composite_child", LIBRARY_GTK);
4681 	Linker.link(gtk_widget_push_composite_child, "gtk_widget_push_composite_child", LIBRARY_GTK);
4682 	Linker.link(gtk_widget_set_default_direction, "gtk_widget_set_default_direction", LIBRARY_GTK);
4683 	Linker.link(gtk_widget_activate, "gtk_widget_activate", LIBRARY_GTK);
4684 	Linker.link(gtk_widget_add_accelerator, "gtk_widget_add_accelerator", LIBRARY_GTK);
4685 	Linker.link(gtk_widget_add_device_events, "gtk_widget_add_device_events", LIBRARY_GTK);
4686 	Linker.link(gtk_widget_add_events, "gtk_widget_add_events", LIBRARY_GTK);
4687 	Linker.link(gtk_widget_add_mnemonic_label, "gtk_widget_add_mnemonic_label", LIBRARY_GTK);
4688 	Linker.link(gtk_widget_add_tick_callback, "gtk_widget_add_tick_callback", LIBRARY_GTK);
4689 	Linker.link(gtk_widget_can_activate_accel, "gtk_widget_can_activate_accel", LIBRARY_GTK);
4690 	Linker.link(gtk_widget_child_focus, "gtk_widget_child_focus", LIBRARY_GTK);
4691 	Linker.link(gtk_widget_child_notify, "gtk_widget_child_notify", LIBRARY_GTK);
4692 	Linker.link(gtk_widget_class_path, "gtk_widget_class_path", LIBRARY_GTK);
4693 	Linker.link(gtk_widget_compute_expand, "gtk_widget_compute_expand", LIBRARY_GTK);
4694 	Linker.link(gtk_widget_create_pango_context, "gtk_widget_create_pango_context", LIBRARY_GTK);
4695 	Linker.link(gtk_widget_create_pango_layout, "gtk_widget_create_pango_layout", LIBRARY_GTK);
4696 	Linker.link(gtk_widget_destroy, "gtk_widget_destroy", LIBRARY_GTK);
4697 	Linker.link(gtk_widget_destroyed, "gtk_widget_destroyed", LIBRARY_GTK);
4698 	Linker.link(gtk_widget_device_is_shadowed, "gtk_widget_device_is_shadowed", LIBRARY_GTK);
4699 	Linker.link(gtk_drag_begin, "gtk_drag_begin", LIBRARY_GTK);
4700 	Linker.link(gtk_drag_begin_with_coordinates, "gtk_drag_begin_with_coordinates", LIBRARY_GTK);
4701 	Linker.link(gtk_drag_check_threshold, "gtk_drag_check_threshold", LIBRARY_GTK);
4702 	Linker.link(gtk_drag_dest_add_image_targets, "gtk_drag_dest_add_image_targets", LIBRARY_GTK);
4703 	Linker.link(gtk_drag_dest_add_text_targets, "gtk_drag_dest_add_text_targets", LIBRARY_GTK);
4704 	Linker.link(gtk_drag_dest_add_uri_targets, "gtk_drag_dest_add_uri_targets", LIBRARY_GTK);
4705 	Linker.link(gtk_drag_dest_find_target, "gtk_drag_dest_find_target", LIBRARY_GTK);
4706 	Linker.link(gtk_drag_dest_get_target_list, "gtk_drag_dest_get_target_list", LIBRARY_GTK);
4707 	Linker.link(gtk_drag_dest_get_track_motion, "gtk_drag_dest_get_track_motion", LIBRARY_GTK);
4708 	Linker.link(gtk_drag_dest_set, "gtk_drag_dest_set", LIBRARY_GTK);
4709 	Linker.link(gtk_drag_dest_set_proxy, "gtk_drag_dest_set_proxy", LIBRARY_GTK);
4710 	Linker.link(gtk_drag_dest_set_target_list, "gtk_drag_dest_set_target_list", LIBRARY_GTK);
4711 	Linker.link(gtk_drag_dest_set_track_motion, "gtk_drag_dest_set_track_motion", LIBRARY_GTK);
4712 	Linker.link(gtk_drag_dest_unset, "gtk_drag_dest_unset", LIBRARY_GTK);
4713 	Linker.link(gtk_drag_get_data, "gtk_drag_get_data", LIBRARY_GTK);
4714 	Linker.link(gtk_drag_highlight, "gtk_drag_highlight", LIBRARY_GTK);
4715 	Linker.link(gtk_drag_source_add_image_targets, "gtk_drag_source_add_image_targets", LIBRARY_GTK);
4716 	Linker.link(gtk_drag_source_add_text_targets, "gtk_drag_source_add_text_targets", LIBRARY_GTK);
4717 	Linker.link(gtk_drag_source_add_uri_targets, "gtk_drag_source_add_uri_targets", LIBRARY_GTK);
4718 	Linker.link(gtk_drag_source_get_target_list, "gtk_drag_source_get_target_list", LIBRARY_GTK);
4719 	Linker.link(gtk_drag_source_set, "gtk_drag_source_set", LIBRARY_GTK);
4720 	Linker.link(gtk_drag_source_set_icon_gicon, "gtk_drag_source_set_icon_gicon", LIBRARY_GTK);
4721 	Linker.link(gtk_drag_source_set_icon_name, "gtk_drag_source_set_icon_name", LIBRARY_GTK);
4722 	Linker.link(gtk_drag_source_set_icon_pixbuf, "gtk_drag_source_set_icon_pixbuf", LIBRARY_GTK);
4723 	Linker.link(gtk_drag_source_set_icon_stock, "gtk_drag_source_set_icon_stock", LIBRARY_GTK);
4724 	Linker.link(gtk_drag_source_set_target_list, "gtk_drag_source_set_target_list", LIBRARY_GTK);
4725 	Linker.link(gtk_drag_source_unset, "gtk_drag_source_unset", LIBRARY_GTK);
4726 	Linker.link(gtk_drag_unhighlight, "gtk_drag_unhighlight", LIBRARY_GTK);
4727 	Linker.link(gtk_widget_draw, "gtk_widget_draw", LIBRARY_GTK);
4728 	Linker.link(gtk_widget_ensure_style, "gtk_widget_ensure_style", LIBRARY_GTK);
4729 	Linker.link(gtk_widget_error_bell, "gtk_widget_error_bell", LIBRARY_GTK);
4730 	Linker.link(gtk_widget_event, "gtk_widget_event", LIBRARY_GTK);
4731 	Linker.link(gtk_widget_freeze_child_notify, "gtk_widget_freeze_child_notify", LIBRARY_GTK);
4732 	Linker.link(gtk_widget_get_accessible, "gtk_widget_get_accessible", LIBRARY_GTK);
4733 	Linker.link(gtk_widget_get_action_group, "gtk_widget_get_action_group", LIBRARY_GTK);
4734 	Linker.link(gtk_widget_get_allocated_baseline, "gtk_widget_get_allocated_baseline", LIBRARY_GTK);
4735 	Linker.link(gtk_widget_get_allocated_height, "gtk_widget_get_allocated_height", LIBRARY_GTK);
4736 	Linker.link(gtk_widget_get_allocated_size, "gtk_widget_get_allocated_size", LIBRARY_GTK);
4737 	Linker.link(gtk_widget_get_allocated_width, "gtk_widget_get_allocated_width", LIBRARY_GTK);
4738 	Linker.link(gtk_widget_get_allocation, "gtk_widget_get_allocation", LIBRARY_GTK);
4739 	Linker.link(gtk_widget_get_ancestor, "gtk_widget_get_ancestor", LIBRARY_GTK);
4740 	Linker.link(gtk_widget_get_app_paintable, "gtk_widget_get_app_paintable", LIBRARY_GTK);
4741 	Linker.link(gtk_widget_get_can_default, "gtk_widget_get_can_default", LIBRARY_GTK);
4742 	Linker.link(gtk_widget_get_can_focus, "gtk_widget_get_can_focus", LIBRARY_GTK);
4743 	Linker.link(gtk_widget_get_child_requisition, "gtk_widget_get_child_requisition", LIBRARY_GTK);
4744 	Linker.link(gtk_widget_get_child_visible, "gtk_widget_get_child_visible", LIBRARY_GTK);
4745 	Linker.link(gtk_widget_get_clip, "gtk_widget_get_clip", LIBRARY_GTK);
4746 	Linker.link(gtk_widget_get_clipboard, "gtk_widget_get_clipboard", LIBRARY_GTK);
4747 	Linker.link(gtk_widget_get_composite_name, "gtk_widget_get_composite_name", LIBRARY_GTK);
4748 	Linker.link(gtk_widget_get_device_enabled, "gtk_widget_get_device_enabled", LIBRARY_GTK);
4749 	Linker.link(gtk_widget_get_device_events, "gtk_widget_get_device_events", LIBRARY_GTK);
4750 	Linker.link(gtk_widget_get_direction, "gtk_widget_get_direction", LIBRARY_GTK);
4751 	Linker.link(gtk_widget_get_display, "gtk_widget_get_display", LIBRARY_GTK);
4752 	Linker.link(gtk_widget_get_double_buffered, "gtk_widget_get_double_buffered", LIBRARY_GTK);
4753 	Linker.link(gtk_widget_get_events, "gtk_widget_get_events", LIBRARY_GTK);
4754 	Linker.link(gtk_widget_get_focus_on_click, "gtk_widget_get_focus_on_click", LIBRARY_GTK);
4755 	Linker.link(gtk_widget_get_font_map, "gtk_widget_get_font_map", LIBRARY_GTK);
4756 	Linker.link(gtk_widget_get_font_options, "gtk_widget_get_font_options", LIBRARY_GTK);
4757 	Linker.link(gtk_widget_get_frame_clock, "gtk_widget_get_frame_clock", LIBRARY_GTK);
4758 	Linker.link(gtk_widget_get_halign, "gtk_widget_get_halign", LIBRARY_GTK);
4759 	Linker.link(gtk_widget_get_has_tooltip, "gtk_widget_get_has_tooltip", LIBRARY_GTK);
4760 	Linker.link(gtk_widget_get_has_window, "gtk_widget_get_has_window", LIBRARY_GTK);
4761 	Linker.link(gtk_widget_get_hexpand, "gtk_widget_get_hexpand", LIBRARY_GTK);
4762 	Linker.link(gtk_widget_get_hexpand_set, "gtk_widget_get_hexpand_set", LIBRARY_GTK);
4763 	Linker.link(gtk_widget_get_mapped, "gtk_widget_get_mapped", LIBRARY_GTK);
4764 	Linker.link(gtk_widget_get_margin_bottom, "gtk_widget_get_margin_bottom", LIBRARY_GTK);
4765 	Linker.link(gtk_widget_get_margin_end, "gtk_widget_get_margin_end", LIBRARY_GTK);
4766 	Linker.link(gtk_widget_get_margin_left, "gtk_widget_get_margin_left", LIBRARY_GTK);
4767 	Linker.link(gtk_widget_get_margin_right, "gtk_widget_get_margin_right", LIBRARY_GTK);
4768 	Linker.link(gtk_widget_get_margin_start, "gtk_widget_get_margin_start", LIBRARY_GTK);
4769 	Linker.link(gtk_widget_get_margin_top, "gtk_widget_get_margin_top", LIBRARY_GTK);
4770 	Linker.link(gtk_widget_get_modifier_mask, "gtk_widget_get_modifier_mask", LIBRARY_GTK);
4771 	Linker.link(gtk_widget_get_modifier_style, "gtk_widget_get_modifier_style", LIBRARY_GTK);
4772 	Linker.link(gtk_widget_get_name, "gtk_widget_get_name", LIBRARY_GTK);
4773 	Linker.link(gtk_widget_get_no_show_all, "gtk_widget_get_no_show_all", LIBRARY_GTK);
4774 	Linker.link(gtk_widget_get_opacity, "gtk_widget_get_opacity", LIBRARY_GTK);
4775 	Linker.link(gtk_widget_get_pango_context, "gtk_widget_get_pango_context", LIBRARY_GTK);
4776 	Linker.link(gtk_widget_get_parent, "gtk_widget_get_parent", LIBRARY_GTK);
4777 	Linker.link(gtk_widget_get_parent_window, "gtk_widget_get_parent_window", LIBRARY_GTK);
4778 	Linker.link(gtk_widget_get_path, "gtk_widget_get_path", LIBRARY_GTK);
4779 	Linker.link(gtk_widget_get_pointer, "gtk_widget_get_pointer", LIBRARY_GTK);
4780 	Linker.link(gtk_widget_get_preferred_height, "gtk_widget_get_preferred_height", LIBRARY_GTK);
4781 	Linker.link(gtk_widget_get_preferred_height_and_baseline_for_width, "gtk_widget_get_preferred_height_and_baseline_for_width", LIBRARY_GTK);
4782 	Linker.link(gtk_widget_get_preferred_height_for_width, "gtk_widget_get_preferred_height_for_width", LIBRARY_GTK);
4783 	Linker.link(gtk_widget_get_preferred_size, "gtk_widget_get_preferred_size", LIBRARY_GTK);
4784 	Linker.link(gtk_widget_get_preferred_width, "gtk_widget_get_preferred_width", LIBRARY_GTK);
4785 	Linker.link(gtk_widget_get_preferred_width_for_height, "gtk_widget_get_preferred_width_for_height", LIBRARY_GTK);
4786 	Linker.link(gtk_widget_get_realized, "gtk_widget_get_realized", LIBRARY_GTK);
4787 	Linker.link(gtk_widget_get_receives_default, "gtk_widget_get_receives_default", LIBRARY_GTK);
4788 	Linker.link(gtk_widget_get_request_mode, "gtk_widget_get_request_mode", LIBRARY_GTK);
4789 	Linker.link(gtk_widget_get_requisition, "gtk_widget_get_requisition", LIBRARY_GTK);
4790 	Linker.link(gtk_widget_get_root_window, "gtk_widget_get_root_window", LIBRARY_GTK);
4791 	Linker.link(gtk_widget_get_scale_factor, "gtk_widget_get_scale_factor", LIBRARY_GTK);
4792 	Linker.link(gtk_widget_get_screen, "gtk_widget_get_screen", LIBRARY_GTK);
4793 	Linker.link(gtk_widget_get_sensitive, "gtk_widget_get_sensitive", LIBRARY_GTK);
4794 	Linker.link(gtk_widget_get_settings, "gtk_widget_get_settings", LIBRARY_GTK);
4795 	Linker.link(gtk_widget_get_size_request, "gtk_widget_get_size_request", LIBRARY_GTK);
4796 	Linker.link(gtk_widget_get_state, "gtk_widget_get_state", LIBRARY_GTK);
4797 	Linker.link(gtk_widget_get_state_flags, "gtk_widget_get_state_flags", LIBRARY_GTK);
4798 	Linker.link(gtk_widget_get_style, "gtk_widget_get_style", LIBRARY_GTK);
4799 	Linker.link(gtk_widget_get_style_context, "gtk_widget_get_style_context", LIBRARY_GTK);
4800 	Linker.link(gtk_widget_get_support_multidevice, "gtk_widget_get_support_multidevice", LIBRARY_GTK);
4801 	Linker.link(gtk_widget_get_template_child, "gtk_widget_get_template_child", LIBRARY_GTK);
4802 	Linker.link(gtk_widget_get_tooltip_markup, "gtk_widget_get_tooltip_markup", LIBRARY_GTK);
4803 	Linker.link(gtk_widget_get_tooltip_text, "gtk_widget_get_tooltip_text", LIBRARY_GTK);
4804 	Linker.link(gtk_widget_get_tooltip_window, "gtk_widget_get_tooltip_window", LIBRARY_GTK);
4805 	Linker.link(gtk_widget_get_toplevel, "gtk_widget_get_toplevel", LIBRARY_GTK);
4806 	Linker.link(gtk_widget_get_valign, "gtk_widget_get_valign", LIBRARY_GTK);
4807 	Linker.link(gtk_widget_get_valign_with_baseline, "gtk_widget_get_valign_with_baseline", LIBRARY_GTK);
4808 	Linker.link(gtk_widget_get_vexpand, "gtk_widget_get_vexpand", LIBRARY_GTK);
4809 	Linker.link(gtk_widget_get_vexpand_set, "gtk_widget_get_vexpand_set", LIBRARY_GTK);
4810 	Linker.link(gtk_widget_get_visible, "gtk_widget_get_visible", LIBRARY_GTK);
4811 	Linker.link(gtk_widget_get_visual, "gtk_widget_get_visual", LIBRARY_GTK);
4812 	Linker.link(gtk_widget_get_window, "gtk_widget_get_window", LIBRARY_GTK);
4813 	Linker.link(gtk_grab_add, "gtk_grab_add", LIBRARY_GTK);
4814 	Linker.link(gtk_widget_grab_default, "gtk_widget_grab_default", LIBRARY_GTK);
4815 	Linker.link(gtk_widget_grab_focus, "gtk_widget_grab_focus", LIBRARY_GTK);
4816 	Linker.link(gtk_grab_remove, "gtk_grab_remove", LIBRARY_GTK);
4817 	Linker.link(gtk_widget_has_default, "gtk_widget_has_default", LIBRARY_GTK);
4818 	Linker.link(gtk_widget_has_focus, "gtk_widget_has_focus", LIBRARY_GTK);
4819 	Linker.link(gtk_widget_has_grab, "gtk_widget_has_grab", LIBRARY_GTK);
4820 	Linker.link(gtk_widget_has_rc_style, "gtk_widget_has_rc_style", LIBRARY_GTK);
4821 	Linker.link(gtk_widget_has_screen, "gtk_widget_has_screen", LIBRARY_GTK);
4822 	Linker.link(gtk_widget_has_visible_focus, "gtk_widget_has_visible_focus", LIBRARY_GTK);
4823 	Linker.link(gtk_widget_hide, "gtk_widget_hide", LIBRARY_GTK);
4824 	Linker.link(gtk_widget_hide_on_delete, "gtk_widget_hide_on_delete", LIBRARY_GTK);
4825 	Linker.link(gtk_widget_in_destruction, "gtk_widget_in_destruction", LIBRARY_GTK);
4826 	Linker.link(gtk_widget_init_template, "gtk_widget_init_template", LIBRARY_GTK);
4827 	Linker.link(gtk_widget_input_shape_combine_region, "gtk_widget_input_shape_combine_region", LIBRARY_GTK);
4828 	Linker.link(gtk_widget_insert_action_group, "gtk_widget_insert_action_group", LIBRARY_GTK);
4829 	Linker.link(gtk_widget_intersect, "gtk_widget_intersect", LIBRARY_GTK);
4830 	Linker.link(gtk_widget_is_ancestor, "gtk_widget_is_ancestor", LIBRARY_GTK);
4831 	Linker.link(gtk_widget_is_composited, "gtk_widget_is_composited", LIBRARY_GTK);
4832 	Linker.link(gtk_widget_is_drawable, "gtk_widget_is_drawable", LIBRARY_GTK);
4833 	Linker.link(gtk_widget_is_focus, "gtk_widget_is_focus", LIBRARY_GTK);
4834 	Linker.link(gtk_widget_is_sensitive, "gtk_widget_is_sensitive", LIBRARY_GTK);
4835 	Linker.link(gtk_widget_is_toplevel, "gtk_widget_is_toplevel", LIBRARY_GTK);
4836 	Linker.link(gtk_widget_is_visible, "gtk_widget_is_visible", LIBRARY_GTK);
4837 	Linker.link(gtk_widget_keynav_failed, "gtk_widget_keynav_failed", LIBRARY_GTK);
4838 	Linker.link(gtk_widget_list_accel_closures, "gtk_widget_list_accel_closures", LIBRARY_GTK);
4839 	Linker.link(gtk_widget_list_action_prefixes, "gtk_widget_list_action_prefixes", LIBRARY_GTK);
4840 	Linker.link(gtk_widget_list_mnemonic_labels, "gtk_widget_list_mnemonic_labels", LIBRARY_GTK);
4841 	Linker.link(gtk_widget_map, "gtk_widget_map", LIBRARY_GTK);
4842 	Linker.link(gtk_widget_mnemonic_activate, "gtk_widget_mnemonic_activate", LIBRARY_GTK);
4843 	Linker.link(gtk_widget_modify_base, "gtk_widget_modify_base", LIBRARY_GTK);
4844 	Linker.link(gtk_widget_modify_bg, "gtk_widget_modify_bg", LIBRARY_GTK);
4845 	Linker.link(gtk_widget_modify_cursor, "gtk_widget_modify_cursor", LIBRARY_GTK);
4846 	Linker.link(gtk_widget_modify_fg, "gtk_widget_modify_fg", LIBRARY_GTK);
4847 	Linker.link(gtk_widget_modify_font, "gtk_widget_modify_font", LIBRARY_GTK);
4848 	Linker.link(gtk_widget_modify_style, "gtk_widget_modify_style", LIBRARY_GTK);
4849 	Linker.link(gtk_widget_modify_text, "gtk_widget_modify_text", LIBRARY_GTK);
4850 	Linker.link(gtk_widget_override_background_color, "gtk_widget_override_background_color", LIBRARY_GTK);
4851 	Linker.link(gtk_widget_override_color, "gtk_widget_override_color", LIBRARY_GTK);
4852 	Linker.link(gtk_widget_override_cursor, "gtk_widget_override_cursor", LIBRARY_GTK);
4853 	Linker.link(gtk_widget_override_font, "gtk_widget_override_font", LIBRARY_GTK);
4854 	Linker.link(gtk_widget_override_symbolic_color, "gtk_widget_override_symbolic_color", LIBRARY_GTK);
4855 	Linker.link(gtk_widget_path, "gtk_widget_path", LIBRARY_GTK);
4856 	Linker.link(gtk_widget_queue_allocate, "gtk_widget_queue_allocate", LIBRARY_GTK);
4857 	Linker.link(gtk_widget_queue_compute_expand, "gtk_widget_queue_compute_expand", LIBRARY_GTK);
4858 	Linker.link(gtk_widget_queue_draw, "gtk_widget_queue_draw", LIBRARY_GTK);
4859 	Linker.link(gtk_widget_queue_draw_area, "gtk_widget_queue_draw_area", LIBRARY_GTK);
4860 	Linker.link(gtk_widget_queue_draw_region, "gtk_widget_queue_draw_region", LIBRARY_GTK);
4861 	Linker.link(gtk_widget_queue_resize, "gtk_widget_queue_resize", LIBRARY_GTK);
4862 	Linker.link(gtk_widget_queue_resize_no_redraw, "gtk_widget_queue_resize_no_redraw", LIBRARY_GTK);
4863 	Linker.link(gtk_widget_realize, "gtk_widget_realize", LIBRARY_GTK);
4864 	Linker.link(gtk_widget_region_intersect, "gtk_widget_region_intersect", LIBRARY_GTK);
4865 	Linker.link(gtk_widget_register_window, "gtk_widget_register_window", LIBRARY_GTK);
4866 	Linker.link(gtk_widget_remove_accelerator, "gtk_widget_remove_accelerator", LIBRARY_GTK);
4867 	Linker.link(gtk_widget_remove_mnemonic_label, "gtk_widget_remove_mnemonic_label", LIBRARY_GTK);
4868 	Linker.link(gtk_widget_remove_tick_callback, "gtk_widget_remove_tick_callback", LIBRARY_GTK);
4869 	Linker.link(gtk_widget_render_icon, "gtk_widget_render_icon", LIBRARY_GTK);
4870 	Linker.link(gtk_widget_render_icon_pixbuf, "gtk_widget_render_icon_pixbuf", LIBRARY_GTK);
4871 	Linker.link(gtk_widget_reparent, "gtk_widget_reparent", LIBRARY_GTK);
4872 	Linker.link(gtk_widget_reset_rc_styles, "gtk_widget_reset_rc_styles", LIBRARY_GTK);
4873 	Linker.link(gtk_widget_reset_style, "gtk_widget_reset_style", LIBRARY_GTK);
4874 	Linker.link(gtk_widget_send_expose, "gtk_widget_send_expose", LIBRARY_GTK);
4875 	Linker.link(gtk_widget_send_focus_change, "gtk_widget_send_focus_change", LIBRARY_GTK);
4876 	Linker.link(gtk_widget_set_accel_path, "gtk_widget_set_accel_path", LIBRARY_GTK);
4877 	Linker.link(gtk_widget_set_allocation, "gtk_widget_set_allocation", LIBRARY_GTK);
4878 	Linker.link(gtk_widget_set_app_paintable, "gtk_widget_set_app_paintable", LIBRARY_GTK);
4879 	Linker.link(gtk_widget_set_can_default, "gtk_widget_set_can_default", LIBRARY_GTK);
4880 	Linker.link(gtk_widget_set_can_focus, "gtk_widget_set_can_focus", LIBRARY_GTK);
4881 	Linker.link(gtk_widget_set_child_visible, "gtk_widget_set_child_visible", LIBRARY_GTK);
4882 	Linker.link(gtk_widget_set_clip, "gtk_widget_set_clip", LIBRARY_GTK);
4883 	Linker.link(gtk_widget_set_composite_name, "gtk_widget_set_composite_name", LIBRARY_GTK);
4884 	Linker.link(gtk_widget_set_device_enabled, "gtk_widget_set_device_enabled", LIBRARY_GTK);
4885 	Linker.link(gtk_widget_set_device_events, "gtk_widget_set_device_events", LIBRARY_GTK);
4886 	Linker.link(gtk_widget_set_direction, "gtk_widget_set_direction", LIBRARY_GTK);
4887 	Linker.link(gtk_widget_set_double_buffered, "gtk_widget_set_double_buffered", LIBRARY_GTK);
4888 	Linker.link(gtk_widget_set_events, "gtk_widget_set_events", LIBRARY_GTK);
4889 	Linker.link(gtk_widget_set_focus_on_click, "gtk_widget_set_focus_on_click", LIBRARY_GTK);
4890 	Linker.link(gtk_widget_set_font_map, "gtk_widget_set_font_map", LIBRARY_GTK);
4891 	Linker.link(gtk_widget_set_font_options, "gtk_widget_set_font_options", LIBRARY_GTK);
4892 	Linker.link(gtk_widget_set_halign, "gtk_widget_set_halign", LIBRARY_GTK);
4893 	Linker.link(gtk_widget_set_has_tooltip, "gtk_widget_set_has_tooltip", LIBRARY_GTK);
4894 	Linker.link(gtk_widget_set_has_window, "gtk_widget_set_has_window", LIBRARY_GTK);
4895 	Linker.link(gtk_widget_set_hexpand, "gtk_widget_set_hexpand", LIBRARY_GTK);
4896 	Linker.link(gtk_widget_set_hexpand_set, "gtk_widget_set_hexpand_set", LIBRARY_GTK);
4897 	Linker.link(gtk_widget_set_mapped, "gtk_widget_set_mapped", LIBRARY_GTK);
4898 	Linker.link(gtk_widget_set_margin_bottom, "gtk_widget_set_margin_bottom", LIBRARY_GTK);
4899 	Linker.link(gtk_widget_set_margin_end, "gtk_widget_set_margin_end", LIBRARY_GTK);
4900 	Linker.link(gtk_widget_set_margin_left, "gtk_widget_set_margin_left", LIBRARY_GTK);
4901 	Linker.link(gtk_widget_set_margin_right, "gtk_widget_set_margin_right", LIBRARY_GTK);
4902 	Linker.link(gtk_widget_set_margin_start, "gtk_widget_set_margin_start", LIBRARY_GTK);
4903 	Linker.link(gtk_widget_set_margin_top, "gtk_widget_set_margin_top", LIBRARY_GTK);
4904 	Linker.link(gtk_widget_set_name, "gtk_widget_set_name", LIBRARY_GTK);
4905 	Linker.link(gtk_widget_set_no_show_all, "gtk_widget_set_no_show_all", LIBRARY_GTK);
4906 	Linker.link(gtk_widget_set_opacity, "gtk_widget_set_opacity", LIBRARY_GTK);
4907 	Linker.link(gtk_widget_set_parent, "gtk_widget_set_parent", LIBRARY_GTK);
4908 	Linker.link(gtk_widget_set_parent_window, "gtk_widget_set_parent_window", LIBRARY_GTK);
4909 	Linker.link(gtk_widget_set_realized, "gtk_widget_set_realized", LIBRARY_GTK);
4910 	Linker.link(gtk_widget_set_receives_default, "gtk_widget_set_receives_default", LIBRARY_GTK);
4911 	Linker.link(gtk_widget_set_redraw_on_allocate, "gtk_widget_set_redraw_on_allocate", LIBRARY_GTK);
4912 	Linker.link(gtk_widget_set_sensitive, "gtk_widget_set_sensitive", LIBRARY_GTK);
4913 	Linker.link(gtk_widget_set_size_request, "gtk_widget_set_size_request", LIBRARY_GTK);
4914 	Linker.link(gtk_widget_set_state, "gtk_widget_set_state", LIBRARY_GTK);
4915 	Linker.link(gtk_widget_set_state_flags, "gtk_widget_set_state_flags", LIBRARY_GTK);
4916 	Linker.link(gtk_widget_set_style, "gtk_widget_set_style", LIBRARY_GTK);
4917 	Linker.link(gtk_widget_set_support_multidevice, "gtk_widget_set_support_multidevice", LIBRARY_GTK);
4918 	Linker.link(gtk_widget_set_tooltip_markup, "gtk_widget_set_tooltip_markup", LIBRARY_GTK);
4919 	Linker.link(gtk_widget_set_tooltip_text, "gtk_widget_set_tooltip_text", LIBRARY_GTK);
4920 	Linker.link(gtk_widget_set_tooltip_window, "gtk_widget_set_tooltip_window", LIBRARY_GTK);
4921 	Linker.link(gtk_widget_set_valign, "gtk_widget_set_valign", LIBRARY_GTK);
4922 	Linker.link(gtk_widget_set_vexpand, "gtk_widget_set_vexpand", LIBRARY_GTK);
4923 	Linker.link(gtk_widget_set_vexpand_set, "gtk_widget_set_vexpand_set", LIBRARY_GTK);
4924 	Linker.link(gtk_widget_set_visible, "gtk_widget_set_visible", LIBRARY_GTK);
4925 	Linker.link(gtk_widget_set_visual, "gtk_widget_set_visual", LIBRARY_GTK);
4926 	Linker.link(gtk_widget_set_window, "gtk_widget_set_window", LIBRARY_GTK);
4927 	Linker.link(gtk_widget_shape_combine_region, "gtk_widget_shape_combine_region", LIBRARY_GTK);
4928 	Linker.link(gtk_widget_show, "gtk_widget_show", LIBRARY_GTK);
4929 	Linker.link(gtk_widget_show_all, "gtk_widget_show_all", LIBRARY_GTK);
4930 	Linker.link(gtk_widget_show_now, "gtk_widget_show_now", LIBRARY_GTK);
4931 	Linker.link(gtk_widget_size_allocate, "gtk_widget_size_allocate", LIBRARY_GTK);
4932 	Linker.link(gtk_widget_size_allocate_with_baseline, "gtk_widget_size_allocate_with_baseline", LIBRARY_GTK);
4933 	Linker.link(gtk_widget_size_request, "gtk_widget_size_request", LIBRARY_GTK);
4934 	Linker.link(gtk_widget_style_attach, "gtk_widget_style_attach", LIBRARY_GTK);
4935 	Linker.link(gtk_widget_style_get, "gtk_widget_style_get", LIBRARY_GTK);
4936 	Linker.link(gtk_widget_style_get_property, "gtk_widget_style_get_property", LIBRARY_GTK);
4937 	Linker.link(gtk_widget_style_get_valist, "gtk_widget_style_get_valist", LIBRARY_GTK);
4938 	Linker.link(gtk_widget_thaw_child_notify, "gtk_widget_thaw_child_notify", LIBRARY_GTK);
4939 	Linker.link(gtk_widget_translate_coordinates, "gtk_widget_translate_coordinates", LIBRARY_GTK);
4940 	Linker.link(gtk_widget_trigger_tooltip_query, "gtk_widget_trigger_tooltip_query", LIBRARY_GTK);
4941 	Linker.link(gtk_widget_unmap, "gtk_widget_unmap", LIBRARY_GTK);
4942 	Linker.link(gtk_widget_unparent, "gtk_widget_unparent", LIBRARY_GTK);
4943 	Linker.link(gtk_widget_unrealize, "gtk_widget_unrealize", LIBRARY_GTK);
4944 	Linker.link(gtk_widget_unregister_window, "gtk_widget_unregister_window", LIBRARY_GTK);
4945 	Linker.link(gtk_widget_unset_state_flags, "gtk_widget_unset_state_flags", LIBRARY_GTK);
4946 	Linker.link(gtk_cairo_should_draw_window, "gtk_cairo_should_draw_window", LIBRARY_GTK);
4947 	Linker.link(gtk_cairo_transform_to_window, "gtk_cairo_transform_to_window", LIBRARY_GTK);
4948 	Linker.link(gtk_distribute_natural_allocation, "gtk_distribute_natural_allocation", LIBRARY_GTK);
4949 
4950 	// gtk.WidgetAccessible
4951 
4952 	Linker.link(gtk_widget_accessible_get_type, "gtk_widget_accessible_get_type", LIBRARY_GTK);
4953 
4954 	// gtk.WidgetClass
4955 
4956 	Linker.link(gtk_widget_class_bind_template_callback_full, "gtk_widget_class_bind_template_callback_full", LIBRARY_GTK);
4957 	Linker.link(gtk_widget_class_bind_template_child_full, "gtk_widget_class_bind_template_child_full", LIBRARY_GTK);
4958 	Linker.link(gtk_widget_class_find_style_property, "gtk_widget_class_find_style_property", LIBRARY_GTK);
4959 	Linker.link(gtk_widget_class_get_css_name, "gtk_widget_class_get_css_name", LIBRARY_GTK);
4960 	Linker.link(gtk_widget_class_install_style_property, "gtk_widget_class_install_style_property", LIBRARY_GTK);
4961 	Linker.link(gtk_widget_class_install_style_property_parser, "gtk_widget_class_install_style_property_parser", LIBRARY_GTK);
4962 	Linker.link(gtk_widget_class_list_style_properties, "gtk_widget_class_list_style_properties", LIBRARY_GTK);
4963 	Linker.link(gtk_widget_class_set_accessible_role, "gtk_widget_class_set_accessible_role", LIBRARY_GTK);
4964 	Linker.link(gtk_widget_class_set_accessible_type, "gtk_widget_class_set_accessible_type", LIBRARY_GTK);
4965 	Linker.link(gtk_widget_class_set_connect_func, "gtk_widget_class_set_connect_func", LIBRARY_GTK);
4966 	Linker.link(gtk_widget_class_set_css_name, "gtk_widget_class_set_css_name", LIBRARY_GTK);
4967 	Linker.link(gtk_widget_class_set_template, "gtk_widget_class_set_template", LIBRARY_GTK);
4968 	Linker.link(gtk_widget_class_set_template_from_resource, "gtk_widget_class_set_template_from_resource", LIBRARY_GTK);
4969 
4970 	// gtk.WidgetPath
4971 
4972 	Linker.link(gtk_widget_path_get_type, "gtk_widget_path_get_type", LIBRARY_GTK);
4973 	Linker.link(gtk_widget_path_new, "gtk_widget_path_new", LIBRARY_GTK);
4974 	Linker.link(gtk_widget_path_append_for_widget, "gtk_widget_path_append_for_widget", LIBRARY_GTK);
4975 	Linker.link(gtk_widget_path_append_type, "gtk_widget_path_append_type", LIBRARY_GTK);
4976 	Linker.link(gtk_widget_path_append_with_siblings, "gtk_widget_path_append_with_siblings", LIBRARY_GTK);
4977 	Linker.link(gtk_widget_path_copy, "gtk_widget_path_copy", LIBRARY_GTK);
4978 	Linker.link(gtk_widget_path_free, "gtk_widget_path_free", LIBRARY_GTK);
4979 	Linker.link(gtk_widget_path_get_object_type, "gtk_widget_path_get_object_type", LIBRARY_GTK);
4980 	Linker.link(gtk_widget_path_has_parent, "gtk_widget_path_has_parent", LIBRARY_GTK);
4981 	Linker.link(gtk_widget_path_is_type, "gtk_widget_path_is_type", LIBRARY_GTK);
4982 	Linker.link(gtk_widget_path_iter_add_class, "gtk_widget_path_iter_add_class", LIBRARY_GTK);
4983 	Linker.link(gtk_widget_path_iter_add_region, "gtk_widget_path_iter_add_region", LIBRARY_GTK);
4984 	Linker.link(gtk_widget_path_iter_clear_classes, "gtk_widget_path_iter_clear_classes", LIBRARY_GTK);
4985 	Linker.link(gtk_widget_path_iter_clear_regions, "gtk_widget_path_iter_clear_regions", LIBRARY_GTK);
4986 	Linker.link(gtk_widget_path_iter_get_name, "gtk_widget_path_iter_get_name", LIBRARY_GTK);
4987 	Linker.link(gtk_widget_path_iter_get_object_name, "gtk_widget_path_iter_get_object_name", LIBRARY_GTK);
4988 	Linker.link(gtk_widget_path_iter_get_object_type, "gtk_widget_path_iter_get_object_type", LIBRARY_GTK);
4989 	Linker.link(gtk_widget_path_iter_get_sibling_index, "gtk_widget_path_iter_get_sibling_index", LIBRARY_GTK);
4990 	Linker.link(gtk_widget_path_iter_get_siblings, "gtk_widget_path_iter_get_siblings", LIBRARY_GTK);
4991 	Linker.link(gtk_widget_path_iter_get_state, "gtk_widget_path_iter_get_state", LIBRARY_GTK);
4992 	Linker.link(gtk_widget_path_iter_has_class, "gtk_widget_path_iter_has_class", LIBRARY_GTK);
4993 	Linker.link(gtk_widget_path_iter_has_name, "gtk_widget_path_iter_has_name", LIBRARY_GTK);
4994 	Linker.link(gtk_widget_path_iter_has_qclass, "gtk_widget_path_iter_has_qclass", LIBRARY_GTK);
4995 	Linker.link(gtk_widget_path_iter_has_qname, "gtk_widget_path_iter_has_qname", LIBRARY_GTK);
4996 	Linker.link(gtk_widget_path_iter_has_qregion, "gtk_widget_path_iter_has_qregion", LIBRARY_GTK);
4997 	Linker.link(gtk_widget_path_iter_has_region, "gtk_widget_path_iter_has_region", LIBRARY_GTK);
4998 	Linker.link(gtk_widget_path_iter_list_classes, "gtk_widget_path_iter_list_classes", LIBRARY_GTK);
4999 	Linker.link(gtk_widget_path_iter_list_regions, "gtk_widget_path_iter_list_regions", LIBRARY_GTK);
5000 	Linker.link(gtk_widget_path_iter_remove_class, "gtk_widget_path_iter_remove_class", LIBRARY_GTK);
5001 	Linker.link(gtk_widget_path_iter_remove_region, "gtk_widget_path_iter_remove_region", LIBRARY_GTK);
5002 	Linker.link(gtk_widget_path_iter_set_name, "gtk_widget_path_iter_set_name", LIBRARY_GTK);
5003 	Linker.link(gtk_widget_path_iter_set_object_name, "gtk_widget_path_iter_set_object_name", LIBRARY_GTK);
5004 	Linker.link(gtk_widget_path_iter_set_object_type, "gtk_widget_path_iter_set_object_type", LIBRARY_GTK);
5005 	Linker.link(gtk_widget_path_iter_set_state, "gtk_widget_path_iter_set_state", LIBRARY_GTK);
5006 	Linker.link(gtk_widget_path_length, "gtk_widget_path_length", LIBRARY_GTK);
5007 	Linker.link(gtk_widget_path_prepend_type, "gtk_widget_path_prepend_type", LIBRARY_GTK);
5008 	Linker.link(gtk_widget_path_ref, "gtk_widget_path_ref", LIBRARY_GTK);
5009 	Linker.link(gtk_widget_path_to_string, "gtk_widget_path_to_string", LIBRARY_GTK);
5010 	Linker.link(gtk_widget_path_unref, "gtk_widget_path_unref", LIBRARY_GTK);
5011 
5012 	// gtk.Window
5013 
5014 	Linker.link(gtk_window_get_type, "gtk_window_get_type", LIBRARY_GTK);
5015 	Linker.link(gtk_window_new, "gtk_window_new", LIBRARY_GTK);
5016 	Linker.link(gtk_window_get_default_icon_list, "gtk_window_get_default_icon_list", LIBRARY_GTK);
5017 	Linker.link(gtk_window_get_default_icon_name, "gtk_window_get_default_icon_name", LIBRARY_GTK);
5018 	Linker.link(gtk_window_list_toplevels, "gtk_window_list_toplevels", LIBRARY_GTK);
5019 	Linker.link(gtk_window_set_auto_startup_notification, "gtk_window_set_auto_startup_notification", LIBRARY_GTK);
5020 	Linker.link(gtk_window_set_default_icon, "gtk_window_set_default_icon", LIBRARY_GTK);
5021 	Linker.link(gtk_window_set_default_icon_from_file, "gtk_window_set_default_icon_from_file", LIBRARY_GTK);
5022 	Linker.link(gtk_window_set_default_icon_list, "gtk_window_set_default_icon_list", LIBRARY_GTK);
5023 	Linker.link(gtk_window_set_default_icon_name, "gtk_window_set_default_icon_name", LIBRARY_GTK);
5024 	Linker.link(gtk_window_set_interactive_debugging, "gtk_window_set_interactive_debugging", LIBRARY_GTK);
5025 	Linker.link(gtk_window_activate_default, "gtk_window_activate_default", LIBRARY_GTK);
5026 	Linker.link(gtk_window_activate_focus, "gtk_window_activate_focus", LIBRARY_GTK);
5027 	Linker.link(gtk_window_activate_key, "gtk_window_activate_key", LIBRARY_GTK);
5028 	Linker.link(gtk_window_add_accel_group, "gtk_window_add_accel_group", LIBRARY_GTK);
5029 	Linker.link(gtk_window_add_mnemonic, "gtk_window_add_mnemonic", LIBRARY_GTK);
5030 	Linker.link(gtk_window_begin_move_drag, "gtk_window_begin_move_drag", LIBRARY_GTK);
5031 	Linker.link(gtk_window_begin_resize_drag, "gtk_window_begin_resize_drag", LIBRARY_GTK);
5032 	Linker.link(gtk_window_close, "gtk_window_close", LIBRARY_GTK);
5033 	Linker.link(gtk_window_deiconify, "gtk_window_deiconify", LIBRARY_GTK);
5034 	Linker.link(gtk_window_fullscreen, "gtk_window_fullscreen", LIBRARY_GTK);
5035 	Linker.link(gtk_window_fullscreen_on_monitor, "gtk_window_fullscreen_on_monitor", LIBRARY_GTK);
5036 	Linker.link(gtk_window_get_accept_focus, "gtk_window_get_accept_focus", LIBRARY_GTK);
5037 	Linker.link(gtk_window_get_application, "gtk_window_get_application", LIBRARY_GTK);
5038 	Linker.link(gtk_window_get_attached_to, "gtk_window_get_attached_to", LIBRARY_GTK);
5039 	Linker.link(gtk_window_get_decorated, "gtk_window_get_decorated", LIBRARY_GTK);
5040 	Linker.link(gtk_window_get_default_size, "gtk_window_get_default_size", LIBRARY_GTK);
5041 	Linker.link(gtk_window_get_default_widget, "gtk_window_get_default_widget", LIBRARY_GTK);
5042 	Linker.link(gtk_window_get_deletable, "gtk_window_get_deletable", LIBRARY_GTK);
5043 	Linker.link(gtk_window_get_destroy_with_parent, "gtk_window_get_destroy_with_parent", LIBRARY_GTK);
5044 	Linker.link(gtk_window_get_focus, "gtk_window_get_focus", LIBRARY_GTK);
5045 	Linker.link(gtk_window_get_focus_on_map, "gtk_window_get_focus_on_map", LIBRARY_GTK);
5046 	Linker.link(gtk_window_get_focus_visible, "gtk_window_get_focus_visible", LIBRARY_GTK);
5047 	Linker.link(gtk_window_get_gravity, "gtk_window_get_gravity", LIBRARY_GTK);
5048 	Linker.link(gtk_window_get_group, "gtk_window_get_group", LIBRARY_GTK);
5049 	Linker.link(gtk_window_get_has_resize_grip, "gtk_window_get_has_resize_grip", LIBRARY_GTK);
5050 	Linker.link(gtk_window_get_hide_titlebar_when_maximized, "gtk_window_get_hide_titlebar_when_maximized", LIBRARY_GTK);
5051 	Linker.link(gtk_window_get_icon, "gtk_window_get_icon", LIBRARY_GTK);
5052 	Linker.link(gtk_window_get_icon_list, "gtk_window_get_icon_list", LIBRARY_GTK);
5053 	Linker.link(gtk_window_get_icon_name, "gtk_window_get_icon_name", LIBRARY_GTK);
5054 	Linker.link(gtk_window_get_mnemonic_modifier, "gtk_window_get_mnemonic_modifier", LIBRARY_GTK);
5055 	Linker.link(gtk_window_get_mnemonics_visible, "gtk_window_get_mnemonics_visible", LIBRARY_GTK);
5056 	Linker.link(gtk_window_get_modal, "gtk_window_get_modal", LIBRARY_GTK);
5057 	Linker.link(gtk_window_get_opacity, "gtk_window_get_opacity", LIBRARY_GTK);
5058 	Linker.link(gtk_window_get_position, "gtk_window_get_position", LIBRARY_GTK);
5059 	Linker.link(gtk_window_get_resizable, "gtk_window_get_resizable", LIBRARY_GTK);
5060 	Linker.link(gtk_window_get_resize_grip_area, "gtk_window_get_resize_grip_area", LIBRARY_GTK);
5061 	Linker.link(gtk_window_get_role, "gtk_window_get_role", LIBRARY_GTK);
5062 	Linker.link(gtk_window_get_screen, "gtk_window_get_screen", LIBRARY_GTK);
5063 	Linker.link(gtk_window_get_size, "gtk_window_get_size", LIBRARY_GTK);
5064 	Linker.link(gtk_window_get_skip_pager_hint, "gtk_window_get_skip_pager_hint", LIBRARY_GTK);
5065 	Linker.link(gtk_window_get_skip_taskbar_hint, "gtk_window_get_skip_taskbar_hint", LIBRARY_GTK);
5066 	Linker.link(gtk_window_get_title, "gtk_window_get_title", LIBRARY_GTK);
5067 	Linker.link(gtk_window_get_titlebar, "gtk_window_get_titlebar", LIBRARY_GTK);
5068 	Linker.link(gtk_window_get_transient_for, "gtk_window_get_transient_for", LIBRARY_GTK);
5069 	Linker.link(gtk_window_get_type_hint, "gtk_window_get_type_hint", LIBRARY_GTK);
5070 	Linker.link(gtk_window_get_urgency_hint, "gtk_window_get_urgency_hint", LIBRARY_GTK);
5071 	Linker.link(gtk_window_get_window_type, "gtk_window_get_window_type", LIBRARY_GTK);
5072 	Linker.link(gtk_window_has_group, "gtk_window_has_group", LIBRARY_GTK);
5073 	Linker.link(gtk_window_has_toplevel_focus, "gtk_window_has_toplevel_focus", LIBRARY_GTK);
5074 	Linker.link(gtk_window_iconify, "gtk_window_iconify", LIBRARY_GTK);
5075 	Linker.link(gtk_window_is_active, "gtk_window_is_active", LIBRARY_GTK);
5076 	Linker.link(gtk_window_is_maximized, "gtk_window_is_maximized", LIBRARY_GTK);
5077 	Linker.link(gtk_window_maximize, "gtk_window_maximize", LIBRARY_GTK);
5078 	Linker.link(gtk_window_mnemonic_activate, "gtk_window_mnemonic_activate", LIBRARY_GTK);
5079 	Linker.link(gtk_window_move, "gtk_window_move", LIBRARY_GTK);
5080 	Linker.link(gtk_window_parse_geometry, "gtk_window_parse_geometry", LIBRARY_GTK);
5081 	Linker.link(gtk_window_present, "gtk_window_present", LIBRARY_GTK);
5082 	Linker.link(gtk_window_present_with_time, "gtk_window_present_with_time", LIBRARY_GTK);
5083 	Linker.link(gtk_window_propagate_key_event, "gtk_window_propagate_key_event", LIBRARY_GTK);
5084 	Linker.link(gtk_window_remove_accel_group, "gtk_window_remove_accel_group", LIBRARY_GTK);
5085 	Linker.link(gtk_window_remove_mnemonic, "gtk_window_remove_mnemonic", LIBRARY_GTK);
5086 	Linker.link(gtk_window_reshow_with_initial_size, "gtk_window_reshow_with_initial_size", LIBRARY_GTK);
5087 	Linker.link(gtk_window_resize, "gtk_window_resize", LIBRARY_GTK);
5088 	Linker.link(gtk_window_resize_grip_is_visible, "gtk_window_resize_grip_is_visible", LIBRARY_GTK);
5089 	Linker.link(gtk_window_resize_to_geometry, "gtk_window_resize_to_geometry", LIBRARY_GTK);
5090 	Linker.link(gtk_window_set_accept_focus, "gtk_window_set_accept_focus", LIBRARY_GTK);
5091 	Linker.link(gtk_window_set_application, "gtk_window_set_application", LIBRARY_GTK);
5092 	Linker.link(gtk_window_set_attached_to, "gtk_window_set_attached_to", LIBRARY_GTK);
5093 	Linker.link(gtk_window_set_decorated, "gtk_window_set_decorated", LIBRARY_GTK);
5094 	Linker.link(gtk_window_set_default, "gtk_window_set_default", LIBRARY_GTK);
5095 	Linker.link(gtk_window_set_default_geometry, "gtk_window_set_default_geometry", LIBRARY_GTK);
5096 	Linker.link(gtk_window_set_default_size, "gtk_window_set_default_size", LIBRARY_GTK);
5097 	Linker.link(gtk_window_set_deletable, "gtk_window_set_deletable", LIBRARY_GTK);
5098 	Linker.link(gtk_window_set_destroy_with_parent, "gtk_window_set_destroy_with_parent", LIBRARY_GTK);
5099 	Linker.link(gtk_window_set_focus, "gtk_window_set_focus", LIBRARY_GTK);
5100 	Linker.link(gtk_window_set_focus_on_map, "gtk_window_set_focus_on_map", LIBRARY_GTK);
5101 	Linker.link(gtk_window_set_focus_visible, "gtk_window_set_focus_visible", LIBRARY_GTK);
5102 	Linker.link(gtk_window_set_geometry_hints, "gtk_window_set_geometry_hints", LIBRARY_GTK);
5103 	Linker.link(gtk_window_set_gravity, "gtk_window_set_gravity", LIBRARY_GTK);
5104 	Linker.link(gtk_window_set_has_resize_grip, "gtk_window_set_has_resize_grip", LIBRARY_GTK);
5105 	Linker.link(gtk_window_set_has_user_ref_count, "gtk_window_set_has_user_ref_count", LIBRARY_GTK);
5106 	Linker.link(gtk_window_set_hide_titlebar_when_maximized, "gtk_window_set_hide_titlebar_when_maximized", LIBRARY_GTK);
5107 	Linker.link(gtk_window_set_icon, "gtk_window_set_icon", LIBRARY_GTK);
5108 	Linker.link(gtk_window_set_icon_from_file, "gtk_window_set_icon_from_file", LIBRARY_GTK);
5109 	Linker.link(gtk_window_set_icon_list, "gtk_window_set_icon_list", LIBRARY_GTK);
5110 	Linker.link(gtk_window_set_icon_name, "gtk_window_set_icon_name", LIBRARY_GTK);
5111 	Linker.link(gtk_window_set_keep_above, "gtk_window_set_keep_above", LIBRARY_GTK);
5112 	Linker.link(gtk_window_set_keep_below, "gtk_window_set_keep_below", LIBRARY_GTK);
5113 	Linker.link(gtk_window_set_mnemonic_modifier, "gtk_window_set_mnemonic_modifier", LIBRARY_GTK);
5114 	Linker.link(gtk_window_set_mnemonics_visible, "gtk_window_set_mnemonics_visible", LIBRARY_GTK);
5115 	Linker.link(gtk_window_set_modal, "gtk_window_set_modal", LIBRARY_GTK);
5116 	Linker.link(gtk_window_set_opacity, "gtk_window_set_opacity", LIBRARY_GTK);
5117 	Linker.link(gtk_window_set_position, "gtk_window_set_position", LIBRARY_GTK);
5118 	Linker.link(gtk_window_set_resizable, "gtk_window_set_resizable", LIBRARY_GTK);
5119 	Linker.link(gtk_window_set_role, "gtk_window_set_role", LIBRARY_GTK);
5120 	Linker.link(gtk_window_set_screen, "gtk_window_set_screen", LIBRARY_GTK);
5121 	Linker.link(gtk_window_set_skip_pager_hint, "gtk_window_set_skip_pager_hint", LIBRARY_GTK);
5122 	Linker.link(gtk_window_set_skip_taskbar_hint, "gtk_window_set_skip_taskbar_hint", LIBRARY_GTK);
5123 	Linker.link(gtk_window_set_startup_id, "gtk_window_set_startup_id", LIBRARY_GTK);
5124 	Linker.link(gtk_window_set_title, "gtk_window_set_title", LIBRARY_GTK);
5125 	Linker.link(gtk_window_set_titlebar, "gtk_window_set_titlebar", LIBRARY_GTK);
5126 	Linker.link(gtk_window_set_transient_for, "gtk_window_set_transient_for", LIBRARY_GTK);
5127 	Linker.link(gtk_window_set_type_hint, "gtk_window_set_type_hint", LIBRARY_GTK);
5128 	Linker.link(gtk_window_set_urgency_hint, "gtk_window_set_urgency_hint", LIBRARY_GTK);
5129 	Linker.link(gtk_window_set_wmclass, "gtk_window_set_wmclass", LIBRARY_GTK);
5130 	Linker.link(gtk_window_stick, "gtk_window_stick", LIBRARY_GTK);
5131 	Linker.link(gtk_window_unfullscreen, "gtk_window_unfullscreen", LIBRARY_GTK);
5132 	Linker.link(gtk_window_unmaximize, "gtk_window_unmaximize", LIBRARY_GTK);
5133 	Linker.link(gtk_window_unstick, "gtk_window_unstick", LIBRARY_GTK);
5134 	Linker.link(gtk_show_uri_on_window, "gtk_show_uri_on_window", LIBRARY_GTK);
5135 
5136 	// gtk.WindowAccessible
5137 
5138 	Linker.link(gtk_window_accessible_get_type, "gtk_window_accessible_get_type", LIBRARY_GTK);
5139 
5140 	// gtk.WindowGroup
5141 
5142 	Linker.link(gtk_window_group_get_type, "gtk_window_group_get_type", LIBRARY_GTK);
5143 	Linker.link(gtk_window_group_new, "gtk_window_group_new", LIBRARY_GTK);
5144 	Linker.link(gtk_window_group_add_window, "gtk_window_group_add_window", LIBRARY_GTK);
5145 	Linker.link(gtk_window_group_get_current_device_grab, "gtk_window_group_get_current_device_grab", LIBRARY_GTK);
5146 	Linker.link(gtk_window_group_get_current_grab, "gtk_window_group_get_current_grab", LIBRARY_GTK);
5147 	Linker.link(gtk_window_group_list_windows, "gtk_window_group_list_windows", LIBRARY_GTK);
5148 	Linker.link(gtk_window_group_remove_window, "gtk_window_group_remove_window", LIBRARY_GTK);
5149 
5150 	// gtk.Main
5151 
5152 	Linker.link(gtk_device_grab_add, "gtk_device_grab_add", LIBRARY_GTK);
5153 	Linker.link(gtk_device_grab_remove, "gtk_device_grab_remove", LIBRARY_GTK);
5154 	Linker.link(gtk_disable_setlocale, "gtk_disable_setlocale", LIBRARY_GTK);
5155 	Linker.link(gtk_events_pending, "gtk_events_pending", LIBRARY_GTK);
5156 	Linker.link(gtk_get_current_event, "gtk_get_current_event", LIBRARY_GTK);
5157 	Linker.link(gtk_get_current_event_device, "gtk_get_current_event_device", LIBRARY_GTK);
5158 	Linker.link(gtk_get_current_event_state, "gtk_get_current_event_state", LIBRARY_GTK);
5159 	Linker.link(gtk_get_current_event_time, "gtk_get_current_event_time", LIBRARY_GTK);
5160 	Linker.link(gtk_get_debug_flags, "gtk_get_debug_flags", LIBRARY_GTK);
5161 	Linker.link(gtk_get_default_language, "gtk_get_default_language", LIBRARY_GTK);
5162 	Linker.link(gtk_get_event_widget, "gtk_get_event_widget", LIBRARY_GTK);
5163 	Linker.link(gtk_get_locale_direction, "gtk_get_locale_direction", LIBRARY_GTK);
5164 	Linker.link(gtk_get_option_group, "gtk_get_option_group", LIBRARY_GTK);
5165 	Linker.link(gtk_grab_get_current, "gtk_grab_get_current", LIBRARY_GTK);
5166 	Linker.link(gtk_init, "gtk_init", LIBRARY_GTK);
5167 	Linker.link(gtk_init_check, "gtk_init_check", LIBRARY_GTK);
5168 	Linker.link(gtk_init_with_args, "gtk_init_with_args", LIBRARY_GTK);
5169 	Linker.link(gtk_key_snooper_install, "gtk_key_snooper_install", LIBRARY_GTK);
5170 	Linker.link(gtk_key_snooper_remove, "gtk_key_snooper_remove", LIBRARY_GTK);
5171 	Linker.link(gtk_main, "gtk_main", LIBRARY_GTK);
5172 	Linker.link(gtk_main_do_event, "gtk_main_do_event", LIBRARY_GTK);
5173 	Linker.link(gtk_main_iteration, "gtk_main_iteration", LIBRARY_GTK);
5174 	Linker.link(gtk_main_iteration_do, "gtk_main_iteration_do", LIBRARY_GTK);
5175 	Linker.link(gtk_main_level, "gtk_main_level", LIBRARY_GTK);
5176 	Linker.link(gtk_main_quit, "gtk_main_quit", LIBRARY_GTK);
5177 	Linker.link(gtk_parse_args, "gtk_parse_args", LIBRARY_GTK);
5178 	Linker.link(gtk_propagate_event, "gtk_propagate_event", LIBRARY_GTK);
5179 	Linker.link(gtk_set_debug_flags, "gtk_set_debug_flags", LIBRARY_GTK);
5180 
5181 	// gtk.Testing
5182 
5183 	Linker.link(gtk_test_create_simple_window, "gtk_test_create_simple_window", LIBRARY_GTK);
5184 	Linker.link(gtk_test_create_widget, "gtk_test_create_widget", LIBRARY_GTK);
5185 	Linker.link(gtk_test_display_button_window, "gtk_test_display_button_window", LIBRARY_GTK);
5186 	Linker.link(gtk_test_find_label, "gtk_test_find_label", LIBRARY_GTK);
5187 	Linker.link(gtk_test_find_sibling, "gtk_test_find_sibling", LIBRARY_GTK);
5188 	Linker.link(gtk_test_find_widget, "gtk_test_find_widget", LIBRARY_GTK);
5189 	Linker.link(gtk_test_init, "gtk_test_init", LIBRARY_GTK);
5190 	Linker.link(gtk_test_list_all_types, "gtk_test_list_all_types", LIBRARY_GTK);
5191 	Linker.link(gtk_test_register_all_types, "gtk_test_register_all_types", LIBRARY_GTK);
5192 	Linker.link(gtk_test_slider_get_value, "gtk_test_slider_get_value", LIBRARY_GTK);
5193 	Linker.link(gtk_test_slider_set_perc, "gtk_test_slider_set_perc", LIBRARY_GTK);
5194 	Linker.link(gtk_test_spin_button_click, "gtk_test_spin_button_click", LIBRARY_GTK);
5195 	Linker.link(gtk_test_text_get, "gtk_test_text_get", LIBRARY_GTK);
5196 	Linker.link(gtk_test_text_set, "gtk_test_text_set", LIBRARY_GTK);
5197 	Linker.link(gtk_test_widget_click, "gtk_test_widget_click", LIBRARY_GTK);
5198 	Linker.link(gtk_test_widget_send_key, "gtk_test_widget_send_key", LIBRARY_GTK);
5199 	Linker.link(gtk_test_widget_wait_for_draw, "gtk_test_widget_wait_for_draw", LIBRARY_GTK);
5200 
5201 	// gtk.DragAndDrop
5202 
5203 	Linker.link(gtk_drag_cancel, "gtk_drag_cancel", LIBRARY_GTK);
5204 	Linker.link(gtk_drag_finish, "gtk_drag_finish", LIBRARY_GTK);
5205 	Linker.link(gtk_drag_get_source_widget, "gtk_drag_get_source_widget", LIBRARY_GTK);
5206 	Linker.link(gtk_drag_set_icon_default, "gtk_drag_set_icon_default", LIBRARY_GTK);
5207 	Linker.link(gtk_drag_set_icon_gicon, "gtk_drag_set_icon_gicon", LIBRARY_GTK);
5208 	Linker.link(gtk_drag_set_icon_name, "gtk_drag_set_icon_name", LIBRARY_GTK);
5209 	Linker.link(gtk_drag_set_icon_pixbuf, "gtk_drag_set_icon_pixbuf", LIBRARY_GTK);
5210 	Linker.link(gtk_drag_set_icon_stock, "gtk_drag_set_icon_stock", LIBRARY_GTK);
5211 	Linker.link(gtk_drag_set_icon_surface, "gtk_drag_set_icon_surface", LIBRARY_GTK);
5212 	Linker.link(gtk_drag_set_icon_widget, "gtk_drag_set_icon_widget", LIBRARY_GTK);
5213 	Linker.link(gtk_draw_insertion_cursor, "gtk_draw_insertion_cursor", LIBRARY_GTK);
5214 
5215 	// gtk.IconSize
5216 
5217 	Linker.link(gtk_icon_size_from_name, "gtk_icon_size_from_name", LIBRARY_GTK);
5218 	Linker.link(gtk_icon_size_get_name, "gtk_icon_size_get_name", LIBRARY_GTK);
5219 	Linker.link(gtk_icon_size_lookup, "gtk_icon_size_lookup", LIBRARY_GTK);
5220 	Linker.link(gtk_icon_size_lookup_for_settings, "gtk_icon_size_lookup_for_settings", LIBRARY_GTK);
5221 	Linker.link(gtk_icon_size_register, "gtk_icon_size_register", LIBRARY_GTK);
5222 	Linker.link(gtk_icon_size_register_alias, "gtk_icon_size_register_alias", LIBRARY_GTK);
5223 
5224 	// gtk.Version
5225 
5226 	Linker.link(gtk_check_version, "gtk_check_version", LIBRARY_GTK);
5227 	Linker.link(gtk_get_binary_age, "gtk_get_binary_age", LIBRARY_GTK);
5228 	Linker.link(gtk_get_interface_age, "gtk_get_interface_age", LIBRARY_GTK);
5229 	Linker.link(gtk_get_major_version, "gtk_get_major_version", LIBRARY_GTK);
5230 	Linker.link(gtk_get_micro_version, "gtk_get_micro_version", LIBRARY_GTK);
5231 	Linker.link(gtk_get_minor_version, "gtk_get_minor_version", LIBRARY_GTK);
5232 }
5233 
5234 __gshared extern(C)
5235 {
5236 
5237 	// gtk.AboutDialog
5238 
5239 	GType function() c_gtk_about_dialog_get_type;
5240 	GtkWidget* function() c_gtk_about_dialog_new;
5241 	void function(GtkAboutDialog* about, const(char)* sectionName, char** people) c_gtk_about_dialog_add_credit_section;
5242 	char** function(GtkAboutDialog* about) c_gtk_about_dialog_get_artists;
5243 	char** function(GtkAboutDialog* about) c_gtk_about_dialog_get_authors;
5244 	const(char)* function(GtkAboutDialog* about) c_gtk_about_dialog_get_comments;
5245 	const(char)* function(GtkAboutDialog* about) c_gtk_about_dialog_get_copyright;
5246 	char** function(GtkAboutDialog* about) c_gtk_about_dialog_get_documenters;
5247 	const(char)* function(GtkAboutDialog* about) c_gtk_about_dialog_get_license;
5248 	GtkLicense function(GtkAboutDialog* about) c_gtk_about_dialog_get_license_type;
5249 	GdkPixbuf* function(GtkAboutDialog* about) c_gtk_about_dialog_get_logo;
5250 	const(char)* function(GtkAboutDialog* about) c_gtk_about_dialog_get_logo_icon_name;
5251 	const(char)* function(GtkAboutDialog* about) c_gtk_about_dialog_get_program_name;
5252 	const(char)* function(GtkAboutDialog* about) c_gtk_about_dialog_get_translator_credits;
5253 	const(char)* function(GtkAboutDialog* about) c_gtk_about_dialog_get_version;
5254 	const(char)* function(GtkAboutDialog* about) c_gtk_about_dialog_get_website;
5255 	const(char)* function(GtkAboutDialog* about) c_gtk_about_dialog_get_website_label;
5256 	int function(GtkAboutDialog* about) c_gtk_about_dialog_get_wrap_license;
5257 	void function(GtkAboutDialog* about, char** artists) c_gtk_about_dialog_set_artists;
5258 	void function(GtkAboutDialog* about, char** authors) c_gtk_about_dialog_set_authors;
5259 	void function(GtkAboutDialog* about, const(char)* comments) c_gtk_about_dialog_set_comments;
5260 	void function(GtkAboutDialog* about, const(char)* copyright) c_gtk_about_dialog_set_copyright;
5261 	void function(GtkAboutDialog* about, char** documenters) c_gtk_about_dialog_set_documenters;
5262 	void function(GtkAboutDialog* about, const(char)* license) c_gtk_about_dialog_set_license;
5263 	void function(GtkAboutDialog* about, GtkLicense licenseType) c_gtk_about_dialog_set_license_type;
5264 	void function(GtkAboutDialog* about, GdkPixbuf* logo) c_gtk_about_dialog_set_logo;
5265 	void function(GtkAboutDialog* about, const(char)* iconName) c_gtk_about_dialog_set_logo_icon_name;
5266 	void function(GtkAboutDialog* about, const(char)* name) c_gtk_about_dialog_set_program_name;
5267 	void function(GtkAboutDialog* about, const(char)* translatorCredits) c_gtk_about_dialog_set_translator_credits;
5268 	void function(GtkAboutDialog* about, const(char)* version_) c_gtk_about_dialog_set_version;
5269 	void function(GtkAboutDialog* about, const(char)* website) c_gtk_about_dialog_set_website;
5270 	void function(GtkAboutDialog* about, const(char)* websiteLabel) c_gtk_about_dialog_set_website_label;
5271 	void function(GtkAboutDialog* about, int wrapLicense) c_gtk_about_dialog_set_wrap_license;
5272 	void function(GtkWindow* parent, const(char)* firstPropertyName, ... ) c_gtk_show_about_dialog;
5273 
5274 	// gtk.AccelGroup
5275 
5276 	GType function() c_gtk_accel_group_get_type;
5277 	GtkAccelGroup* function() c_gtk_accel_group_new;
5278 	GtkAccelGroup* function(GClosure* closure) c_gtk_accel_group_from_accel_closure;
5279 	int function(GtkAccelGroup* accelGroup, GQuark accelQuark, GObject* acceleratable, uint accelKey, GdkModifierType accelMods) c_gtk_accel_group_activate;
5280 	void function(GtkAccelGroup* accelGroup, uint accelKey, GdkModifierType accelMods, GtkAccelFlags accelFlags, GClosure* closure) c_gtk_accel_group_connect;
5281 	void function(GtkAccelGroup* accelGroup, const(char)* accelPath, GClosure* closure) c_gtk_accel_group_connect_by_path;
5282 	int function(GtkAccelGroup* accelGroup, GClosure* closure) c_gtk_accel_group_disconnect;
5283 	int function(GtkAccelGroup* accelGroup, uint accelKey, GdkModifierType accelMods) c_gtk_accel_group_disconnect_key;
5284 	GtkAccelKey* function(GtkAccelGroup* accelGroup, GtkAccelGroupFindFunc findFunc, void* data) c_gtk_accel_group_find;
5285 	int function(GtkAccelGroup* accelGroup) c_gtk_accel_group_get_is_locked;
5286 	GdkModifierType function(GtkAccelGroup* accelGroup) c_gtk_accel_group_get_modifier_mask;
5287 	void function(GtkAccelGroup* accelGroup) c_gtk_accel_group_lock;
5288 	GtkAccelGroupEntry* function(GtkAccelGroup* accelGroup, uint accelKey, GdkModifierType accelMods, uint* nEntries) c_gtk_accel_group_query;
5289 	void function(GtkAccelGroup* accelGroup) c_gtk_accel_group_unlock;
5290 	int function(GObject* object, uint accelKey, GdkModifierType accelMods) c_gtk_accel_groups_activate;
5291 	GSList* function(GObject* object) c_gtk_accel_groups_from_object;
5292 	GdkModifierType function() c_gtk_accelerator_get_default_mod_mask;
5293 	char* function(uint acceleratorKey, GdkModifierType acceleratorMods) c_gtk_accelerator_get_label;
5294 	char* function(GdkDisplay* display, uint acceleratorKey, uint keycode, GdkModifierType acceleratorMods) c_gtk_accelerator_get_label_with_keycode;
5295 	char* function(uint acceleratorKey, GdkModifierType acceleratorMods) c_gtk_accelerator_name;
5296 	char* function(GdkDisplay* display, uint acceleratorKey, uint keycode, GdkModifierType acceleratorMods) c_gtk_accelerator_name_with_keycode;
5297 	void function(const(char)* accelerator, uint* acceleratorKey, GdkModifierType* acceleratorMods) c_gtk_accelerator_parse;
5298 	void function(const(char)* accelerator, uint* acceleratorKey, uint** acceleratorCodes, GdkModifierType* acceleratorMods) c_gtk_accelerator_parse_with_keycode;
5299 	void function(GdkModifierType defaultModMask) c_gtk_accelerator_set_default_mod_mask;
5300 	int function(uint keyval, GdkModifierType modifiers) c_gtk_accelerator_valid;
5301 
5302 	// gtk.AccelLabel
5303 
5304 	GType function() c_gtk_accel_label_get_type;
5305 	GtkWidget* function(const(char)* string_) c_gtk_accel_label_new;
5306 	void function(GtkAccelLabel* accelLabel, uint* acceleratorKey, GdkModifierType* acceleratorMods) c_gtk_accel_label_get_accel;
5307 	GtkWidget* function(GtkAccelLabel* accelLabel) c_gtk_accel_label_get_accel_widget;
5308 	uint function(GtkAccelLabel* accelLabel) c_gtk_accel_label_get_accel_width;
5309 	int function(GtkAccelLabel* accelLabel) c_gtk_accel_label_refetch;
5310 	void function(GtkAccelLabel* accelLabel, uint acceleratorKey, GdkModifierType acceleratorMods) c_gtk_accel_label_set_accel;
5311 	void function(GtkAccelLabel* accelLabel, GClosure* accelClosure) c_gtk_accel_label_set_accel_closure;
5312 	void function(GtkAccelLabel* accelLabel, GtkWidget* accelWidget) c_gtk_accel_label_set_accel_widget;
5313 
5314 	// gtk.AccelMap
5315 
5316 	GType function() c_gtk_accel_map_get_type;
5317 	void function(const(char)* accelPath, uint accelKey, GdkModifierType accelMods) c_gtk_accel_map_add_entry;
5318 	void function(const(char)* filterPattern) c_gtk_accel_map_add_filter;
5319 	int function(const(char)* accelPath, uint accelKey, GdkModifierType accelMods, int replace) c_gtk_accel_map_change_entry;
5320 	void function(void* data, GtkAccelMapForeach foreachFunc) c_gtk_accel_map_foreach;
5321 	void function(void* data, GtkAccelMapForeach foreachFunc) c_gtk_accel_map_foreach_unfiltered;
5322 	GtkAccelMap* function() c_gtk_accel_map_get;
5323 	void function(char* fileName) c_gtk_accel_map_load;
5324 	void function(int fd) c_gtk_accel_map_load_fd;
5325 	void function(GScanner* scanner) c_gtk_accel_map_load_scanner;
5326 	void function(const(char)* accelPath) c_gtk_accel_map_lock_path;
5327 	int function(const(char)* accelPath, GtkAccelKey* key) c_gtk_accel_map_lookup_entry;
5328 	void function(char* fileName) c_gtk_accel_map_save;
5329 	void function(int fd) c_gtk_accel_map_save_fd;
5330 	void function(const(char)* accelPath) c_gtk_accel_map_unlock_path;
5331 
5332 	// gtk.Accessible
5333 
5334 	GType function() c_gtk_accessible_get_type;
5335 	void function(GtkAccessible* accessible) c_gtk_accessible_connect_widget_destroyed;
5336 	GtkWidget* function(GtkAccessible* accessible) c_gtk_accessible_get_widget;
5337 	void function(GtkAccessible* accessible, GtkWidget* widget) c_gtk_accessible_set_widget;
5338 
5339 	// gtk.Action
5340 
5341 	GType function() c_gtk_action_get_type;
5342 	GtkAction* function(const(char)* name, const(char)* label, const(char)* tooltip, const(char)* stockId) c_gtk_action_new;
5343 	void function(GtkAction* action) c_gtk_action_activate;
5344 	void function(GtkAction* action) c_gtk_action_block_activate;
5345 	void function(GtkAction* action) c_gtk_action_connect_accelerator;
5346 	GtkWidget* function(GtkAction* action, GtkIconSize iconSize) c_gtk_action_create_icon;
5347 	GtkWidget* function(GtkAction* action) c_gtk_action_create_menu;
5348 	GtkWidget* function(GtkAction* action) c_gtk_action_create_menu_item;
5349 	GtkWidget* function(GtkAction* action) c_gtk_action_create_tool_item;
5350 	void function(GtkAction* action) c_gtk_action_disconnect_accelerator;
5351 	GClosure* function(GtkAction* action) c_gtk_action_get_accel_closure;
5352 	const(char)* function(GtkAction* action) c_gtk_action_get_accel_path;
5353 	int function(GtkAction* action) c_gtk_action_get_always_show_image;
5354 	GIcon* function(GtkAction* action) c_gtk_action_get_gicon;
5355 	const(char)* function(GtkAction* action) c_gtk_action_get_icon_name;
5356 	int function(GtkAction* action) c_gtk_action_get_is_important;
5357 	const(char)* function(GtkAction* action) c_gtk_action_get_label;
5358 	const(char)* function(GtkAction* action) c_gtk_action_get_name;
5359 	GSList* function(GtkAction* action) c_gtk_action_get_proxies;
5360 	int function(GtkAction* action) c_gtk_action_get_sensitive;
5361 	const(char)* function(GtkAction* action) c_gtk_action_get_short_label;
5362 	const(char)* function(GtkAction* action) c_gtk_action_get_stock_id;
5363 	const(char)* function(GtkAction* action) c_gtk_action_get_tooltip;
5364 	int function(GtkAction* action) c_gtk_action_get_visible;
5365 	int function(GtkAction* action) c_gtk_action_get_visible_horizontal;
5366 	int function(GtkAction* action) c_gtk_action_get_visible_vertical;
5367 	int function(GtkAction* action) c_gtk_action_is_sensitive;
5368 	int function(GtkAction* action) c_gtk_action_is_visible;
5369 	void function(GtkAction* action, GtkAccelGroup* accelGroup) c_gtk_action_set_accel_group;
5370 	void function(GtkAction* action, const(char)* accelPath) c_gtk_action_set_accel_path;
5371 	void function(GtkAction* action, int alwaysShow) c_gtk_action_set_always_show_image;
5372 	void function(GtkAction* action, GIcon* icon) c_gtk_action_set_gicon;
5373 	void function(GtkAction* action, const(char)* iconName) c_gtk_action_set_icon_name;
5374 	void function(GtkAction* action, int isImportant) c_gtk_action_set_is_important;
5375 	void function(GtkAction* action, const(char)* label) c_gtk_action_set_label;
5376 	void function(GtkAction* action, int sensitive) c_gtk_action_set_sensitive;
5377 	void function(GtkAction* action, const(char)* shortLabel) c_gtk_action_set_short_label;
5378 	void function(GtkAction* action, const(char)* stockId) c_gtk_action_set_stock_id;
5379 	void function(GtkAction* action, const(char)* tooltip) c_gtk_action_set_tooltip;
5380 	void function(GtkAction* action, int visible) c_gtk_action_set_visible;
5381 	void function(GtkAction* action, int visibleHorizontal) c_gtk_action_set_visible_horizontal;
5382 	void function(GtkAction* action, int visibleVertical) c_gtk_action_set_visible_vertical;
5383 	void function(GtkAction* action) c_gtk_action_unblock_activate;
5384 
5385 	// gtk.ActionBar
5386 
5387 	GType function() c_gtk_action_bar_get_type;
5388 	GtkWidget* function() c_gtk_action_bar_new;
5389 	GtkWidget* function(GtkActionBar* actionBar) c_gtk_action_bar_get_center_widget;
5390 	void function(GtkActionBar* actionBar, GtkWidget* child) c_gtk_action_bar_pack_end;
5391 	void function(GtkActionBar* actionBar, GtkWidget* child) c_gtk_action_bar_pack_start;
5392 	void function(GtkActionBar* actionBar, GtkWidget* centerWidget) c_gtk_action_bar_set_center_widget;
5393 
5394 	// gtk.ActionGroup
5395 
5396 	GType function() c_gtk_action_group_get_type;
5397 	GtkActionGroup* function(const(char)* name) c_gtk_action_group_new;
5398 	void function(GtkActionGroup* actionGroup, GtkAction* action) c_gtk_action_group_add_action;
5399 	void function(GtkActionGroup* actionGroup, GtkAction* action, const(char)* accelerator) c_gtk_action_group_add_action_with_accel;
5400 	void function(GtkActionGroup* actionGroup, GtkActionEntry* entries, uint nEntries, void* userData) c_gtk_action_group_add_actions;
5401 	void function(GtkActionGroup* actionGroup, GtkActionEntry* entries, uint nEntries, void* userData, GDestroyNotify destroy) c_gtk_action_group_add_actions_full;
5402 	void function(GtkActionGroup* actionGroup, GtkRadioActionEntry* entries, uint nEntries, int value, GCallback onChange, void* userData) c_gtk_action_group_add_radio_actions;
5403 	void function(GtkActionGroup* actionGroup, GtkRadioActionEntry* entries, uint nEntries, int value, GCallback onChange, void* userData, GDestroyNotify destroy) c_gtk_action_group_add_radio_actions_full;
5404 	void function(GtkActionGroup* actionGroup, GtkToggleActionEntry* entries, uint nEntries, void* userData) c_gtk_action_group_add_toggle_actions;
5405 	void function(GtkActionGroup* actionGroup, GtkToggleActionEntry* entries, uint nEntries, void* userData, GDestroyNotify destroy) c_gtk_action_group_add_toggle_actions_full;
5406 	GtkAccelGroup* function(GtkActionGroup* actionGroup) c_gtk_action_group_get_accel_group;
5407 	GtkAction* function(GtkActionGroup* actionGroup, const(char)* actionName) c_gtk_action_group_get_action;
5408 	const(char)* function(GtkActionGroup* actionGroup) c_gtk_action_group_get_name;
5409 	int function(GtkActionGroup* actionGroup) c_gtk_action_group_get_sensitive;
5410 	int function(GtkActionGroup* actionGroup) c_gtk_action_group_get_visible;
5411 	GList* function(GtkActionGroup* actionGroup) c_gtk_action_group_list_actions;
5412 	void function(GtkActionGroup* actionGroup, GtkAction* action) c_gtk_action_group_remove_action;
5413 	void function(GtkActionGroup* actionGroup, GtkAccelGroup* accelGroup) c_gtk_action_group_set_accel_group;
5414 	void function(GtkActionGroup* actionGroup, int sensitive) c_gtk_action_group_set_sensitive;
5415 	void function(GtkActionGroup* actionGroup, GtkTranslateFunc func, void* data, GDestroyNotify notify) c_gtk_action_group_set_translate_func;
5416 	void function(GtkActionGroup* actionGroup, const(char)* domain) c_gtk_action_group_set_translation_domain;
5417 	void function(GtkActionGroup* actionGroup, int visible) c_gtk_action_group_set_visible;
5418 	const(char)* function(GtkActionGroup* actionGroup, const(char)* string_) c_gtk_action_group_translate_string;
5419 
5420 	// gtk.Actionable
5421 
5422 	GType function() c_gtk_actionable_get_type;
5423 	const(char)* function(GtkActionable* actionable) c_gtk_actionable_get_action_name;
5424 	GVariant* function(GtkActionable* actionable) c_gtk_actionable_get_action_target_value;
5425 	void function(GtkActionable* actionable, const(char)* actionName) c_gtk_actionable_set_action_name;
5426 	void function(GtkActionable* actionable, const(char)* formatString, ... ) c_gtk_actionable_set_action_target;
5427 	void function(GtkActionable* actionable, GVariant* targetValue) c_gtk_actionable_set_action_target_value;
5428 	void function(GtkActionable* actionable, const(char)* detailedActionName) c_gtk_actionable_set_detailed_action_name;
5429 
5430 	// gtk.Activatable
5431 
5432 	GType function() c_gtk_activatable_get_type;
5433 	void function(GtkActivatable* activatable, GtkAction* action) c_gtk_activatable_do_set_related_action;
5434 	GtkAction* function(GtkActivatable* activatable) c_gtk_activatable_get_related_action;
5435 	int function(GtkActivatable* activatable) c_gtk_activatable_get_use_action_appearance;
5436 	void function(GtkActivatable* activatable, GtkAction* action) c_gtk_activatable_set_related_action;
5437 	void function(GtkActivatable* activatable, int useAppearance) c_gtk_activatable_set_use_action_appearance;
5438 	void function(GtkActivatable* activatable, GtkAction* action) c_gtk_activatable_sync_action_properties;
5439 
5440 	// gtk.Adjustment
5441 
5442 	GType function() c_gtk_adjustment_get_type;
5443 	GtkAdjustment* function(double value, double lower, double upper, double stepIncrement, double pageIncrement, double pageSize) c_gtk_adjustment_new;
5444 	void function(GtkAdjustment* adjustment) c_gtk_adjustment_changed;
5445 	void function(GtkAdjustment* adjustment, double lower, double upper) c_gtk_adjustment_clamp_page;
5446 	void function(GtkAdjustment* adjustment, double value, double lower, double upper, double stepIncrement, double pageIncrement, double pageSize) c_gtk_adjustment_configure;
5447 	double function(GtkAdjustment* adjustment) c_gtk_adjustment_get_lower;
5448 	double function(GtkAdjustment* adjustment) c_gtk_adjustment_get_minimum_increment;
5449 	double function(GtkAdjustment* adjustment) c_gtk_adjustment_get_page_increment;
5450 	double function(GtkAdjustment* adjustment) c_gtk_adjustment_get_page_size;
5451 	double function(GtkAdjustment* adjustment) c_gtk_adjustment_get_step_increment;
5452 	double function(GtkAdjustment* adjustment) c_gtk_adjustment_get_upper;
5453 	double function(GtkAdjustment* adjustment) c_gtk_adjustment_get_value;
5454 	void function(GtkAdjustment* adjustment, double lower) c_gtk_adjustment_set_lower;
5455 	void function(GtkAdjustment* adjustment, double pageIncrement) c_gtk_adjustment_set_page_increment;
5456 	void function(GtkAdjustment* adjustment, double pageSize) c_gtk_adjustment_set_page_size;
5457 	void function(GtkAdjustment* adjustment, double stepIncrement) c_gtk_adjustment_set_step_increment;
5458 	void function(GtkAdjustment* adjustment, double upper) c_gtk_adjustment_set_upper;
5459 	void function(GtkAdjustment* adjustment, double value) c_gtk_adjustment_set_value;
5460 	void function(GtkAdjustment* adjustment) c_gtk_adjustment_value_changed;
5461 
5462 	// gtk.Alignment
5463 
5464 	GType function() c_gtk_alignment_get_type;
5465 	GtkWidget* function(float xalign, float yalign, float xscale, float yscale) c_gtk_alignment_new;
5466 	void function(GtkAlignment* alignment, uint* paddingTop, uint* paddingBottom, uint* paddingLeft, uint* paddingRight) c_gtk_alignment_get_padding;
5467 	void function(GtkAlignment* alignment, float xalign, float yalign, float xscale, float yscale) c_gtk_alignment_set;
5468 	void function(GtkAlignment* alignment, uint paddingTop, uint paddingBottom, uint paddingLeft, uint paddingRight) c_gtk_alignment_set_padding;
5469 
5470 	// gtk.AppChooser
5471 
5472 	GType function() c_gtk_app_chooser_get_type;
5473 	GAppInfo* function(GtkAppChooser* self) c_gtk_app_chooser_get_app_info;
5474 	char* function(GtkAppChooser* self) c_gtk_app_chooser_get_content_type;
5475 	void function(GtkAppChooser* self) c_gtk_app_chooser_refresh;
5476 
5477 	// gtk.AppChooserButton
5478 
5479 	GType function() c_gtk_app_chooser_button_get_type;
5480 	GtkWidget* function(const(char)* contentType) c_gtk_app_chooser_button_new;
5481 	void function(GtkAppChooserButton* self, const(char)* name, const(char)* label, GIcon* icon) c_gtk_app_chooser_button_append_custom_item;
5482 	void function(GtkAppChooserButton* self) c_gtk_app_chooser_button_append_separator;
5483 	const(char)* function(GtkAppChooserButton* self) c_gtk_app_chooser_button_get_heading;
5484 	int function(GtkAppChooserButton* self) c_gtk_app_chooser_button_get_show_default_item;
5485 	int function(GtkAppChooserButton* self) c_gtk_app_chooser_button_get_show_dialog_item;
5486 	void function(GtkAppChooserButton* self, const(char)* name) c_gtk_app_chooser_button_set_active_custom_item;
5487 	void function(GtkAppChooserButton* self, const(char)* heading) c_gtk_app_chooser_button_set_heading;
5488 	void function(GtkAppChooserButton* self, int setting) c_gtk_app_chooser_button_set_show_default_item;
5489 	void function(GtkAppChooserButton* self, int setting) c_gtk_app_chooser_button_set_show_dialog_item;
5490 
5491 	// gtk.AppChooserDialog
5492 
5493 	GType function() c_gtk_app_chooser_dialog_get_type;
5494 	GtkWidget* function(GtkWindow* parent, GtkDialogFlags flags, GFile* file) c_gtk_app_chooser_dialog_new;
5495 	GtkWidget* function(GtkWindow* parent, GtkDialogFlags flags, const(char)* contentType) c_gtk_app_chooser_dialog_new_for_content_type;
5496 	const(char)* function(GtkAppChooserDialog* self) c_gtk_app_chooser_dialog_get_heading;
5497 	GtkWidget* function(GtkAppChooserDialog* self) c_gtk_app_chooser_dialog_get_widget;
5498 	void function(GtkAppChooserDialog* self, const(char)* heading) c_gtk_app_chooser_dialog_set_heading;
5499 
5500 	// gtk.AppChooserWidget
5501 
5502 	GType function() c_gtk_app_chooser_widget_get_type;
5503 	GtkWidget* function(const(char)* contentType) c_gtk_app_chooser_widget_new;
5504 	const(char)* function(GtkAppChooserWidget* self) c_gtk_app_chooser_widget_get_default_text;
5505 	int function(GtkAppChooserWidget* self) c_gtk_app_chooser_widget_get_show_all;
5506 	int function(GtkAppChooserWidget* self) c_gtk_app_chooser_widget_get_show_default;
5507 	int function(GtkAppChooserWidget* self) c_gtk_app_chooser_widget_get_show_fallback;
5508 	int function(GtkAppChooserWidget* self) c_gtk_app_chooser_widget_get_show_other;
5509 	int function(GtkAppChooserWidget* self) c_gtk_app_chooser_widget_get_show_recommended;
5510 	void function(GtkAppChooserWidget* self, const(char)* text) c_gtk_app_chooser_widget_set_default_text;
5511 	void function(GtkAppChooserWidget* self, int setting) c_gtk_app_chooser_widget_set_show_all;
5512 	void function(GtkAppChooserWidget* self, int setting) c_gtk_app_chooser_widget_set_show_default;
5513 	void function(GtkAppChooserWidget* self, int setting) c_gtk_app_chooser_widget_set_show_fallback;
5514 	void function(GtkAppChooserWidget* self, int setting) c_gtk_app_chooser_widget_set_show_other;
5515 	void function(GtkAppChooserWidget* self, int setting) c_gtk_app_chooser_widget_set_show_recommended;
5516 
5517 	// gtk.Application
5518 
5519 	GType function() c_gtk_application_get_type;
5520 	GtkApplication* function(const(char)* applicationId, GApplicationFlags flags) c_gtk_application_new;
5521 	void function(GtkApplication* application, const(char)* accelerator, const(char)* actionName, GVariant* parameter) c_gtk_application_add_accelerator;
5522 	void function(GtkApplication* application, GtkWindow* window) c_gtk_application_add_window;
5523 	char** function(GtkApplication* application, const(char)* detailedActionName) c_gtk_application_get_accels_for_action;
5524 	char** function(GtkApplication* application, const(char)* accel) c_gtk_application_get_actions_for_accel;
5525 	GtkWindow* function(GtkApplication* application) c_gtk_application_get_active_window;
5526 	GMenuModel* function(GtkApplication* application) c_gtk_application_get_app_menu;
5527 	GMenu* function(GtkApplication* application, const(char)* id) c_gtk_application_get_menu_by_id;
5528 	GMenuModel* function(GtkApplication* application) c_gtk_application_get_menubar;
5529 	GtkWindow* function(GtkApplication* application, uint id) c_gtk_application_get_window_by_id;
5530 	GList* function(GtkApplication* application) c_gtk_application_get_windows;
5531 	uint function(GtkApplication* application, GtkWindow* window, GtkApplicationInhibitFlags flags, const(char)* reason) c_gtk_application_inhibit;
5532 	int function(GtkApplication* application, GtkApplicationInhibitFlags flags) c_gtk_application_is_inhibited;
5533 	char** function(GtkApplication* application) c_gtk_application_list_action_descriptions;
5534 	int function(GtkApplication* application) c_gtk_application_prefers_app_menu;
5535 	void function(GtkApplication* application, const(char)* actionName, GVariant* parameter) c_gtk_application_remove_accelerator;
5536 	void function(GtkApplication* application, GtkWindow* window) c_gtk_application_remove_window;
5537 	void function(GtkApplication* application, const(char)* detailedActionName, char** accels) c_gtk_application_set_accels_for_action;
5538 	void function(GtkApplication* application, GMenuModel* appMenu) c_gtk_application_set_app_menu;
5539 	void function(GtkApplication* application, GMenuModel* menubar) c_gtk_application_set_menubar;
5540 	void function(GtkApplication* application, uint cookie) c_gtk_application_uninhibit;
5541 
5542 	// gtk.ApplicationWindow
5543 
5544 	GType function() c_gtk_application_window_get_type;
5545 	GtkWidget* function(GtkApplication* application) c_gtk_application_window_new;
5546 	GtkShortcutsWindow* function(GtkApplicationWindow* window) c_gtk_application_window_get_help_overlay;
5547 	uint function(GtkApplicationWindow* window) c_gtk_application_window_get_id;
5548 	int function(GtkApplicationWindow* window) c_gtk_application_window_get_show_menubar;
5549 	void function(GtkApplicationWindow* window, GtkShortcutsWindow* helpOverlay) c_gtk_application_window_set_help_overlay;
5550 	void function(GtkApplicationWindow* window, int showMenubar) c_gtk_application_window_set_show_menubar;
5551 
5552 	// gtk.Arrow
5553 
5554 	GType function() c_gtk_arrow_get_type;
5555 	GtkWidget* function(GtkArrowType arrowType, GtkShadowType shadowType) c_gtk_arrow_new;
5556 	void function(GtkArrow* arrow, GtkArrowType arrowType, GtkShadowType shadowType) c_gtk_arrow_set;
5557 
5558 	// gtk.ArrowAccessible
5559 
5560 	GType function() c_gtk_arrow_accessible_get_type;
5561 
5562 	// gtk.AspectFrame
5563 
5564 	GType function() c_gtk_aspect_frame_get_type;
5565 	GtkWidget* function(const(char)* label, float xalign, float yalign, float ratio, int obeyChild) c_gtk_aspect_frame_new;
5566 	void function(GtkAspectFrame* aspectFrame, float xalign, float yalign, float ratio, int obeyChild) c_gtk_aspect_frame_set;
5567 
5568 	// gtk.Assistant
5569 
5570 	GType function() c_gtk_assistant_get_type;
5571 	GtkWidget* function() c_gtk_assistant_new;
5572 	void function(GtkAssistant* assistant, GtkWidget* child) c_gtk_assistant_add_action_widget;
5573 	int function(GtkAssistant* assistant, GtkWidget* page) c_gtk_assistant_append_page;
5574 	void function(GtkAssistant* assistant) c_gtk_assistant_commit;
5575 	int function(GtkAssistant* assistant) c_gtk_assistant_get_current_page;
5576 	int function(GtkAssistant* assistant) c_gtk_assistant_get_n_pages;
5577 	GtkWidget* function(GtkAssistant* assistant, int pageNum) c_gtk_assistant_get_nth_page;
5578 	int function(GtkAssistant* assistant, GtkWidget* page) c_gtk_assistant_get_page_complete;
5579 	int function(GtkAssistant* assistant, GtkWidget* page) c_gtk_assistant_get_page_has_padding;
5580 	GdkPixbuf* function(GtkAssistant* assistant, GtkWidget* page) c_gtk_assistant_get_page_header_image;
5581 	GdkPixbuf* function(GtkAssistant* assistant, GtkWidget* page) c_gtk_assistant_get_page_side_image;
5582 	const(char)* function(GtkAssistant* assistant, GtkWidget* page) c_gtk_assistant_get_page_title;
5583 	GtkAssistantPageType function(GtkAssistant* assistant, GtkWidget* page) c_gtk_assistant_get_page_type;
5584 	int function(GtkAssistant* assistant, GtkWidget* page, int position) c_gtk_assistant_insert_page;
5585 	void function(GtkAssistant* assistant) c_gtk_assistant_next_page;
5586 	int function(GtkAssistant* assistant, GtkWidget* page) c_gtk_assistant_prepend_page;
5587 	void function(GtkAssistant* assistant) c_gtk_assistant_previous_page;
5588 	void function(GtkAssistant* assistant, GtkWidget* child) c_gtk_assistant_remove_action_widget;
5589 	void function(GtkAssistant* assistant, int pageNum) c_gtk_assistant_remove_page;
5590 	void function(GtkAssistant* assistant, int pageNum) c_gtk_assistant_set_current_page;
5591 	void function(GtkAssistant* assistant, GtkAssistantPageFunc pageFunc, void* data, GDestroyNotify destroy) c_gtk_assistant_set_forward_page_func;
5592 	void function(GtkAssistant* assistant, GtkWidget* page, int complete) c_gtk_assistant_set_page_complete;
5593 	void function(GtkAssistant* assistant, GtkWidget* page, int hasPadding) c_gtk_assistant_set_page_has_padding;
5594 	void function(GtkAssistant* assistant, GtkWidget* page, GdkPixbuf* pixbuf) c_gtk_assistant_set_page_header_image;
5595 	void function(GtkAssistant* assistant, GtkWidget* page, GdkPixbuf* pixbuf) c_gtk_assistant_set_page_side_image;
5596 	void function(GtkAssistant* assistant, GtkWidget* page, const(char)* title) c_gtk_assistant_set_page_title;
5597 	void function(GtkAssistant* assistant, GtkWidget* page, GtkAssistantPageType type) c_gtk_assistant_set_page_type;
5598 	void function(GtkAssistant* assistant) c_gtk_assistant_update_buttons_state;
5599 
5600 	// gtk.Bin
5601 
5602 	GType function() c_gtk_bin_get_type;
5603 	GtkWidget* function(GtkBin* bin) c_gtk_bin_get_child;
5604 
5605 	// gtk.BindingEntry
5606 
5607 	void function(GtkBindingSet* bindingSet, uint keyval, GdkModifierType modifiers, const(char)* signalName, uint nArgs, ... ) c_gtk_binding_entry_add_signal;
5608 	GTokenType function(GtkBindingSet* bindingSet, const(char)* signalDesc) c_gtk_binding_entry_add_signal_from_string;
5609 	void function(GtkBindingSet* bindingSet, uint keyval, GdkModifierType modifiers, const(char)* signalName, GSList* bindingArgs) c_gtk_binding_entry_add_signall;
5610 	void function(GtkBindingSet* bindingSet, uint keyval, GdkModifierType modifiers) c_gtk_binding_entry_remove;
5611 	void function(GtkBindingSet* bindingSet, uint keyval, GdkModifierType modifiers) c_gtk_binding_entry_skip;
5612 
5613 	// gtk.BindingSet
5614 
5615 	int function(GtkBindingSet* bindingSet, uint keyval, GdkModifierType modifiers, GObject* object) c_gtk_binding_set_activate;
5616 	void function(GtkBindingSet* bindingSet, GtkPathType pathType, const(char)* pathPattern, GtkPathPriorityType priority) c_gtk_binding_set_add_path;
5617 	GtkBindingSet* function(void* objectClass) c_gtk_binding_set_by_class;
5618 	GtkBindingSet* function(const(char)* setName) c_gtk_binding_set_find;
5619 	GtkBindingSet* function(const(char)* setName) c_gtk_binding_set_new;
5620 	int function(GObject* object, uint keyval, GdkModifierType modifiers) c_gtk_bindings_activate;
5621 	int function(GObject* object, GdkEventKey* event) c_gtk_bindings_activate_event;
5622 
5623 	// gtk.BooleanCellAccessible
5624 
5625 	GType function() c_gtk_boolean_cell_accessible_get_type;
5626 
5627 	// gtk.Border
5628 
5629 	GType function() c_gtk_border_get_type;
5630 	GtkBorder* function() c_gtk_border_new;
5631 	GtkBorder* function(GtkBorder* border) c_gtk_border_copy;
5632 	void function(GtkBorder* border) c_gtk_border_free;
5633 
5634 	// gtk.Box
5635 
5636 	GType function() c_gtk_box_get_type;
5637 	GtkWidget* function(GtkOrientation orientation, int spacing) c_gtk_box_new;
5638 	GtkBaselinePosition function(GtkBox* box) c_gtk_box_get_baseline_position;
5639 	GtkWidget* function(GtkBox* box) c_gtk_box_get_center_widget;
5640 	int function(GtkBox* box) c_gtk_box_get_homogeneous;
5641 	int function(GtkBox* box) c_gtk_box_get_spacing;
5642 	void function(GtkBox* box, GtkWidget* child, int expand, int fill, uint padding) c_gtk_box_pack_end;
5643 	void function(GtkBox* box, GtkWidget* child, int expand, int fill, uint padding) c_gtk_box_pack_start;
5644 	void function(GtkBox* box, GtkWidget* child, int* expand, int* fill, uint* padding, GtkPackType* packType) c_gtk_box_query_child_packing;
5645 	void function(GtkBox* box, GtkWidget* child, int position) c_gtk_box_reorder_child;
5646 	void function(GtkBox* box, GtkBaselinePosition position) c_gtk_box_set_baseline_position;
5647 	void function(GtkBox* box, GtkWidget* widget) c_gtk_box_set_center_widget;
5648 	void function(GtkBox* box, GtkWidget* child, int expand, int fill, uint padding, GtkPackType packType) c_gtk_box_set_child_packing;
5649 	void function(GtkBox* box, int homogeneous) c_gtk_box_set_homogeneous;
5650 	void function(GtkBox* box, int spacing) c_gtk_box_set_spacing;
5651 
5652 	// gtk.Buildable
5653 
5654 	GType function() c_gtk_buildable_get_type;
5655 	void function(GtkBuildable* buildable, GtkBuilder* builder, GObject* child, const(char)* type) c_gtk_buildable_add_child;
5656 	GObject* function(GtkBuildable* buildable, GtkBuilder* builder, const(char)* name) c_gtk_buildable_construct_child;
5657 	void function(GtkBuildable* buildable, GtkBuilder* builder, GObject* child, const(char)* tagname, void* data) c_gtk_buildable_custom_finished;
5658 	void function(GtkBuildable* buildable, GtkBuilder* builder, GObject* child, const(char)* tagname, void** data) c_gtk_buildable_custom_tag_end;
5659 	int function(GtkBuildable* buildable, GtkBuilder* builder, GObject* child, const(char)* tagname, GMarkupParser* parser, void** data) c_gtk_buildable_custom_tag_start;
5660 	GObject* function(GtkBuildable* buildable, GtkBuilder* builder, const(char)* childname) c_gtk_buildable_get_internal_child;
5661 	const(char)* function(GtkBuildable* buildable) c_gtk_buildable_get_name;
5662 	void function(GtkBuildable* buildable, GtkBuilder* builder) c_gtk_buildable_parser_finished;
5663 	void function(GtkBuildable* buildable, GtkBuilder* builder, const(char)* name, GValue* value) c_gtk_buildable_set_buildable_property;
5664 	void function(GtkBuildable* buildable, const(char)* name) c_gtk_buildable_set_name;
5665 
5666 	// gtk.Builder
5667 
5668 	GType function() c_gtk_builder_get_type;
5669 	GtkBuilder* function() c_gtk_builder_new;
5670 	GtkBuilder* function(const(char)* filename) c_gtk_builder_new_from_file;
5671 	GtkBuilder* function(const(char)* resourcePath) c_gtk_builder_new_from_resource;
5672 	GtkBuilder* function(const(char)* string_, ptrdiff_t length) c_gtk_builder_new_from_string;
5673 	void function(GtkBuilder* builder, const(char)* callbackName, GCallback callbackSymbol) c_gtk_builder_add_callback_symbol;
5674 	void function(GtkBuilder* builder, const(char)* firstCallbackName, GCallback firstCallbackSymbol, ... ) c_gtk_builder_add_callback_symbols;
5675 	uint function(GtkBuilder* builder, const(char)* filename, GError** err) c_gtk_builder_add_from_file;
5676 	uint function(GtkBuilder* builder, const(char)* resourcePath, GError** err) c_gtk_builder_add_from_resource;
5677 	uint function(GtkBuilder* builder, const(char)* buffer, size_t length, GError** err) c_gtk_builder_add_from_string;
5678 	uint function(GtkBuilder* builder, const(char)* filename, char** objectIds, GError** err) c_gtk_builder_add_objects_from_file;
5679 	uint function(GtkBuilder* builder, const(char)* resourcePath, char** objectIds, GError** err) c_gtk_builder_add_objects_from_resource;
5680 	uint function(GtkBuilder* builder, const(char)* buffer, size_t length, char** objectIds, GError** err) c_gtk_builder_add_objects_from_string;
5681 	void function(GtkBuilder* builder, void* userData) c_gtk_builder_connect_signals;
5682 	void function(GtkBuilder* builder, GtkBuilderConnectFunc func, void* userData) c_gtk_builder_connect_signals_full;
5683 	void function(GtkBuilder* builder, const(char)* name, GObject* object) c_gtk_builder_expose_object;
5684 	uint function(GtkBuilder* builder, GtkWidget* widget, GType templateType, const(char)* buffer, size_t length, GError** err) c_gtk_builder_extend_with_template;
5685 	GtkApplication* function(GtkBuilder* builder) c_gtk_builder_get_application;
5686 	GObject* function(GtkBuilder* builder, const(char)* name) c_gtk_builder_get_object;
5687 	GSList* function(GtkBuilder* builder) c_gtk_builder_get_objects;
5688 	const(char)* function(GtkBuilder* builder) c_gtk_builder_get_translation_domain;
5689 	GType function(GtkBuilder* builder, const(char)* typeName) c_gtk_builder_get_type_from_name;
5690 	GCallback function(GtkBuilder* builder, const(char)* callbackName) c_gtk_builder_lookup_callback_symbol;
5691 	void function(GtkBuilder* builder, GtkApplication* application) c_gtk_builder_set_application;
5692 	void function(GtkBuilder* builder, const(char)* domain) c_gtk_builder_set_translation_domain;
5693 	int function(GtkBuilder* builder, GParamSpec* pspec, const(char)* string_, GValue* value, GError** err) c_gtk_builder_value_from_string;
5694 	int function(GtkBuilder* builder, GType type, const(char)* string_, GValue* value, GError** err) c_gtk_builder_value_from_string_type;
5695 
5696 	// gtk.Button
5697 
5698 	GType function() c_gtk_button_get_type;
5699 	GtkWidget* function() c_gtk_button_new;
5700 	GtkWidget* function(const(char)* iconName, GtkIconSize size) c_gtk_button_new_from_icon_name;
5701 	GtkWidget* function(const(char)* stockId) c_gtk_button_new_from_stock;
5702 	GtkWidget* function(const(char)* label) c_gtk_button_new_with_label;
5703 	GtkWidget* function(const(char)* label) c_gtk_button_new_with_mnemonic;
5704 	void function(GtkButton* button) c_gtk_button_clicked;
5705 	void function(GtkButton* button) c_gtk_button_enter;
5706 	void function(GtkButton* button, float* xalign, float* yalign) c_gtk_button_get_alignment;
5707 	int function(GtkButton* button) c_gtk_button_get_always_show_image;
5708 	GdkWindow* function(GtkButton* button) c_gtk_button_get_event_window;
5709 	int function(GtkButton* button) c_gtk_button_get_focus_on_click;
5710 	GtkWidget* function(GtkButton* button) c_gtk_button_get_image;
5711 	GtkPositionType function(GtkButton* button) c_gtk_button_get_image_position;
5712 	const(char)* function(GtkButton* button) c_gtk_button_get_label;
5713 	GtkReliefStyle function(GtkButton* button) c_gtk_button_get_relief;
5714 	int function(GtkButton* button) c_gtk_button_get_use_stock;
5715 	int function(GtkButton* button) c_gtk_button_get_use_underline;
5716 	void function(GtkButton* button) c_gtk_button_leave;
5717 	void function(GtkButton* button) c_gtk_button_pressed;
5718 	void function(GtkButton* button) c_gtk_button_released;
5719 	void function(GtkButton* button, float xalign, float yalign) c_gtk_button_set_alignment;
5720 	void function(GtkButton* button, int alwaysShow) c_gtk_button_set_always_show_image;
5721 	void function(GtkButton* button, int focusOnClick) c_gtk_button_set_focus_on_click;
5722 	void function(GtkButton* button, GtkWidget* image) c_gtk_button_set_image;
5723 	void function(GtkButton* button, GtkPositionType position) c_gtk_button_set_image_position;
5724 	void function(GtkButton* button, const(char)* label) c_gtk_button_set_label;
5725 	void function(GtkButton* button, GtkReliefStyle relief) c_gtk_button_set_relief;
5726 	void function(GtkButton* button, int useStock) c_gtk_button_set_use_stock;
5727 	void function(GtkButton* button, int useUnderline) c_gtk_button_set_use_underline;
5728 
5729 	// gtk.ButtonAccessible
5730 
5731 	GType function() c_gtk_button_accessible_get_type;
5732 
5733 	// gtk.ButtonBox
5734 
5735 	GType function() c_gtk_button_box_get_type;
5736 	GtkWidget* function(GtkOrientation orientation) c_gtk_button_box_new;
5737 	int function(GtkButtonBox* widget, GtkWidget* child) c_gtk_button_box_get_child_non_homogeneous;
5738 	int function(GtkButtonBox* widget, GtkWidget* child) c_gtk_button_box_get_child_secondary;
5739 	GtkButtonBoxStyle function(GtkButtonBox* widget) c_gtk_button_box_get_layout;
5740 	void function(GtkButtonBox* widget, GtkWidget* child, int nonHomogeneous) c_gtk_button_box_set_child_non_homogeneous;
5741 	void function(GtkButtonBox* widget, GtkWidget* child, int isSecondary) c_gtk_button_box_set_child_secondary;
5742 	void function(GtkButtonBox* widget, GtkButtonBoxStyle layoutStyle) c_gtk_button_box_set_layout;
5743 
5744 	// gtk.Calendar
5745 
5746 	GType function() c_gtk_calendar_get_type;
5747 	GtkWidget* function() c_gtk_calendar_new;
5748 	void function(GtkCalendar* calendar) c_gtk_calendar_clear_marks;
5749 	void function(GtkCalendar* calendar, uint* year, uint* month, uint* day) c_gtk_calendar_get_date;
5750 	int function(GtkCalendar* calendar, uint day) c_gtk_calendar_get_day_is_marked;
5751 	int function(GtkCalendar* calendar) c_gtk_calendar_get_detail_height_rows;
5752 	int function(GtkCalendar* calendar) c_gtk_calendar_get_detail_width_chars;
5753 	GtkCalendarDisplayOptions function(GtkCalendar* calendar) c_gtk_calendar_get_display_options;
5754 	void function(GtkCalendar* calendar, uint day) c_gtk_calendar_mark_day;
5755 	void function(GtkCalendar* calendar, uint day) c_gtk_calendar_select_day;
5756 	void function(GtkCalendar* calendar, uint month, uint year) c_gtk_calendar_select_month;
5757 	void function(GtkCalendar* calendar, GtkCalendarDetailFunc func, void* data, GDestroyNotify destroy) c_gtk_calendar_set_detail_func;
5758 	void function(GtkCalendar* calendar, int rows) c_gtk_calendar_set_detail_height_rows;
5759 	void function(GtkCalendar* calendar, int chars) c_gtk_calendar_set_detail_width_chars;
5760 	void function(GtkCalendar* calendar, GtkCalendarDisplayOptions flags) c_gtk_calendar_set_display_options;
5761 	void function(GtkCalendar* calendar, uint day) c_gtk_calendar_unmark_day;
5762 
5763 	// gtk.CellAccessible
5764 
5765 	GType function() c_gtk_cell_accessible_get_type;
5766 
5767 	// gtk.CellAccessibleParent
5768 
5769 	GType function() c_gtk_cell_accessible_parent_get_type;
5770 	void function(GtkCellAccessibleParent* parent, GtkCellAccessible* cell) c_gtk_cell_accessible_parent_activate;
5771 	void function(GtkCellAccessibleParent* parent, GtkCellAccessible* cell) c_gtk_cell_accessible_parent_edit;
5772 	void function(GtkCellAccessibleParent* parent, GtkCellAccessible* cell) c_gtk_cell_accessible_parent_expand_collapse;
5773 	void function(GtkCellAccessibleParent* parent, GtkCellAccessible* cell, GdkRectangle* cellRect) c_gtk_cell_accessible_parent_get_cell_area;
5774 	void function(GtkCellAccessibleParent* parent, GtkCellAccessible* cell, int* x, int* y, int* width, int* height, AtkCoordType coordType) c_gtk_cell_accessible_parent_get_cell_extents;
5775 	void function(GtkCellAccessibleParent* parent, GtkCellAccessible* cell, int* row, int* column) c_gtk_cell_accessible_parent_get_cell_position;
5776 	int function(GtkCellAccessibleParent* parent, GtkCellAccessible* cell) c_gtk_cell_accessible_parent_get_child_index;
5777 	GPtrArray* function(GtkCellAccessibleParent* parent, GtkCellAccessible* cell) c_gtk_cell_accessible_parent_get_column_header_cells;
5778 	GtkCellRendererState function(GtkCellAccessibleParent* parent, GtkCellAccessible* cell) c_gtk_cell_accessible_parent_get_renderer_state;
5779 	GPtrArray* function(GtkCellAccessibleParent* parent, GtkCellAccessible* cell) c_gtk_cell_accessible_parent_get_row_header_cells;
5780 	int function(GtkCellAccessibleParent* parent, GtkCellAccessible* cell) c_gtk_cell_accessible_parent_grab_focus;
5781 	void function(GtkCellAccessibleParent* parent, GtkCellAccessible* cell, AtkRelationSet* relationset) c_gtk_cell_accessible_parent_update_relationset;
5782 
5783 	// gtk.CellArea
5784 
5785 	GType function() c_gtk_cell_area_get_type;
5786 	int function(GtkCellArea* area, GtkCellAreaContext* context, GtkWidget* widget, GdkRectangle* cellArea, GtkCellRendererState flags, int editOnly) c_gtk_cell_area_activate;
5787 	int function(GtkCellArea* area, GtkWidget* widget, GtkCellRenderer* renderer, GdkEvent* event, GdkRectangle* cellArea, GtkCellRendererState flags) c_gtk_cell_area_activate_cell;
5788 	void function(GtkCellArea* area, GtkCellRenderer* renderer) c_gtk_cell_area_add;
5789 	void function(GtkCellArea* area, GtkCellRenderer* renderer, GtkCellRenderer* sibling) c_gtk_cell_area_add_focus_sibling;
5790 	void function(GtkCellArea* area, GtkCellRenderer* renderer, const(char)* firstPropName, ... ) c_gtk_cell_area_add_with_properties;
5791 	void function(GtkCellArea* area, GtkTreeModel* treeModel, GtkTreeIter* iter, int isExpander, int isExpanded) c_gtk_cell_area_apply_attributes;
5792 	void function(GtkCellArea* area, GtkCellRenderer* renderer, const(char)* attribute, int column) c_gtk_cell_area_attribute_connect;
5793 	void function(GtkCellArea* area, GtkCellRenderer* renderer, const(char)* attribute) c_gtk_cell_area_attribute_disconnect;
5794 	int function(GtkCellArea* area, GtkCellRenderer* renderer, const(char)* attribute) c_gtk_cell_area_attribute_get_column;
5795 	void function(GtkCellArea* area, GtkCellRenderer* renderer, const(char)* firstPropName, ... ) c_gtk_cell_area_cell_get;
5796 	void function(GtkCellArea* area, GtkCellRenderer* renderer, const(char)* propertyName, GValue* value) c_gtk_cell_area_cell_get_property;
5797 	void function(GtkCellArea* area, GtkCellRenderer* renderer, const(char)* firstPropertyName, void* varArgs) c_gtk_cell_area_cell_get_valist;
5798 	void function(GtkCellArea* area, GtkCellRenderer* renderer, const(char)* firstPropName, ... ) c_gtk_cell_area_cell_set;
5799 	void function(GtkCellArea* area, GtkCellRenderer* renderer, const(char)* propertyName, GValue* value) c_gtk_cell_area_cell_set_property;
5800 	void function(GtkCellArea* area, GtkCellRenderer* renderer, const(char)* firstPropertyName, void* varArgs) c_gtk_cell_area_cell_set_valist;
5801 	GtkCellAreaContext* function(GtkCellArea* area, GtkCellAreaContext* context) c_gtk_cell_area_copy_context;
5802 	GtkCellAreaContext* function(GtkCellArea* area) c_gtk_cell_area_create_context;
5803 	int function(GtkCellArea* area, GtkCellAreaContext* context, GtkWidget* widget, GdkEvent* event, GdkRectangle* cellArea, GtkCellRendererState flags) c_gtk_cell_area_event;
5804 	int function(GtkCellArea* area, GtkDirectionType direction) c_gtk_cell_area_focus;
5805 	void function(GtkCellArea* area, GtkCellCallback callback, void* callbackData) c_gtk_cell_area_foreach;
5806 	void function(GtkCellArea* area, GtkCellAreaContext* context, GtkWidget* widget, GdkRectangle* cellArea, GdkRectangle* backgroundArea, GtkCellAllocCallback callback, void* callbackData) c_gtk_cell_area_foreach_alloc;
5807 	void function(GtkCellArea* area, GtkCellAreaContext* context, GtkWidget* widget, GtkCellRenderer* renderer, GdkRectangle* cellArea, GdkRectangle* allocation) c_gtk_cell_area_get_cell_allocation;
5808 	GtkCellRenderer* function(GtkCellArea* area, GtkCellAreaContext* context, GtkWidget* widget, GdkRectangle* cellArea, int x, int y, GdkRectangle* allocArea) c_gtk_cell_area_get_cell_at_position;
5809 	const(char)* function(GtkCellArea* area) c_gtk_cell_area_get_current_path_string;
5810 	GtkCellEditable* function(GtkCellArea* area) c_gtk_cell_area_get_edit_widget;
5811 	GtkCellRenderer* function(GtkCellArea* area) c_gtk_cell_area_get_edited_cell;
5812 	GtkCellRenderer* function(GtkCellArea* area) c_gtk_cell_area_get_focus_cell;
5813 	GtkCellRenderer* function(GtkCellArea* area, GtkCellRenderer* renderer) c_gtk_cell_area_get_focus_from_sibling;
5814 	GList* function(GtkCellArea* area, GtkCellRenderer* renderer) c_gtk_cell_area_get_focus_siblings;
5815 	void function(GtkCellArea* area, GtkCellAreaContext* context, GtkWidget* widget, int* minimumHeight, int* naturalHeight) c_gtk_cell_area_get_preferred_height;
5816 	void function(GtkCellArea* area, GtkCellAreaContext* context, GtkWidget* widget, int width, int* minimumHeight, int* naturalHeight) c_gtk_cell_area_get_preferred_height_for_width;
5817 	void function(GtkCellArea* area, GtkCellAreaContext* context, GtkWidget* widget, int* minimumWidth, int* naturalWidth) c_gtk_cell_area_get_preferred_width;
5818 	void function(GtkCellArea* area, GtkCellAreaContext* context, GtkWidget* widget, int height, int* minimumWidth, int* naturalWidth) c_gtk_cell_area_get_preferred_width_for_height;
5819 	GtkSizeRequestMode function(GtkCellArea* area) c_gtk_cell_area_get_request_mode;
5820 	int function(GtkCellArea* area, GtkCellRenderer* renderer) c_gtk_cell_area_has_renderer;
5821 	void function(GtkCellArea* area, GtkWidget* widget, GdkRectangle* cellArea, GdkRectangle* innerArea) c_gtk_cell_area_inner_cell_area;
5822 	int function(GtkCellArea* area) c_gtk_cell_area_is_activatable;
5823 	int function(GtkCellArea* area, GtkCellRenderer* renderer, GtkCellRenderer* sibling) c_gtk_cell_area_is_focus_sibling;
5824 	void function(GtkCellArea* area, GtkCellRenderer* renderer) c_gtk_cell_area_remove;
5825 	void function(GtkCellArea* area, GtkCellRenderer* renderer, GtkCellRenderer* sibling) c_gtk_cell_area_remove_focus_sibling;
5826 	void function(GtkCellArea* area, GtkCellAreaContext* context, GtkWidget* widget, cairo_t* cr, GdkRectangle* backgroundArea, GdkRectangle* cellArea, GtkCellRendererState flags, int paintFocus) c_gtk_cell_area_render;
5827 	void function(GtkCellArea* area, GtkCellRenderer* renderer, GtkOrientation orientation, GtkWidget* widget, int forSize, int* minimumSize, int* naturalSize) c_gtk_cell_area_request_renderer;
5828 	void function(GtkCellArea* area, GtkCellRenderer* renderer) c_gtk_cell_area_set_focus_cell;
5829 	void function(GtkCellArea* area, int canceled) c_gtk_cell_area_stop_editing;
5830 
5831 	// gtk.CellAreaBox
5832 
5833 	GType function() c_gtk_cell_area_box_get_type;
5834 	GtkCellArea* function() c_gtk_cell_area_box_new;
5835 	int function(GtkCellAreaBox* box) c_gtk_cell_area_box_get_spacing;
5836 	void function(GtkCellAreaBox* box, GtkCellRenderer* renderer, int expand, int align_, int fixed) c_gtk_cell_area_box_pack_end;
5837 	void function(GtkCellAreaBox* box, GtkCellRenderer* renderer, int expand, int align_, int fixed) c_gtk_cell_area_box_pack_start;
5838 	void function(GtkCellAreaBox* box, int spacing) c_gtk_cell_area_box_set_spacing;
5839 
5840 	// gtk.CellAreaClass
5841 
5842 	GParamSpec* function(GtkCellAreaClass* aclass, const(char)* propertyName) c_gtk_cell_area_class_find_cell_property;
5843 	void function(GtkCellAreaClass* aclass, uint propertyId, GParamSpec* pspec) c_gtk_cell_area_class_install_cell_property;
5844 	GParamSpec** function(GtkCellAreaClass* aclass, uint* nProperties) c_gtk_cell_area_class_list_cell_properties;
5845 
5846 	// gtk.CellAreaContext
5847 
5848 	GType function() c_gtk_cell_area_context_get_type;
5849 	void function(GtkCellAreaContext* context, int width, int height) c_gtk_cell_area_context_allocate;
5850 	void function(GtkCellAreaContext* context, int* width, int* height) c_gtk_cell_area_context_get_allocation;
5851 	GtkCellArea* function(GtkCellAreaContext* context) c_gtk_cell_area_context_get_area;
5852 	void function(GtkCellAreaContext* context, int* minimumHeight, int* naturalHeight) c_gtk_cell_area_context_get_preferred_height;
5853 	void function(GtkCellAreaContext* context, int width, int* minimumHeight, int* naturalHeight) c_gtk_cell_area_context_get_preferred_height_for_width;
5854 	void function(GtkCellAreaContext* context, int* minimumWidth, int* naturalWidth) c_gtk_cell_area_context_get_preferred_width;
5855 	void function(GtkCellAreaContext* context, int height, int* minimumWidth, int* naturalWidth) c_gtk_cell_area_context_get_preferred_width_for_height;
5856 	void function(GtkCellAreaContext* context, int minimumHeight, int naturalHeight) c_gtk_cell_area_context_push_preferred_height;
5857 	void function(GtkCellAreaContext* context, int minimumWidth, int naturalWidth) c_gtk_cell_area_context_push_preferred_width;
5858 	void function(GtkCellAreaContext* context) c_gtk_cell_area_context_reset;
5859 
5860 	// gtk.CellEditable
5861 
5862 	GType function() c_gtk_cell_editable_get_type;
5863 	void function(GtkCellEditable* cellEditable) c_gtk_cell_editable_editing_done;
5864 	void function(GtkCellEditable* cellEditable) c_gtk_cell_editable_remove_widget;
5865 	void function(GtkCellEditable* cellEditable, GdkEvent* event) c_gtk_cell_editable_start_editing;
5866 
5867 	// gtk.CellLayout
5868 
5869 	GType function() c_gtk_cell_layout_get_type;
5870 	void function(GtkCellLayout* cellLayout, GtkCellRenderer* cell, const(char)* attribute, int column) c_gtk_cell_layout_add_attribute;
5871 	void function(GtkCellLayout* cellLayout) c_gtk_cell_layout_clear;
5872 	void function(GtkCellLayout* cellLayout, GtkCellRenderer* cell) c_gtk_cell_layout_clear_attributes;
5873 	GtkCellArea* function(GtkCellLayout* cellLayout) c_gtk_cell_layout_get_area;
5874 	GList* function(GtkCellLayout* cellLayout) c_gtk_cell_layout_get_cells;
5875 	void function(GtkCellLayout* cellLayout, GtkCellRenderer* cell, int expand) c_gtk_cell_layout_pack_end;
5876 	void function(GtkCellLayout* cellLayout, GtkCellRenderer* cell, int expand) c_gtk_cell_layout_pack_start;
5877 	void function(GtkCellLayout* cellLayout, GtkCellRenderer* cell, int position) c_gtk_cell_layout_reorder;
5878 	void function(GtkCellLayout* cellLayout, GtkCellRenderer* cell, ... ) c_gtk_cell_layout_set_attributes;
5879 	void function(GtkCellLayout* cellLayout, GtkCellRenderer* cell, GtkCellLayoutDataFunc func, void* funcData, GDestroyNotify destroy) c_gtk_cell_layout_set_cell_data_func;
5880 
5881 	// gtk.CellRenderer
5882 
5883 	GType function() c_gtk_cell_renderer_get_type;
5884 	int function(GtkCellRenderer* cell, GdkEvent* event, GtkWidget* widget, const(char)* path, GdkRectangle* backgroundArea, GdkRectangle* cellArea, GtkCellRendererState flags) c_gtk_cell_renderer_activate;
5885 	void function(GtkCellRenderer* cell, GtkWidget* widget, GtkCellRendererState flags, GdkRectangle* cellArea, GdkRectangle* alignedArea) c_gtk_cell_renderer_get_aligned_area;
5886 	void function(GtkCellRenderer* cell, float* xalign, float* yalign) c_gtk_cell_renderer_get_alignment;
5887 	void function(GtkCellRenderer* cell, int* width, int* height) c_gtk_cell_renderer_get_fixed_size;
5888 	void function(GtkCellRenderer* cell, int* xpad, int* ypad) c_gtk_cell_renderer_get_padding;
5889 	void function(GtkCellRenderer* cell, GtkWidget* widget, int* minimumSize, int* naturalSize) c_gtk_cell_renderer_get_preferred_height;
5890 	void function(GtkCellRenderer* cell, GtkWidget* widget, int width, int* minimumHeight, int* naturalHeight) c_gtk_cell_renderer_get_preferred_height_for_width;
5891 	void function(GtkCellRenderer* cell, GtkWidget* widget, GtkRequisition* minimumSize, GtkRequisition* naturalSize) c_gtk_cell_renderer_get_preferred_size;
5892 	void function(GtkCellRenderer* cell, GtkWidget* widget, int* minimumSize, int* naturalSize) c_gtk_cell_renderer_get_preferred_width;
5893 	void function(GtkCellRenderer* cell, GtkWidget* widget, int height, int* minimumWidth, int* naturalWidth) c_gtk_cell_renderer_get_preferred_width_for_height;
5894 	GtkSizeRequestMode function(GtkCellRenderer* cell) c_gtk_cell_renderer_get_request_mode;
5895 	int function(GtkCellRenderer* cell) c_gtk_cell_renderer_get_sensitive;
5896 	void function(GtkCellRenderer* cell, GtkWidget* widget, GdkRectangle* cellArea, int* xOffset, int* yOffset, int* width, int* height) c_gtk_cell_renderer_get_size;
5897 	GtkStateFlags function(GtkCellRenderer* cell, GtkWidget* widget, GtkCellRendererState cellState) c_gtk_cell_renderer_get_state;
5898 	int function(GtkCellRenderer* cell) c_gtk_cell_renderer_get_visible;
5899 	int function(GtkCellRenderer* cell) c_gtk_cell_renderer_is_activatable;
5900 	void function(GtkCellRenderer* cell, cairo_t* cr, GtkWidget* widget, GdkRectangle* backgroundArea, GdkRectangle* cellArea, GtkCellRendererState flags) c_gtk_cell_renderer_render;
5901 	void function(GtkCellRenderer* cell, float xalign, float yalign) c_gtk_cell_renderer_set_alignment;
5902 	void function(GtkCellRenderer* cell, int width, int height) c_gtk_cell_renderer_set_fixed_size;
5903 	void function(GtkCellRenderer* cell, int xpad, int ypad) c_gtk_cell_renderer_set_padding;
5904 	void function(GtkCellRenderer* cell, int sensitive) c_gtk_cell_renderer_set_sensitive;
5905 	void function(GtkCellRenderer* cell, int visible) c_gtk_cell_renderer_set_visible;
5906 	GtkCellEditable* function(GtkCellRenderer* cell, GdkEvent* event, GtkWidget* widget, const(char)* path, GdkRectangle* backgroundArea, GdkRectangle* cellArea, GtkCellRendererState flags) c_gtk_cell_renderer_start_editing;
5907 	void function(GtkCellRenderer* cell, int canceled) c_gtk_cell_renderer_stop_editing;
5908 
5909 	// gtk.CellRendererAccel
5910 
5911 	GType function() c_gtk_cell_renderer_accel_get_type;
5912 	GtkCellRenderer* function() c_gtk_cell_renderer_accel_new;
5913 
5914 	// gtk.CellRendererClass
5915 
5916 	void function(GtkCellRendererClass* rendererClass, GType type) c_gtk_cell_renderer_class_set_accessible_type;
5917 
5918 	// gtk.CellRendererCombo
5919 
5920 	GType function() c_gtk_cell_renderer_combo_get_type;
5921 	GtkCellRenderer* function() c_gtk_cell_renderer_combo_new;
5922 
5923 	// gtk.CellRendererPixbuf
5924 
5925 	GType function() c_gtk_cell_renderer_pixbuf_get_type;
5926 	GtkCellRenderer* function() c_gtk_cell_renderer_pixbuf_new;
5927 
5928 	// gtk.CellRendererProgress
5929 
5930 	GType function() c_gtk_cell_renderer_progress_get_type;
5931 	GtkCellRenderer* function() c_gtk_cell_renderer_progress_new;
5932 
5933 	// gtk.CellRendererSpin
5934 
5935 	GType function() c_gtk_cell_renderer_spin_get_type;
5936 	GtkCellRenderer* function() c_gtk_cell_renderer_spin_new;
5937 
5938 	// gtk.CellRendererSpinner
5939 
5940 	GType function() c_gtk_cell_renderer_spinner_get_type;
5941 	GtkCellRenderer* function() c_gtk_cell_renderer_spinner_new;
5942 
5943 	// gtk.CellRendererText
5944 
5945 	GType function() c_gtk_cell_renderer_text_get_type;
5946 	GtkCellRenderer* function() c_gtk_cell_renderer_text_new;
5947 	void function(GtkCellRendererText* renderer, int numberOfRows) c_gtk_cell_renderer_text_set_fixed_height_from_font;
5948 
5949 	// gtk.CellRendererToggle
5950 
5951 	GType function() c_gtk_cell_renderer_toggle_get_type;
5952 	GtkCellRenderer* function() c_gtk_cell_renderer_toggle_new;
5953 	int function(GtkCellRendererToggle* toggle) c_gtk_cell_renderer_toggle_get_activatable;
5954 	int function(GtkCellRendererToggle* toggle) c_gtk_cell_renderer_toggle_get_active;
5955 	int function(GtkCellRendererToggle* toggle) c_gtk_cell_renderer_toggle_get_radio;
5956 	void function(GtkCellRendererToggle* toggle, int setting) c_gtk_cell_renderer_toggle_set_activatable;
5957 	void function(GtkCellRendererToggle* toggle, int setting) c_gtk_cell_renderer_toggle_set_active;
5958 	void function(GtkCellRendererToggle* toggle, int radio) c_gtk_cell_renderer_toggle_set_radio;
5959 
5960 	// gtk.CellView
5961 
5962 	GType function() c_gtk_cell_view_get_type;
5963 	GtkWidget* function() c_gtk_cell_view_new;
5964 	GtkWidget* function(GtkCellArea* area, GtkCellAreaContext* context) c_gtk_cell_view_new_with_context;
5965 	GtkWidget* function(const(char)* markup) c_gtk_cell_view_new_with_markup;
5966 	GtkWidget* function(GdkPixbuf* pixbuf) c_gtk_cell_view_new_with_pixbuf;
5967 	GtkWidget* function(const(char)* text) c_gtk_cell_view_new_with_text;
5968 	GtkTreePath* function(GtkCellView* cellView) c_gtk_cell_view_get_displayed_row;
5969 	int function(GtkCellView* cellView) c_gtk_cell_view_get_draw_sensitive;
5970 	int function(GtkCellView* cellView) c_gtk_cell_view_get_fit_model;
5971 	GtkTreeModel* function(GtkCellView* cellView) c_gtk_cell_view_get_model;
5972 	int function(GtkCellView* cellView, GtkTreePath* path, GtkRequisition* requisition) c_gtk_cell_view_get_size_of_row;
5973 	void function(GtkCellView* cellView, GdkColor* color) c_gtk_cell_view_set_background_color;
5974 	void function(GtkCellView* cellView, GdkRGBA* rgba) c_gtk_cell_view_set_background_rgba;
5975 	void function(GtkCellView* cellView, GtkTreePath* path) c_gtk_cell_view_set_displayed_row;
5976 	void function(GtkCellView* cellView, int drawSensitive) c_gtk_cell_view_set_draw_sensitive;
5977 	void function(GtkCellView* cellView, int fitModel) c_gtk_cell_view_set_fit_model;
5978 	void function(GtkCellView* cellView, GtkTreeModel* model) c_gtk_cell_view_set_model;
5979 
5980 	// gtk.CheckButton
5981 
5982 	GType function() c_gtk_check_button_get_type;
5983 	GtkWidget* function() c_gtk_check_button_new;
5984 	GtkWidget* function(const(char)* label) c_gtk_check_button_new_with_label;
5985 	GtkWidget* function(const(char)* label) c_gtk_check_button_new_with_mnemonic;
5986 
5987 	// gtk.CheckMenuItem
5988 
5989 	GType function() c_gtk_check_menu_item_get_type;
5990 	GtkWidget* function() c_gtk_check_menu_item_new;
5991 	GtkWidget* function(const(char)* label) c_gtk_check_menu_item_new_with_label;
5992 	GtkWidget* function(const(char)* label) c_gtk_check_menu_item_new_with_mnemonic;
5993 	int function(GtkCheckMenuItem* checkMenuItem) c_gtk_check_menu_item_get_active;
5994 	int function(GtkCheckMenuItem* checkMenuItem) c_gtk_check_menu_item_get_draw_as_radio;
5995 	int function(GtkCheckMenuItem* checkMenuItem) c_gtk_check_menu_item_get_inconsistent;
5996 	void function(GtkCheckMenuItem* checkMenuItem, int isActive) c_gtk_check_menu_item_set_active;
5997 	void function(GtkCheckMenuItem* checkMenuItem, int drawAsRadio) c_gtk_check_menu_item_set_draw_as_radio;
5998 	void function(GtkCheckMenuItem* checkMenuItem, int setting) c_gtk_check_menu_item_set_inconsistent;
5999 	void function(GtkCheckMenuItem* checkMenuItem) c_gtk_check_menu_item_toggled;
6000 
6001 	// gtk.CheckMenuItemAccessible
6002 
6003 	GType function() c_gtk_check_menu_item_accessible_get_type;
6004 
6005 	// gtk.Clipboard
6006 
6007 	GType function() c_gtk_clipboard_get_type;
6008 	GtkClipboard* function(GdkAtom selection) c_gtk_clipboard_get;
6009 	GtkClipboard* function(GdkDisplay* display) c_gtk_clipboard_get_default;
6010 	GtkClipboard* function(GdkDisplay* display, GdkAtom selection) c_gtk_clipboard_get_for_display;
6011 	void function(GtkClipboard* clipboard) c_gtk_clipboard_clear;
6012 	GdkDisplay* function(GtkClipboard* clipboard) c_gtk_clipboard_get_display;
6013 	GObject* function(GtkClipboard* clipboard) c_gtk_clipboard_get_owner;
6014 	GdkAtom function(GtkClipboard* clipboard) c_gtk_clipboard_get_selection;
6015 	void function(GtkClipboard* clipboard, GdkAtom target, GtkClipboardReceivedFunc callback, void* userData) c_gtk_clipboard_request_contents;
6016 	void function(GtkClipboard* clipboard, GtkClipboardImageReceivedFunc callback, void* userData) c_gtk_clipboard_request_image;
6017 	void function(GtkClipboard* clipboard, GtkTextBuffer* buffer, GtkClipboardRichTextReceivedFunc callback, void* userData) c_gtk_clipboard_request_rich_text;
6018 	void function(GtkClipboard* clipboard, GtkClipboardTargetsReceivedFunc callback, void* userData) c_gtk_clipboard_request_targets;
6019 	void function(GtkClipboard* clipboard, GtkClipboardTextReceivedFunc callback, void* userData) c_gtk_clipboard_request_text;
6020 	void function(GtkClipboard* clipboard, GtkClipboardURIReceivedFunc callback, void* userData) c_gtk_clipboard_request_uris;
6021 	void function(GtkClipboard* clipboard, GtkTargetEntry* targets, int nTargets) c_gtk_clipboard_set_can_store;
6022 	void function(GtkClipboard* clipboard, GdkPixbuf* pixbuf) c_gtk_clipboard_set_image;
6023 	void function(GtkClipboard* clipboard, const(char)* text, int len) c_gtk_clipboard_set_text;
6024 	int function(GtkClipboard* clipboard, GtkTargetEntry* targets, uint nTargets, GtkClipboardGetFunc getFunc, GtkClipboardClearFunc clearFunc, void* userData) c_gtk_clipboard_set_with_data;
6025 	int function(GtkClipboard* clipboard, GtkTargetEntry* targets, uint nTargets, GtkClipboardGetFunc getFunc, GtkClipboardClearFunc clearFunc, GObject* owner) c_gtk_clipboard_set_with_owner;
6026 	void function(GtkClipboard* clipboard) c_gtk_clipboard_store;
6027 	GtkSelectionData* function(GtkClipboard* clipboard, GdkAtom target) c_gtk_clipboard_wait_for_contents;
6028 	GdkPixbuf* function(GtkClipboard* clipboard) c_gtk_clipboard_wait_for_image;
6029 	ubyte* function(GtkClipboard* clipboard, GtkTextBuffer* buffer, GdkAtom* format, size_t* length) c_gtk_clipboard_wait_for_rich_text;
6030 	int function(GtkClipboard* clipboard, GdkAtom** targets, int* nTargets) c_gtk_clipboard_wait_for_targets;
6031 	char* function(GtkClipboard* clipboard) c_gtk_clipboard_wait_for_text;
6032 	char** function(GtkClipboard* clipboard) c_gtk_clipboard_wait_for_uris;
6033 	int function(GtkClipboard* clipboard) c_gtk_clipboard_wait_is_image_available;
6034 	int function(GtkClipboard* clipboard, GtkTextBuffer* buffer) c_gtk_clipboard_wait_is_rich_text_available;
6035 	int function(GtkClipboard* clipboard, GdkAtom target) c_gtk_clipboard_wait_is_target_available;
6036 	int function(GtkClipboard* clipboard) c_gtk_clipboard_wait_is_text_available;
6037 	int function(GtkClipboard* clipboard) c_gtk_clipboard_wait_is_uris_available;
6038 
6039 	// gtk.ColorButton
6040 
6041 	GType function() c_gtk_color_button_get_type;
6042 	GtkWidget* function() c_gtk_color_button_new;
6043 	GtkWidget* function(GdkColor* color) c_gtk_color_button_new_with_color;
6044 	GtkWidget* function(GdkRGBA* rgba) c_gtk_color_button_new_with_rgba;
6045 	ushort function(GtkColorButton* button) c_gtk_color_button_get_alpha;
6046 	void function(GtkColorButton* button, GdkColor* color) c_gtk_color_button_get_color;
6047 	void function(GtkColorButton* button, GdkRGBA* rgba) c_gtk_color_button_get_rgba;
6048 	const(char)* function(GtkColorButton* button) c_gtk_color_button_get_title;
6049 	int function(GtkColorButton* button) c_gtk_color_button_get_use_alpha;
6050 	void function(GtkColorButton* button, ushort alpha) c_gtk_color_button_set_alpha;
6051 	void function(GtkColorButton* button, GdkColor* color) c_gtk_color_button_set_color;
6052 	void function(GtkColorButton* button, GdkRGBA* rgba) c_gtk_color_button_set_rgba;
6053 	void function(GtkColorButton* button, const(char)* title) c_gtk_color_button_set_title;
6054 	void function(GtkColorButton* button, int useAlpha) c_gtk_color_button_set_use_alpha;
6055 
6056 	// gtk.ColorChooser
6057 
6058 	GType function() c_gtk_color_chooser_get_type;
6059 	void function(GtkColorChooser* chooser, GtkOrientation orientation, int colorsPerLine, int nColors, GdkRGBA* colors) c_gtk_color_chooser_add_palette;
6060 	void function(GtkColorChooser* chooser, GdkRGBA* color) c_gtk_color_chooser_get_rgba;
6061 	int function(GtkColorChooser* chooser) c_gtk_color_chooser_get_use_alpha;
6062 	void function(GtkColorChooser* chooser, GdkRGBA* color) c_gtk_color_chooser_set_rgba;
6063 	void function(GtkColorChooser* chooser, int useAlpha) c_gtk_color_chooser_set_use_alpha;
6064 
6065 	// gtk.ColorChooserDialog
6066 
6067 	GType function() c_gtk_color_chooser_dialog_get_type;
6068 	GtkWidget* function(const(char)* title, GtkWindow* parent) c_gtk_color_chooser_dialog_new;
6069 
6070 	// gtk.ColorChooserWidget
6071 
6072 	GType function() c_gtk_color_chooser_widget_get_type;
6073 	GtkWidget* function() c_gtk_color_chooser_widget_new;
6074 
6075 	// gtk.ColorSelection
6076 
6077 	GType function() c_gtk_color_selection_get_type;
6078 	GtkWidget* function() c_gtk_color_selection_new;
6079 	int function(const(char)* str, GdkColor** colors, int* nColors) c_gtk_color_selection_palette_from_string;
6080 	char* function(GdkColor* colors, int nColors) c_gtk_color_selection_palette_to_string;
6081 	GtkColorSelectionChangePaletteWithScreenFunc function(GtkColorSelectionChangePaletteWithScreenFunc func) c_gtk_color_selection_set_change_palette_with_screen_hook;
6082 	ushort function(GtkColorSelection* colorsel) c_gtk_color_selection_get_current_alpha;
6083 	void function(GtkColorSelection* colorsel, GdkColor* color) c_gtk_color_selection_get_current_color;
6084 	void function(GtkColorSelection* colorsel, GdkRGBA* rgba) c_gtk_color_selection_get_current_rgba;
6085 	int function(GtkColorSelection* colorsel) c_gtk_color_selection_get_has_opacity_control;
6086 	int function(GtkColorSelection* colorsel) c_gtk_color_selection_get_has_palette;
6087 	ushort function(GtkColorSelection* colorsel) c_gtk_color_selection_get_previous_alpha;
6088 	void function(GtkColorSelection* colorsel, GdkColor* color) c_gtk_color_selection_get_previous_color;
6089 	void function(GtkColorSelection* colorsel, GdkRGBA* rgba) c_gtk_color_selection_get_previous_rgba;
6090 	int function(GtkColorSelection* colorsel) c_gtk_color_selection_is_adjusting;
6091 	void function(GtkColorSelection* colorsel, ushort alpha) c_gtk_color_selection_set_current_alpha;
6092 	void function(GtkColorSelection* colorsel, GdkColor* color) c_gtk_color_selection_set_current_color;
6093 	void function(GtkColorSelection* colorsel, GdkRGBA* rgba) c_gtk_color_selection_set_current_rgba;
6094 	void function(GtkColorSelection* colorsel, int hasOpacity) c_gtk_color_selection_set_has_opacity_control;
6095 	void function(GtkColorSelection* colorsel, int hasPalette) c_gtk_color_selection_set_has_palette;
6096 	void function(GtkColorSelection* colorsel, ushort alpha) c_gtk_color_selection_set_previous_alpha;
6097 	void function(GtkColorSelection* colorsel, GdkColor* color) c_gtk_color_selection_set_previous_color;
6098 	void function(GtkColorSelection* colorsel, GdkRGBA* rgba) c_gtk_color_selection_set_previous_rgba;
6099 
6100 	// gtk.ColorSelectionDialog
6101 
6102 	GType function() c_gtk_color_selection_dialog_get_type;
6103 	GtkWidget* function(const(char)* title) c_gtk_color_selection_dialog_new;
6104 	GtkWidget* function(GtkColorSelectionDialog* colorsel) c_gtk_color_selection_dialog_get_color_selection;
6105 
6106 	// gtk.ComboBox
6107 
6108 	GType function() c_gtk_combo_box_get_type;
6109 	GtkWidget* function() c_gtk_combo_box_new;
6110 	GtkWidget* function(GtkCellArea* area) c_gtk_combo_box_new_with_area;
6111 	GtkWidget* function(GtkCellArea* area) c_gtk_combo_box_new_with_area_and_entry;
6112 	GtkWidget* function() c_gtk_combo_box_new_with_entry;
6113 	GtkWidget* function(GtkTreeModel* model) c_gtk_combo_box_new_with_model;
6114 	GtkWidget* function(GtkTreeModel* model) c_gtk_combo_box_new_with_model_and_entry;
6115 	int function(GtkComboBox* comboBox) c_gtk_combo_box_get_active;
6116 	const(char)* function(GtkComboBox* comboBox) c_gtk_combo_box_get_active_id;
6117 	int function(GtkComboBox* comboBox, GtkTreeIter* iter) c_gtk_combo_box_get_active_iter;
6118 	int function(GtkComboBox* comboBox) c_gtk_combo_box_get_add_tearoffs;
6119 	GtkSensitivityType function(GtkComboBox* comboBox) c_gtk_combo_box_get_button_sensitivity;
6120 	int function(GtkComboBox* comboBox) c_gtk_combo_box_get_column_span_column;
6121 	int function(GtkComboBox* comboBox) c_gtk_combo_box_get_entry_text_column;
6122 	int function(GtkComboBox* combo) c_gtk_combo_box_get_focus_on_click;
6123 	int function(GtkComboBox* comboBox) c_gtk_combo_box_get_has_entry;
6124 	int function(GtkComboBox* comboBox) c_gtk_combo_box_get_id_column;
6125 	GtkTreeModel* function(GtkComboBox* comboBox) c_gtk_combo_box_get_model;
6126 	AtkObject* function(GtkComboBox* comboBox) c_gtk_combo_box_get_popup_accessible;
6127 	int function(GtkComboBox* comboBox) c_gtk_combo_box_get_popup_fixed_width;
6128 	GtkTreeViewRowSeparatorFunc function(GtkComboBox* comboBox) c_gtk_combo_box_get_row_separator_func;
6129 	int function(GtkComboBox* comboBox) c_gtk_combo_box_get_row_span_column;
6130 	const(char)* function(GtkComboBox* comboBox) c_gtk_combo_box_get_title;
6131 	int function(GtkComboBox* comboBox) c_gtk_combo_box_get_wrap_width;
6132 	void function(GtkComboBox* comboBox) c_gtk_combo_box_popdown;
6133 	void function(GtkComboBox* comboBox) c_gtk_combo_box_popup;
6134 	void function(GtkComboBox* comboBox, GdkDevice* device) c_gtk_combo_box_popup_for_device;
6135 	void function(GtkComboBox* comboBox, int index) c_gtk_combo_box_set_active;
6136 	int function(GtkComboBox* comboBox, const(char)* activeId) c_gtk_combo_box_set_active_id;
6137 	void function(GtkComboBox* comboBox, GtkTreeIter* iter) c_gtk_combo_box_set_active_iter;
6138 	void function(GtkComboBox* comboBox, int addTearoffs) c_gtk_combo_box_set_add_tearoffs;
6139 	void function(GtkComboBox* comboBox, GtkSensitivityType sensitivity) c_gtk_combo_box_set_button_sensitivity;
6140 	void function(GtkComboBox* comboBox, int columnSpan) c_gtk_combo_box_set_column_span_column;
6141 	void function(GtkComboBox* comboBox, int textColumn) c_gtk_combo_box_set_entry_text_column;
6142 	void function(GtkComboBox* combo, int focusOnClick) c_gtk_combo_box_set_focus_on_click;
6143 	void function(GtkComboBox* comboBox, int idColumn) c_gtk_combo_box_set_id_column;
6144 	void function(GtkComboBox* comboBox, GtkTreeModel* model) c_gtk_combo_box_set_model;
6145 	void function(GtkComboBox* comboBox, int fixed) c_gtk_combo_box_set_popup_fixed_width;
6146 	void function(GtkComboBox* comboBox, GtkTreeViewRowSeparatorFunc func, void* data, GDestroyNotify destroy) c_gtk_combo_box_set_row_separator_func;
6147 	void function(GtkComboBox* comboBox, int rowSpan) c_gtk_combo_box_set_row_span_column;
6148 	void function(GtkComboBox* comboBox, const(char)* title) c_gtk_combo_box_set_title;
6149 	void function(GtkComboBox* comboBox, int width) c_gtk_combo_box_set_wrap_width;
6150 
6151 	// gtk.ComboBoxAccessible
6152 
6153 	GType function() c_gtk_combo_box_accessible_get_type;
6154 
6155 	// gtk.ComboBoxText
6156 
6157 	GType function() c_gtk_combo_box_text_get_type;
6158 	GtkWidget* function() c_gtk_combo_box_text_new;
6159 	GtkWidget* function() c_gtk_combo_box_text_new_with_entry;
6160 	void function(GtkComboBoxText* comboBox, const(char)* id, const(char)* text) c_gtk_combo_box_text_append;
6161 	void function(GtkComboBoxText* comboBox, const(char)* text) c_gtk_combo_box_text_append_text;
6162 	char* function(GtkComboBoxText* comboBox) c_gtk_combo_box_text_get_active_text;
6163 	void function(GtkComboBoxText* comboBox, int position, const(char)* id, const(char)* text) c_gtk_combo_box_text_insert;
6164 	void function(GtkComboBoxText* comboBox, int position, const(char)* text) c_gtk_combo_box_text_insert_text;
6165 	void function(GtkComboBoxText* comboBox, const(char)* id, const(char)* text) c_gtk_combo_box_text_prepend;
6166 	void function(GtkComboBoxText* comboBox, const(char)* text) c_gtk_combo_box_text_prepend_text;
6167 	void function(GtkComboBoxText* comboBox, int position) c_gtk_combo_box_text_remove;
6168 	void function(GtkComboBoxText* comboBox) c_gtk_combo_box_text_remove_all;
6169 
6170 	// gtk.Container
6171 
6172 	GType function() c_gtk_container_get_type;
6173 	void function(GtkContainer* container, GtkWidget* widget) c_gtk_container_add;
6174 	void function(GtkContainer* container, GtkWidget* widget, const(char)* firstPropName, ... ) c_gtk_container_add_with_properties;
6175 	void function(GtkContainer* container) c_gtk_container_check_resize;
6176 	void function(GtkContainer* container, GtkWidget* child, const(char)* firstPropName, ... ) c_gtk_container_child_get;
6177 	void function(GtkContainer* container, GtkWidget* child, const(char)* propertyName, GValue* value) c_gtk_container_child_get_property;
6178 	void function(GtkContainer* container, GtkWidget* child, const(char)* firstPropertyName, void* varArgs) c_gtk_container_child_get_valist;
6179 	void function(GtkContainer* container, GtkWidget* child, const(char)* childProperty) c_gtk_container_child_notify;
6180 	void function(GtkContainer* container, GtkWidget* child, GParamSpec* pspec) c_gtk_container_child_notify_by_pspec;
6181 	void function(GtkContainer* container, GtkWidget* child, const(char)* firstPropName, ... ) c_gtk_container_child_set;
6182 	void function(GtkContainer* container, GtkWidget* child, const(char)* propertyName, GValue* value) c_gtk_container_child_set_property;
6183 	void function(GtkContainer* container, GtkWidget* child, const(char)* firstPropertyName, void* varArgs) c_gtk_container_child_set_valist;
6184 	GType function(GtkContainer* container) c_gtk_container_child_type;
6185 	void function(GtkContainer* container, GtkCallback callback, void* callbackData) c_gtk_container_forall;
6186 	void function(GtkContainer* container, GtkCallback callback, void* callbackData) c_gtk_container_foreach;
6187 	uint function(GtkContainer* container) c_gtk_container_get_border_width;
6188 	GList* function(GtkContainer* container) c_gtk_container_get_children;
6189 	int function(GtkContainer* container, GList** focusableWidgets) c_gtk_container_get_focus_chain;
6190 	GtkWidget* function(GtkContainer* container) c_gtk_container_get_focus_child;
6191 	GtkAdjustment* function(GtkContainer* container) c_gtk_container_get_focus_hadjustment;
6192 	GtkAdjustment* function(GtkContainer* container) c_gtk_container_get_focus_vadjustment;
6193 	GtkWidgetPath* function(GtkContainer* container, GtkWidget* child) c_gtk_container_get_path_for_child;
6194 	GtkResizeMode function(GtkContainer* container) c_gtk_container_get_resize_mode;
6195 	void function(GtkContainer* container, GtkWidget* child, cairo_t* cr) c_gtk_container_propagate_draw;
6196 	void function(GtkContainer* container, GtkWidget* widget) c_gtk_container_remove;
6197 	void function(GtkContainer* container) c_gtk_container_resize_children;
6198 	void function(GtkContainer* container, uint borderWidth) c_gtk_container_set_border_width;
6199 	void function(GtkContainer* container, GList* focusableWidgets) c_gtk_container_set_focus_chain;
6200 	void function(GtkContainer* container, GtkWidget* child) c_gtk_container_set_focus_child;
6201 	void function(GtkContainer* container, GtkAdjustment* adjustment) c_gtk_container_set_focus_hadjustment;
6202 	void function(GtkContainer* container, GtkAdjustment* adjustment) c_gtk_container_set_focus_vadjustment;
6203 	void function(GtkContainer* container, int needsRedraws) c_gtk_container_set_reallocate_redraws;
6204 	void function(GtkContainer* container, GtkResizeMode resizeMode) c_gtk_container_set_resize_mode;
6205 	void function(GtkContainer* container) c_gtk_container_unset_focus_chain;
6206 
6207 	// gtk.ContainerAccessible
6208 
6209 	GType function() c_gtk_container_accessible_get_type;
6210 
6211 	// gtk.ContainerCellAccessible
6212 
6213 	GType function() c_gtk_container_cell_accessible_get_type;
6214 	GtkContainerCellAccessible* function() c_gtk_container_cell_accessible_new;
6215 	void function(GtkContainerCellAccessible* container, GtkCellAccessible* child) c_gtk_container_cell_accessible_add_child;
6216 	GList* function(GtkContainerCellAccessible* container) c_gtk_container_cell_accessible_get_children;
6217 	void function(GtkContainerCellAccessible* container, GtkCellAccessible* child) c_gtk_container_cell_accessible_remove_child;
6218 
6219 	// gtk.ContainerClass
6220 
6221 	GParamSpec* function(GObjectClass* cclass, const(char)* propertyName) c_gtk_container_class_find_child_property;
6222 	void function(GtkContainerClass* klass) c_gtk_container_class_handle_border_width;
6223 	void function(GtkContainerClass* cclass, uint nPspecs, GParamSpec** pspecs) c_gtk_container_class_install_child_properties;
6224 	void function(GtkContainerClass* cclass, uint propertyId, GParamSpec* pspec) c_gtk_container_class_install_child_property;
6225 	GParamSpec** function(GObjectClass* cclass, uint* nProperties) c_gtk_container_class_list_child_properties;
6226 
6227 	// gtk.CssProvider
6228 
6229 	GType function() c_gtk_css_provider_get_type;
6230 	GtkCssProvider* function() c_gtk_css_provider_new;
6231 	GtkCssProvider* function() c_gtk_css_provider_get_default;
6232 	GtkCssProvider* function(const(char)* name, const(char)* variant) c_gtk_css_provider_get_named;
6233 	int function(GtkCssProvider* cssProvider, char* data, ptrdiff_t length, GError** err) c_gtk_css_provider_load_from_data;
6234 	int function(GtkCssProvider* cssProvider, GFile* file, GError** err) c_gtk_css_provider_load_from_file;
6235 	int function(GtkCssProvider* cssProvider, const(char)* path, GError** err) c_gtk_css_provider_load_from_path;
6236 	void function(GtkCssProvider* cssProvider, const(char)* resourcePath) c_gtk_css_provider_load_from_resource;
6237 	char* function(GtkCssProvider* provider) c_gtk_css_provider_to_string;
6238 
6239 	// gtk.CssSection
6240 
6241 	GType function() c_gtk_css_section_get_type;
6242 	uint function(GtkCssSection* section) c_gtk_css_section_get_end_line;
6243 	uint function(GtkCssSection* section) c_gtk_css_section_get_end_position;
6244 	GFile* function(GtkCssSection* section) c_gtk_css_section_get_file;
6245 	GtkCssSection* function(GtkCssSection* section) c_gtk_css_section_get_parent;
6246 	GtkCssSectionType function(GtkCssSection* section) c_gtk_css_section_get_section_type;
6247 	uint function(GtkCssSection* section) c_gtk_css_section_get_start_line;
6248 	uint function(GtkCssSection* section) c_gtk_css_section_get_start_position;
6249 	GtkCssSection* function(GtkCssSection* section) c_gtk_css_section_ref;
6250 	void function(GtkCssSection* section) c_gtk_css_section_unref;
6251 
6252 	// gtk.Dialog
6253 
6254 	GType function() c_gtk_dialog_get_type;
6255 	GtkWidget* function() c_gtk_dialog_new;
6256 	GtkWidget* function(const(char)* title, GtkWindow* parent, GtkDialogFlags flags, const(char)* firstButtonText, ... ) c_gtk_dialog_new_with_buttons;
6257 	void function(GtkDialog* dialog, GtkWidget* child, int responseId) c_gtk_dialog_add_action_widget;
6258 	GtkWidget* function(GtkDialog* dialog, const(char)* buttonText, int responseId) c_gtk_dialog_add_button;
6259 	void function(GtkDialog* dialog, const(char)* firstButtonText, ... ) c_gtk_dialog_add_buttons;
6260 	GtkWidget* function(GtkDialog* dialog) c_gtk_dialog_get_action_area;
6261 	GtkWidget* function(GtkDialog* dialog) c_gtk_dialog_get_content_area;
6262 	GtkWidget* function(GtkDialog* dialog) c_gtk_dialog_get_header_bar;
6263 	int function(GtkDialog* dialog, GtkWidget* widget) c_gtk_dialog_get_response_for_widget;
6264 	GtkWidget* function(GtkDialog* dialog, int responseId) c_gtk_dialog_get_widget_for_response;
6265 	void function(GtkDialog* dialog, int responseId) c_gtk_dialog_response;
6266 	int function(GtkDialog* dialog) c_gtk_dialog_run;
6267 	void function(GtkDialog* dialog, int firstResponseId, ... ) c_gtk_dialog_set_alternative_button_order;
6268 	void function(GtkDialog* dialog, int nParams, int* newOrder) c_gtk_dialog_set_alternative_button_order_from_array;
6269 	void function(GtkDialog* dialog, int responseId) c_gtk_dialog_set_default_response;
6270 	void function(GtkDialog* dialog, int responseId, int setting) c_gtk_dialog_set_response_sensitive;
6271 	int function(GdkScreen* screen) c_gtk_alternative_dialog_button_order;
6272 
6273 	// gtk.DrawingArea
6274 
6275 	GType function() c_gtk_drawing_area_get_type;
6276 	GtkWidget* function() c_gtk_drawing_area_new;
6277 
6278 	// gtk.Editable
6279 
6280 	GType function() c_gtk_editable_get_type;
6281 	void function(GtkEditable* editable) c_gtk_editable_copy_clipboard;
6282 	void function(GtkEditable* editable) c_gtk_editable_cut_clipboard;
6283 	void function(GtkEditable* editable) c_gtk_editable_delete_selection;
6284 	void function(GtkEditable* editable, int startPos, int endPos) c_gtk_editable_delete_text;
6285 	char* function(GtkEditable* editable, int startPos, int endPos) c_gtk_editable_get_chars;
6286 	int function(GtkEditable* editable) c_gtk_editable_get_editable;
6287 	int function(GtkEditable* editable) c_gtk_editable_get_position;
6288 	int function(GtkEditable* editable, int* startPos, int* endPos) c_gtk_editable_get_selection_bounds;
6289 	void function(GtkEditable* editable, const(char)* newText, int newTextLength, int* position) c_gtk_editable_insert_text;
6290 	void function(GtkEditable* editable) c_gtk_editable_paste_clipboard;
6291 	void function(GtkEditable* editable, int startPos, int endPos) c_gtk_editable_select_region;
6292 	void function(GtkEditable* editable, int isEditable) c_gtk_editable_set_editable;
6293 	void function(GtkEditable* editable, int position) c_gtk_editable_set_position;
6294 
6295 	// gtk.Entry
6296 
6297 	GType function() c_gtk_entry_get_type;
6298 	GtkWidget* function() c_gtk_entry_new;
6299 	GtkWidget* function(GtkEntryBuffer* buffer) c_gtk_entry_new_with_buffer;
6300 	int function(GtkEntry* entry) c_gtk_entry_get_activates_default;
6301 	float function(GtkEntry* entry) c_gtk_entry_get_alignment;
6302 	PangoAttrList* function(GtkEntry* entry) c_gtk_entry_get_attributes;
6303 	GtkEntryBuffer* function(GtkEntry* entry) c_gtk_entry_get_buffer;
6304 	GtkEntryCompletion* function(GtkEntry* entry) c_gtk_entry_get_completion;
6305 	int function(GtkEntry* entry) c_gtk_entry_get_current_icon_drag_source;
6306 	GtkAdjustment* function(GtkEntry* entry) c_gtk_entry_get_cursor_hadjustment;
6307 	int function(GtkEntry* entry) c_gtk_entry_get_has_frame;
6308 	int function(GtkEntry* entry, GtkEntryIconPosition iconPos) c_gtk_entry_get_icon_activatable;
6309 	void function(GtkEntry* entry, GtkEntryIconPosition iconPos, GdkRectangle* iconArea) c_gtk_entry_get_icon_area;
6310 	int function(GtkEntry* entry, int x, int y) c_gtk_entry_get_icon_at_pos;
6311 	GIcon* function(GtkEntry* entry, GtkEntryIconPosition iconPos) c_gtk_entry_get_icon_gicon;
6312 	const(char)* function(GtkEntry* entry, GtkEntryIconPosition iconPos) c_gtk_entry_get_icon_name;
6313 	GdkPixbuf* function(GtkEntry* entry, GtkEntryIconPosition iconPos) c_gtk_entry_get_icon_pixbuf;
6314 	int function(GtkEntry* entry, GtkEntryIconPosition iconPos) c_gtk_entry_get_icon_sensitive;
6315 	const(char)* function(GtkEntry* entry, GtkEntryIconPosition iconPos) c_gtk_entry_get_icon_stock;
6316 	GtkImageType function(GtkEntry* entry, GtkEntryIconPosition iconPos) c_gtk_entry_get_icon_storage_type;
6317 	char* function(GtkEntry* entry, GtkEntryIconPosition iconPos) c_gtk_entry_get_icon_tooltip_markup;
6318 	char* function(GtkEntry* entry, GtkEntryIconPosition iconPos) c_gtk_entry_get_icon_tooltip_text;
6319 	GtkBorder* function(GtkEntry* entry) c_gtk_entry_get_inner_border;
6320 	GtkInputHints function(GtkEntry* entry) c_gtk_entry_get_input_hints;
6321 	GtkInputPurpose function(GtkEntry* entry) c_gtk_entry_get_input_purpose;
6322 	dchar function(GtkEntry* entry) c_gtk_entry_get_invisible_char;
6323 	PangoLayout* function(GtkEntry* entry) c_gtk_entry_get_layout;
6324 	void function(GtkEntry* entry, int* x, int* y) c_gtk_entry_get_layout_offsets;
6325 	int function(GtkEntry* entry) c_gtk_entry_get_max_length;
6326 	int function(GtkEntry* entry) c_gtk_entry_get_max_width_chars;
6327 	int function(GtkEntry* entry) c_gtk_entry_get_overwrite_mode;
6328 	const(char)* function(GtkEntry* entry) c_gtk_entry_get_placeholder_text;
6329 	double function(GtkEntry* entry) c_gtk_entry_get_progress_fraction;
6330 	double function(GtkEntry* entry) c_gtk_entry_get_progress_pulse_step;
6331 	PangoTabArray* function(GtkEntry* entry) c_gtk_entry_get_tabs;
6332 	const(char)* function(GtkEntry* entry) c_gtk_entry_get_text;
6333 	void function(GtkEntry* entry, GdkRectangle* textArea) c_gtk_entry_get_text_area;
6334 	ushort function(GtkEntry* entry) c_gtk_entry_get_text_length;
6335 	int function(GtkEntry* entry) c_gtk_entry_get_visibility;
6336 	int function(GtkEntry* entry) c_gtk_entry_get_width_chars;
6337 	void function(GtkEntry* entry) c_gtk_entry_grab_focus_without_selecting;
6338 	int function(GtkEntry* entry, GdkEventKey* event) c_gtk_entry_im_context_filter_keypress;
6339 	int function(GtkEntry* entry, int layoutIndex) c_gtk_entry_layout_index_to_text_index;
6340 	void function(GtkEntry* entry) c_gtk_entry_progress_pulse;
6341 	void function(GtkEntry* entry) c_gtk_entry_reset_im_context;
6342 	void function(GtkEntry* entry, int setting) c_gtk_entry_set_activates_default;
6343 	void function(GtkEntry* entry, float xalign) c_gtk_entry_set_alignment;
6344 	void function(GtkEntry* entry, PangoAttrList* attrs) c_gtk_entry_set_attributes;
6345 	void function(GtkEntry* entry, GtkEntryBuffer* buffer) c_gtk_entry_set_buffer;
6346 	void function(GtkEntry* entry, GtkEntryCompletion* completion) c_gtk_entry_set_completion;
6347 	void function(GtkEntry* entry, GtkAdjustment* adjustment) c_gtk_entry_set_cursor_hadjustment;
6348 	void function(GtkEntry* entry, int setting) c_gtk_entry_set_has_frame;
6349 	void function(GtkEntry* entry, GtkEntryIconPosition iconPos, int activatable) c_gtk_entry_set_icon_activatable;
6350 	void function(GtkEntry* entry, GtkEntryIconPosition iconPos, GtkTargetList* targetList, GdkDragAction actions) c_gtk_entry_set_icon_drag_source;
6351 	void function(GtkEntry* entry, GtkEntryIconPosition iconPos, GIcon* icon) c_gtk_entry_set_icon_from_gicon;
6352 	void function(GtkEntry* entry, GtkEntryIconPosition iconPos, const(char)* iconName) c_gtk_entry_set_icon_from_icon_name;
6353 	void function(GtkEntry* entry, GtkEntryIconPosition iconPos, GdkPixbuf* pixbuf) c_gtk_entry_set_icon_from_pixbuf;
6354 	void function(GtkEntry* entry, GtkEntryIconPosition iconPos, const(char)* stockId) c_gtk_entry_set_icon_from_stock;
6355 	void function(GtkEntry* entry, GtkEntryIconPosition iconPos, int sensitive) c_gtk_entry_set_icon_sensitive;
6356 	void function(GtkEntry* entry, GtkEntryIconPosition iconPos, const(char)* tooltip) c_gtk_entry_set_icon_tooltip_markup;
6357 	void function(GtkEntry* entry, GtkEntryIconPosition iconPos, const(char)* tooltip) c_gtk_entry_set_icon_tooltip_text;
6358 	void function(GtkEntry* entry, GtkBorder* border) c_gtk_entry_set_inner_border;
6359 	void function(GtkEntry* entry, GtkInputHints hints) c_gtk_entry_set_input_hints;
6360 	void function(GtkEntry* entry, GtkInputPurpose purpose) c_gtk_entry_set_input_purpose;
6361 	void function(GtkEntry* entry, dchar ch) c_gtk_entry_set_invisible_char;
6362 	void function(GtkEntry* entry, int max) c_gtk_entry_set_max_length;
6363 	void function(GtkEntry* entry, int nChars) c_gtk_entry_set_max_width_chars;
6364 	void function(GtkEntry* entry, int overwrite) c_gtk_entry_set_overwrite_mode;
6365 	void function(GtkEntry* entry, const(char)* text) c_gtk_entry_set_placeholder_text;
6366 	void function(GtkEntry* entry, double fraction) c_gtk_entry_set_progress_fraction;
6367 	void function(GtkEntry* entry, double fraction) c_gtk_entry_set_progress_pulse_step;
6368 	void function(GtkEntry* entry, PangoTabArray* tabs) c_gtk_entry_set_tabs;
6369 	void function(GtkEntry* entry, const(char)* text) c_gtk_entry_set_text;
6370 	void function(GtkEntry* entry, int visible) c_gtk_entry_set_visibility;
6371 	void function(GtkEntry* entry, int nChars) c_gtk_entry_set_width_chars;
6372 	int function(GtkEntry* entry, int textIndex) c_gtk_entry_text_index_to_layout_index;
6373 	void function(GtkEntry* entry) c_gtk_entry_unset_invisible_char;
6374 
6375 	// gtk.EntryAccessible
6376 
6377 	GType function() c_gtk_entry_accessible_get_type;
6378 
6379 	// gtk.EntryBuffer
6380 
6381 	GType function() c_gtk_entry_buffer_get_type;
6382 	GtkEntryBuffer* function(const(char)* initialChars, int nInitialChars) c_gtk_entry_buffer_new;
6383 	uint function(GtkEntryBuffer* buffer, uint position, int nChars) c_gtk_entry_buffer_delete_text;
6384 	void function(GtkEntryBuffer* buffer, uint position, uint nChars) c_gtk_entry_buffer_emit_deleted_text;
6385 	void function(GtkEntryBuffer* buffer, uint position, const(char)* chars, uint nChars) c_gtk_entry_buffer_emit_inserted_text;
6386 	size_t function(GtkEntryBuffer* buffer) c_gtk_entry_buffer_get_bytes;
6387 	uint function(GtkEntryBuffer* buffer) c_gtk_entry_buffer_get_length;
6388 	int function(GtkEntryBuffer* buffer) c_gtk_entry_buffer_get_max_length;
6389 	const(char)* function(GtkEntryBuffer* buffer) c_gtk_entry_buffer_get_text;
6390 	uint function(GtkEntryBuffer* buffer, uint position, const(char)* chars, int nChars) c_gtk_entry_buffer_insert_text;
6391 	void function(GtkEntryBuffer* buffer, int maxLength) c_gtk_entry_buffer_set_max_length;
6392 	void function(GtkEntryBuffer* buffer, const(char)* chars, int nChars) c_gtk_entry_buffer_set_text;
6393 
6394 	// gtk.EntryCompletion
6395 
6396 	GType function() c_gtk_entry_completion_get_type;
6397 	GtkEntryCompletion* function() c_gtk_entry_completion_new;
6398 	GtkEntryCompletion* function(GtkCellArea* area) c_gtk_entry_completion_new_with_area;
6399 	void function(GtkEntryCompletion* completion) c_gtk_entry_completion_complete;
6400 	char* function(GtkEntryCompletion* completion, const(char)* key) c_gtk_entry_completion_compute_prefix;
6401 	void function(GtkEntryCompletion* completion, int index) c_gtk_entry_completion_delete_action;
6402 	const(char)* function(GtkEntryCompletion* completion) c_gtk_entry_completion_get_completion_prefix;
6403 	GtkWidget* function(GtkEntryCompletion* completion) c_gtk_entry_completion_get_entry;
6404 	int function(GtkEntryCompletion* completion) c_gtk_entry_completion_get_inline_completion;
6405 	int function(GtkEntryCompletion* completion) c_gtk_entry_completion_get_inline_selection;
6406 	int function(GtkEntryCompletion* completion) c_gtk_entry_completion_get_minimum_key_length;
6407 	GtkTreeModel* function(GtkEntryCompletion* completion) c_gtk_entry_completion_get_model;
6408 	int function(GtkEntryCompletion* completion) c_gtk_entry_completion_get_popup_completion;
6409 	int function(GtkEntryCompletion* completion) c_gtk_entry_completion_get_popup_set_width;
6410 	int function(GtkEntryCompletion* completion) c_gtk_entry_completion_get_popup_single_match;
6411 	int function(GtkEntryCompletion* completion) c_gtk_entry_completion_get_text_column;
6412 	void function(GtkEntryCompletion* completion, int index, const(char)* markup) c_gtk_entry_completion_insert_action_markup;
6413 	void function(GtkEntryCompletion* completion, int index, const(char)* text) c_gtk_entry_completion_insert_action_text;
6414 	void function(GtkEntryCompletion* completion) c_gtk_entry_completion_insert_prefix;
6415 	void function(GtkEntryCompletion* completion, int inlineCompletion) c_gtk_entry_completion_set_inline_completion;
6416 	void function(GtkEntryCompletion* completion, int inlineSelection) c_gtk_entry_completion_set_inline_selection;
6417 	void function(GtkEntryCompletion* completion, GtkEntryCompletionMatchFunc func, void* funcData, GDestroyNotify funcNotify) c_gtk_entry_completion_set_match_func;
6418 	void function(GtkEntryCompletion* completion, int length) c_gtk_entry_completion_set_minimum_key_length;
6419 	void function(GtkEntryCompletion* completion, GtkTreeModel* model) c_gtk_entry_completion_set_model;
6420 	void function(GtkEntryCompletion* completion, int popupCompletion) c_gtk_entry_completion_set_popup_completion;
6421 	void function(GtkEntryCompletion* completion, int popupSetWidth) c_gtk_entry_completion_set_popup_set_width;
6422 	void function(GtkEntryCompletion* completion, int popupSingleMatch) c_gtk_entry_completion_set_popup_single_match;
6423 	void function(GtkEntryCompletion* completion, int column) c_gtk_entry_completion_set_text_column;
6424 
6425 	// gtk.EntryIconAccessible
6426 
6427 	GType function() c_gtk_entry_icon_accessible_get_type;
6428 
6429 	// gtk.EventBox
6430 
6431 	GType function() c_gtk_event_box_get_type;
6432 	GtkWidget* function() c_gtk_event_box_new;
6433 	int function(GtkEventBox* eventBox) c_gtk_event_box_get_above_child;
6434 	int function(GtkEventBox* eventBox) c_gtk_event_box_get_visible_window;
6435 	void function(GtkEventBox* eventBox, int aboveChild) c_gtk_event_box_set_above_child;
6436 	void function(GtkEventBox* eventBox, int visibleWindow) c_gtk_event_box_set_visible_window;
6437 
6438 	// gtk.EventController
6439 
6440 	GType function() c_gtk_event_controller_get_type;
6441 	GtkPropagationPhase function(GtkEventController* controller) c_gtk_event_controller_get_propagation_phase;
6442 	GtkWidget* function(GtkEventController* controller) c_gtk_event_controller_get_widget;
6443 	int function(GtkEventController* controller, GdkEvent* event) c_gtk_event_controller_handle_event;
6444 	void function(GtkEventController* controller) c_gtk_event_controller_reset;
6445 	void function(GtkEventController* controller, GtkPropagationPhase phase) c_gtk_event_controller_set_propagation_phase;
6446 
6447 	// gtk.EventControllerKey
6448 
6449 	GType function() c_gtk_event_controller_key_get_type;
6450 	GtkEventController* function(GtkWidget* widget) c_gtk_event_controller_key_new;
6451 	int function(GtkEventControllerKey* controller, GtkWidget* widget) c_gtk_event_controller_key_forward;
6452 	uint function(GtkEventControllerKey* controller) c_gtk_event_controller_key_get_group;
6453 	GtkIMContext* function(GtkEventControllerKey* controller) c_gtk_event_controller_key_get_im_context;
6454 	void function(GtkEventControllerKey* controller, GtkIMContext* imContext) c_gtk_event_controller_key_set_im_context;
6455 
6456 	// gtk.EventControllerMotion
6457 
6458 	GType function() c_gtk_event_controller_motion_get_type;
6459 	GtkEventController* function(GtkWidget* widget) c_gtk_event_controller_motion_new;
6460 
6461 	// gtk.EventControllerScroll
6462 
6463 	GType function() c_gtk_event_controller_scroll_get_type;
6464 	GtkEventController* function(GtkWidget* widget, GtkEventControllerScrollFlags flags) c_gtk_event_controller_scroll_new;
6465 	GtkEventControllerScrollFlags function(GtkEventControllerScroll* controller) c_gtk_event_controller_scroll_get_flags;
6466 	void function(GtkEventControllerScroll* controller, GtkEventControllerScrollFlags flags) c_gtk_event_controller_scroll_set_flags;
6467 
6468 	// gtk.Expander
6469 
6470 	GType function() c_gtk_expander_get_type;
6471 	GtkWidget* function(const(char)* label) c_gtk_expander_new;
6472 	GtkWidget* function(const(char)* label) c_gtk_expander_new_with_mnemonic;
6473 	int function(GtkExpander* expander) c_gtk_expander_get_expanded;
6474 	const(char)* function(GtkExpander* expander) c_gtk_expander_get_label;
6475 	int function(GtkExpander* expander) c_gtk_expander_get_label_fill;
6476 	GtkWidget* function(GtkExpander* expander) c_gtk_expander_get_label_widget;
6477 	int function(GtkExpander* expander) c_gtk_expander_get_resize_toplevel;
6478 	int function(GtkExpander* expander) c_gtk_expander_get_spacing;
6479 	int function(GtkExpander* expander) c_gtk_expander_get_use_markup;
6480 	int function(GtkExpander* expander) c_gtk_expander_get_use_underline;
6481 	void function(GtkExpander* expander, int expanded) c_gtk_expander_set_expanded;
6482 	void function(GtkExpander* expander, const(char)* label) c_gtk_expander_set_label;
6483 	void function(GtkExpander* expander, int labelFill) c_gtk_expander_set_label_fill;
6484 	void function(GtkExpander* expander, GtkWidget* labelWidget) c_gtk_expander_set_label_widget;
6485 	void function(GtkExpander* expander, int resizeToplevel) c_gtk_expander_set_resize_toplevel;
6486 	void function(GtkExpander* expander, int spacing) c_gtk_expander_set_spacing;
6487 	void function(GtkExpander* expander, int useMarkup) c_gtk_expander_set_use_markup;
6488 	void function(GtkExpander* expander, int useUnderline) c_gtk_expander_set_use_underline;
6489 
6490 	// gtk.ExpanderAccessible
6491 
6492 	GType function() c_gtk_expander_accessible_get_type;
6493 
6494 	// gtk.FileChooser
6495 
6496 	GType function() c_gtk_file_chooser_get_type;
6497 	void function(GtkFileChooser* chooser, const(char)* id, const(char)* label, char** options, char** optionLabels) c_gtk_file_chooser_add_choice;
6498 	void function(GtkFileChooser* chooser, GtkFileFilter* filter) c_gtk_file_chooser_add_filter;
6499 	int function(GtkFileChooser* chooser, char* folder, GError** err) c_gtk_file_chooser_add_shortcut_folder;
6500 	int function(GtkFileChooser* chooser, const(char)* uri, GError** err) c_gtk_file_chooser_add_shortcut_folder_uri;
6501 	GtkFileChooserAction function(GtkFileChooser* chooser) c_gtk_file_chooser_get_action;
6502 	const(char)* function(GtkFileChooser* chooser, const(char)* id) c_gtk_file_chooser_get_choice;
6503 	int function(GtkFileChooser* chooser) c_gtk_file_chooser_get_create_folders;
6504 	char* function(GtkFileChooser* chooser) c_gtk_file_chooser_get_current_folder;
6505 	GFile* function(GtkFileChooser* chooser) c_gtk_file_chooser_get_current_folder_file;
6506 	char* function(GtkFileChooser* chooser) c_gtk_file_chooser_get_current_folder_uri;
6507 	char* function(GtkFileChooser* chooser) c_gtk_file_chooser_get_current_name;
6508 	int function(GtkFileChooser* chooser) c_gtk_file_chooser_get_do_overwrite_confirmation;
6509 	GtkWidget* function(GtkFileChooser* chooser) c_gtk_file_chooser_get_extra_widget;
6510 	GFile* function(GtkFileChooser* chooser) c_gtk_file_chooser_get_file;
6511 	char* function(GtkFileChooser* chooser) c_gtk_file_chooser_get_filename;
6512 	GSList* function(GtkFileChooser* chooser) c_gtk_file_chooser_get_filenames;
6513 	GSList* function(GtkFileChooser* chooser) c_gtk_file_chooser_get_files;
6514 	GtkFileFilter* function(GtkFileChooser* chooser) c_gtk_file_chooser_get_filter;
6515 	int function(GtkFileChooser* chooser) c_gtk_file_chooser_get_local_only;
6516 	GFile* function(GtkFileChooser* chooser) c_gtk_file_chooser_get_preview_file;
6517 	char* function(GtkFileChooser* chooser) c_gtk_file_chooser_get_preview_filename;
6518 	char* function(GtkFileChooser* chooser) c_gtk_file_chooser_get_preview_uri;
6519 	GtkWidget* function(GtkFileChooser* chooser) c_gtk_file_chooser_get_preview_widget;
6520 	int function(GtkFileChooser* chooser) c_gtk_file_chooser_get_preview_widget_active;
6521 	int function(GtkFileChooser* chooser) c_gtk_file_chooser_get_select_multiple;
6522 	int function(GtkFileChooser* chooser) c_gtk_file_chooser_get_show_hidden;
6523 	char* function(GtkFileChooser* chooser) c_gtk_file_chooser_get_uri;
6524 	GSList* function(GtkFileChooser* chooser) c_gtk_file_chooser_get_uris;
6525 	int function(GtkFileChooser* chooser) c_gtk_file_chooser_get_use_preview_label;
6526 	GSList* function(GtkFileChooser* chooser) c_gtk_file_chooser_list_filters;
6527 	GSList* function(GtkFileChooser* chooser) c_gtk_file_chooser_list_shortcut_folder_uris;
6528 	GSList* function(GtkFileChooser* chooser) c_gtk_file_chooser_list_shortcut_folders;
6529 	void function(GtkFileChooser* chooser, const(char)* id) c_gtk_file_chooser_remove_choice;
6530 	void function(GtkFileChooser* chooser, GtkFileFilter* filter) c_gtk_file_chooser_remove_filter;
6531 	int function(GtkFileChooser* chooser, char* folder, GError** err) c_gtk_file_chooser_remove_shortcut_folder;
6532 	int function(GtkFileChooser* chooser, const(char)* uri, GError** err) c_gtk_file_chooser_remove_shortcut_folder_uri;
6533 	void function(GtkFileChooser* chooser) c_gtk_file_chooser_select_all;
6534 	int function(GtkFileChooser* chooser, GFile* file, GError** err) c_gtk_file_chooser_select_file;
6535 	int function(GtkFileChooser* chooser, char* filename) c_gtk_file_chooser_select_filename;
6536 	int function(GtkFileChooser* chooser, const(char)* uri) c_gtk_file_chooser_select_uri;
6537 	void function(GtkFileChooser* chooser, GtkFileChooserAction action) c_gtk_file_chooser_set_action;
6538 	void function(GtkFileChooser* chooser, const(char)* id, const(char)* option) c_gtk_file_chooser_set_choice;
6539 	void function(GtkFileChooser* chooser, int createFolders) c_gtk_file_chooser_set_create_folders;
6540 	int function(GtkFileChooser* chooser, char* filename) c_gtk_file_chooser_set_current_folder;
6541 	int function(GtkFileChooser* chooser, GFile* file, GError** err) c_gtk_file_chooser_set_current_folder_file;
6542 	int function(GtkFileChooser* chooser, const(char)* uri) c_gtk_file_chooser_set_current_folder_uri;
6543 	void function(GtkFileChooser* chooser, char* name) c_gtk_file_chooser_set_current_name;
6544 	void function(GtkFileChooser* chooser, int doOverwriteConfirmation) c_gtk_file_chooser_set_do_overwrite_confirmation;
6545 	void function(GtkFileChooser* chooser, GtkWidget* extraWidget) c_gtk_file_chooser_set_extra_widget;
6546 	int function(GtkFileChooser* chooser, GFile* file, GError** err) c_gtk_file_chooser_set_file;
6547 	int function(GtkFileChooser* chooser, char* filename) c_gtk_file_chooser_set_filename;
6548 	void function(GtkFileChooser* chooser, GtkFileFilter* filter) c_gtk_file_chooser_set_filter;
6549 	void function(GtkFileChooser* chooser, int localOnly) c_gtk_file_chooser_set_local_only;
6550 	void function(GtkFileChooser* chooser, GtkWidget* previewWidget) c_gtk_file_chooser_set_preview_widget;
6551 	void function(GtkFileChooser* chooser, int active) c_gtk_file_chooser_set_preview_widget_active;
6552 	void function(GtkFileChooser* chooser, int selectMultiple) c_gtk_file_chooser_set_select_multiple;
6553 	void function(GtkFileChooser* chooser, int showHidden) c_gtk_file_chooser_set_show_hidden;
6554 	int function(GtkFileChooser* chooser, const(char)* uri) c_gtk_file_chooser_set_uri;
6555 	void function(GtkFileChooser* chooser, int useLabel) c_gtk_file_chooser_set_use_preview_label;
6556 	void function(GtkFileChooser* chooser) c_gtk_file_chooser_unselect_all;
6557 	void function(GtkFileChooser* chooser, GFile* file) c_gtk_file_chooser_unselect_file;
6558 	void function(GtkFileChooser* chooser, char* filename) c_gtk_file_chooser_unselect_filename;
6559 	void function(GtkFileChooser* chooser, const(char)* uri) c_gtk_file_chooser_unselect_uri;
6560 
6561 	// gtk.FileChooserButton
6562 
6563 	GType function() c_gtk_file_chooser_button_get_type;
6564 	GtkWidget* function(const(char)* title, GtkFileChooserAction action) c_gtk_file_chooser_button_new;
6565 	GtkWidget* function(GtkWidget* dialog) c_gtk_file_chooser_button_new_with_dialog;
6566 	int function(GtkFileChooserButton* button) c_gtk_file_chooser_button_get_focus_on_click;
6567 	const(char)* function(GtkFileChooserButton* button) c_gtk_file_chooser_button_get_title;
6568 	int function(GtkFileChooserButton* button) c_gtk_file_chooser_button_get_width_chars;
6569 	void function(GtkFileChooserButton* button, int focusOnClick) c_gtk_file_chooser_button_set_focus_on_click;
6570 	void function(GtkFileChooserButton* button, const(char)* title) c_gtk_file_chooser_button_set_title;
6571 	void function(GtkFileChooserButton* button, int nChars) c_gtk_file_chooser_button_set_width_chars;
6572 
6573 	// gtk.FileChooserDialog
6574 
6575 	GType function() c_gtk_file_chooser_dialog_get_type;
6576 	GtkWidget* function(const(char)* title, GtkWindow* parent, GtkFileChooserAction action, const(char)* firstButtonText, ... ) c_gtk_file_chooser_dialog_new;
6577 
6578 	// gtk.FileChooserNative
6579 
6580 	GType function() c_gtk_file_chooser_native_get_type;
6581 	GtkFileChooserNative* function(const(char)* title, GtkWindow* parent, GtkFileChooserAction action, const(char)* acceptLabel, const(char)* cancelLabel) c_gtk_file_chooser_native_new;
6582 	const(char)* function(GtkFileChooserNative* self) c_gtk_file_chooser_native_get_accept_label;
6583 	const(char)* function(GtkFileChooserNative* self) c_gtk_file_chooser_native_get_cancel_label;
6584 	void function(GtkFileChooserNative* self, const(char)* acceptLabel) c_gtk_file_chooser_native_set_accept_label;
6585 	void function(GtkFileChooserNative* self, const(char)* cancelLabel) c_gtk_file_chooser_native_set_cancel_label;
6586 
6587 	// gtk.FileChooserWidget
6588 
6589 	GType function() c_gtk_file_chooser_widget_get_type;
6590 	GtkWidget* function(GtkFileChooserAction action) c_gtk_file_chooser_widget_new;
6591 
6592 	// gtk.FileFilter
6593 
6594 	GType function() c_gtk_file_filter_get_type;
6595 	GtkFileFilter* function() c_gtk_file_filter_new;
6596 	GtkFileFilter* function(GVariant* variant) c_gtk_file_filter_new_from_gvariant;
6597 	void function(GtkFileFilter* filter, GtkFileFilterFlags needed, GtkFileFilterFunc func, void* data, GDestroyNotify notify) c_gtk_file_filter_add_custom;
6598 	void function(GtkFileFilter* filter, const(char)* mimeType) c_gtk_file_filter_add_mime_type;
6599 	void function(GtkFileFilter* filter, const(char)* pattern) c_gtk_file_filter_add_pattern;
6600 	void function(GtkFileFilter* filter) c_gtk_file_filter_add_pixbuf_formats;
6601 	int function(GtkFileFilter* filter, GtkFileFilterInfo* filterInfo) c_gtk_file_filter_filter;
6602 	const(char)* function(GtkFileFilter* filter) c_gtk_file_filter_get_name;
6603 	GtkFileFilterFlags function(GtkFileFilter* filter) c_gtk_file_filter_get_needed;
6604 	void function(GtkFileFilter* filter, const(char)* name) c_gtk_file_filter_set_name;
6605 	GVariant* function(GtkFileFilter* filter) c_gtk_file_filter_to_gvariant;
6606 
6607 	// gtk.Fixed
6608 
6609 	GType function() c_gtk_fixed_get_type;
6610 	GtkWidget* function() c_gtk_fixed_new;
6611 	void function(GtkFixed* fixed, GtkWidget* widget, int x, int y) c_gtk_fixed_move;
6612 	void function(GtkFixed* fixed, GtkWidget* widget, int x, int y) c_gtk_fixed_put;
6613 
6614 	// gtk.FlowBox
6615 
6616 	GType function() c_gtk_flow_box_get_type;
6617 	GtkWidget* function() c_gtk_flow_box_new;
6618 	void function(GtkFlowBox* box, GListModel* model, GtkFlowBoxCreateWidgetFunc createWidgetFunc, void* userData, GDestroyNotify userDataFreeFunc) c_gtk_flow_box_bind_model;
6619 	int function(GtkFlowBox* box) c_gtk_flow_box_get_activate_on_single_click;
6620 	GtkFlowBoxChild* function(GtkFlowBox* box, int idx) c_gtk_flow_box_get_child_at_index;
6621 	GtkFlowBoxChild* function(GtkFlowBox* box, int x, int y) c_gtk_flow_box_get_child_at_pos;
6622 	uint function(GtkFlowBox* box) c_gtk_flow_box_get_column_spacing;
6623 	int function(GtkFlowBox* box) c_gtk_flow_box_get_homogeneous;
6624 	uint function(GtkFlowBox* box) c_gtk_flow_box_get_max_children_per_line;
6625 	uint function(GtkFlowBox* box) c_gtk_flow_box_get_min_children_per_line;
6626 	uint function(GtkFlowBox* box) c_gtk_flow_box_get_row_spacing;
6627 	GList* function(GtkFlowBox* box) c_gtk_flow_box_get_selected_children;
6628 	GtkSelectionMode function(GtkFlowBox* box) c_gtk_flow_box_get_selection_mode;
6629 	void function(GtkFlowBox* box, GtkWidget* widget, int position) c_gtk_flow_box_insert;
6630 	void function(GtkFlowBox* box) c_gtk_flow_box_invalidate_filter;
6631 	void function(GtkFlowBox* box) c_gtk_flow_box_invalidate_sort;
6632 	void function(GtkFlowBox* box) c_gtk_flow_box_select_all;
6633 	void function(GtkFlowBox* box, GtkFlowBoxChild* child) c_gtk_flow_box_select_child;
6634 	void function(GtkFlowBox* box, GtkFlowBoxForeachFunc func, void* data) c_gtk_flow_box_selected_foreach;
6635 	void function(GtkFlowBox* box, int single) c_gtk_flow_box_set_activate_on_single_click;
6636 	void function(GtkFlowBox* box, uint spacing) c_gtk_flow_box_set_column_spacing;
6637 	void function(GtkFlowBox* box, GtkFlowBoxFilterFunc filterFunc, void* userData, GDestroyNotify destroy) c_gtk_flow_box_set_filter_func;
6638 	void function(GtkFlowBox* box, GtkAdjustment* adjustment) c_gtk_flow_box_set_hadjustment;
6639 	void function(GtkFlowBox* box, int homogeneous) c_gtk_flow_box_set_homogeneous;
6640 	void function(GtkFlowBox* box, uint nChildren) c_gtk_flow_box_set_max_children_per_line;
6641 	void function(GtkFlowBox* box, uint nChildren) c_gtk_flow_box_set_min_children_per_line;
6642 	void function(GtkFlowBox* box, uint spacing) c_gtk_flow_box_set_row_spacing;
6643 	void function(GtkFlowBox* box, GtkSelectionMode mode) c_gtk_flow_box_set_selection_mode;
6644 	void function(GtkFlowBox* box, GtkFlowBoxSortFunc sortFunc, void* userData, GDestroyNotify destroy) c_gtk_flow_box_set_sort_func;
6645 	void function(GtkFlowBox* box, GtkAdjustment* adjustment) c_gtk_flow_box_set_vadjustment;
6646 	void function(GtkFlowBox* box) c_gtk_flow_box_unselect_all;
6647 	void function(GtkFlowBox* box, GtkFlowBoxChild* child) c_gtk_flow_box_unselect_child;
6648 
6649 	// gtk.FlowBoxAccessible
6650 
6651 	GType function() c_gtk_flow_box_accessible_get_type;
6652 
6653 	// gtk.FlowBoxChild
6654 
6655 	GType function() c_gtk_flow_box_child_get_type;
6656 	GtkWidget* function() c_gtk_flow_box_child_new;
6657 	void function(GtkFlowBoxChild* child) c_gtk_flow_box_child_changed;
6658 	int function(GtkFlowBoxChild* child) c_gtk_flow_box_child_get_index;
6659 	int function(GtkFlowBoxChild* child) c_gtk_flow_box_child_is_selected;
6660 
6661 	// gtk.FlowBoxChildAccessible
6662 
6663 	GType function() c_gtk_flow_box_child_accessible_get_type;
6664 
6665 	// gtk.FontButton
6666 
6667 	GType function() c_gtk_font_button_get_type;
6668 	GtkWidget* function() c_gtk_font_button_new;
6669 	GtkWidget* function(const(char)* fontname) c_gtk_font_button_new_with_font;
6670 	const(char)* function(GtkFontButton* fontButton) c_gtk_font_button_get_font_name;
6671 	int function(GtkFontButton* fontButton) c_gtk_font_button_get_show_size;
6672 	int function(GtkFontButton* fontButton) c_gtk_font_button_get_show_style;
6673 	const(char)* function(GtkFontButton* fontButton) c_gtk_font_button_get_title;
6674 	int function(GtkFontButton* fontButton) c_gtk_font_button_get_use_font;
6675 	int function(GtkFontButton* fontButton) c_gtk_font_button_get_use_size;
6676 	int function(GtkFontButton* fontButton, const(char)* fontname) c_gtk_font_button_set_font_name;
6677 	void function(GtkFontButton* fontButton, int showSize) c_gtk_font_button_set_show_size;
6678 	void function(GtkFontButton* fontButton, int showStyle) c_gtk_font_button_set_show_style;
6679 	void function(GtkFontButton* fontButton, const(char)* title) c_gtk_font_button_set_title;
6680 	void function(GtkFontButton* fontButton, int useFont) c_gtk_font_button_set_use_font;
6681 	void function(GtkFontButton* fontButton, int useSize) c_gtk_font_button_set_use_size;
6682 
6683 	// gtk.FontChooser
6684 
6685 	GType function() c_gtk_font_chooser_get_type;
6686 	char* function(GtkFontChooser* fontchooser) c_gtk_font_chooser_get_font;
6687 	PangoFontDescription* function(GtkFontChooser* fontchooser) c_gtk_font_chooser_get_font_desc;
6688 	PangoFontFace* function(GtkFontChooser* fontchooser) c_gtk_font_chooser_get_font_face;
6689 	PangoFontFamily* function(GtkFontChooser* fontchooser) c_gtk_font_chooser_get_font_family;
6690 	char* function(GtkFontChooser* fontchooser) c_gtk_font_chooser_get_font_features;
6691 	PangoFontMap* function(GtkFontChooser* fontchooser) c_gtk_font_chooser_get_font_map;
6692 	int function(GtkFontChooser* fontchooser) c_gtk_font_chooser_get_font_size;
6693 	char* function(GtkFontChooser* fontchooser) c_gtk_font_chooser_get_language;
6694 	GtkFontChooserLevel function(GtkFontChooser* fontchooser) c_gtk_font_chooser_get_level;
6695 	char* function(GtkFontChooser* fontchooser) c_gtk_font_chooser_get_preview_text;
6696 	int function(GtkFontChooser* fontchooser) c_gtk_font_chooser_get_show_preview_entry;
6697 	void function(GtkFontChooser* fontchooser, GtkFontFilterFunc filter, void* userData, GDestroyNotify destroy) c_gtk_font_chooser_set_filter_func;
6698 	void function(GtkFontChooser* fontchooser, const(char)* fontname) c_gtk_font_chooser_set_font;
6699 	void function(GtkFontChooser* fontchooser, PangoFontDescription* fontDesc) c_gtk_font_chooser_set_font_desc;
6700 	void function(GtkFontChooser* fontchooser, PangoFontMap* fontmap) c_gtk_font_chooser_set_font_map;
6701 	void function(GtkFontChooser* fontchooser, const(char)* language) c_gtk_font_chooser_set_language;
6702 	void function(GtkFontChooser* fontchooser, GtkFontChooserLevel level) c_gtk_font_chooser_set_level;
6703 	void function(GtkFontChooser* fontchooser, const(char)* text) c_gtk_font_chooser_set_preview_text;
6704 	void function(GtkFontChooser* fontchooser, int showPreviewEntry) c_gtk_font_chooser_set_show_preview_entry;
6705 
6706 	// gtk.FontChooserDialog
6707 
6708 	GType function() c_gtk_font_chooser_dialog_get_type;
6709 	GtkWidget* function(const(char)* title, GtkWindow* parent) c_gtk_font_chooser_dialog_new;
6710 
6711 	// gtk.FontChooserWidget
6712 
6713 	GType function() c_gtk_font_chooser_widget_get_type;
6714 	GtkWidget* function() c_gtk_font_chooser_widget_new;
6715 
6716 	// gtk.FontSelection
6717 
6718 	GType function() c_gtk_font_selection_get_type;
6719 	GtkWidget* function() c_gtk_font_selection_new;
6720 	PangoFontFace* function(GtkFontSelection* fontsel) c_gtk_font_selection_get_face;
6721 	GtkWidget* function(GtkFontSelection* fontsel) c_gtk_font_selection_get_face_list;
6722 	PangoFontFamily* function(GtkFontSelection* fontsel) c_gtk_font_selection_get_family;
6723 	GtkWidget* function(GtkFontSelection* fontsel) c_gtk_font_selection_get_family_list;
6724 	char* function(GtkFontSelection* fontsel) c_gtk_font_selection_get_font_name;
6725 	GtkWidget* function(GtkFontSelection* fontsel) c_gtk_font_selection_get_preview_entry;
6726 	const(char)* function(GtkFontSelection* fontsel) c_gtk_font_selection_get_preview_text;
6727 	int function(GtkFontSelection* fontsel) c_gtk_font_selection_get_size;
6728 	GtkWidget* function(GtkFontSelection* fontsel) c_gtk_font_selection_get_size_entry;
6729 	GtkWidget* function(GtkFontSelection* fontsel) c_gtk_font_selection_get_size_list;
6730 	int function(GtkFontSelection* fontsel, const(char)* fontname) c_gtk_font_selection_set_font_name;
6731 	void function(GtkFontSelection* fontsel, const(char)* text) c_gtk_font_selection_set_preview_text;
6732 
6733 	// gtk.FontSelectionDialog
6734 
6735 	GType function() c_gtk_font_selection_dialog_get_type;
6736 	GtkWidget* function(const(char)* title) c_gtk_font_selection_dialog_new;
6737 	GtkWidget* function(GtkFontSelectionDialog* fsd) c_gtk_font_selection_dialog_get_cancel_button;
6738 	char* function(GtkFontSelectionDialog* fsd) c_gtk_font_selection_dialog_get_font_name;
6739 	GtkWidget* function(GtkFontSelectionDialog* fsd) c_gtk_font_selection_dialog_get_font_selection;
6740 	GtkWidget* function(GtkFontSelectionDialog* fsd) c_gtk_font_selection_dialog_get_ok_button;
6741 	const(char)* function(GtkFontSelectionDialog* fsd) c_gtk_font_selection_dialog_get_preview_text;
6742 	int function(GtkFontSelectionDialog* fsd, const(char)* fontname) c_gtk_font_selection_dialog_set_font_name;
6743 	void function(GtkFontSelectionDialog* fsd, const(char)* text) c_gtk_font_selection_dialog_set_preview_text;
6744 
6745 	// gtk.Frame
6746 
6747 	GType function() c_gtk_frame_get_type;
6748 	GtkWidget* function(const(char)* label) c_gtk_frame_new;
6749 	const(char)* function(GtkFrame* frame) c_gtk_frame_get_label;
6750 	void function(GtkFrame* frame, float* xalign, float* yalign) c_gtk_frame_get_label_align;
6751 	GtkWidget* function(GtkFrame* frame) c_gtk_frame_get_label_widget;
6752 	GtkShadowType function(GtkFrame* frame) c_gtk_frame_get_shadow_type;
6753 	void function(GtkFrame* frame, const(char)* label) c_gtk_frame_set_label;
6754 	void function(GtkFrame* frame, float xalign, float yalign) c_gtk_frame_set_label_align;
6755 	void function(GtkFrame* frame, GtkWidget* labelWidget) c_gtk_frame_set_label_widget;
6756 	void function(GtkFrame* frame, GtkShadowType type) c_gtk_frame_set_shadow_type;
6757 
6758 	// gtk.FrameAccessible
6759 
6760 	GType function() c_gtk_frame_accessible_get_type;
6761 
6762 	// gtk.GLArea
6763 
6764 	GType function() c_gtk_gl_area_get_type;
6765 	GtkWidget* function() c_gtk_gl_area_new;
6766 	void function(GtkGLArea* area) c_gtk_gl_area_attach_buffers;
6767 	int function(GtkGLArea* area) c_gtk_gl_area_get_auto_render;
6768 	GdkGLContext* function(GtkGLArea* area) c_gtk_gl_area_get_context;
6769 	GError* function(GtkGLArea* area) c_gtk_gl_area_get_error;
6770 	int function(GtkGLArea* area) c_gtk_gl_area_get_has_alpha;
6771 	int function(GtkGLArea* area) c_gtk_gl_area_get_has_depth_buffer;
6772 	int function(GtkGLArea* area) c_gtk_gl_area_get_has_stencil_buffer;
6773 	void function(GtkGLArea* area, int* major, int* minor) c_gtk_gl_area_get_required_version;
6774 	int function(GtkGLArea* area) c_gtk_gl_area_get_use_es;
6775 	void function(GtkGLArea* area) c_gtk_gl_area_make_current;
6776 	void function(GtkGLArea* area) c_gtk_gl_area_queue_render;
6777 	void function(GtkGLArea* area, int autoRender) c_gtk_gl_area_set_auto_render;
6778 	void function(GtkGLArea* area, GError* error) c_gtk_gl_area_set_error;
6779 	void function(GtkGLArea* area, int hasAlpha) c_gtk_gl_area_set_has_alpha;
6780 	void function(GtkGLArea* area, int hasDepthBuffer) c_gtk_gl_area_set_has_depth_buffer;
6781 	void function(GtkGLArea* area, int hasStencilBuffer) c_gtk_gl_area_set_has_stencil_buffer;
6782 	void function(GtkGLArea* area, int major, int minor) c_gtk_gl_area_set_required_version;
6783 	void function(GtkGLArea* area, int useEs) c_gtk_gl_area_set_use_es;
6784 
6785 	// gtk.Gesture
6786 
6787 	GType function() c_gtk_gesture_get_type;
6788 	int function(GtkGesture* gesture, GdkRectangle* rect) c_gtk_gesture_get_bounding_box;
6789 	int function(GtkGesture* gesture, double* x, double* y) c_gtk_gesture_get_bounding_box_center;
6790 	GdkDevice* function(GtkGesture* gesture) c_gtk_gesture_get_device;
6791 	GList* function(GtkGesture* gesture) c_gtk_gesture_get_group;
6792 	GdkEvent* function(GtkGesture* gesture, GdkEventSequence* sequence) c_gtk_gesture_get_last_event;
6793 	GdkEventSequence* function(GtkGesture* gesture) c_gtk_gesture_get_last_updated_sequence;
6794 	int function(GtkGesture* gesture, GdkEventSequence* sequence, double* x, double* y) c_gtk_gesture_get_point;
6795 	GtkEventSequenceState function(GtkGesture* gesture, GdkEventSequence* sequence) c_gtk_gesture_get_sequence_state;
6796 	GList* function(GtkGesture* gesture) c_gtk_gesture_get_sequences;
6797 	GdkWindow* function(GtkGesture* gesture) c_gtk_gesture_get_window;
6798 	void function(GtkGesture* groupGesture, GtkGesture* gesture) c_gtk_gesture_group;
6799 	int function(GtkGesture* gesture, GdkEventSequence* sequence) c_gtk_gesture_handles_sequence;
6800 	int function(GtkGesture* gesture) c_gtk_gesture_is_active;
6801 	int function(GtkGesture* gesture, GtkGesture* other) c_gtk_gesture_is_grouped_with;
6802 	int function(GtkGesture* gesture) c_gtk_gesture_is_recognized;
6803 	int function(GtkGesture* gesture, GdkEventSequence* sequence, GtkEventSequenceState state) c_gtk_gesture_set_sequence_state;
6804 	int function(GtkGesture* gesture, GtkEventSequenceState state) c_gtk_gesture_set_state;
6805 	void function(GtkGesture* gesture, GdkWindow* window) c_gtk_gesture_set_window;
6806 	void function(GtkGesture* gesture) c_gtk_gesture_ungroup;
6807 
6808 	// gtk.GestureDrag
6809 
6810 	GType function() c_gtk_gesture_drag_get_type;
6811 	GtkGesture* function(GtkWidget* widget) c_gtk_gesture_drag_new;
6812 	int function(GtkGestureDrag* gesture, double* x, double* y) c_gtk_gesture_drag_get_offset;
6813 	int function(GtkGestureDrag* gesture, double* x, double* y) c_gtk_gesture_drag_get_start_point;
6814 
6815 	// gtk.GestureLongPress
6816 
6817 	GType function() c_gtk_gesture_long_press_get_type;
6818 	GtkGesture* function(GtkWidget* widget) c_gtk_gesture_long_press_new;
6819 
6820 	// gtk.GestureMultiPress
6821 
6822 	GType function() c_gtk_gesture_multi_press_get_type;
6823 	GtkGesture* function(GtkWidget* widget) c_gtk_gesture_multi_press_new;
6824 	int function(GtkGestureMultiPress* gesture, GdkRectangle* rect) c_gtk_gesture_multi_press_get_area;
6825 	void function(GtkGestureMultiPress* gesture, GdkRectangle* rect) c_gtk_gesture_multi_press_set_area;
6826 
6827 	// gtk.GesturePan
6828 
6829 	GType function() c_gtk_gesture_pan_get_type;
6830 	GtkGesture* function(GtkWidget* widget, GtkOrientation orientation) c_gtk_gesture_pan_new;
6831 	GtkOrientation function(GtkGesturePan* gesture) c_gtk_gesture_pan_get_orientation;
6832 	void function(GtkGesturePan* gesture, GtkOrientation orientation) c_gtk_gesture_pan_set_orientation;
6833 
6834 	// gtk.GestureRotate
6835 
6836 	GType function() c_gtk_gesture_rotate_get_type;
6837 	GtkGesture* function(GtkWidget* widget) c_gtk_gesture_rotate_new;
6838 	double function(GtkGestureRotate* gesture) c_gtk_gesture_rotate_get_angle_delta;
6839 
6840 	// gtk.GestureSingle
6841 
6842 	GType function() c_gtk_gesture_single_get_type;
6843 	uint function(GtkGestureSingle* gesture) c_gtk_gesture_single_get_button;
6844 	uint function(GtkGestureSingle* gesture) c_gtk_gesture_single_get_current_button;
6845 	GdkEventSequence* function(GtkGestureSingle* gesture) c_gtk_gesture_single_get_current_sequence;
6846 	int function(GtkGestureSingle* gesture) c_gtk_gesture_single_get_exclusive;
6847 	int function(GtkGestureSingle* gesture) c_gtk_gesture_single_get_touch_only;
6848 	void function(GtkGestureSingle* gesture, uint button) c_gtk_gesture_single_set_button;
6849 	void function(GtkGestureSingle* gesture, int exclusive) c_gtk_gesture_single_set_exclusive;
6850 	void function(GtkGestureSingle* gesture, int touchOnly) c_gtk_gesture_single_set_touch_only;
6851 
6852 	// gtk.GestureStylus
6853 
6854 	GType function() c_gtk_gesture_stylus_get_type;
6855 	GtkGesture* function(GtkWidget* widget) c_gtk_gesture_stylus_new;
6856 	int function(GtkGestureStylus* gesture, GdkAxisUse* axes, double** values) c_gtk_gesture_stylus_get_axes;
6857 	int function(GtkGestureStylus* gesture, GdkAxisUse axis, double* value) c_gtk_gesture_stylus_get_axis;
6858 	GdkDeviceTool* function(GtkGestureStylus* gesture) c_gtk_gesture_stylus_get_device_tool;
6859 
6860 	// gtk.GestureSwipe
6861 
6862 	GType function() c_gtk_gesture_swipe_get_type;
6863 	GtkGesture* function(GtkWidget* widget) c_gtk_gesture_swipe_new;
6864 	int function(GtkGestureSwipe* gesture, double* velocityX, double* velocityY) c_gtk_gesture_swipe_get_velocity;
6865 
6866 	// gtk.GestureZoom
6867 
6868 	GType function() c_gtk_gesture_zoom_get_type;
6869 	GtkGesture* function(GtkWidget* widget) c_gtk_gesture_zoom_new;
6870 	double function(GtkGestureZoom* gesture) c_gtk_gesture_zoom_get_scale_delta;
6871 
6872 	// gtk.Gradient
6873 
6874 	GType function() c_gtk_gradient_get_type;
6875 	GtkGradient* function(double x0, double y0, double x1, double y1) c_gtk_gradient_new_linear;
6876 	GtkGradient* function(double x0, double y0, double radius0, double x1, double y1, double radius1) c_gtk_gradient_new_radial;
6877 	void function(GtkGradient* gradient, double offset, GtkSymbolicColor* color) c_gtk_gradient_add_color_stop;
6878 	GtkGradient* function(GtkGradient* gradient) c_gtk_gradient_ref;
6879 	int function(GtkGradient* gradient, GtkStyleProperties* props, cairo_pattern_t** resolvedGradient) c_gtk_gradient_resolve;
6880 	cairo_pattern_t* function(GtkGradient* gradient, GtkStyleContext* context) c_gtk_gradient_resolve_for_context;
6881 	char* function(GtkGradient* gradient) c_gtk_gradient_to_string;
6882 	void function(GtkGradient* gradient) c_gtk_gradient_unref;
6883 
6884 	// gtk.Grid
6885 
6886 	GType function() c_gtk_grid_get_type;
6887 	GtkWidget* function() c_gtk_grid_new;
6888 	void function(GtkGrid* grid, GtkWidget* child, int left, int top, int width, int height) c_gtk_grid_attach;
6889 	void function(GtkGrid* grid, GtkWidget* child, GtkWidget* sibling, GtkPositionType side, int width, int height) c_gtk_grid_attach_next_to;
6890 	int function(GtkGrid* grid) c_gtk_grid_get_baseline_row;
6891 	GtkWidget* function(GtkGrid* grid, int left, int top) c_gtk_grid_get_child_at;
6892 	int function(GtkGrid* grid) c_gtk_grid_get_column_homogeneous;
6893 	uint function(GtkGrid* grid) c_gtk_grid_get_column_spacing;
6894 	GtkBaselinePosition function(GtkGrid* grid, int row) c_gtk_grid_get_row_baseline_position;
6895 	int function(GtkGrid* grid) c_gtk_grid_get_row_homogeneous;
6896 	uint function(GtkGrid* grid) c_gtk_grid_get_row_spacing;
6897 	void function(GtkGrid* grid, int position) c_gtk_grid_insert_column;
6898 	void function(GtkGrid* grid, GtkWidget* sibling, GtkPositionType side) c_gtk_grid_insert_next_to;
6899 	void function(GtkGrid* grid, int position) c_gtk_grid_insert_row;
6900 	void function(GtkGrid* grid, int position) c_gtk_grid_remove_column;
6901 	void function(GtkGrid* grid, int position) c_gtk_grid_remove_row;
6902 	void function(GtkGrid* grid, int row) c_gtk_grid_set_baseline_row;
6903 	void function(GtkGrid* grid, int homogeneous) c_gtk_grid_set_column_homogeneous;
6904 	void function(GtkGrid* grid, uint spacing) c_gtk_grid_set_column_spacing;
6905 	void function(GtkGrid* grid, int row, GtkBaselinePosition pos) c_gtk_grid_set_row_baseline_position;
6906 	void function(GtkGrid* grid, int homogeneous) c_gtk_grid_set_row_homogeneous;
6907 	void function(GtkGrid* grid, uint spacing) c_gtk_grid_set_row_spacing;
6908 
6909 	// gtk.HBox
6910 
6911 	GType function() c_gtk_hbox_get_type;
6912 	GtkWidget* function(int homogeneous, int spacing) c_gtk_hbox_new;
6913 
6914 	// gtk.HButtonBox
6915 
6916 	GType function() c_gtk_hbutton_box_get_type;
6917 	GtkWidget* function() c_gtk_hbutton_box_new;
6918 
6919 	// gtk.HPaned
6920 
6921 	GType function() c_gtk_hpaned_get_type;
6922 	GtkWidget* function() c_gtk_hpaned_new;
6923 
6924 	// gtk.HSV
6925 
6926 	GType function() c_gtk_hsv_get_type;
6927 	GtkWidget* function() c_gtk_hsv_new;
6928 	void function(double h, double s, double v, double* r, double* g, double* b) c_gtk_hsv_to_rgb;
6929 	void function(GtkHSV* hsv, double* h, double* s, double* v) c_gtk_hsv_get_color;
6930 	void function(GtkHSV* hsv, int* size, int* ringWidth) c_gtk_hsv_get_metrics;
6931 	int function(GtkHSV* hsv) c_gtk_hsv_is_adjusting;
6932 	void function(GtkHSV* hsv, double h, double s, double v) c_gtk_hsv_set_color;
6933 	void function(GtkHSV* hsv, int size, int ringWidth) c_gtk_hsv_set_metrics;
6934 	void function(double r, double g, double b, double* h, double* s, double* v) c_gtk_rgb_to_hsv;
6935 
6936 	// gtk.HScale
6937 
6938 	GType function() c_gtk_hscale_get_type;
6939 	GtkWidget* function(GtkAdjustment* adjustment) c_gtk_hscale_new;
6940 	GtkWidget* function(double min, double max, double step) c_gtk_hscale_new_with_range;
6941 
6942 	// gtk.HScrollbar
6943 
6944 	GType function() c_gtk_hscrollbar_get_type;
6945 	GtkWidget* function(GtkAdjustment* adjustment) c_gtk_hscrollbar_new;
6946 
6947 	// gtk.HSeparator
6948 
6949 	GType function() c_gtk_hseparator_get_type;
6950 	GtkWidget* function() c_gtk_hseparator_new;
6951 
6952 	// gtk.HandleBox
6953 
6954 	GType function() c_gtk_handle_box_get_type;
6955 	GtkWidget* function() c_gtk_handle_box_new;
6956 	int function(GtkHandleBox* handleBox) c_gtk_handle_box_get_child_detached;
6957 	GtkPositionType function(GtkHandleBox* handleBox) c_gtk_handle_box_get_handle_position;
6958 	GtkShadowType function(GtkHandleBox* handleBox) c_gtk_handle_box_get_shadow_type;
6959 	GtkPositionType function(GtkHandleBox* handleBox) c_gtk_handle_box_get_snap_edge;
6960 	void function(GtkHandleBox* handleBox, GtkPositionType position) c_gtk_handle_box_set_handle_position;
6961 	void function(GtkHandleBox* handleBox, GtkShadowType type) c_gtk_handle_box_set_shadow_type;
6962 	void function(GtkHandleBox* handleBox, GtkPositionType edge) c_gtk_handle_box_set_snap_edge;
6963 
6964 	// gtk.HeaderBar
6965 
6966 	GType function() c_gtk_header_bar_get_type;
6967 	GtkWidget* function() c_gtk_header_bar_new;
6968 	GtkWidget* function(GtkHeaderBar* bar) c_gtk_header_bar_get_custom_title;
6969 	const(char)* function(GtkHeaderBar* bar) c_gtk_header_bar_get_decoration_layout;
6970 	int function(GtkHeaderBar* bar) c_gtk_header_bar_get_has_subtitle;
6971 	int function(GtkHeaderBar* bar) c_gtk_header_bar_get_show_close_button;
6972 	const(char)* function(GtkHeaderBar* bar) c_gtk_header_bar_get_subtitle;
6973 	const(char)* function(GtkHeaderBar* bar) c_gtk_header_bar_get_title;
6974 	void function(GtkHeaderBar* bar, GtkWidget* child) c_gtk_header_bar_pack_end;
6975 	void function(GtkHeaderBar* bar, GtkWidget* child) c_gtk_header_bar_pack_start;
6976 	void function(GtkHeaderBar* bar, GtkWidget* titleWidget) c_gtk_header_bar_set_custom_title;
6977 	void function(GtkHeaderBar* bar, const(char)* layout) c_gtk_header_bar_set_decoration_layout;
6978 	void function(GtkHeaderBar* bar, int setting) c_gtk_header_bar_set_has_subtitle;
6979 	void function(GtkHeaderBar* bar, int setting) c_gtk_header_bar_set_show_close_button;
6980 	void function(GtkHeaderBar* bar, const(char)* subtitle) c_gtk_header_bar_set_subtitle;
6981 	void function(GtkHeaderBar* bar, const(char)* title) c_gtk_header_bar_set_title;
6982 
6983 	// gtk.IMContext
6984 
6985 	GType function() c_gtk_im_context_get_type;
6986 	int function(GtkIMContext* context, int offset, int nChars) c_gtk_im_context_delete_surrounding;
6987 	int function(GtkIMContext* context, GdkEventKey* event) c_gtk_im_context_filter_keypress;
6988 	void function(GtkIMContext* context) c_gtk_im_context_focus_in;
6989 	void function(GtkIMContext* context) c_gtk_im_context_focus_out;
6990 	void function(GtkIMContext* context, char** str, PangoAttrList** attrs, int* cursorPos) c_gtk_im_context_get_preedit_string;
6991 	int function(GtkIMContext* context, char** text, int* cursorIndex) c_gtk_im_context_get_surrounding;
6992 	void function(GtkIMContext* context) c_gtk_im_context_reset;
6993 	void function(GtkIMContext* context, GdkWindow* window) c_gtk_im_context_set_client_window;
6994 	void function(GtkIMContext* context, GdkRectangle* area) c_gtk_im_context_set_cursor_location;
6995 	void function(GtkIMContext* context, const(char)* text, int len, int cursorIndex) c_gtk_im_context_set_surrounding;
6996 	void function(GtkIMContext* context, int usePreedit) c_gtk_im_context_set_use_preedit;
6997 
6998 	// gtk.IMContextSimple
6999 
7000 	GType function() c_gtk_im_context_simple_get_type;
7001 	GtkIMContext* function() c_gtk_im_context_simple_new;
7002 	void function(GtkIMContextSimple* contextSimple, const(char)* composeFile) c_gtk_im_context_simple_add_compose_file;
7003 	void function(GtkIMContextSimple* contextSimple, ushort* data, int maxSeqLen, int nSeqs) c_gtk_im_context_simple_add_table;
7004 
7005 	// gtk.IMMulticontext
7006 
7007 	GType function() c_gtk_im_multicontext_get_type;
7008 	GtkIMContext* function() c_gtk_im_multicontext_new;
7009 	void function(GtkIMMulticontext* context, GtkMenuShell* menushell) c_gtk_im_multicontext_append_menuitems;
7010 	const(char)* function(GtkIMMulticontext* context) c_gtk_im_multicontext_get_context_id;
7011 	void function(GtkIMMulticontext* context, const(char)* contextId) c_gtk_im_multicontext_set_context_id;
7012 
7013 	// gtk.IconFactory
7014 
7015 	GType function() c_gtk_icon_factory_get_type;
7016 	GtkIconFactory* function() c_gtk_icon_factory_new;
7017 	GtkIconSet* function(const(char)* stockId) c_gtk_icon_factory_lookup_default;
7018 	void function(GtkIconFactory* factory, const(char)* stockId, GtkIconSet* iconSet) c_gtk_icon_factory_add;
7019 	void function(GtkIconFactory* factory) c_gtk_icon_factory_add_default;
7020 	GtkIconSet* function(GtkIconFactory* factory, const(char)* stockId) c_gtk_icon_factory_lookup;
7021 	void function(GtkIconFactory* factory) c_gtk_icon_factory_remove_default;
7022 
7023 	// gtk.IconInfo
7024 
7025 	GType function() c_gtk_icon_info_get_type;
7026 	GtkIconInfo* function(GtkIconTheme* iconTheme, GdkPixbuf* pixbuf) c_gtk_icon_info_new_for_pixbuf;
7027 	GtkIconInfo* function(GtkIconInfo* iconInfo) c_gtk_icon_info_copy;
7028 	void function(GtkIconInfo* iconInfo) c_gtk_icon_info_free;
7029 	int function(GtkIconInfo* iconInfo, GdkPoint** points, int* nPoints) c_gtk_icon_info_get_attach_points;
7030 	int function(GtkIconInfo* iconInfo) c_gtk_icon_info_get_base_scale;
7031 	int function(GtkIconInfo* iconInfo) c_gtk_icon_info_get_base_size;
7032 	GdkPixbuf* function(GtkIconInfo* iconInfo) c_gtk_icon_info_get_builtin_pixbuf;
7033 	const(char)* function(GtkIconInfo* iconInfo) c_gtk_icon_info_get_display_name;
7034 	int function(GtkIconInfo* iconInfo, GdkRectangle* rectangle) c_gtk_icon_info_get_embedded_rect;
7035 	char* function(GtkIconInfo* iconInfo) c_gtk_icon_info_get_filename;
7036 	int function(GtkIconInfo* iconInfo) c_gtk_icon_info_is_symbolic;
7037 	GdkPixbuf* function(GtkIconInfo* iconInfo, GError** err) c_gtk_icon_info_load_icon;
7038 	void function(GtkIconInfo* iconInfo, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_gtk_icon_info_load_icon_async;
7039 	GdkPixbuf* function(GtkIconInfo* iconInfo, GAsyncResult* res, GError** err) c_gtk_icon_info_load_icon_finish;
7040 	cairo_surface_t* function(GtkIconInfo* iconInfo, GdkWindow* forWindow, GError** err) c_gtk_icon_info_load_surface;
7041 	GdkPixbuf* function(GtkIconInfo* iconInfo, GdkRGBA* fg, GdkRGBA* successColor, GdkRGBA* warningColor, GdkRGBA* errorColor, int* wasSymbolic, GError** err) c_gtk_icon_info_load_symbolic;
7042 	void function(GtkIconInfo* iconInfo, GdkRGBA* fg, GdkRGBA* successColor, GdkRGBA* warningColor, GdkRGBA* errorColor, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_gtk_icon_info_load_symbolic_async;
7043 	GdkPixbuf* function(GtkIconInfo* iconInfo, GAsyncResult* res, int* wasSymbolic, GError** err) c_gtk_icon_info_load_symbolic_finish;
7044 	GdkPixbuf* function(GtkIconInfo* iconInfo, GtkStyleContext* context, int* wasSymbolic, GError** err) c_gtk_icon_info_load_symbolic_for_context;
7045 	void function(GtkIconInfo* iconInfo, GtkStyleContext* context, GCancellable* cancellable, GAsyncReadyCallback callback, void* userData) c_gtk_icon_info_load_symbolic_for_context_async;
7046 	GdkPixbuf* function(GtkIconInfo* iconInfo, GAsyncResult* res, int* wasSymbolic, GError** err) c_gtk_icon_info_load_symbolic_for_context_finish;
7047 	GdkPixbuf* function(GtkIconInfo* iconInfo, GtkStyle* style, GtkStateType state, int* wasSymbolic, GError** err) c_gtk_icon_info_load_symbolic_for_style;
7048 	void function(GtkIconInfo* iconInfo, int rawCoordinates) c_gtk_icon_info_set_raw_coordinates;
7049 
7050 	// gtk.IconSet
7051 
7052 	GType function() c_gtk_icon_set_get_type;
7053 	GtkIconSet* function() c_gtk_icon_set_new;
7054 	GtkIconSet* function(GdkPixbuf* pixbuf) c_gtk_icon_set_new_from_pixbuf;
7055 	void function(GtkIconSet* iconSet, GtkIconSource* source) c_gtk_icon_set_add_source;
7056 	GtkIconSet* function(GtkIconSet* iconSet) c_gtk_icon_set_copy;
7057 	void function(GtkIconSet* iconSet, GtkIconSize** sizes, int* nSizes) c_gtk_icon_set_get_sizes;
7058 	GtkIconSet* function(GtkIconSet* iconSet) c_gtk_icon_set_ref;
7059 	GdkPixbuf* function(GtkIconSet* iconSet, GtkStyle* style, GtkTextDirection direction, GtkStateType state, GtkIconSize size, GtkWidget* widget, const(char)* detail) c_gtk_icon_set_render_icon;
7060 	GdkPixbuf* function(GtkIconSet* iconSet, GtkStyleContext* context, GtkIconSize size) c_gtk_icon_set_render_icon_pixbuf;
7061 	cairo_surface_t* function(GtkIconSet* iconSet, GtkStyleContext* context, GtkIconSize size, int scale, GdkWindow* forWindow) c_gtk_icon_set_render_icon_surface;
7062 	void function(GtkIconSet* iconSet) c_gtk_icon_set_unref;
7063 
7064 	// gtk.IconSource
7065 
7066 	GType function() c_gtk_icon_source_get_type;
7067 	GtkIconSource* function() c_gtk_icon_source_new;
7068 	GtkIconSource* function(GtkIconSource* source) c_gtk_icon_source_copy;
7069 	void function(GtkIconSource* source) c_gtk_icon_source_free;
7070 	GtkTextDirection function(GtkIconSource* source) c_gtk_icon_source_get_direction;
7071 	int function(GtkIconSource* source) c_gtk_icon_source_get_direction_wildcarded;
7072 	char* function(GtkIconSource* source) c_gtk_icon_source_get_filename;
7073 	const(char)* function(GtkIconSource* source) c_gtk_icon_source_get_icon_name;
7074 	GdkPixbuf* function(GtkIconSource* source) c_gtk_icon_source_get_pixbuf;
7075 	GtkIconSize function(GtkIconSource* source) c_gtk_icon_source_get_size;
7076 	int function(GtkIconSource* source) c_gtk_icon_source_get_size_wildcarded;
7077 	GtkStateType function(GtkIconSource* source) c_gtk_icon_source_get_state;
7078 	int function(GtkIconSource* source) c_gtk_icon_source_get_state_wildcarded;
7079 	void function(GtkIconSource* source, GtkTextDirection direction) c_gtk_icon_source_set_direction;
7080 	void function(GtkIconSource* source, int setting) c_gtk_icon_source_set_direction_wildcarded;
7081 	void function(GtkIconSource* source, char* filename) c_gtk_icon_source_set_filename;
7082 	void function(GtkIconSource* source, const(char)* iconName) c_gtk_icon_source_set_icon_name;
7083 	void function(GtkIconSource* source, GdkPixbuf* pixbuf) c_gtk_icon_source_set_pixbuf;
7084 	void function(GtkIconSource* source, GtkIconSize size) c_gtk_icon_source_set_size;
7085 	void function(GtkIconSource* source, int setting) c_gtk_icon_source_set_size_wildcarded;
7086 	void function(GtkIconSource* source, GtkStateType state) c_gtk_icon_source_set_state;
7087 	void function(GtkIconSource* source, int setting) c_gtk_icon_source_set_state_wildcarded;
7088 
7089 	// gtk.IconTheme
7090 
7091 	GType function() c_gtk_icon_theme_get_type;
7092 	GtkIconTheme* function() c_gtk_icon_theme_new;
7093 	void function(const(char)* iconName, int size, GdkPixbuf* pixbuf) c_gtk_icon_theme_add_builtin_icon;
7094 	GtkIconTheme* function() c_gtk_icon_theme_get_default;
7095 	GtkIconTheme* function(GdkScreen* screen) c_gtk_icon_theme_get_for_screen;
7096 	void function(GtkIconTheme* iconTheme, const(char)* path) c_gtk_icon_theme_add_resource_path;
7097 	void function(GtkIconTheme* iconTheme, char* path) c_gtk_icon_theme_append_search_path;
7098 	GtkIconInfo* function(GtkIconTheme* iconTheme, char** iconNames, int size, GtkIconLookupFlags flags) c_gtk_icon_theme_choose_icon;
7099 	GtkIconInfo* function(GtkIconTheme* iconTheme, char** iconNames, int size, int scale, GtkIconLookupFlags flags) c_gtk_icon_theme_choose_icon_for_scale;
7100 	char* function(GtkIconTheme* iconTheme) c_gtk_icon_theme_get_example_icon_name;
7101 	int* function(GtkIconTheme* iconTheme, const(char)* iconName) c_gtk_icon_theme_get_icon_sizes;
7102 	void function(GtkIconTheme* iconTheme, char*** path, int* nElements) c_gtk_icon_theme_get_search_path;
7103 	int function(GtkIconTheme* iconTheme, const(char)* iconName) c_gtk_icon_theme_has_icon;
7104 	GList* function(GtkIconTheme* iconTheme) c_gtk_icon_theme_list_contexts;
7105 	GList* function(GtkIconTheme* iconTheme, const(char)* context) c_gtk_icon_theme_list_icons;
7106 	GdkPixbuf* function(GtkIconTheme* iconTheme, const(char)* iconName, int size, GtkIconLookupFlags flags, GError** err) c_gtk_icon_theme_load_icon;
7107 	GdkPixbuf* function(GtkIconTheme* iconTheme, const(char)* iconName, int size, int scale, GtkIconLookupFlags flags, GError** err) c_gtk_icon_theme_load_icon_for_scale;
7108 	cairo_surface_t* function(GtkIconTheme* iconTheme, const(char)* iconName, int size, int scale, GdkWindow* forWindow, GtkIconLookupFlags flags, GError** err) c_gtk_icon_theme_load_surface;
7109 	GtkIconInfo* function(GtkIconTheme* iconTheme, GIcon* icon, int size, GtkIconLookupFlags flags) c_gtk_icon_theme_lookup_by_gicon;
7110 	GtkIconInfo* function(GtkIconTheme* iconTheme, GIcon* icon, int size, int scale, GtkIconLookupFlags flags) c_gtk_icon_theme_lookup_by_gicon_for_scale;
7111 	GtkIconInfo* function(GtkIconTheme* iconTheme, const(char)* iconName, int size, GtkIconLookupFlags flags) c_gtk_icon_theme_lookup_icon;
7112 	GtkIconInfo* function(GtkIconTheme* iconTheme, const(char)* iconName, int size, int scale, GtkIconLookupFlags flags) c_gtk_icon_theme_lookup_icon_for_scale;
7113 	void function(GtkIconTheme* iconTheme, char* path) c_gtk_icon_theme_prepend_search_path;
7114 	int function(GtkIconTheme* iconTheme) c_gtk_icon_theme_rescan_if_needed;
7115 	void function(GtkIconTheme* iconTheme, const(char)* themeName) c_gtk_icon_theme_set_custom_theme;
7116 	void function(GtkIconTheme* iconTheme, GdkScreen* screen) c_gtk_icon_theme_set_screen;
7117 	void function(GtkIconTheme* iconTheme, char** path, int nElements) c_gtk_icon_theme_set_search_path;
7118 
7119 	// gtk.IconView
7120 
7121 	GType function() c_gtk_icon_view_get_type;
7122 	GtkWidget* function() c_gtk_icon_view_new;
7123 	GtkWidget* function(GtkCellArea* area) c_gtk_icon_view_new_with_area;
7124 	GtkWidget* function(GtkTreeModel* model) c_gtk_icon_view_new_with_model;
7125 	void function(GtkIconView* iconView, int wx, int wy, int* bx, int* by) c_gtk_icon_view_convert_widget_to_bin_window_coords;
7126 	cairo_surface_t* function(GtkIconView* iconView, GtkTreePath* path) c_gtk_icon_view_create_drag_icon;
7127 	void function(GtkIconView* iconView, GtkTargetEntry* targets, int nTargets, GdkDragAction actions) c_gtk_icon_view_enable_model_drag_dest;
7128 	void function(GtkIconView* iconView, GdkModifierType startButtonMask, GtkTargetEntry* targets, int nTargets, GdkDragAction actions) c_gtk_icon_view_enable_model_drag_source;
7129 	int function(GtkIconView* iconView) c_gtk_icon_view_get_activate_on_single_click;
7130 	int function(GtkIconView* iconView, GtkTreePath* path, GtkCellRenderer* cell, GdkRectangle* rect) c_gtk_icon_view_get_cell_rect;
7131 	int function(GtkIconView* iconView) c_gtk_icon_view_get_column_spacing;
7132 	int function(GtkIconView* iconView) c_gtk_icon_view_get_columns;
7133 	int function(GtkIconView* iconView, GtkTreePath** path, GtkCellRenderer** cell) c_gtk_icon_view_get_cursor;
7134 	int function(GtkIconView* iconView, int dragX, int dragY, GtkTreePath** path, GtkIconViewDropPosition* pos) c_gtk_icon_view_get_dest_item_at_pos;
7135 	void function(GtkIconView* iconView, GtkTreePath** path, GtkIconViewDropPosition* pos) c_gtk_icon_view_get_drag_dest_item;
7136 	int function(GtkIconView* iconView, int x, int y, GtkTreePath** path, GtkCellRenderer** cell) c_gtk_icon_view_get_item_at_pos;
7137 	int function(GtkIconView* iconView, GtkTreePath* path) c_gtk_icon_view_get_item_column;
7138 	GtkOrientation function(GtkIconView* iconView) c_gtk_icon_view_get_item_orientation;
7139 	int function(GtkIconView* iconView) c_gtk_icon_view_get_item_padding;
7140 	int function(GtkIconView* iconView, GtkTreePath* path) c_gtk_icon_view_get_item_row;
7141 	int function(GtkIconView* iconView) c_gtk_icon_view_get_item_width;
7142 	int function(GtkIconView* iconView) c_gtk_icon_view_get_margin;
7143 	int function(GtkIconView* iconView) c_gtk_icon_view_get_markup_column;
7144 	GtkTreeModel* function(GtkIconView* iconView) c_gtk_icon_view_get_model;
7145 	GtkTreePath* function(GtkIconView* iconView, int x, int y) c_gtk_icon_view_get_path_at_pos;
7146 	int function(GtkIconView* iconView) c_gtk_icon_view_get_pixbuf_column;
7147 	int function(GtkIconView* iconView) c_gtk_icon_view_get_reorderable;
7148 	int function(GtkIconView* iconView) c_gtk_icon_view_get_row_spacing;
7149 	GList* function(GtkIconView* iconView) c_gtk_icon_view_get_selected_items;
7150 	GtkSelectionMode function(GtkIconView* iconView) c_gtk_icon_view_get_selection_mode;
7151 	int function(GtkIconView* iconView) c_gtk_icon_view_get_spacing;
7152 	int function(GtkIconView* iconView) c_gtk_icon_view_get_text_column;
7153 	int function(GtkIconView* iconView) c_gtk_icon_view_get_tooltip_column;
7154 	int function(GtkIconView* iconView, int* x, int* y, int keyboardTip, GtkTreeModel** model, GtkTreePath** path, GtkTreeIter* iter) c_gtk_icon_view_get_tooltip_context;
7155 	int function(GtkIconView* iconView, GtkTreePath** startPath, GtkTreePath** endPath) c_gtk_icon_view_get_visible_range;
7156 	void function(GtkIconView* iconView, GtkTreePath* path) c_gtk_icon_view_item_activated;
7157 	int function(GtkIconView* iconView, GtkTreePath* path) c_gtk_icon_view_path_is_selected;
7158 	void function(GtkIconView* iconView, GtkTreePath* path, int useAlign, float rowAlign, float colAlign) c_gtk_icon_view_scroll_to_path;
7159 	void function(GtkIconView* iconView) c_gtk_icon_view_select_all;
7160 	void function(GtkIconView* iconView, GtkTreePath* path) c_gtk_icon_view_select_path;
7161 	void function(GtkIconView* iconView, GtkIconViewForeachFunc func, void* data) c_gtk_icon_view_selected_foreach;
7162 	void function(GtkIconView* iconView, int single) c_gtk_icon_view_set_activate_on_single_click;
7163 	void function(GtkIconView* iconView, int columnSpacing) c_gtk_icon_view_set_column_spacing;
7164 	void function(GtkIconView* iconView, int columns) c_gtk_icon_view_set_columns;
7165 	void function(GtkIconView* iconView, GtkTreePath* path, GtkCellRenderer* cell, int startEditing) c_gtk_icon_view_set_cursor;
7166 	void function(GtkIconView* iconView, GtkTreePath* path, GtkIconViewDropPosition pos) c_gtk_icon_view_set_drag_dest_item;
7167 	void function(GtkIconView* iconView, GtkOrientation orientation) c_gtk_icon_view_set_item_orientation;
7168 	void function(GtkIconView* iconView, int itemPadding) c_gtk_icon_view_set_item_padding;
7169 	void function(GtkIconView* iconView, int itemWidth) c_gtk_icon_view_set_item_width;
7170 	void function(GtkIconView* iconView, int margin) c_gtk_icon_view_set_margin;
7171 	void function(GtkIconView* iconView, int column) c_gtk_icon_view_set_markup_column;
7172 	void function(GtkIconView* iconView, GtkTreeModel* model) c_gtk_icon_view_set_model;
7173 	void function(GtkIconView* iconView, int column) c_gtk_icon_view_set_pixbuf_column;
7174 	void function(GtkIconView* iconView, int reorderable) c_gtk_icon_view_set_reorderable;
7175 	void function(GtkIconView* iconView, int rowSpacing) c_gtk_icon_view_set_row_spacing;
7176 	void function(GtkIconView* iconView, GtkSelectionMode mode) c_gtk_icon_view_set_selection_mode;
7177 	void function(GtkIconView* iconView, int spacing) c_gtk_icon_view_set_spacing;
7178 	void function(GtkIconView* iconView, int column) c_gtk_icon_view_set_text_column;
7179 	void function(GtkIconView* iconView, GtkTooltip* tooltip, GtkTreePath* path, GtkCellRenderer* cell) c_gtk_icon_view_set_tooltip_cell;
7180 	void function(GtkIconView* iconView, int column) c_gtk_icon_view_set_tooltip_column;
7181 	void function(GtkIconView* iconView, GtkTooltip* tooltip, GtkTreePath* path) c_gtk_icon_view_set_tooltip_item;
7182 	void function(GtkIconView* iconView) c_gtk_icon_view_unselect_all;
7183 	void function(GtkIconView* iconView, GtkTreePath* path) c_gtk_icon_view_unselect_path;
7184 	void function(GtkIconView* iconView) c_gtk_icon_view_unset_model_drag_dest;
7185 	void function(GtkIconView* iconView) c_gtk_icon_view_unset_model_drag_source;
7186 
7187 	// gtk.IconViewAccessible
7188 
7189 	GType function() c_gtk_icon_view_accessible_get_type;
7190 
7191 	// gtk.Image
7192 
7193 	GType function() c_gtk_image_get_type;
7194 	GtkWidget* function() c_gtk_image_new;
7195 	GtkWidget* function(GdkPixbufAnimation* animation) c_gtk_image_new_from_animation;
7196 	GtkWidget* function(char* filename) c_gtk_image_new_from_file;
7197 	GtkWidget* function(GIcon* icon, GtkIconSize size) c_gtk_image_new_from_gicon;
7198 	GtkWidget* function(const(char)* iconName, GtkIconSize size) c_gtk_image_new_from_icon_name;
7199 	GtkWidget* function(GtkIconSet* iconSet, GtkIconSize size) c_gtk_image_new_from_icon_set;
7200 	GtkWidget* function(GdkPixbuf* pixbuf) c_gtk_image_new_from_pixbuf;
7201 	GtkWidget* function(const(char)* resourcePath) c_gtk_image_new_from_resource;
7202 	GtkWidget* function(const(char)* stockId, GtkIconSize size) c_gtk_image_new_from_stock;
7203 	GtkWidget* function(cairo_surface_t* surface) c_gtk_image_new_from_surface;
7204 	void function(GtkImage* image) c_gtk_image_clear;
7205 	GdkPixbufAnimation* function(GtkImage* image) c_gtk_image_get_animation;
7206 	void function(GtkImage* image, GIcon** gicon, GtkIconSize* size) c_gtk_image_get_gicon;
7207 	void function(GtkImage* image, char** iconName, GtkIconSize* size) c_gtk_image_get_icon_name;
7208 	void function(GtkImage* image, GtkIconSet** iconSet, GtkIconSize* size) c_gtk_image_get_icon_set;
7209 	GdkPixbuf* function(GtkImage* image) c_gtk_image_get_pixbuf;
7210 	int function(GtkImage* image) c_gtk_image_get_pixel_size;
7211 	void function(GtkImage* image, char** stockId, GtkIconSize* size) c_gtk_image_get_stock;
7212 	GtkImageType function(GtkImage* image) c_gtk_image_get_storage_type;
7213 	void function(GtkImage* image, GdkPixbufAnimation* animation) c_gtk_image_set_from_animation;
7214 	void function(GtkImage* image, char* filename) c_gtk_image_set_from_file;
7215 	void function(GtkImage* image, GIcon* icon, GtkIconSize size) c_gtk_image_set_from_gicon;
7216 	void function(GtkImage* image, const(char)* iconName, GtkIconSize size) c_gtk_image_set_from_icon_name;
7217 	void function(GtkImage* image, GtkIconSet* iconSet, GtkIconSize size) c_gtk_image_set_from_icon_set;
7218 	void function(GtkImage* image, GdkPixbuf* pixbuf) c_gtk_image_set_from_pixbuf;
7219 	void function(GtkImage* image, const(char)* resourcePath) c_gtk_image_set_from_resource;
7220 	void function(GtkImage* image, const(char)* stockId, GtkIconSize size) c_gtk_image_set_from_stock;
7221 	void function(GtkImage* image, cairo_surface_t* surface) c_gtk_image_set_from_surface;
7222 	void function(GtkImage* image, int pixelSize) c_gtk_image_set_pixel_size;
7223 
7224 	// gtk.ImageAccessible
7225 
7226 	GType function() c_gtk_image_accessible_get_type;
7227 
7228 	// gtk.ImageCellAccessible
7229 
7230 	GType function() c_gtk_image_cell_accessible_get_type;
7231 
7232 	// gtk.ImageMenuItem
7233 
7234 	GType function() c_gtk_image_menu_item_get_type;
7235 	GtkWidget* function() c_gtk_image_menu_item_new;
7236 	GtkWidget* function(const(char)* stockId, GtkAccelGroup* accelGroup) c_gtk_image_menu_item_new_from_stock;
7237 	GtkWidget* function(const(char)* label) c_gtk_image_menu_item_new_with_label;
7238 	GtkWidget* function(const(char)* label) c_gtk_image_menu_item_new_with_mnemonic;
7239 	int function(GtkImageMenuItem* imageMenuItem) c_gtk_image_menu_item_get_always_show_image;
7240 	GtkWidget* function(GtkImageMenuItem* imageMenuItem) c_gtk_image_menu_item_get_image;
7241 	int function(GtkImageMenuItem* imageMenuItem) c_gtk_image_menu_item_get_use_stock;
7242 	void function(GtkImageMenuItem* imageMenuItem, GtkAccelGroup* accelGroup) c_gtk_image_menu_item_set_accel_group;
7243 	void function(GtkImageMenuItem* imageMenuItem, int alwaysShow) c_gtk_image_menu_item_set_always_show_image;
7244 	void function(GtkImageMenuItem* imageMenuItem, GtkWidget* image) c_gtk_image_menu_item_set_image;
7245 	void function(GtkImageMenuItem* imageMenuItem, int useStock) c_gtk_image_menu_item_set_use_stock;
7246 
7247 	// gtk.InfoBar
7248 
7249 	GType function() c_gtk_info_bar_get_type;
7250 	GtkWidget* function() c_gtk_info_bar_new;
7251 	GtkWidget* function(const(char)* firstButtonText, ... ) c_gtk_info_bar_new_with_buttons;
7252 	void function(GtkInfoBar* infoBar, GtkWidget* child, int responseId) c_gtk_info_bar_add_action_widget;
7253 	GtkWidget* function(GtkInfoBar* infoBar, const(char)* buttonText, int responseId) c_gtk_info_bar_add_button;
7254 	void function(GtkInfoBar* infoBar, const(char)* firstButtonText, ... ) c_gtk_info_bar_add_buttons;
7255 	GtkWidget* function(GtkInfoBar* infoBar) c_gtk_info_bar_get_action_area;
7256 	GtkWidget* function(GtkInfoBar* infoBar) c_gtk_info_bar_get_content_area;
7257 	GtkMessageType function(GtkInfoBar* infoBar) c_gtk_info_bar_get_message_type;
7258 	int function(GtkInfoBar* infoBar) c_gtk_info_bar_get_revealed;
7259 	int function(GtkInfoBar* infoBar) c_gtk_info_bar_get_show_close_button;
7260 	void function(GtkInfoBar* infoBar, int responseId) c_gtk_info_bar_response;
7261 	void function(GtkInfoBar* infoBar, int responseId) c_gtk_info_bar_set_default_response;
7262 	void function(GtkInfoBar* infoBar, GtkMessageType messageType) c_gtk_info_bar_set_message_type;
7263 	void function(GtkInfoBar* infoBar, int responseId, int setting) c_gtk_info_bar_set_response_sensitive;
7264 	void function(GtkInfoBar* infoBar, int revealed) c_gtk_info_bar_set_revealed;
7265 	void function(GtkInfoBar* infoBar, int setting) c_gtk_info_bar_set_show_close_button;
7266 
7267 	// gtk.Invisible
7268 
7269 	GType function() c_gtk_invisible_get_type;
7270 	GtkWidget* function() c_gtk_invisible_new;
7271 	GtkWidget* function(GdkScreen* screen) c_gtk_invisible_new_for_screen;
7272 	GdkScreen* function(GtkInvisible* invisible) c_gtk_invisible_get_screen;
7273 	void function(GtkInvisible* invisible, GdkScreen* screen) c_gtk_invisible_set_screen;
7274 
7275 	// gtk.Label
7276 
7277 	GType function() c_gtk_label_get_type;
7278 	GtkWidget* function(const(char)* str) c_gtk_label_new;
7279 	GtkWidget* function(const(char)* str) c_gtk_label_new_with_mnemonic;
7280 	double function(GtkLabel* label) c_gtk_label_get_angle;
7281 	PangoAttrList* function(GtkLabel* label) c_gtk_label_get_attributes;
7282 	const(char)* function(GtkLabel* label) c_gtk_label_get_current_uri;
7283 	PangoEllipsizeMode function(GtkLabel* label) c_gtk_label_get_ellipsize;
7284 	GtkJustification function(GtkLabel* label) c_gtk_label_get_justify;
7285 	const(char)* function(GtkLabel* label) c_gtk_label_get_label;
7286 	PangoLayout* function(GtkLabel* label) c_gtk_label_get_layout;
7287 	void function(GtkLabel* label, int* x, int* y) c_gtk_label_get_layout_offsets;
7288 	int function(GtkLabel* label) c_gtk_label_get_line_wrap;
7289 	PangoWrapMode function(GtkLabel* label) c_gtk_label_get_line_wrap_mode;
7290 	int function(GtkLabel* label) c_gtk_label_get_lines;
7291 	int function(GtkLabel* label) c_gtk_label_get_max_width_chars;
7292 	uint function(GtkLabel* label) c_gtk_label_get_mnemonic_keyval;
7293 	GtkWidget* function(GtkLabel* label) c_gtk_label_get_mnemonic_widget;
7294 	int function(GtkLabel* label) c_gtk_label_get_selectable;
7295 	int function(GtkLabel* label, int* start, int* end) c_gtk_label_get_selection_bounds;
7296 	int function(GtkLabel* label) c_gtk_label_get_single_line_mode;
7297 	const(char)* function(GtkLabel* label) c_gtk_label_get_text;
7298 	int function(GtkLabel* label) c_gtk_label_get_track_visited_links;
7299 	int function(GtkLabel* label) c_gtk_label_get_use_markup;
7300 	int function(GtkLabel* label) c_gtk_label_get_use_underline;
7301 	int function(GtkLabel* label) c_gtk_label_get_width_chars;
7302 	float function(GtkLabel* label) c_gtk_label_get_xalign;
7303 	float function(GtkLabel* label) c_gtk_label_get_yalign;
7304 	void function(GtkLabel* label, int startOffset, int endOffset) c_gtk_label_select_region;
7305 	void function(GtkLabel* label, double angle) c_gtk_label_set_angle;
7306 	void function(GtkLabel* label, PangoAttrList* attrs) c_gtk_label_set_attributes;
7307 	void function(GtkLabel* label, PangoEllipsizeMode mode) c_gtk_label_set_ellipsize;
7308 	void function(GtkLabel* label, GtkJustification jtype) c_gtk_label_set_justify;
7309 	void function(GtkLabel* label, const(char)* str) c_gtk_label_set_label;
7310 	void function(GtkLabel* label, int wrap) c_gtk_label_set_line_wrap;
7311 	void function(GtkLabel* label, PangoWrapMode wrapMode) c_gtk_label_set_line_wrap_mode;
7312 	void function(GtkLabel* label, int lines) c_gtk_label_set_lines;
7313 	void function(GtkLabel* label, const(char)* str) c_gtk_label_set_markup;
7314 	void function(GtkLabel* label, const(char)* str) c_gtk_label_set_markup_with_mnemonic;
7315 	void function(GtkLabel* label, int nChars) c_gtk_label_set_max_width_chars;
7316 	void function(GtkLabel* label, GtkWidget* widget) c_gtk_label_set_mnemonic_widget;
7317 	void function(GtkLabel* label, const(char)* pattern) c_gtk_label_set_pattern;
7318 	void function(GtkLabel* label, int setting) c_gtk_label_set_selectable;
7319 	void function(GtkLabel* label, int singleLineMode) c_gtk_label_set_single_line_mode;
7320 	void function(GtkLabel* label, const(char)* str) c_gtk_label_set_text;
7321 	void function(GtkLabel* label, const(char)* str) c_gtk_label_set_text_with_mnemonic;
7322 	void function(GtkLabel* label, int trackLinks) c_gtk_label_set_track_visited_links;
7323 	void function(GtkLabel* label, int setting) c_gtk_label_set_use_markup;
7324 	void function(GtkLabel* label, int setting) c_gtk_label_set_use_underline;
7325 	void function(GtkLabel* label, int nChars) c_gtk_label_set_width_chars;
7326 	void function(GtkLabel* label, float xalign) c_gtk_label_set_xalign;
7327 	void function(GtkLabel* label, float yalign) c_gtk_label_set_yalign;
7328 
7329 	// gtk.LabelAccessible
7330 
7331 	GType function() c_gtk_label_accessible_get_type;
7332 
7333 	// gtk.Layout
7334 
7335 	GType function() c_gtk_layout_get_type;
7336 	GtkWidget* function(GtkAdjustment* hadjustment, GtkAdjustment* vadjustment) c_gtk_layout_new;
7337 	GdkWindow* function(GtkLayout* layout) c_gtk_layout_get_bin_window;
7338 	GtkAdjustment* function(GtkLayout* layout) c_gtk_layout_get_hadjustment;
7339 	void function(GtkLayout* layout, uint* width, uint* height) c_gtk_layout_get_size;
7340 	GtkAdjustment* function(GtkLayout* layout) c_gtk_layout_get_vadjustment;
7341 	void function(GtkLayout* layout, GtkWidget* childWidget, int x, int y) c_gtk_layout_move;
7342 	void function(GtkLayout* layout, GtkWidget* childWidget, int x, int y) c_gtk_layout_put;
7343 	void function(GtkLayout* layout, GtkAdjustment* adjustment) c_gtk_layout_set_hadjustment;
7344 	void function(GtkLayout* layout, uint width, uint height) c_gtk_layout_set_size;
7345 	void function(GtkLayout* layout, GtkAdjustment* adjustment) c_gtk_layout_set_vadjustment;
7346 
7347 	// gtk.LevelBar
7348 
7349 	GType function() c_gtk_level_bar_get_type;
7350 	GtkWidget* function() c_gtk_level_bar_new;
7351 	GtkWidget* function(double minValue, double maxValue) c_gtk_level_bar_new_for_interval;
7352 	void function(GtkLevelBar* self, const(char)* name, double value) c_gtk_level_bar_add_offset_value;
7353 	int function(GtkLevelBar* self) c_gtk_level_bar_get_inverted;
7354 	double function(GtkLevelBar* self) c_gtk_level_bar_get_max_value;
7355 	double function(GtkLevelBar* self) c_gtk_level_bar_get_min_value;
7356 	GtkLevelBarMode function(GtkLevelBar* self) c_gtk_level_bar_get_mode;
7357 	int function(GtkLevelBar* self, const(char)* name, double* value) c_gtk_level_bar_get_offset_value;
7358 	double function(GtkLevelBar* self) c_gtk_level_bar_get_value;
7359 	void function(GtkLevelBar* self, const(char)* name) c_gtk_level_bar_remove_offset_value;
7360 	void function(GtkLevelBar* self, int inverted) c_gtk_level_bar_set_inverted;
7361 	void function(GtkLevelBar* self, double value) c_gtk_level_bar_set_max_value;
7362 	void function(GtkLevelBar* self, double value) c_gtk_level_bar_set_min_value;
7363 	void function(GtkLevelBar* self, GtkLevelBarMode mode) c_gtk_level_bar_set_mode;
7364 	void function(GtkLevelBar* self, double value) c_gtk_level_bar_set_value;
7365 
7366 	// gtk.LevelBarAccessible
7367 
7368 	GType function() c_gtk_level_bar_accessible_get_type;
7369 
7370 	// gtk.LinkButton
7371 
7372 	GType function() c_gtk_link_button_get_type;
7373 	GtkWidget* function(const(char)* uri) c_gtk_link_button_new;
7374 	GtkWidget* function(const(char)* uri, const(char)* label) c_gtk_link_button_new_with_label;
7375 	const(char)* function(GtkLinkButton* linkButton) c_gtk_link_button_get_uri;
7376 	int function(GtkLinkButton* linkButton) c_gtk_link_button_get_visited;
7377 	void function(GtkLinkButton* linkButton, const(char)* uri) c_gtk_link_button_set_uri;
7378 	void function(GtkLinkButton* linkButton, int visited) c_gtk_link_button_set_visited;
7379 
7380 	// gtk.LinkButtonAccessible
7381 
7382 	GType function() c_gtk_link_button_accessible_get_type;
7383 
7384 	// gtk.ListBox
7385 
7386 	GType function() c_gtk_list_box_get_type;
7387 	GtkWidget* function() c_gtk_list_box_new;
7388 	void function(GtkListBox* box, GListModel* model, GtkListBoxCreateWidgetFunc createWidgetFunc, void* userData, GDestroyNotify userDataFreeFunc) c_gtk_list_box_bind_model;
7389 	void function(GtkListBox* box, GtkListBoxRow* row) c_gtk_list_box_drag_highlight_row;
7390 	void function(GtkListBox* box) c_gtk_list_box_drag_unhighlight_row;
7391 	int function(GtkListBox* box) c_gtk_list_box_get_activate_on_single_click;
7392 	GtkAdjustment* function(GtkListBox* box) c_gtk_list_box_get_adjustment;
7393 	GtkListBoxRow* function(GtkListBox* box, int index) c_gtk_list_box_get_row_at_index;
7394 	GtkListBoxRow* function(GtkListBox* box, int y) c_gtk_list_box_get_row_at_y;
7395 	GtkListBoxRow* function(GtkListBox* box) c_gtk_list_box_get_selected_row;
7396 	GList* function(GtkListBox* box) c_gtk_list_box_get_selected_rows;
7397 	GtkSelectionMode function(GtkListBox* box) c_gtk_list_box_get_selection_mode;
7398 	void function(GtkListBox* box, GtkWidget* child, int position) c_gtk_list_box_insert;
7399 	void function(GtkListBox* box) c_gtk_list_box_invalidate_filter;
7400 	void function(GtkListBox* box) c_gtk_list_box_invalidate_headers;
7401 	void function(GtkListBox* box) c_gtk_list_box_invalidate_sort;
7402 	void function(GtkListBox* box, GtkWidget* child) c_gtk_list_box_prepend;
7403 	void function(GtkListBox* box) c_gtk_list_box_select_all;
7404 	void function(GtkListBox* box, GtkListBoxRow* row) c_gtk_list_box_select_row;
7405 	void function(GtkListBox* box, GtkListBoxForeachFunc func, void* data) c_gtk_list_box_selected_foreach;
7406 	void function(GtkListBox* box, int single) c_gtk_list_box_set_activate_on_single_click;
7407 	void function(GtkListBox* box, GtkAdjustment* adjustment) c_gtk_list_box_set_adjustment;
7408 	void function(GtkListBox* box, GtkListBoxFilterFunc filterFunc, void* userData, GDestroyNotify destroy) c_gtk_list_box_set_filter_func;
7409 	void function(GtkListBox* box, GtkListBoxUpdateHeaderFunc updateHeader, void* userData, GDestroyNotify destroy) c_gtk_list_box_set_header_func;
7410 	void function(GtkListBox* box, GtkWidget* placeholder) c_gtk_list_box_set_placeholder;
7411 	void function(GtkListBox* box, GtkSelectionMode mode) c_gtk_list_box_set_selection_mode;
7412 	void function(GtkListBox* box, GtkListBoxSortFunc sortFunc, void* userData, GDestroyNotify destroy) c_gtk_list_box_set_sort_func;
7413 	void function(GtkListBox* box) c_gtk_list_box_unselect_all;
7414 	void function(GtkListBox* box, GtkListBoxRow* row) c_gtk_list_box_unselect_row;
7415 
7416 	// gtk.ListBoxAccessible
7417 
7418 	GType function() c_gtk_list_box_accessible_get_type;
7419 
7420 	// gtk.ListBoxRow
7421 
7422 	GType function() c_gtk_list_box_row_get_type;
7423 	GtkWidget* function() c_gtk_list_box_row_new;
7424 	void function(GtkListBoxRow* row) c_gtk_list_box_row_changed;
7425 	int function(GtkListBoxRow* row) c_gtk_list_box_row_get_activatable;
7426 	GtkWidget* function(GtkListBoxRow* row) c_gtk_list_box_row_get_header;
7427 	int function(GtkListBoxRow* row) c_gtk_list_box_row_get_index;
7428 	int function(GtkListBoxRow* row) c_gtk_list_box_row_get_selectable;
7429 	int function(GtkListBoxRow* row) c_gtk_list_box_row_is_selected;
7430 	void function(GtkListBoxRow* row, int activatable) c_gtk_list_box_row_set_activatable;
7431 	void function(GtkListBoxRow* row, GtkWidget* header) c_gtk_list_box_row_set_header;
7432 	void function(GtkListBoxRow* row, int selectable) c_gtk_list_box_row_set_selectable;
7433 
7434 	// gtk.ListBoxRowAccessible
7435 
7436 	GType function() c_gtk_list_box_row_accessible_get_type;
7437 
7438 	// gtk.ListStore
7439 
7440 	GType function() c_gtk_list_store_get_type;
7441 	GtkListStore* function(int nColumns, ... ) c_gtk_list_store_new;
7442 	GtkListStore* function(int nColumns, GType* types) c_gtk_list_store_newv;
7443 	void function(GtkListStore* listStore, GtkTreeIter* iter) c_gtk_list_store_append;
7444 	void function(GtkListStore* listStore) c_gtk_list_store_clear;
7445 	void function(GtkListStore* listStore, GtkTreeIter* iter, int position) c_gtk_list_store_insert;
7446 	void function(GtkListStore* listStore, GtkTreeIter* iter, GtkTreeIter* sibling) c_gtk_list_store_insert_after;
7447 	void function(GtkListStore* listStore, GtkTreeIter* iter, GtkTreeIter* sibling) c_gtk_list_store_insert_before;
7448 	void function(GtkListStore* listStore, GtkTreeIter* iter, int position, ... ) c_gtk_list_store_insert_with_values;
7449 	void function(GtkListStore* listStore, GtkTreeIter* iter, int position, int* columns, GValue* values, int nValues) c_gtk_list_store_insert_with_valuesv;
7450 	int function(GtkListStore* listStore, GtkTreeIter* iter) c_gtk_list_store_iter_is_valid;
7451 	void function(GtkListStore* store, GtkTreeIter* iter, GtkTreeIter* position) c_gtk_list_store_move_after;
7452 	void function(GtkListStore* store, GtkTreeIter* iter, GtkTreeIter* position) c_gtk_list_store_move_before;
7453 	void function(GtkListStore* listStore, GtkTreeIter* iter) c_gtk_list_store_prepend;
7454 	int function(GtkListStore* listStore, GtkTreeIter* iter) c_gtk_list_store_remove;
7455 	void function(GtkListStore* store, int* newOrder) c_gtk_list_store_reorder;
7456 	void function(GtkListStore* listStore, GtkTreeIter* iter, ... ) c_gtk_list_store_set;
7457 	void function(GtkListStore* listStore, int nColumns, GType* types) c_gtk_list_store_set_column_types;
7458 	void function(GtkListStore* listStore, GtkTreeIter* iter, void* varArgs) c_gtk_list_store_set_valist;
7459 	void function(GtkListStore* listStore, GtkTreeIter* iter, int column, GValue* value) c_gtk_list_store_set_value;
7460 	void function(GtkListStore* listStore, GtkTreeIter* iter, int* columns, GValue* values, int nValues) c_gtk_list_store_set_valuesv;
7461 	void function(GtkListStore* store, GtkTreeIter* a, GtkTreeIter* b) c_gtk_list_store_swap;
7462 
7463 	// gtk.LockButton
7464 
7465 	GType function() c_gtk_lock_button_get_type;
7466 	GtkWidget* function(GPermission* permission) c_gtk_lock_button_new;
7467 	GPermission* function(GtkLockButton* button) c_gtk_lock_button_get_permission;
7468 	void function(GtkLockButton* button, GPermission* permission) c_gtk_lock_button_set_permission;
7469 
7470 	// gtk.LockButtonAccessible
7471 
7472 	GType function() c_gtk_lock_button_accessible_get_type;
7473 
7474 	// gtk.Menu
7475 
7476 	GType function() c_gtk_menu_get_type;
7477 	GtkWidget* function() c_gtk_menu_new;
7478 	GtkWidget* function(GMenuModel* model) c_gtk_menu_new_from_model;
7479 	GList* function(GtkWidget* widget) c_gtk_menu_get_for_attach_widget;
7480 	void function(GtkMenu* menu, GtkWidget* child, uint leftAttach, uint rightAttach, uint topAttach, uint bottomAttach) c_gtk_menu_attach;
7481 	void function(GtkMenu* menu, GtkWidget* attachWidget, GtkMenuDetachFunc detacher) c_gtk_menu_attach_to_widget;
7482 	void function(GtkMenu* menu) c_gtk_menu_detach;
7483 	GtkAccelGroup* function(GtkMenu* menu) c_gtk_menu_get_accel_group;
7484 	const(char)* function(GtkMenu* menu) c_gtk_menu_get_accel_path;
7485 	GtkWidget* function(GtkMenu* menu) c_gtk_menu_get_active;
7486 	GtkWidget* function(GtkMenu* menu) c_gtk_menu_get_attach_widget;
7487 	int function(GtkMenu* menu) c_gtk_menu_get_monitor;
7488 	int function(GtkMenu* menu) c_gtk_menu_get_reserve_toggle_size;
7489 	int function(GtkMenu* menu) c_gtk_menu_get_tearoff_state;
7490 	const(char)* function(GtkMenu* menu) c_gtk_menu_get_title;
7491 	void function(GtkMenu* menu, GdkMonitor* monitor) c_gtk_menu_place_on_monitor;
7492 	void function(GtkMenu* menu) c_gtk_menu_popdown;
7493 	void function(GtkMenu* menu, GtkWidget* parentMenuShell, GtkWidget* parentMenuItem, GtkMenuPositionFunc func, void* data, uint button, uint activateTime) c_gtk_menu_popup;
7494 	void function(GtkMenu* menu, GdkEvent* triggerEvent) c_gtk_menu_popup_at_pointer;
7495 	void function(GtkMenu* menu, GdkWindow* rectWindow, GdkRectangle* rect, GdkGravity rectAnchor, GdkGravity menuAnchor, GdkEvent* triggerEvent) c_gtk_menu_popup_at_rect;
7496 	void function(GtkMenu* menu, GtkWidget* widget, GdkGravity widgetAnchor, GdkGravity menuAnchor, GdkEvent* triggerEvent) c_gtk_menu_popup_at_widget;
7497 	void function(GtkMenu* menu, GdkDevice* device, GtkWidget* parentMenuShell, GtkWidget* parentMenuItem, GtkMenuPositionFunc func, void* data, GDestroyNotify destroy, uint button, uint activateTime) c_gtk_menu_popup_for_device;
7498 	void function(GtkMenu* menu, GtkWidget* child, int position) c_gtk_menu_reorder_child;
7499 	void function(GtkMenu* menu) c_gtk_menu_reposition;
7500 	void function(GtkMenu* menu, GtkAccelGroup* accelGroup) c_gtk_menu_set_accel_group;
7501 	void function(GtkMenu* menu, const(char)* accelPath) c_gtk_menu_set_accel_path;
7502 	void function(GtkMenu* menu, uint index) c_gtk_menu_set_active;
7503 	void function(GtkMenu* menu, int monitorNum) c_gtk_menu_set_monitor;
7504 	void function(GtkMenu* menu, int reserveToggleSize) c_gtk_menu_set_reserve_toggle_size;
7505 	void function(GtkMenu* menu, GdkScreen* screen) c_gtk_menu_set_screen;
7506 	void function(GtkMenu* menu, int tornOff) c_gtk_menu_set_tearoff_state;
7507 	void function(GtkMenu* menu, const(char)* title) c_gtk_menu_set_title;
7508 
7509 	// gtk.MenuAccessible
7510 
7511 	GType function() c_gtk_menu_accessible_get_type;
7512 
7513 	// gtk.MenuBar
7514 
7515 	GType function() c_gtk_menu_bar_get_type;
7516 	GtkWidget* function() c_gtk_menu_bar_new;
7517 	GtkWidget* function(GMenuModel* model) c_gtk_menu_bar_new_from_model;
7518 	GtkPackDirection function(GtkMenuBar* menubar) c_gtk_menu_bar_get_child_pack_direction;
7519 	GtkPackDirection function(GtkMenuBar* menubar) c_gtk_menu_bar_get_pack_direction;
7520 	void function(GtkMenuBar* menubar, GtkPackDirection childPackDir) c_gtk_menu_bar_set_child_pack_direction;
7521 	void function(GtkMenuBar* menubar, GtkPackDirection packDir) c_gtk_menu_bar_set_pack_direction;
7522 
7523 	// gtk.MenuButton
7524 
7525 	GType function() c_gtk_menu_button_get_type;
7526 	GtkWidget* function() c_gtk_menu_button_new;
7527 	GtkWidget* function(GtkMenuButton* menuButton) c_gtk_menu_button_get_align_widget;
7528 	GtkArrowType function(GtkMenuButton* menuButton) c_gtk_menu_button_get_direction;
7529 	GMenuModel* function(GtkMenuButton* menuButton) c_gtk_menu_button_get_menu_model;
7530 	GtkPopover* function(GtkMenuButton* menuButton) c_gtk_menu_button_get_popover;
7531 	GtkMenu* function(GtkMenuButton* menuButton) c_gtk_menu_button_get_popup;
7532 	int function(GtkMenuButton* menuButton) c_gtk_menu_button_get_use_popover;
7533 	void function(GtkMenuButton* menuButton, GtkWidget* alignWidget) c_gtk_menu_button_set_align_widget;
7534 	void function(GtkMenuButton* menuButton, GtkArrowType direction) c_gtk_menu_button_set_direction;
7535 	void function(GtkMenuButton* menuButton, GMenuModel* menuModel) c_gtk_menu_button_set_menu_model;
7536 	void function(GtkMenuButton* menuButton, GtkWidget* popover) c_gtk_menu_button_set_popover;
7537 	void function(GtkMenuButton* menuButton, GtkWidget* menu) c_gtk_menu_button_set_popup;
7538 	void function(GtkMenuButton* menuButton, int usePopover) c_gtk_menu_button_set_use_popover;
7539 
7540 	// gtk.MenuButtonAccessible
7541 
7542 	GType function() c_gtk_menu_button_accessible_get_type;
7543 
7544 	// gtk.MenuItem
7545 
7546 	GType function() c_gtk_menu_item_get_type;
7547 	GtkWidget* function() c_gtk_menu_item_new;
7548 	GtkWidget* function(const(char)* label) c_gtk_menu_item_new_with_label;
7549 	GtkWidget* function(const(char)* label) c_gtk_menu_item_new_with_mnemonic;
7550 	void function(GtkMenuItem* menuItem) c_gtk_menu_item_activate;
7551 	void function(GtkMenuItem* menuItem) c_gtk_menu_item_deselect;
7552 	const(char)* function(GtkMenuItem* menuItem) c_gtk_menu_item_get_accel_path;
7553 	const(char)* function(GtkMenuItem* menuItem) c_gtk_menu_item_get_label;
7554 	int function(GtkMenuItem* menuItem) c_gtk_menu_item_get_reserve_indicator;
7555 	int function(GtkMenuItem* menuItem) c_gtk_menu_item_get_right_justified;
7556 	GtkWidget* function(GtkMenuItem* menuItem) c_gtk_menu_item_get_submenu;
7557 	int function(GtkMenuItem* menuItem) c_gtk_menu_item_get_use_underline;
7558 	void function(GtkMenuItem* menuItem) c_gtk_menu_item_select;
7559 	void function(GtkMenuItem* menuItem, const(char)* accelPath) c_gtk_menu_item_set_accel_path;
7560 	void function(GtkMenuItem* menuItem, const(char)* label) c_gtk_menu_item_set_label;
7561 	void function(GtkMenuItem* menuItem, int reserve) c_gtk_menu_item_set_reserve_indicator;
7562 	void function(GtkMenuItem* menuItem, int rightJustified) c_gtk_menu_item_set_right_justified;
7563 	void function(GtkMenuItem* menuItem, GtkWidget* submenu) c_gtk_menu_item_set_submenu;
7564 	void function(GtkMenuItem* menuItem, int setting) c_gtk_menu_item_set_use_underline;
7565 	void function(GtkMenuItem* menuItem, int allocation) c_gtk_menu_item_toggle_size_allocate;
7566 	void function(GtkMenuItem* menuItem, int* requisition) c_gtk_menu_item_toggle_size_request;
7567 
7568 	// gtk.MenuItemAccessible
7569 
7570 	GType function() c_gtk_menu_item_accessible_get_type;
7571 
7572 	// gtk.MenuShell
7573 
7574 	GType function() c_gtk_menu_shell_get_type;
7575 	void function(GtkMenuShell* menuShell, GtkWidget* menuItem, int forceDeactivate) c_gtk_menu_shell_activate_item;
7576 	void function(GtkMenuShell* menuShell, GtkWidget* child) c_gtk_menu_shell_append;
7577 	void function(GtkMenuShell* menuShell, GMenuModel* model, const(char)* actionNamespace, int withSeparators) c_gtk_menu_shell_bind_model;
7578 	void function(GtkMenuShell* menuShell) c_gtk_menu_shell_cancel;
7579 	void function(GtkMenuShell* menuShell) c_gtk_menu_shell_deactivate;
7580 	void function(GtkMenuShell* menuShell) c_gtk_menu_shell_deselect;
7581 	GtkWidget* function(GtkMenuShell* menuShell) c_gtk_menu_shell_get_parent_shell;
7582 	GtkWidget* function(GtkMenuShell* menuShell) c_gtk_menu_shell_get_selected_item;
7583 	int function(GtkMenuShell* menuShell) c_gtk_menu_shell_get_take_focus;
7584 	void function(GtkMenuShell* menuShell, GtkWidget* child, int position) c_gtk_menu_shell_insert;
7585 	void function(GtkMenuShell* menuShell, GtkWidget* child) c_gtk_menu_shell_prepend;
7586 	void function(GtkMenuShell* menuShell, int searchSensitive) c_gtk_menu_shell_select_first;
7587 	void function(GtkMenuShell* menuShell, GtkWidget* menuItem) c_gtk_menu_shell_select_item;
7588 	void function(GtkMenuShell* menuShell, int takeFocus) c_gtk_menu_shell_set_take_focus;
7589 
7590 	// gtk.MenuShellAccessible
7591 
7592 	GType function() c_gtk_menu_shell_accessible_get_type;
7593 
7594 	// gtk.MenuToolButton
7595 
7596 	GType function() c_gtk_menu_tool_button_get_type;
7597 	GtkToolItem* function(GtkWidget* iconWidget, const(char)* label) c_gtk_menu_tool_button_new;
7598 	GtkToolItem* function(const(char)* stockId) c_gtk_menu_tool_button_new_from_stock;
7599 	GtkWidget* function(GtkMenuToolButton* button) c_gtk_menu_tool_button_get_menu;
7600 	void function(GtkMenuToolButton* button, const(char)* markup) c_gtk_menu_tool_button_set_arrow_tooltip_markup;
7601 	void function(GtkMenuToolButton* button, const(char)* text) c_gtk_menu_tool_button_set_arrow_tooltip_text;
7602 	void function(GtkMenuToolButton* button, GtkWidget* menu) c_gtk_menu_tool_button_set_menu;
7603 
7604 	// gtk.MessageDialog
7605 
7606 	GType function() c_gtk_message_dialog_get_type;
7607 	GtkWidget* function(GtkWindow* parent, GtkDialogFlags flags, GtkMessageType type, GtkButtonsType buttons, const(char)* messageFormat, ... ) c_gtk_message_dialog_new;
7608 	GtkWidget* function(GtkWindow* parent, GtkDialogFlags flags, GtkMessageType type, GtkButtonsType buttons, const(char)* messageFormat, ... ) c_gtk_message_dialog_new_with_markup;
7609 	void function(GtkMessageDialog* messageDialog, const(char)* messageFormat, ... ) c_gtk_message_dialog_format_secondary_markup;
7610 	void function(GtkMessageDialog* messageDialog, const(char)* messageFormat, ... ) c_gtk_message_dialog_format_secondary_text;
7611 	GtkWidget* function(GtkMessageDialog* dialog) c_gtk_message_dialog_get_image;
7612 	GtkWidget* function(GtkMessageDialog* messageDialog) c_gtk_message_dialog_get_message_area;
7613 	void function(GtkMessageDialog* dialog, GtkWidget* image) c_gtk_message_dialog_set_image;
7614 	void function(GtkMessageDialog* messageDialog, const(char)* str) c_gtk_message_dialog_set_markup;
7615 
7616 	// gtk.Misc
7617 
7618 	GType function() c_gtk_misc_get_type;
7619 	void function(GtkMisc* misc, float* xalign, float* yalign) c_gtk_misc_get_alignment;
7620 	void function(GtkMisc* misc, int* xpad, int* ypad) c_gtk_misc_get_padding;
7621 	void function(GtkMisc* misc, float xalign, float yalign) c_gtk_misc_set_alignment;
7622 	void function(GtkMisc* misc, int xpad, int ypad) c_gtk_misc_set_padding;
7623 
7624 	// gtk.ModelButton
7625 
7626 	GType function() c_gtk_model_button_get_type;
7627 	GtkWidget* function() c_gtk_model_button_new;
7628 
7629 	// gtk.MountOperation
7630 
7631 	GType function() c_gtk_mount_operation_get_type;
7632 	GMountOperation* function(GtkWindow* parent) c_gtk_mount_operation_new;
7633 	GtkWindow* function(GtkMountOperation* op) c_gtk_mount_operation_get_parent;
7634 	GdkScreen* function(GtkMountOperation* op) c_gtk_mount_operation_get_screen;
7635 	int function(GtkMountOperation* op) c_gtk_mount_operation_is_showing;
7636 	void function(GtkMountOperation* op, GtkWindow* parent) c_gtk_mount_operation_set_parent;
7637 	void function(GtkMountOperation* op, GdkScreen* screen) c_gtk_mount_operation_set_screen;
7638 	int function(GdkScreen* screen, const(char)* uri, uint timestamp, GError** err) c_gtk_show_uri;
7639 
7640 	// gtk.NativeDialog
7641 
7642 	GType function() c_gtk_native_dialog_get_type;
7643 	void function(GtkNativeDialog* self) c_gtk_native_dialog_destroy;
7644 	int function(GtkNativeDialog* self) c_gtk_native_dialog_get_modal;
7645 	const(char)* function(GtkNativeDialog* self) c_gtk_native_dialog_get_title;
7646 	GtkWindow* function(GtkNativeDialog* self) c_gtk_native_dialog_get_transient_for;
7647 	int function(GtkNativeDialog* self) c_gtk_native_dialog_get_visible;
7648 	void function(GtkNativeDialog* self) c_gtk_native_dialog_hide;
7649 	int function(GtkNativeDialog* self) c_gtk_native_dialog_run;
7650 	void function(GtkNativeDialog* self, int modal) c_gtk_native_dialog_set_modal;
7651 	void function(GtkNativeDialog* self, const(char)* title) c_gtk_native_dialog_set_title;
7652 	void function(GtkNativeDialog* self, GtkWindow* parent) c_gtk_native_dialog_set_transient_for;
7653 	void function(GtkNativeDialog* self) c_gtk_native_dialog_show;
7654 
7655 	// gtk.Notebook
7656 
7657 	GType function() c_gtk_notebook_get_type;
7658 	GtkWidget* function() c_gtk_notebook_new;
7659 	int function(GtkNotebook* notebook, GtkWidget* child, GtkWidget* tabLabel) c_gtk_notebook_append_page;
7660 	int function(GtkNotebook* notebook, GtkWidget* child, GtkWidget* tabLabel, GtkWidget* menuLabel) c_gtk_notebook_append_page_menu;
7661 	void function(GtkNotebook* notebook, GtkWidget* child) c_gtk_notebook_detach_tab;
7662 	GtkWidget* function(GtkNotebook* notebook, GtkPackType packType) c_gtk_notebook_get_action_widget;
7663 	int function(GtkNotebook* notebook) c_gtk_notebook_get_current_page;
7664 	const(char)* function(GtkNotebook* notebook) c_gtk_notebook_get_group_name;
7665 	GtkWidget* function(GtkNotebook* notebook, GtkWidget* child) c_gtk_notebook_get_menu_label;
7666 	const(char)* function(GtkNotebook* notebook, GtkWidget* child) c_gtk_notebook_get_menu_label_text;
7667 	int function(GtkNotebook* notebook) c_gtk_notebook_get_n_pages;
7668 	GtkWidget* function(GtkNotebook* notebook, int pageNum) c_gtk_notebook_get_nth_page;
7669 	int function(GtkNotebook* notebook) c_gtk_notebook_get_scrollable;
7670 	int function(GtkNotebook* notebook) c_gtk_notebook_get_show_border;
7671 	int function(GtkNotebook* notebook) c_gtk_notebook_get_show_tabs;
7672 	int function(GtkNotebook* notebook, GtkWidget* child) c_gtk_notebook_get_tab_detachable;
7673 	ushort function(GtkNotebook* notebook) c_gtk_notebook_get_tab_hborder;
7674 	GtkWidget* function(GtkNotebook* notebook, GtkWidget* child) c_gtk_notebook_get_tab_label;
7675 	const(char)* function(GtkNotebook* notebook, GtkWidget* child) c_gtk_notebook_get_tab_label_text;
7676 	GtkPositionType function(GtkNotebook* notebook) c_gtk_notebook_get_tab_pos;
7677 	int function(GtkNotebook* notebook, GtkWidget* child) c_gtk_notebook_get_tab_reorderable;
7678 	ushort function(GtkNotebook* notebook) c_gtk_notebook_get_tab_vborder;
7679 	int function(GtkNotebook* notebook, GtkWidget* child, GtkWidget* tabLabel, int position) c_gtk_notebook_insert_page;
7680 	int function(GtkNotebook* notebook, GtkWidget* child, GtkWidget* tabLabel, GtkWidget* menuLabel, int position) c_gtk_notebook_insert_page_menu;
7681 	void function(GtkNotebook* notebook) c_gtk_notebook_next_page;
7682 	int function(GtkNotebook* notebook, GtkWidget* child) c_gtk_notebook_page_num;
7683 	void function(GtkNotebook* notebook) c_gtk_notebook_popup_disable;
7684 	void function(GtkNotebook* notebook) c_gtk_notebook_popup_enable;
7685 	int function(GtkNotebook* notebook, GtkWidget* child, GtkWidget* tabLabel) c_gtk_notebook_prepend_page;
7686 	int function(GtkNotebook* notebook, GtkWidget* child, GtkWidget* tabLabel, GtkWidget* menuLabel) c_gtk_notebook_prepend_page_menu;
7687 	void function(GtkNotebook* notebook) c_gtk_notebook_prev_page;
7688 	void function(GtkNotebook* notebook, int pageNum) c_gtk_notebook_remove_page;
7689 	void function(GtkNotebook* notebook, GtkWidget* child, int position) c_gtk_notebook_reorder_child;
7690 	void function(GtkNotebook* notebook, GtkWidget* widget, GtkPackType packType) c_gtk_notebook_set_action_widget;
7691 	void function(GtkNotebook* notebook, int pageNum) c_gtk_notebook_set_current_page;
7692 	void function(GtkNotebook* notebook, const(char)* groupName) c_gtk_notebook_set_group_name;
7693 	void function(GtkNotebook* notebook, GtkWidget* child, GtkWidget* menuLabel) c_gtk_notebook_set_menu_label;
7694 	void function(GtkNotebook* notebook, GtkWidget* child, const(char)* menuText) c_gtk_notebook_set_menu_label_text;
7695 	void function(GtkNotebook* notebook, int scrollable) c_gtk_notebook_set_scrollable;
7696 	void function(GtkNotebook* notebook, int showBorder) c_gtk_notebook_set_show_border;
7697 	void function(GtkNotebook* notebook, int showTabs) c_gtk_notebook_set_show_tabs;
7698 	void function(GtkNotebook* notebook, GtkWidget* child, int detachable) c_gtk_notebook_set_tab_detachable;
7699 	void function(GtkNotebook* notebook, GtkWidget* child, GtkWidget* tabLabel) c_gtk_notebook_set_tab_label;
7700 	void function(GtkNotebook* notebook, GtkWidget* child, const(char)* tabText) c_gtk_notebook_set_tab_label_text;
7701 	void function(GtkNotebook* notebook, GtkPositionType pos) c_gtk_notebook_set_tab_pos;
7702 	void function(GtkNotebook* notebook, GtkWidget* child, int reorderable) c_gtk_notebook_set_tab_reorderable;
7703 
7704 	// gtk.NotebookAccessible
7705 
7706 	GType function() c_gtk_notebook_accessible_get_type;
7707 
7708 	// gtk.NotebookPageAccessible
7709 
7710 	GType function() c_gtk_notebook_page_accessible_get_type;
7711 	AtkObject* function(GtkNotebookAccessible* notebook, GtkWidget* child) c_gtk_notebook_page_accessible_new;
7712 	void function(GtkNotebookPageAccessible* page) c_gtk_notebook_page_accessible_invalidate;
7713 
7714 	// gtk.NumerableIcon
7715 
7716 	GType function() c_gtk_numerable_icon_get_type;
7717 	GIcon* function(GIcon* baseIcon) c_gtk_numerable_icon_new;
7718 	GIcon* function(GIcon* baseIcon, GtkStyleContext* context) c_gtk_numerable_icon_new_with_style_context;
7719 	GIcon* function(GtkNumerableIcon* self) c_gtk_numerable_icon_get_background_gicon;
7720 	const(char)* function(GtkNumerableIcon* self) c_gtk_numerable_icon_get_background_icon_name;
7721 	int function(GtkNumerableIcon* self) c_gtk_numerable_icon_get_count;
7722 	const(char)* function(GtkNumerableIcon* self) c_gtk_numerable_icon_get_label;
7723 	GtkStyleContext* function(GtkNumerableIcon* self) c_gtk_numerable_icon_get_style_context;
7724 	void function(GtkNumerableIcon* self, GIcon* icon) c_gtk_numerable_icon_set_background_gicon;
7725 	void function(GtkNumerableIcon* self, const(char)* iconName) c_gtk_numerable_icon_set_background_icon_name;
7726 	void function(GtkNumerableIcon* self, int count) c_gtk_numerable_icon_set_count;
7727 	void function(GtkNumerableIcon* self, const(char)* label) c_gtk_numerable_icon_set_label;
7728 	void function(GtkNumerableIcon* self, GtkStyleContext* style) c_gtk_numerable_icon_set_style_context;
7729 
7730 	// gtk.OffscreenWindow
7731 
7732 	GType function() c_gtk_offscreen_window_get_type;
7733 	GtkWidget* function() c_gtk_offscreen_window_new;
7734 	GdkPixbuf* function(GtkOffscreenWindow* offscreen) c_gtk_offscreen_window_get_pixbuf;
7735 	cairo_surface_t* function(GtkOffscreenWindow* offscreen) c_gtk_offscreen_window_get_surface;
7736 
7737 	// gtk.Orientable
7738 
7739 	GType function() c_gtk_orientable_get_type;
7740 	GtkOrientation function(GtkOrientable* orientable) c_gtk_orientable_get_orientation;
7741 	void function(GtkOrientable* orientable, GtkOrientation orientation) c_gtk_orientable_set_orientation;
7742 
7743 	// gtk.Overlay
7744 
7745 	GType function() c_gtk_overlay_get_type;
7746 	GtkWidget* function() c_gtk_overlay_new;
7747 	void function(GtkOverlay* overlay, GtkWidget* widget) c_gtk_overlay_add_overlay;
7748 	int function(GtkOverlay* overlay, GtkWidget* widget) c_gtk_overlay_get_overlay_pass_through;
7749 	void function(GtkOverlay* overlay, GtkWidget* child, int position) c_gtk_overlay_reorder_overlay;
7750 	void function(GtkOverlay* overlay, GtkWidget* widget, int passThrough) c_gtk_overlay_set_overlay_pass_through;
7751 
7752 	// gtk.PadController
7753 
7754 	GType function() c_gtk_pad_controller_get_type;
7755 	GtkPadController* function(GtkWindow* window, GActionGroup* group, GdkDevice* pad) c_gtk_pad_controller_new;
7756 	void function(GtkPadController* controller, GtkPadActionType type, int index, int mode, const(char)* label, const(char)* actionName) c_gtk_pad_controller_set_action;
7757 	void function(GtkPadController* controller, GtkPadActionEntry* entries, int nEntries) c_gtk_pad_controller_set_action_entries;
7758 
7759 	// gtk.PageSetup
7760 
7761 	GType function() c_gtk_page_setup_get_type;
7762 	GtkPageSetup* function() c_gtk_page_setup_new;
7763 	GtkPageSetup* function(char* fileName, GError** err) c_gtk_page_setup_new_from_file;
7764 	GtkPageSetup* function(GVariant* variant) c_gtk_page_setup_new_from_gvariant;
7765 	GtkPageSetup* function(GKeyFile* keyFile, const(char)* groupName, GError** err) c_gtk_page_setup_new_from_key_file;
7766 	GtkPageSetup* function(GtkPageSetup* other) c_gtk_page_setup_copy;
7767 	double function(GtkPageSetup* setup, GtkUnit unit) c_gtk_page_setup_get_bottom_margin;
7768 	double function(GtkPageSetup* setup, GtkUnit unit) c_gtk_page_setup_get_left_margin;
7769 	GtkPageOrientation function(GtkPageSetup* setup) c_gtk_page_setup_get_orientation;
7770 	double function(GtkPageSetup* setup, GtkUnit unit) c_gtk_page_setup_get_page_height;
7771 	double function(GtkPageSetup* setup, GtkUnit unit) c_gtk_page_setup_get_page_width;
7772 	double function(GtkPageSetup* setup, GtkUnit unit) c_gtk_page_setup_get_paper_height;
7773 	GtkPaperSize* function(GtkPageSetup* setup) c_gtk_page_setup_get_paper_size;
7774 	double function(GtkPageSetup* setup, GtkUnit unit) c_gtk_page_setup_get_paper_width;
7775 	double function(GtkPageSetup* setup, GtkUnit unit) c_gtk_page_setup_get_right_margin;
7776 	double function(GtkPageSetup* setup, GtkUnit unit) c_gtk_page_setup_get_top_margin;
7777 	int function(GtkPageSetup* setup, char* fileName, GError** err) c_gtk_page_setup_load_file;
7778 	int function(GtkPageSetup* setup, GKeyFile* keyFile, const(char)* groupName, GError** err) c_gtk_page_setup_load_key_file;
7779 	void function(GtkPageSetup* setup, double margin, GtkUnit unit) c_gtk_page_setup_set_bottom_margin;
7780 	void function(GtkPageSetup* setup, double margin, GtkUnit unit) c_gtk_page_setup_set_left_margin;
7781 	void function(GtkPageSetup* setup, GtkPageOrientation orientation) c_gtk_page_setup_set_orientation;
7782 	void function(GtkPageSetup* setup, GtkPaperSize* size) c_gtk_page_setup_set_paper_size;
7783 	void function(GtkPageSetup* setup, GtkPaperSize* size) c_gtk_page_setup_set_paper_size_and_default_margins;
7784 	void function(GtkPageSetup* setup, double margin, GtkUnit unit) c_gtk_page_setup_set_right_margin;
7785 	void function(GtkPageSetup* setup, double margin, GtkUnit unit) c_gtk_page_setup_set_top_margin;
7786 	int function(GtkPageSetup* setup, char* fileName, GError** err) c_gtk_page_setup_to_file;
7787 	GVariant* function(GtkPageSetup* setup) c_gtk_page_setup_to_gvariant;
7788 	void function(GtkPageSetup* setup, GKeyFile* keyFile, const(char)* groupName) c_gtk_page_setup_to_key_file;
7789 
7790 	// gtk.Paned
7791 
7792 	GType function() c_gtk_paned_get_type;
7793 	GtkWidget* function(GtkOrientation orientation) c_gtk_paned_new;
7794 	void function(GtkPaned* paned, GtkWidget* child) c_gtk_paned_add1;
7795 	void function(GtkPaned* paned, GtkWidget* child) c_gtk_paned_add2;
7796 	GtkWidget* function(GtkPaned* paned) c_gtk_paned_get_child1;
7797 	GtkWidget* function(GtkPaned* paned) c_gtk_paned_get_child2;
7798 	GdkWindow* function(GtkPaned* paned) c_gtk_paned_get_handle_window;
7799 	int function(GtkPaned* paned) c_gtk_paned_get_position;
7800 	int function(GtkPaned* paned) c_gtk_paned_get_wide_handle;
7801 	void function(GtkPaned* paned, GtkWidget* child, int resize, int shrink) c_gtk_paned_pack1;
7802 	void function(GtkPaned* paned, GtkWidget* child, int resize, int shrink) c_gtk_paned_pack2;
7803 	void function(GtkPaned* paned, int position) c_gtk_paned_set_position;
7804 	void function(GtkPaned* paned, int wide) c_gtk_paned_set_wide_handle;
7805 
7806 	// gtk.PanedAccessible
7807 
7808 	GType function() c_gtk_paned_accessible_get_type;
7809 
7810 	// gtk.PaperSize
7811 
7812 	GType function() c_gtk_paper_size_get_type;
7813 	GtkPaperSize* function(const(char)* name) c_gtk_paper_size_new;
7814 	GtkPaperSize* function(const(char)* name, const(char)* displayName, double width, double height, GtkUnit unit) c_gtk_paper_size_new_custom;
7815 	GtkPaperSize* function(GVariant* variant) c_gtk_paper_size_new_from_gvariant;
7816 	GtkPaperSize* function(const(char)* ippName, double width, double height) c_gtk_paper_size_new_from_ipp;
7817 	GtkPaperSize* function(GKeyFile* keyFile, const(char)* groupName, GError** err) c_gtk_paper_size_new_from_key_file;
7818 	GtkPaperSize* function(const(char)* ppdName, const(char)* ppdDisplayName, double width, double height) c_gtk_paper_size_new_from_ppd;
7819 	GtkPaperSize* function(GtkPaperSize* other) c_gtk_paper_size_copy;
7820 	void function(GtkPaperSize* size) c_gtk_paper_size_free;
7821 	double function(GtkPaperSize* size, GtkUnit unit) c_gtk_paper_size_get_default_bottom_margin;
7822 	double function(GtkPaperSize* size, GtkUnit unit) c_gtk_paper_size_get_default_left_margin;
7823 	double function(GtkPaperSize* size, GtkUnit unit) c_gtk_paper_size_get_default_right_margin;
7824 	double function(GtkPaperSize* size, GtkUnit unit) c_gtk_paper_size_get_default_top_margin;
7825 	const(char)* function(GtkPaperSize* size) c_gtk_paper_size_get_display_name;
7826 	double function(GtkPaperSize* size, GtkUnit unit) c_gtk_paper_size_get_height;
7827 	const(char)* function(GtkPaperSize* size) c_gtk_paper_size_get_name;
7828 	const(char)* function(GtkPaperSize* size) c_gtk_paper_size_get_ppd_name;
7829 	double function(GtkPaperSize* size, GtkUnit unit) c_gtk_paper_size_get_width;
7830 	int function(GtkPaperSize* size) c_gtk_paper_size_is_custom;
7831 	int function(GtkPaperSize* size1, GtkPaperSize* size2) c_gtk_paper_size_is_equal;
7832 	int function(GtkPaperSize* size) c_gtk_paper_size_is_ipp;
7833 	void function(GtkPaperSize* size, double width, double height, GtkUnit unit) c_gtk_paper_size_set_size;
7834 	GVariant* function(GtkPaperSize* paperSize) c_gtk_paper_size_to_gvariant;
7835 	void function(GtkPaperSize* size, GKeyFile* keyFile, const(char)* groupName) c_gtk_paper_size_to_key_file;
7836 	const(char)* function() c_gtk_paper_size_get_default;
7837 	GList* function(int includeCustom) c_gtk_paper_size_get_paper_sizes;
7838 
7839 	// gtk.PlacesSidebar
7840 
7841 	GType function() c_gtk_places_sidebar_get_type;
7842 	GtkWidget* function() c_gtk_places_sidebar_new;
7843 	void function(GtkPlacesSidebar* sidebar, GFile* location) c_gtk_places_sidebar_add_shortcut;
7844 	int function(GtkPlacesSidebar* sidebar) c_gtk_places_sidebar_get_local_only;
7845 	GFile* function(GtkPlacesSidebar* sidebar) c_gtk_places_sidebar_get_location;
7846 	GFile* function(GtkPlacesSidebar* sidebar, int n) c_gtk_places_sidebar_get_nth_bookmark;
7847 	GtkPlacesOpenFlags function(GtkPlacesSidebar* sidebar) c_gtk_places_sidebar_get_open_flags;
7848 	int function(GtkPlacesSidebar* sidebar) c_gtk_places_sidebar_get_show_connect_to_server;
7849 	int function(GtkPlacesSidebar* sidebar) c_gtk_places_sidebar_get_show_desktop;
7850 	int function(GtkPlacesSidebar* sidebar) c_gtk_places_sidebar_get_show_enter_location;
7851 	int function(GtkPlacesSidebar* sidebar) c_gtk_places_sidebar_get_show_other_locations;
7852 	int function(GtkPlacesSidebar* sidebar) c_gtk_places_sidebar_get_show_recent;
7853 	int function(GtkPlacesSidebar* sidebar) c_gtk_places_sidebar_get_show_starred_location;
7854 	int function(GtkPlacesSidebar* sidebar) c_gtk_places_sidebar_get_show_trash;
7855 	GSList* function(GtkPlacesSidebar* sidebar) c_gtk_places_sidebar_list_shortcuts;
7856 	void function(GtkPlacesSidebar* sidebar, GFile* location) c_gtk_places_sidebar_remove_shortcut;
7857 	void function(GtkPlacesSidebar* sidebar, int visible, GdkDragContext* context) c_gtk_places_sidebar_set_drop_targets_visible;
7858 	void function(GtkPlacesSidebar* sidebar, int localOnly) c_gtk_places_sidebar_set_local_only;
7859 	void function(GtkPlacesSidebar* sidebar, GFile* location) c_gtk_places_sidebar_set_location;
7860 	void function(GtkPlacesSidebar* sidebar, GtkPlacesOpenFlags flags) c_gtk_places_sidebar_set_open_flags;
7861 	void function(GtkPlacesSidebar* sidebar, int showConnectToServer) c_gtk_places_sidebar_set_show_connect_to_server;
7862 	void function(GtkPlacesSidebar* sidebar, int showDesktop) c_gtk_places_sidebar_set_show_desktop;
7863 	void function(GtkPlacesSidebar* sidebar, int showEnterLocation) c_gtk_places_sidebar_set_show_enter_location;
7864 	void function(GtkPlacesSidebar* sidebar, int showOtherLocations) c_gtk_places_sidebar_set_show_other_locations;
7865 	void function(GtkPlacesSidebar* sidebar, int showRecent) c_gtk_places_sidebar_set_show_recent;
7866 	void function(GtkPlacesSidebar* sidebar, int showStarredLocation) c_gtk_places_sidebar_set_show_starred_location;
7867 	void function(GtkPlacesSidebar* sidebar, int showTrash) c_gtk_places_sidebar_set_show_trash;
7868 
7869 	// gtk.Plug
7870 
7871 	GType function() c_gtk_plug_get_type;
7872 	GtkWidget* function(ulong socketId) c_gtk_plug_new;
7873 	GtkWidget* function(GdkDisplay* display, ulong socketId) c_gtk_plug_new_for_display;
7874 	void function(GtkPlug* plug, ulong socketId) c_gtk_plug_construct;
7875 	void function(GtkPlug* plug, GdkDisplay* display, ulong socketId) c_gtk_plug_construct_for_display;
7876 	int function(GtkPlug* plug) c_gtk_plug_get_embedded;
7877 	ulong function(GtkPlug* plug) c_gtk_plug_get_id;
7878 	GdkWindow* function(GtkPlug* plug) c_gtk_plug_get_socket_window;
7879 
7880 	// gtk.Popover
7881 
7882 	GType function() c_gtk_popover_get_type;
7883 	GtkWidget* function(GtkWidget* relativeTo) c_gtk_popover_new;
7884 	GtkWidget* function(GtkWidget* relativeTo, GMenuModel* model) c_gtk_popover_new_from_model;
7885 	void function(GtkPopover* popover, GMenuModel* model, const(char)* actionNamespace) c_gtk_popover_bind_model;
7886 	GtkPopoverConstraint function(GtkPopover* popover) c_gtk_popover_get_constrain_to;
7887 	GtkWidget* function(GtkPopover* popover) c_gtk_popover_get_default_widget;
7888 	int function(GtkPopover* popover) c_gtk_popover_get_modal;
7889 	int function(GtkPopover* popover, GdkRectangle* rect) c_gtk_popover_get_pointing_to;
7890 	GtkPositionType function(GtkPopover* popover) c_gtk_popover_get_position;
7891 	GtkWidget* function(GtkPopover* popover) c_gtk_popover_get_relative_to;
7892 	int function(GtkPopover* popover) c_gtk_popover_get_transitions_enabled;
7893 	void function(GtkPopover* popover) c_gtk_popover_popdown;
7894 	void function(GtkPopover* popover) c_gtk_popover_popup;
7895 	void function(GtkPopover* popover, GtkPopoverConstraint constraint) c_gtk_popover_set_constrain_to;
7896 	void function(GtkPopover* popover, GtkWidget* widget) c_gtk_popover_set_default_widget;
7897 	void function(GtkPopover* popover, int modal) c_gtk_popover_set_modal;
7898 	void function(GtkPopover* popover, GdkRectangle* rect) c_gtk_popover_set_pointing_to;
7899 	void function(GtkPopover* popover, GtkPositionType position) c_gtk_popover_set_position;
7900 	void function(GtkPopover* popover, GtkWidget* relativeTo) c_gtk_popover_set_relative_to;
7901 	void function(GtkPopover* popover, int transitionsEnabled) c_gtk_popover_set_transitions_enabled;
7902 
7903 	// gtk.PopoverAccessible
7904 
7905 	GType function() c_gtk_popover_accessible_get_type;
7906 
7907 	// gtk.PopoverMenu
7908 
7909 	GType function() c_gtk_popover_menu_get_type;
7910 	GtkWidget* function() c_gtk_popover_menu_new;
7911 	void function(GtkPopoverMenu* popover, const(char)* name) c_gtk_popover_menu_open_submenu;
7912 
7913 	// gtk.PrintContext
7914 
7915 	GType function() c_gtk_print_context_get_type;
7916 	PangoContext* function(GtkPrintContext* context) c_gtk_print_context_create_pango_context;
7917 	PangoLayout* function(GtkPrintContext* context) c_gtk_print_context_create_pango_layout;
7918 	cairo_t* function(GtkPrintContext* context) c_gtk_print_context_get_cairo_context;
7919 	double function(GtkPrintContext* context) c_gtk_print_context_get_dpi_x;
7920 	double function(GtkPrintContext* context) c_gtk_print_context_get_dpi_y;
7921 	int function(GtkPrintContext* context, double* top, double* bottom, double* left, double* right) c_gtk_print_context_get_hard_margins;
7922 	double function(GtkPrintContext* context) c_gtk_print_context_get_height;
7923 	GtkPageSetup* function(GtkPrintContext* context) c_gtk_print_context_get_page_setup;
7924 	PangoFontMap* function(GtkPrintContext* context) c_gtk_print_context_get_pango_fontmap;
7925 	double function(GtkPrintContext* context) c_gtk_print_context_get_width;
7926 	void function(GtkPrintContext* context, cairo_t* cr, double dpiX, double dpiY) c_gtk_print_context_set_cairo_context;
7927 
7928 	// gtk.PrintOperation
7929 
7930 	GType function() c_gtk_print_operation_get_type;
7931 	GtkPrintOperation* function() c_gtk_print_operation_new;
7932 	void function(GtkPrintOperation* op) c_gtk_print_operation_cancel;
7933 	void function(GtkPrintOperation* op) c_gtk_print_operation_draw_page_finish;
7934 	GtkPageSetup* function(GtkPrintOperation* op) c_gtk_print_operation_get_default_page_setup;
7935 	int function(GtkPrintOperation* op) c_gtk_print_operation_get_embed_page_setup;
7936 	void function(GtkPrintOperation* op, GError** err) c_gtk_print_operation_get_error;
7937 	int function(GtkPrintOperation* op) c_gtk_print_operation_get_has_selection;
7938 	int function(GtkPrintOperation* op) c_gtk_print_operation_get_n_pages_to_print;
7939 	GtkPrintSettings* function(GtkPrintOperation* op) c_gtk_print_operation_get_print_settings;
7940 	GtkPrintStatus function(GtkPrintOperation* op) c_gtk_print_operation_get_status;
7941 	const(char)* function(GtkPrintOperation* op) c_gtk_print_operation_get_status_string;
7942 	int function(GtkPrintOperation* op) c_gtk_print_operation_get_support_selection;
7943 	int function(GtkPrintOperation* op) c_gtk_print_operation_is_finished;
7944 	GtkPrintOperationResult function(GtkPrintOperation* op, GtkPrintOperationAction action, GtkWindow* parent, GError** err) c_gtk_print_operation_run;
7945 	void function(GtkPrintOperation* op, int allowAsync) c_gtk_print_operation_set_allow_async;
7946 	void function(GtkPrintOperation* op, int currentPage) c_gtk_print_operation_set_current_page;
7947 	void function(GtkPrintOperation* op, const(char)* label) c_gtk_print_operation_set_custom_tab_label;
7948 	void function(GtkPrintOperation* op, GtkPageSetup* defaultPageSetup) c_gtk_print_operation_set_default_page_setup;
7949 	void function(GtkPrintOperation* op) c_gtk_print_operation_set_defer_drawing;
7950 	void function(GtkPrintOperation* op, int embed) c_gtk_print_operation_set_embed_page_setup;
7951 	void function(GtkPrintOperation* op, char* filename) c_gtk_print_operation_set_export_filename;
7952 	void function(GtkPrintOperation* op, int hasSelection) c_gtk_print_operation_set_has_selection;
7953 	void function(GtkPrintOperation* op, const(char)* jobName) c_gtk_print_operation_set_job_name;
7954 	void function(GtkPrintOperation* op, int nPages) c_gtk_print_operation_set_n_pages;
7955 	void function(GtkPrintOperation* op, GtkPrintSettings* printSettings) c_gtk_print_operation_set_print_settings;
7956 	void function(GtkPrintOperation* op, int showProgress) c_gtk_print_operation_set_show_progress;
7957 	void function(GtkPrintOperation* op, int supportSelection) c_gtk_print_operation_set_support_selection;
7958 	void function(GtkPrintOperation* op, int trackStatus) c_gtk_print_operation_set_track_print_status;
7959 	void function(GtkPrintOperation* op, GtkUnit unit) c_gtk_print_operation_set_unit;
7960 	void function(GtkPrintOperation* op, int fullPage) c_gtk_print_operation_set_use_full_page;
7961 	GtkPageSetup* function(GtkWindow* parent, GtkPageSetup* pageSetup, GtkPrintSettings* settings) c_gtk_print_run_page_setup_dialog;
7962 	void function(GtkWindow* parent, GtkPageSetup* pageSetup, GtkPrintSettings* settings, GtkPageSetupDoneFunc doneCb, void* data) c_gtk_print_run_page_setup_dialog_async;
7963 
7964 	// gtk.PrintOperationPreview
7965 
7966 	GType function() c_gtk_print_operation_preview_get_type;
7967 	void function(GtkPrintOperationPreview* preview) c_gtk_print_operation_preview_end_preview;
7968 	int function(GtkPrintOperationPreview* preview, int pageNr) c_gtk_print_operation_preview_is_selected;
7969 	void function(GtkPrintOperationPreview* preview, int pageNr) c_gtk_print_operation_preview_render_page;
7970 
7971 	// gtk.PrintSettings
7972 
7973 	GType function() c_gtk_print_settings_get_type;
7974 	GtkPrintSettings* function() c_gtk_print_settings_new;
7975 	GtkPrintSettings* function(char* fileName, GError** err) c_gtk_print_settings_new_from_file;
7976 	GtkPrintSettings* function(GVariant* variant) c_gtk_print_settings_new_from_gvariant;
7977 	GtkPrintSettings* function(GKeyFile* keyFile, const(char)* groupName, GError** err) c_gtk_print_settings_new_from_key_file;
7978 	GtkPrintSettings* function(GtkPrintSettings* other) c_gtk_print_settings_copy;
7979 	void function(GtkPrintSettings* settings, GtkPrintSettingsFunc func, void* userData) c_gtk_print_settings_foreach;
7980 	const(char)* function(GtkPrintSettings* settings, const(char)* key) c_gtk_print_settings_get;
7981 	int function(GtkPrintSettings* settings, const(char)* key) c_gtk_print_settings_get_bool;
7982 	int function(GtkPrintSettings* settings) c_gtk_print_settings_get_collate;
7983 	const(char)* function(GtkPrintSettings* settings) c_gtk_print_settings_get_default_source;
7984 	const(char)* function(GtkPrintSettings* settings) c_gtk_print_settings_get_dither;
7985 	double function(GtkPrintSettings* settings, const(char)* key) c_gtk_print_settings_get_double;
7986 	double function(GtkPrintSettings* settings, const(char)* key, double def) c_gtk_print_settings_get_double_with_default;
7987 	GtkPrintDuplex function(GtkPrintSettings* settings) c_gtk_print_settings_get_duplex;
7988 	const(char)* function(GtkPrintSettings* settings) c_gtk_print_settings_get_finishings;
7989 	int function(GtkPrintSettings* settings, const(char)* key) c_gtk_print_settings_get_int;
7990 	int function(GtkPrintSettings* settings, const(char)* key, int def) c_gtk_print_settings_get_int_with_default;
7991 	double function(GtkPrintSettings* settings, const(char)* key, GtkUnit unit) c_gtk_print_settings_get_length;
7992 	const(char)* function(GtkPrintSettings* settings) c_gtk_print_settings_get_media_type;
7993 	int function(GtkPrintSettings* settings) c_gtk_print_settings_get_n_copies;
7994 	int function(GtkPrintSettings* settings) c_gtk_print_settings_get_number_up;
7995 	GtkNumberUpLayout function(GtkPrintSettings* settings) c_gtk_print_settings_get_number_up_layout;
7996 	GtkPageOrientation function(GtkPrintSettings* settings) c_gtk_print_settings_get_orientation;
7997 	const(char)* function(GtkPrintSettings* settings) c_gtk_print_settings_get_output_bin;
7998 	GtkPageRange* function(GtkPrintSettings* settings, int* numRanges) c_gtk_print_settings_get_page_ranges;
7999 	GtkPageSet function(GtkPrintSettings* settings) c_gtk_print_settings_get_page_set;
8000 	double function(GtkPrintSettings* settings, GtkUnit unit) c_gtk_print_settings_get_paper_height;
8001 	GtkPaperSize* function(GtkPrintSettings* settings) c_gtk_print_settings_get_paper_size;
8002 	double function(GtkPrintSettings* settings, GtkUnit unit) c_gtk_print_settings_get_paper_width;
8003 	GtkPrintPages function(GtkPrintSettings* settings) c_gtk_print_settings_get_print_pages;
8004 	const(char)* function(GtkPrintSettings* settings) c_gtk_print_settings_get_printer;
8005 	double function(GtkPrintSettings* settings) c_gtk_print_settings_get_printer_lpi;
8006 	GtkPrintQuality function(GtkPrintSettings* settings) c_gtk_print_settings_get_quality;
8007 	int function(GtkPrintSettings* settings) c_gtk_print_settings_get_resolution;
8008 	int function(GtkPrintSettings* settings) c_gtk_print_settings_get_resolution_x;
8009 	int function(GtkPrintSettings* settings) c_gtk_print_settings_get_resolution_y;
8010 	int function(GtkPrintSettings* settings) c_gtk_print_settings_get_reverse;
8011 	double function(GtkPrintSettings* settings) c_gtk_print_settings_get_scale;
8012 	int function(GtkPrintSettings* settings) c_gtk_print_settings_get_use_color;
8013 	int function(GtkPrintSettings* settings, const(char)* key) c_gtk_print_settings_has_key;
8014 	int function(GtkPrintSettings* settings, char* fileName, GError** err) c_gtk_print_settings_load_file;
8015 	int function(GtkPrintSettings* settings, GKeyFile* keyFile, const(char)* groupName, GError** err) c_gtk_print_settings_load_key_file;
8016 	void function(GtkPrintSettings* settings, const(char)* key, const(char)* value) c_gtk_print_settings_set;
8017 	void function(GtkPrintSettings* settings, const(char)* key, int value) c_gtk_print_settings_set_bool;
8018 	void function(GtkPrintSettings* settings, int collate) c_gtk_print_settings_set_collate;
8019 	void function(GtkPrintSettings* settings, const(char)* defaultSource) c_gtk_print_settings_set_default_source;
8020 	void function(GtkPrintSettings* settings, const(char)* dither) c_gtk_print_settings_set_dither;
8021 	void function(GtkPrintSettings* settings, const(char)* key, double value) c_gtk_print_settings_set_double;
8022 	void function(GtkPrintSettings* settings, GtkPrintDuplex duplex) c_gtk_print_settings_set_duplex;
8023 	void function(GtkPrintSettings* settings, const(char)* finishings) c_gtk_print_settings_set_finishings;
8024 	void function(GtkPrintSettings* settings, const(char)* key, int value) c_gtk_print_settings_set_int;
8025 	void function(GtkPrintSettings* settings, const(char)* key, double value, GtkUnit unit) c_gtk_print_settings_set_length;
8026 	void function(GtkPrintSettings* settings, const(char)* mediaType) c_gtk_print_settings_set_media_type;
8027 	void function(GtkPrintSettings* settings, int numCopies) c_gtk_print_settings_set_n_copies;
8028 	void function(GtkPrintSettings* settings, int numberUp) c_gtk_print_settings_set_number_up;
8029 	void function(GtkPrintSettings* settings, GtkNumberUpLayout numberUpLayout) c_gtk_print_settings_set_number_up_layout;
8030 	void function(GtkPrintSettings* settings, GtkPageOrientation orientation) c_gtk_print_settings_set_orientation;
8031 	void function(GtkPrintSettings* settings, const(char)* outputBin) c_gtk_print_settings_set_output_bin;
8032 	void function(GtkPrintSettings* settings, GtkPageRange* pageRanges, int numRanges) c_gtk_print_settings_set_page_ranges;
8033 	void function(GtkPrintSettings* settings, GtkPageSet pageSet) c_gtk_print_settings_set_page_set;
8034 	void function(GtkPrintSettings* settings, double height, GtkUnit unit) c_gtk_print_settings_set_paper_height;
8035 	void function(GtkPrintSettings* settings, GtkPaperSize* paperSize) c_gtk_print_settings_set_paper_size;
8036 	void function(GtkPrintSettings* settings, double width, GtkUnit unit) c_gtk_print_settings_set_paper_width;
8037 	void function(GtkPrintSettings* settings, GtkPrintPages pages) c_gtk_print_settings_set_print_pages;
8038 	void function(GtkPrintSettings* settings, const(char)* printer) c_gtk_print_settings_set_printer;
8039 	void function(GtkPrintSettings* settings, double lpi) c_gtk_print_settings_set_printer_lpi;
8040 	void function(GtkPrintSettings* settings, GtkPrintQuality quality) c_gtk_print_settings_set_quality;
8041 	void function(GtkPrintSettings* settings, int resolution) c_gtk_print_settings_set_resolution;
8042 	void function(GtkPrintSettings* settings, int resolutionX, int resolutionY) c_gtk_print_settings_set_resolution_xy;
8043 	void function(GtkPrintSettings* settings, int reverse) c_gtk_print_settings_set_reverse;
8044 	void function(GtkPrintSettings* settings, double scale) c_gtk_print_settings_set_scale;
8045 	void function(GtkPrintSettings* settings, int useColor) c_gtk_print_settings_set_use_color;
8046 	int function(GtkPrintSettings* settings, char* fileName, GError** err) c_gtk_print_settings_to_file;
8047 	GVariant* function(GtkPrintSettings* settings) c_gtk_print_settings_to_gvariant;
8048 	void function(GtkPrintSettings* settings, GKeyFile* keyFile, const(char)* groupName) c_gtk_print_settings_to_key_file;
8049 	void function(GtkPrintSettings* settings, const(char)* key) c_gtk_print_settings_unset;
8050 
8051 	// gtk.ProgressBar
8052 
8053 	GType function() c_gtk_progress_bar_get_type;
8054 	GtkWidget* function() c_gtk_progress_bar_new;
8055 	PangoEllipsizeMode function(GtkProgressBar* pbar) c_gtk_progress_bar_get_ellipsize;
8056 	double function(GtkProgressBar* pbar) c_gtk_progress_bar_get_fraction;
8057 	int function(GtkProgressBar* pbar) c_gtk_progress_bar_get_inverted;
8058 	double function(GtkProgressBar* pbar) c_gtk_progress_bar_get_pulse_step;
8059 	int function(GtkProgressBar* pbar) c_gtk_progress_bar_get_show_text;
8060 	const(char)* function(GtkProgressBar* pbar) c_gtk_progress_bar_get_text;
8061 	void function(GtkProgressBar* pbar) c_gtk_progress_bar_pulse;
8062 	void function(GtkProgressBar* pbar, PangoEllipsizeMode mode) c_gtk_progress_bar_set_ellipsize;
8063 	void function(GtkProgressBar* pbar, double fraction) c_gtk_progress_bar_set_fraction;
8064 	void function(GtkProgressBar* pbar, int inverted) c_gtk_progress_bar_set_inverted;
8065 	void function(GtkProgressBar* pbar, double fraction) c_gtk_progress_bar_set_pulse_step;
8066 	void function(GtkProgressBar* pbar, int showText) c_gtk_progress_bar_set_show_text;
8067 	void function(GtkProgressBar* pbar, const(char)* text) c_gtk_progress_bar_set_text;
8068 
8069 	// gtk.ProgressBarAccessible
8070 
8071 	GType function() c_gtk_progress_bar_accessible_get_type;
8072 
8073 	// gtk.RadioAction
8074 
8075 	GType function() c_gtk_radio_action_get_type;
8076 	GtkRadioAction* function(const(char)* name, const(char)* label, const(char)* tooltip, const(char)* stockId, int value) c_gtk_radio_action_new;
8077 	int function(GtkRadioAction* action) c_gtk_radio_action_get_current_value;
8078 	GSList* function(GtkRadioAction* action) c_gtk_radio_action_get_group;
8079 	void function(GtkRadioAction* action, GtkRadioAction* groupSource) c_gtk_radio_action_join_group;
8080 	void function(GtkRadioAction* action, int currentValue) c_gtk_radio_action_set_current_value;
8081 	void function(GtkRadioAction* action, GSList* group) c_gtk_radio_action_set_group;
8082 
8083 	// gtk.RadioButton
8084 
8085 	GType function() c_gtk_radio_button_get_type;
8086 	GtkWidget* function(GSList* group) c_gtk_radio_button_new;
8087 	GtkWidget* function(GtkRadioButton* radioGroupMember) c_gtk_radio_button_new_from_widget;
8088 	GtkWidget* function(GSList* group, const(char)* label) c_gtk_radio_button_new_with_label;
8089 	GtkWidget* function(GtkRadioButton* radioGroupMember, const(char)* label) c_gtk_radio_button_new_with_label_from_widget;
8090 	GtkWidget* function(GSList* group, const(char)* label) c_gtk_radio_button_new_with_mnemonic;
8091 	GtkWidget* function(GtkRadioButton* radioGroupMember, const(char)* label) c_gtk_radio_button_new_with_mnemonic_from_widget;
8092 	GSList* function(GtkRadioButton* radioButton) c_gtk_radio_button_get_group;
8093 	void function(GtkRadioButton* radioButton, GtkRadioButton* groupSource) c_gtk_radio_button_join_group;
8094 	void function(GtkRadioButton* radioButton, GSList* group) c_gtk_radio_button_set_group;
8095 
8096 	// gtk.RadioButtonAccessible
8097 
8098 	GType function() c_gtk_radio_button_accessible_get_type;
8099 
8100 	// gtk.RadioMenuItem
8101 
8102 	GType function() c_gtk_radio_menu_item_get_type;
8103 	GtkWidget* function(GSList* group) c_gtk_radio_menu_item_new;
8104 	GtkWidget* function(GtkRadioMenuItem* group) c_gtk_radio_menu_item_new_from_widget;
8105 	GtkWidget* function(GSList* group, const(char)* label) c_gtk_radio_menu_item_new_with_label;
8106 	GtkWidget* function(GtkRadioMenuItem* group, const(char)* label) c_gtk_radio_menu_item_new_with_label_from_widget;
8107 	GtkWidget* function(GSList* group, const(char)* label) c_gtk_radio_menu_item_new_with_mnemonic;
8108 	GtkWidget* function(GtkRadioMenuItem* group, const(char)* label) c_gtk_radio_menu_item_new_with_mnemonic_from_widget;
8109 	GSList* function(GtkRadioMenuItem* radioMenuItem) c_gtk_radio_menu_item_get_group;
8110 	void function(GtkRadioMenuItem* radioMenuItem, GtkRadioMenuItem* groupSource) c_gtk_radio_menu_item_join_group;
8111 	void function(GtkRadioMenuItem* radioMenuItem, GSList* group) c_gtk_radio_menu_item_set_group;
8112 
8113 	// gtk.RadioMenuItemAccessible
8114 
8115 	GType function() c_gtk_radio_menu_item_accessible_get_type;
8116 
8117 	// gtk.RadioToolButton
8118 
8119 	GType function() c_gtk_radio_tool_button_get_type;
8120 	GtkToolItem* function(GSList* group) c_gtk_radio_tool_button_new;
8121 	GtkToolItem* function(GSList* group, const(char)* stockId) c_gtk_radio_tool_button_new_from_stock;
8122 	GtkToolItem* function(GtkRadioToolButton* group) c_gtk_radio_tool_button_new_from_widget;
8123 	GtkToolItem* function(GtkRadioToolButton* group, const(char)* stockId) c_gtk_radio_tool_button_new_with_stock_from_widget;
8124 	GSList* function(GtkRadioToolButton* button) c_gtk_radio_tool_button_get_group;
8125 	void function(GtkRadioToolButton* button, GSList* group) c_gtk_radio_tool_button_set_group;
8126 
8127 	// gtk.Range
8128 
8129 	GType function() c_gtk_range_get_type;
8130 	GtkAdjustment* function(GtkRange* range) c_gtk_range_get_adjustment;
8131 	double function(GtkRange* range) c_gtk_range_get_fill_level;
8132 	int function(GtkRange* range) c_gtk_range_get_flippable;
8133 	int function(GtkRange* range) c_gtk_range_get_inverted;
8134 	GtkSensitivityType function(GtkRange* range) c_gtk_range_get_lower_stepper_sensitivity;
8135 	int function(GtkRange* range) c_gtk_range_get_min_slider_size;
8136 	void function(GtkRange* range, GdkRectangle* rangeRect) c_gtk_range_get_range_rect;
8137 	int function(GtkRange* range) c_gtk_range_get_restrict_to_fill_level;
8138 	int function(GtkRange* range) c_gtk_range_get_round_digits;
8139 	int function(GtkRange* range) c_gtk_range_get_show_fill_level;
8140 	void function(GtkRange* range, int* sliderStart, int* sliderEnd) c_gtk_range_get_slider_range;
8141 	int function(GtkRange* range) c_gtk_range_get_slider_size_fixed;
8142 	GtkSensitivityType function(GtkRange* range) c_gtk_range_get_upper_stepper_sensitivity;
8143 	double function(GtkRange* range) c_gtk_range_get_value;
8144 	void function(GtkRange* range, GtkAdjustment* adjustment) c_gtk_range_set_adjustment;
8145 	void function(GtkRange* range, double fillLevel) c_gtk_range_set_fill_level;
8146 	void function(GtkRange* range, int flippable) c_gtk_range_set_flippable;
8147 	void function(GtkRange* range, double step, double page) c_gtk_range_set_increments;
8148 	void function(GtkRange* range, int setting) c_gtk_range_set_inverted;
8149 	void function(GtkRange* range, GtkSensitivityType sensitivity) c_gtk_range_set_lower_stepper_sensitivity;
8150 	void function(GtkRange* range, int minSize) c_gtk_range_set_min_slider_size;
8151 	void function(GtkRange* range, double min, double max) c_gtk_range_set_range;
8152 	void function(GtkRange* range, int restrictToFillLevel) c_gtk_range_set_restrict_to_fill_level;
8153 	void function(GtkRange* range, int roundDigits) c_gtk_range_set_round_digits;
8154 	void function(GtkRange* range, int showFillLevel) c_gtk_range_set_show_fill_level;
8155 	void function(GtkRange* range, int sizeFixed) c_gtk_range_set_slider_size_fixed;
8156 	void function(GtkRange* range, GtkSensitivityType sensitivity) c_gtk_range_set_upper_stepper_sensitivity;
8157 	void function(GtkRange* range, double value) c_gtk_range_set_value;
8158 
8159 	// gtk.RangeAccessible
8160 
8161 	GType function() c_gtk_range_accessible_get_type;
8162 
8163 	// gtk.RcProperty
8164 
8165 	int function(GParamSpec* pspec, GString* gstring, GValue* propertyValue) c_gtk_rc_property_parse_border;
8166 	int function(GParamSpec* pspec, GString* gstring, GValue* propertyValue) c_gtk_rc_property_parse_color;
8167 	int function(GParamSpec* pspec, GString* gstring, GValue* propertyValue) c_gtk_rc_property_parse_enum;
8168 	int function(GParamSpec* pspec, GString* gstring, GValue* propertyValue) c_gtk_rc_property_parse_flags;
8169 	int function(GParamSpec* pspec, GString* gstring, GValue* propertyValue) c_gtk_rc_property_parse_requisition;
8170 
8171 	// gtk.RcStyle
8172 
8173 	GType function() c_gtk_rc_style_get_type;
8174 	GtkRcStyle* function() c_gtk_rc_style_new;
8175 	GtkRcStyle* function(GtkRcStyle* orig) c_gtk_rc_style_copy;
8176 	void function(char* filename) c_gtk_rc_add_default_file;
8177 	char* function(const(char)* moduleFile) c_gtk_rc_find_module_in_path;
8178 	char* function(GtkSettings* settings, GScanner* scanner, const(char)* pixmapFile) c_gtk_rc_find_pixmap_in_path;
8179 	char** function() c_gtk_rc_get_default_files;
8180 	char* function() c_gtk_rc_get_im_module_file;
8181 	char* function() c_gtk_rc_get_im_module_path;
8182 	char* function() c_gtk_rc_get_module_dir;
8183 	GtkStyle* function(GtkWidget* widget) c_gtk_rc_get_style;
8184 	GtkStyle* function(GtkSettings* settings, const(char)* widgetPath, const(char)* classPath, GType type) c_gtk_rc_get_style_by_paths;
8185 	char* function() c_gtk_rc_get_theme_dir;
8186 	void function(const(char)* filename) c_gtk_rc_parse;
8187 	uint function(GScanner* scanner, GdkColor* color) c_gtk_rc_parse_color;
8188 	uint function(GScanner* scanner, GtkRcStyle* style, GdkColor* color) c_gtk_rc_parse_color_full;
8189 	uint function(GScanner* scanner, GtkPathPriorityType* priority) c_gtk_rc_parse_priority;
8190 	uint function(GScanner* scanner, GtkStateType* state) c_gtk_rc_parse_state;
8191 	void function(const(char)* rcString) c_gtk_rc_parse_string;
8192 	int function() c_gtk_rc_reparse_all;
8193 	int function(GtkSettings* settings, int forceLoad) c_gtk_rc_reparse_all_for_settings;
8194 	void function(GtkSettings* settings) c_gtk_rc_reset_styles;
8195 	GScanner* function() c_gtk_rc_scanner_new;
8196 	void function(char** filenames) c_gtk_rc_set_default_files;
8197 
8198 	// gtk.RecentAction
8199 
8200 	GType function() c_gtk_recent_action_get_type;
8201 	GtkAction* function(const(char)* name, const(char)* label, const(char)* tooltip, const(char)* stockId) c_gtk_recent_action_new;
8202 	GtkAction* function(const(char)* name, const(char)* label, const(char)* tooltip, const(char)* stockId, GtkRecentManager* manager) c_gtk_recent_action_new_for_manager;
8203 	int function(GtkRecentAction* action) c_gtk_recent_action_get_show_numbers;
8204 	void function(GtkRecentAction* action, int showNumbers) c_gtk_recent_action_set_show_numbers;
8205 
8206 	// gtk.RecentChooser
8207 
8208 	GType function() c_gtk_recent_chooser_get_type;
8209 	void function(GtkRecentChooser* chooser, GtkRecentFilter* filter) c_gtk_recent_chooser_add_filter;
8210 	GtkRecentInfo* function(GtkRecentChooser* chooser) c_gtk_recent_chooser_get_current_item;
8211 	char* function(GtkRecentChooser* chooser) c_gtk_recent_chooser_get_current_uri;
8212 	GtkRecentFilter* function(GtkRecentChooser* chooser) c_gtk_recent_chooser_get_filter;
8213 	GList* function(GtkRecentChooser* chooser) c_gtk_recent_chooser_get_items;
8214 	int function(GtkRecentChooser* chooser) c_gtk_recent_chooser_get_limit;
8215 	int function(GtkRecentChooser* chooser) c_gtk_recent_chooser_get_local_only;
8216 	int function(GtkRecentChooser* chooser) c_gtk_recent_chooser_get_select_multiple;
8217 	int function(GtkRecentChooser* chooser) c_gtk_recent_chooser_get_show_icons;
8218 	int function(GtkRecentChooser* chooser) c_gtk_recent_chooser_get_show_not_found;
8219 	int function(GtkRecentChooser* chooser) c_gtk_recent_chooser_get_show_private;
8220 	int function(GtkRecentChooser* chooser) c_gtk_recent_chooser_get_show_tips;
8221 	GtkRecentSortType function(GtkRecentChooser* chooser) c_gtk_recent_chooser_get_sort_type;
8222 	char** function(GtkRecentChooser* chooser, size_t* length) c_gtk_recent_chooser_get_uris;
8223 	GSList* function(GtkRecentChooser* chooser) c_gtk_recent_chooser_list_filters;
8224 	void function(GtkRecentChooser* chooser, GtkRecentFilter* filter) c_gtk_recent_chooser_remove_filter;
8225 	void function(GtkRecentChooser* chooser) c_gtk_recent_chooser_select_all;
8226 	int function(GtkRecentChooser* chooser, const(char)* uri, GError** err) c_gtk_recent_chooser_select_uri;
8227 	int function(GtkRecentChooser* chooser, const(char)* uri, GError** err) c_gtk_recent_chooser_set_current_uri;
8228 	void function(GtkRecentChooser* chooser, GtkRecentFilter* filter) c_gtk_recent_chooser_set_filter;
8229 	void function(GtkRecentChooser* chooser, int limit) c_gtk_recent_chooser_set_limit;
8230 	void function(GtkRecentChooser* chooser, int localOnly) c_gtk_recent_chooser_set_local_only;
8231 	void function(GtkRecentChooser* chooser, int selectMultiple) c_gtk_recent_chooser_set_select_multiple;
8232 	void function(GtkRecentChooser* chooser, int showIcons) c_gtk_recent_chooser_set_show_icons;
8233 	void function(GtkRecentChooser* chooser, int showNotFound) c_gtk_recent_chooser_set_show_not_found;
8234 	void function(GtkRecentChooser* chooser, int showPrivate) c_gtk_recent_chooser_set_show_private;
8235 	void function(GtkRecentChooser* chooser, int showTips) c_gtk_recent_chooser_set_show_tips;
8236 	void function(GtkRecentChooser* chooser, GtkRecentSortFunc sortFunc, void* sortData, GDestroyNotify dataDestroy) c_gtk_recent_chooser_set_sort_func;
8237 	void function(GtkRecentChooser* chooser, GtkRecentSortType sortType) c_gtk_recent_chooser_set_sort_type;
8238 	void function(GtkRecentChooser* chooser) c_gtk_recent_chooser_unselect_all;
8239 	void function(GtkRecentChooser* chooser, const(char)* uri) c_gtk_recent_chooser_unselect_uri;
8240 
8241 	// gtk.RecentChooserDialog
8242 
8243 	GType function() c_gtk_recent_chooser_dialog_get_type;
8244 	GtkWidget* function(const(char)* title, GtkWindow* parent, const(char)* firstButtonText, ... ) c_gtk_recent_chooser_dialog_new;
8245 	GtkWidget* function(const(char)* title, GtkWindow* parent, GtkRecentManager* manager, const(char)* firstButtonText, ... ) c_gtk_recent_chooser_dialog_new_for_manager;
8246 
8247 	// gtk.RecentChooserMenu
8248 
8249 	GType function() c_gtk_recent_chooser_menu_get_type;
8250 	GtkWidget* function() c_gtk_recent_chooser_menu_new;
8251 	GtkWidget* function(GtkRecentManager* manager) c_gtk_recent_chooser_menu_new_for_manager;
8252 	int function(GtkRecentChooserMenu* menu) c_gtk_recent_chooser_menu_get_show_numbers;
8253 	void function(GtkRecentChooserMenu* menu, int showNumbers) c_gtk_recent_chooser_menu_set_show_numbers;
8254 
8255 	// gtk.RecentChooserWidget
8256 
8257 	GType function() c_gtk_recent_chooser_widget_get_type;
8258 	GtkWidget* function() c_gtk_recent_chooser_widget_new;
8259 	GtkWidget* function(GtkRecentManager* manager) c_gtk_recent_chooser_widget_new_for_manager;
8260 
8261 	// gtk.RecentFilter
8262 
8263 	GType function() c_gtk_recent_filter_get_type;
8264 	GtkRecentFilter* function() c_gtk_recent_filter_new;
8265 	void function(GtkRecentFilter* filter, int days) c_gtk_recent_filter_add_age;
8266 	void function(GtkRecentFilter* filter, const(char)* application) c_gtk_recent_filter_add_application;
8267 	void function(GtkRecentFilter* filter, GtkRecentFilterFlags needed, GtkRecentFilterFunc func, void* data, GDestroyNotify dataDestroy) c_gtk_recent_filter_add_custom;
8268 	void function(GtkRecentFilter* filter, const(char)* group) c_gtk_recent_filter_add_group;
8269 	void function(GtkRecentFilter* filter, const(char)* mimeType) c_gtk_recent_filter_add_mime_type;
8270 	void function(GtkRecentFilter* filter, const(char)* pattern) c_gtk_recent_filter_add_pattern;
8271 	void function(GtkRecentFilter* filter) c_gtk_recent_filter_add_pixbuf_formats;
8272 	int function(GtkRecentFilter* filter, GtkRecentFilterInfo* filterInfo) c_gtk_recent_filter_filter;
8273 	const(char)* function(GtkRecentFilter* filter) c_gtk_recent_filter_get_name;
8274 	GtkRecentFilterFlags function(GtkRecentFilter* filter) c_gtk_recent_filter_get_needed;
8275 	void function(GtkRecentFilter* filter, const(char)* name) c_gtk_recent_filter_set_name;
8276 
8277 	// gtk.RecentInfo
8278 
8279 	GType function() c_gtk_recent_info_get_type;
8280 	GAppInfo* function(GtkRecentInfo* info, const(char)* appName, GError** err) c_gtk_recent_info_create_app_info;
8281 	int function(GtkRecentInfo* info) c_gtk_recent_info_exists;
8282 	uint function(GtkRecentInfo* info) c_gtk_recent_info_get_added;
8283 	int function(GtkRecentInfo* info) c_gtk_recent_info_get_age;
8284 	int function(GtkRecentInfo* info, const(char)* appName, char** appExec, uint* count, uint* time) c_gtk_recent_info_get_application_info;
8285 	char** function(GtkRecentInfo* info, size_t* length) c_gtk_recent_info_get_applications;
8286 	const(char)* function(GtkRecentInfo* info) c_gtk_recent_info_get_description;
8287 	const(char)* function(GtkRecentInfo* info) c_gtk_recent_info_get_display_name;
8288 	GIcon* function(GtkRecentInfo* info) c_gtk_recent_info_get_gicon;
8289 	char** function(GtkRecentInfo* info, size_t* length) c_gtk_recent_info_get_groups;
8290 	GdkPixbuf* function(GtkRecentInfo* info, int size) c_gtk_recent_info_get_icon;
8291 	const(char)* function(GtkRecentInfo* info) c_gtk_recent_info_get_mime_type;
8292 	uint function(GtkRecentInfo* info) c_gtk_recent_info_get_modified;
8293 	int function(GtkRecentInfo* info) c_gtk_recent_info_get_private_hint;
8294 	char* function(GtkRecentInfo* info) c_gtk_recent_info_get_short_name;
8295 	const(char)* function(GtkRecentInfo* info) c_gtk_recent_info_get_uri;
8296 	char* function(GtkRecentInfo* info) c_gtk_recent_info_get_uri_display;
8297 	uint function(GtkRecentInfo* info) c_gtk_recent_info_get_visited;
8298 	int function(GtkRecentInfo* info, const(char)* appName) c_gtk_recent_info_has_application;
8299 	int function(GtkRecentInfo* info, const(char)* groupName) c_gtk_recent_info_has_group;
8300 	int function(GtkRecentInfo* info) c_gtk_recent_info_is_local;
8301 	char* function(GtkRecentInfo* info) c_gtk_recent_info_last_application;
8302 	int function(GtkRecentInfo* infoA, GtkRecentInfo* infoB) c_gtk_recent_info_match;
8303 	GtkRecentInfo* function(GtkRecentInfo* info) c_gtk_recent_info_ref;
8304 	void function(GtkRecentInfo* info) c_gtk_recent_info_unref;
8305 
8306 	// gtk.RecentManager
8307 
8308 	GType function() c_gtk_recent_manager_get_type;
8309 	GtkRecentManager* function() c_gtk_recent_manager_new;
8310 	GtkRecentManager* function() c_gtk_recent_manager_get_default;
8311 	int function(GtkRecentManager* manager, const(char)* uri, GtkRecentData* recentData) c_gtk_recent_manager_add_full;
8312 	int function(GtkRecentManager* manager, const(char)* uri) c_gtk_recent_manager_add_item;
8313 	GList* function(GtkRecentManager* manager) c_gtk_recent_manager_get_items;
8314 	int function(GtkRecentManager* manager, const(char)* uri) c_gtk_recent_manager_has_item;
8315 	GtkRecentInfo* function(GtkRecentManager* manager, const(char)* uri, GError** err) c_gtk_recent_manager_lookup_item;
8316 	int function(GtkRecentManager* manager, const(char)* uri, const(char)* newUri, GError** err) c_gtk_recent_manager_move_item;
8317 	int function(GtkRecentManager* manager, GError** err) c_gtk_recent_manager_purge_items;
8318 	int function(GtkRecentManager* manager, const(char)* uri, GError** err) c_gtk_recent_manager_remove_item;
8319 
8320 	// gtk.RendererCellAccessible
8321 
8322 	GType function() c_gtk_renderer_cell_accessible_get_type;
8323 	AtkObject* function(GtkCellRenderer* renderer) c_gtk_renderer_cell_accessible_new;
8324 
8325 	// gtk.Requisition
8326 
8327 	GType function() c_gtk_requisition_get_type;
8328 	GtkRequisition* function() c_gtk_requisition_new;
8329 	GtkRequisition* function(GtkRequisition* requisition) c_gtk_requisition_copy;
8330 	void function(GtkRequisition* requisition) c_gtk_requisition_free;
8331 
8332 	// gtk.Revealer
8333 
8334 	GType function() c_gtk_revealer_get_type;
8335 	GtkWidget* function() c_gtk_revealer_new;
8336 	int function(GtkRevealer* revealer) c_gtk_revealer_get_child_revealed;
8337 	int function(GtkRevealer* revealer) c_gtk_revealer_get_reveal_child;
8338 	uint function(GtkRevealer* revealer) c_gtk_revealer_get_transition_duration;
8339 	GtkRevealerTransitionType function(GtkRevealer* revealer) c_gtk_revealer_get_transition_type;
8340 	void function(GtkRevealer* revealer, int revealChild) c_gtk_revealer_set_reveal_child;
8341 	void function(GtkRevealer* revealer, uint duration) c_gtk_revealer_set_transition_duration;
8342 	void function(GtkRevealer* revealer, GtkRevealerTransitionType transition) c_gtk_revealer_set_transition_type;
8343 
8344 	// gtk.Scale
8345 
8346 	GType function() c_gtk_scale_get_type;
8347 	GtkWidget* function(GtkOrientation orientation, GtkAdjustment* adjustment) c_gtk_scale_new;
8348 	GtkWidget* function(GtkOrientation orientation, double min, double max, double step) c_gtk_scale_new_with_range;
8349 	void function(GtkScale* scale, double value, GtkPositionType position, const(char)* markup) c_gtk_scale_add_mark;
8350 	void function(GtkScale* scale) c_gtk_scale_clear_marks;
8351 	int function(GtkScale* scale) c_gtk_scale_get_digits;
8352 	int function(GtkScale* scale) c_gtk_scale_get_draw_value;
8353 	int function(GtkScale* scale) c_gtk_scale_get_has_origin;
8354 	PangoLayout* function(GtkScale* scale) c_gtk_scale_get_layout;
8355 	void function(GtkScale* scale, int* x, int* y) c_gtk_scale_get_layout_offsets;
8356 	GtkPositionType function(GtkScale* scale) c_gtk_scale_get_value_pos;
8357 	void function(GtkScale* scale, int digits) c_gtk_scale_set_digits;
8358 	void function(GtkScale* scale, int drawValue) c_gtk_scale_set_draw_value;
8359 	void function(GtkScale* scale, int hasOrigin) c_gtk_scale_set_has_origin;
8360 	void function(GtkScale* scale, GtkPositionType pos) c_gtk_scale_set_value_pos;
8361 
8362 	// gtk.ScaleAccessible
8363 
8364 	GType function() c_gtk_scale_accessible_get_type;
8365 
8366 	// gtk.ScaleButton
8367 
8368 	GType function() c_gtk_scale_button_get_type;
8369 	GtkWidget* function(GtkIconSize size, double min, double max, double step, char** icons) c_gtk_scale_button_new;
8370 	GtkAdjustment* function(GtkScaleButton* button) c_gtk_scale_button_get_adjustment;
8371 	GtkWidget* function(GtkScaleButton* button) c_gtk_scale_button_get_minus_button;
8372 	GtkWidget* function(GtkScaleButton* button) c_gtk_scale_button_get_plus_button;
8373 	GtkWidget* function(GtkScaleButton* button) c_gtk_scale_button_get_popup;
8374 	double function(GtkScaleButton* button) c_gtk_scale_button_get_value;
8375 	void function(GtkScaleButton* button, GtkAdjustment* adjustment) c_gtk_scale_button_set_adjustment;
8376 	void function(GtkScaleButton* button, char** icons) c_gtk_scale_button_set_icons;
8377 	void function(GtkScaleButton* button, double value) c_gtk_scale_button_set_value;
8378 
8379 	// gtk.ScaleButtonAccessible
8380 
8381 	GType function() c_gtk_scale_button_accessible_get_type;
8382 
8383 	// gtk.Scrollable
8384 
8385 	GType function() c_gtk_scrollable_get_type;
8386 	int function(GtkScrollable* scrollable, GtkBorder* border) c_gtk_scrollable_get_border;
8387 	GtkAdjustment* function(GtkScrollable* scrollable) c_gtk_scrollable_get_hadjustment;
8388 	GtkScrollablePolicy function(GtkScrollable* scrollable) c_gtk_scrollable_get_hscroll_policy;
8389 	GtkAdjustment* function(GtkScrollable* scrollable) c_gtk_scrollable_get_vadjustment;
8390 	GtkScrollablePolicy function(GtkScrollable* scrollable) c_gtk_scrollable_get_vscroll_policy;
8391 	void function(GtkScrollable* scrollable, GtkAdjustment* hadjustment) c_gtk_scrollable_set_hadjustment;
8392 	void function(GtkScrollable* scrollable, GtkScrollablePolicy policy) c_gtk_scrollable_set_hscroll_policy;
8393 	void function(GtkScrollable* scrollable, GtkAdjustment* vadjustment) c_gtk_scrollable_set_vadjustment;
8394 	void function(GtkScrollable* scrollable, GtkScrollablePolicy policy) c_gtk_scrollable_set_vscroll_policy;
8395 
8396 	// gtk.Scrollbar
8397 
8398 	GType function() c_gtk_scrollbar_get_type;
8399 	GtkWidget* function(GtkOrientation orientation, GtkAdjustment* adjustment) c_gtk_scrollbar_new;
8400 
8401 	// gtk.ScrolledWindow
8402 
8403 	GType function() c_gtk_scrolled_window_get_type;
8404 	GtkWidget* function(GtkAdjustment* hadjustment, GtkAdjustment* vadjustment) c_gtk_scrolled_window_new;
8405 	void function(GtkScrolledWindow* scrolledWindow, GtkWidget* child) c_gtk_scrolled_window_add_with_viewport;
8406 	int function(GtkScrolledWindow* scrolledWindow) c_gtk_scrolled_window_get_capture_button_press;
8407 	GtkAdjustment* function(GtkScrolledWindow* scrolledWindow) c_gtk_scrolled_window_get_hadjustment;
8408 	GtkWidget* function(GtkScrolledWindow* scrolledWindow) c_gtk_scrolled_window_get_hscrollbar;
8409 	int function(GtkScrolledWindow* scrolledWindow) c_gtk_scrolled_window_get_kinetic_scrolling;
8410 	int function(GtkScrolledWindow* scrolledWindow) c_gtk_scrolled_window_get_max_content_height;
8411 	int function(GtkScrolledWindow* scrolledWindow) c_gtk_scrolled_window_get_max_content_width;
8412 	int function(GtkScrolledWindow* scrolledWindow) c_gtk_scrolled_window_get_min_content_height;
8413 	int function(GtkScrolledWindow* scrolledWindow) c_gtk_scrolled_window_get_min_content_width;
8414 	int function(GtkScrolledWindow* scrolledWindow) c_gtk_scrolled_window_get_overlay_scrolling;
8415 	GtkCornerType function(GtkScrolledWindow* scrolledWindow) c_gtk_scrolled_window_get_placement;
8416 	void function(GtkScrolledWindow* scrolledWindow, GtkPolicyType* hscrollbarPolicy, GtkPolicyType* vscrollbarPolicy) c_gtk_scrolled_window_get_policy;
8417 	int function(GtkScrolledWindow* scrolledWindow) c_gtk_scrolled_window_get_propagate_natural_height;
8418 	int function(GtkScrolledWindow* scrolledWindow) c_gtk_scrolled_window_get_propagate_natural_width;
8419 	GtkShadowType function(GtkScrolledWindow* scrolledWindow) c_gtk_scrolled_window_get_shadow_type;
8420 	GtkAdjustment* function(GtkScrolledWindow* scrolledWindow) c_gtk_scrolled_window_get_vadjustment;
8421 	GtkWidget* function(GtkScrolledWindow* scrolledWindow) c_gtk_scrolled_window_get_vscrollbar;
8422 	void function(GtkScrolledWindow* scrolledWindow, int captureButtonPress) c_gtk_scrolled_window_set_capture_button_press;
8423 	void function(GtkScrolledWindow* scrolledWindow, GtkAdjustment* hadjustment) c_gtk_scrolled_window_set_hadjustment;
8424 	void function(GtkScrolledWindow* scrolledWindow, int kineticScrolling) c_gtk_scrolled_window_set_kinetic_scrolling;
8425 	void function(GtkScrolledWindow* scrolledWindow, int height) c_gtk_scrolled_window_set_max_content_height;
8426 	void function(GtkScrolledWindow* scrolledWindow, int width) c_gtk_scrolled_window_set_max_content_width;
8427 	void function(GtkScrolledWindow* scrolledWindow, int height) c_gtk_scrolled_window_set_min_content_height;
8428 	void function(GtkScrolledWindow* scrolledWindow, int width) c_gtk_scrolled_window_set_min_content_width;
8429 	void function(GtkScrolledWindow* scrolledWindow, int overlayScrolling) c_gtk_scrolled_window_set_overlay_scrolling;
8430 	void function(GtkScrolledWindow* scrolledWindow, GtkCornerType windowPlacement) c_gtk_scrolled_window_set_placement;
8431 	void function(GtkScrolledWindow* scrolledWindow, GtkPolicyType hscrollbarPolicy, GtkPolicyType vscrollbarPolicy) c_gtk_scrolled_window_set_policy;
8432 	void function(GtkScrolledWindow* scrolledWindow, int propagate) c_gtk_scrolled_window_set_propagate_natural_height;
8433 	void function(GtkScrolledWindow* scrolledWindow, int propagate) c_gtk_scrolled_window_set_propagate_natural_width;
8434 	void function(GtkScrolledWindow* scrolledWindow, GtkShadowType type) c_gtk_scrolled_window_set_shadow_type;
8435 	void function(GtkScrolledWindow* scrolledWindow, GtkAdjustment* vadjustment) c_gtk_scrolled_window_set_vadjustment;
8436 	void function(GtkScrolledWindow* scrolledWindow) c_gtk_scrolled_window_unset_placement;
8437 
8438 	// gtk.ScrolledWindowAccessible
8439 
8440 	GType function() c_gtk_scrolled_window_accessible_get_type;
8441 
8442 	// gtk.SearchBar
8443 
8444 	GType function() c_gtk_search_bar_get_type;
8445 	GtkWidget* function() c_gtk_search_bar_new;
8446 	void function(GtkSearchBar* bar, GtkEntry* entry) c_gtk_search_bar_connect_entry;
8447 	int function(GtkSearchBar* bar) c_gtk_search_bar_get_search_mode;
8448 	int function(GtkSearchBar* bar) c_gtk_search_bar_get_show_close_button;
8449 	int function(GtkSearchBar* bar, GdkEvent* event) c_gtk_search_bar_handle_event;
8450 	void function(GtkSearchBar* bar, int searchMode) c_gtk_search_bar_set_search_mode;
8451 	void function(GtkSearchBar* bar, int visible) c_gtk_search_bar_set_show_close_button;
8452 
8453 	// gtk.SearchEntry
8454 
8455 	GType function() c_gtk_search_entry_get_type;
8456 	GtkWidget* function() c_gtk_search_entry_new;
8457 	int function(GtkSearchEntry* entry, GdkEvent* event) c_gtk_search_entry_handle_event;
8458 
8459 	// gtk.SelectionData
8460 
8461 	GType function() c_gtk_selection_data_get_type;
8462 	GtkSelectionData* function(GtkSelectionData* data) c_gtk_selection_data_copy;
8463 	void function(GtkSelectionData* data) c_gtk_selection_data_free;
8464 	char* function(GtkSelectionData* selectionData) c_gtk_selection_data_get_data;
8465 	GdkAtom function(GtkSelectionData* selectionData) c_gtk_selection_data_get_data_type;
8466 	char* function(GtkSelectionData* selectionData, int* length) c_gtk_selection_data_get_data_with_length;
8467 	GdkDisplay* function(GtkSelectionData* selectionData) c_gtk_selection_data_get_display;
8468 	int function(GtkSelectionData* selectionData) c_gtk_selection_data_get_format;
8469 	int function(GtkSelectionData* selectionData) c_gtk_selection_data_get_length;
8470 	GdkPixbuf* function(GtkSelectionData* selectionData) c_gtk_selection_data_get_pixbuf;
8471 	GdkAtom function(GtkSelectionData* selectionData) c_gtk_selection_data_get_selection;
8472 	GdkAtom function(GtkSelectionData* selectionData) c_gtk_selection_data_get_target;
8473 	int function(GtkSelectionData* selectionData, GdkAtom** targets, int* nAtoms) c_gtk_selection_data_get_targets;
8474 	char* function(GtkSelectionData* selectionData) c_gtk_selection_data_get_text;
8475 	char** function(GtkSelectionData* selectionData) c_gtk_selection_data_get_uris;
8476 	void function(GtkSelectionData* selectionData, GdkAtom type, int format, char* data, int length) c_gtk_selection_data_set;
8477 	int function(GtkSelectionData* selectionData, GdkPixbuf* pixbuf) c_gtk_selection_data_set_pixbuf;
8478 	int function(GtkSelectionData* selectionData, const(char)* str, int len) c_gtk_selection_data_set_text;
8479 	int function(GtkSelectionData* selectionData, char** uris) c_gtk_selection_data_set_uris;
8480 	int function(GtkSelectionData* selectionData, int writable) c_gtk_selection_data_targets_include_image;
8481 	int function(GtkSelectionData* selectionData, GtkTextBuffer* buffer) c_gtk_selection_data_targets_include_rich_text;
8482 	int function(GtkSelectionData* selectionData) c_gtk_selection_data_targets_include_text;
8483 	int function(GtkSelectionData* selectionData) c_gtk_selection_data_targets_include_uri;
8484 	void function(GtkWidget* widget, GdkAtom selection, GdkAtom target, uint info) c_gtk_selection_add_target;
8485 	void function(GtkWidget* widget, GdkAtom selection, GtkTargetEntry* targets, uint ntargets) c_gtk_selection_add_targets;
8486 	void function(GtkWidget* widget, GdkAtom selection) c_gtk_selection_clear_targets;
8487 	int function(GtkWidget* widget, GdkAtom selection, GdkAtom target, uint time) c_gtk_selection_convert;
8488 	int function(GtkWidget* widget, GdkAtom selection, uint time) c_gtk_selection_owner_set;
8489 	int function(GdkDisplay* display, GtkWidget* widget, GdkAtom selection, uint time) c_gtk_selection_owner_set_for_display;
8490 	void function(GtkWidget* widget) c_gtk_selection_remove_all;
8491 
8492 	// gtk.Separator
8493 
8494 	GType function() c_gtk_separator_get_type;
8495 	GtkWidget* function(GtkOrientation orientation) c_gtk_separator_new;
8496 
8497 	// gtk.SeparatorMenuItem
8498 
8499 	GType function() c_gtk_separator_menu_item_get_type;
8500 	GtkWidget* function() c_gtk_separator_menu_item_new;
8501 
8502 	// gtk.SeparatorToolItem
8503 
8504 	GType function() c_gtk_separator_tool_item_get_type;
8505 	GtkToolItem* function() c_gtk_separator_tool_item_new;
8506 	int function(GtkSeparatorToolItem* item) c_gtk_separator_tool_item_get_draw;
8507 	void function(GtkSeparatorToolItem* item, int draw) c_gtk_separator_tool_item_set_draw;
8508 
8509 	// gtk.Settings
8510 
8511 	GType function() c_gtk_settings_get_type;
8512 	GtkSettings* function() c_gtk_settings_get_default;
8513 	GtkSettings* function(GdkScreen* screen) c_gtk_settings_get_for_screen;
8514 	void function(GParamSpec* pspec) c_gtk_settings_install_property;
8515 	void function(GParamSpec* pspec, GtkRcPropertyParser parser) c_gtk_settings_install_property_parser;
8516 	void function(GtkSettings* settings, const(char)* name) c_gtk_settings_reset_property;
8517 	void function(GtkSettings* settings, const(char)* name, double vDouble, const(char)* origin) c_gtk_settings_set_double_property;
8518 	void function(GtkSettings* settings, const(char)* name, glong vLong, const(char)* origin) c_gtk_settings_set_long_property;
8519 	void function(GtkSettings* settings, const(char)* name, GtkSettingsValue* svalue) c_gtk_settings_set_property_value;
8520 	void function(GtkSettings* settings, const(char)* name, const(char)* vString, const(char)* origin) c_gtk_settings_set_string_property;
8521 
8522 	// gtk.ShortcutLabel
8523 
8524 	GType function() c_gtk_shortcut_label_get_type;
8525 	GtkWidget* function(const(char)* accelerator) c_gtk_shortcut_label_new;
8526 	const(char)* function(GtkShortcutLabel* self) c_gtk_shortcut_label_get_accelerator;
8527 	const(char)* function(GtkShortcutLabel* self) c_gtk_shortcut_label_get_disabled_text;
8528 	void function(GtkShortcutLabel* self, const(char)* accelerator) c_gtk_shortcut_label_set_accelerator;
8529 	void function(GtkShortcutLabel* self, const(char)* disabledText) c_gtk_shortcut_label_set_disabled_text;
8530 
8531 	// gtk.ShortcutsGroup
8532 
8533 	GType function() c_gtk_shortcuts_group_get_type;
8534 
8535 	// gtk.ShortcutsSection
8536 
8537 	GType function() c_gtk_shortcuts_section_get_type;
8538 
8539 	// gtk.ShortcutsShortcut
8540 
8541 	GType function() c_gtk_shortcuts_shortcut_get_type;
8542 
8543 	// gtk.ShortcutsWindow
8544 
8545 	GType function() c_gtk_shortcuts_window_get_type;
8546 
8547 	// gtk.SizeGroup
8548 
8549 	GType function() c_gtk_size_group_get_type;
8550 	GtkSizeGroup* function(GtkSizeGroupMode mode) c_gtk_size_group_new;
8551 	void function(GtkSizeGroup* sizeGroup, GtkWidget* widget) c_gtk_size_group_add_widget;
8552 	int function(GtkSizeGroup* sizeGroup) c_gtk_size_group_get_ignore_hidden;
8553 	GtkSizeGroupMode function(GtkSizeGroup* sizeGroup) c_gtk_size_group_get_mode;
8554 	GSList* function(GtkSizeGroup* sizeGroup) c_gtk_size_group_get_widgets;
8555 	void function(GtkSizeGroup* sizeGroup, GtkWidget* widget) c_gtk_size_group_remove_widget;
8556 	void function(GtkSizeGroup* sizeGroup, int ignoreHidden) c_gtk_size_group_set_ignore_hidden;
8557 	void function(GtkSizeGroup* sizeGroup, GtkSizeGroupMode mode) c_gtk_size_group_set_mode;
8558 
8559 	// gtk.Socket
8560 
8561 	GType function() c_gtk_socket_get_type;
8562 	GtkWidget* function() c_gtk_socket_new;
8563 	void function(GtkSocket* socket, ulong window) c_gtk_socket_add_id;
8564 	ulong function(GtkSocket* socket) c_gtk_socket_get_id;
8565 	GdkWindow* function(GtkSocket* socket) c_gtk_socket_get_plug_window;
8566 
8567 	// gtk.SpinButton
8568 
8569 	GType function() c_gtk_spin_button_get_type;
8570 	GtkWidget* function(GtkAdjustment* adjustment, double climbRate, uint digits) c_gtk_spin_button_new;
8571 	GtkWidget* function(double min, double max, double step) c_gtk_spin_button_new_with_range;
8572 	void function(GtkSpinButton* spinButton, GtkAdjustment* adjustment, double climbRate, uint digits) c_gtk_spin_button_configure;
8573 	GtkAdjustment* function(GtkSpinButton* spinButton) c_gtk_spin_button_get_adjustment;
8574 	uint function(GtkSpinButton* spinButton) c_gtk_spin_button_get_digits;
8575 	void function(GtkSpinButton* spinButton, double* step, double* page) c_gtk_spin_button_get_increments;
8576 	int function(GtkSpinButton* spinButton) c_gtk_spin_button_get_numeric;
8577 	void function(GtkSpinButton* spinButton, double* min, double* max) c_gtk_spin_button_get_range;
8578 	int function(GtkSpinButton* spinButton) c_gtk_spin_button_get_snap_to_ticks;
8579 	GtkSpinButtonUpdatePolicy function(GtkSpinButton* spinButton) c_gtk_spin_button_get_update_policy;
8580 	double function(GtkSpinButton* spinButton) c_gtk_spin_button_get_value;
8581 	int function(GtkSpinButton* spinButton) c_gtk_spin_button_get_value_as_int;
8582 	int function(GtkSpinButton* spinButton) c_gtk_spin_button_get_wrap;
8583 	void function(GtkSpinButton* spinButton, GtkAdjustment* adjustment) c_gtk_spin_button_set_adjustment;
8584 	void function(GtkSpinButton* spinButton, uint digits) c_gtk_spin_button_set_digits;
8585 	void function(GtkSpinButton* spinButton, double step, double page) c_gtk_spin_button_set_increments;
8586 	void function(GtkSpinButton* spinButton, int numeric) c_gtk_spin_button_set_numeric;
8587 	void function(GtkSpinButton* spinButton, double min, double max) c_gtk_spin_button_set_range;
8588 	void function(GtkSpinButton* spinButton, int snapToTicks) c_gtk_spin_button_set_snap_to_ticks;
8589 	void function(GtkSpinButton* spinButton, GtkSpinButtonUpdatePolicy policy) c_gtk_spin_button_set_update_policy;
8590 	void function(GtkSpinButton* spinButton, double value) c_gtk_spin_button_set_value;
8591 	void function(GtkSpinButton* spinButton, int wrap) c_gtk_spin_button_set_wrap;
8592 	void function(GtkSpinButton* spinButton, GtkSpinType direction, double increment) c_gtk_spin_button_spin;
8593 	void function(GtkSpinButton* spinButton) c_gtk_spin_button_update;
8594 
8595 	// gtk.SpinButtonAccessible
8596 
8597 	GType function() c_gtk_spin_button_accessible_get_type;
8598 
8599 	// gtk.Spinner
8600 
8601 	GType function() c_gtk_spinner_get_type;
8602 	GtkWidget* function() c_gtk_spinner_new;
8603 	void function(GtkSpinner* spinner) c_gtk_spinner_start;
8604 	void function(GtkSpinner* spinner) c_gtk_spinner_stop;
8605 
8606 	// gtk.SpinnerAccessible
8607 
8608 	GType function() c_gtk_spinner_accessible_get_type;
8609 
8610 	// gtk.Stack
8611 
8612 	GType function() c_gtk_stack_get_type;
8613 	GtkWidget* function() c_gtk_stack_new;
8614 	void function(GtkStack* stack, GtkWidget* child, const(char)* name) c_gtk_stack_add_named;
8615 	void function(GtkStack* stack, GtkWidget* child, const(char)* name, const(char)* title) c_gtk_stack_add_titled;
8616 	GtkWidget* function(GtkStack* stack, const(char)* name) c_gtk_stack_get_child_by_name;
8617 	int function(GtkStack* stack) c_gtk_stack_get_hhomogeneous;
8618 	int function(GtkStack* stack) c_gtk_stack_get_homogeneous;
8619 	int function(GtkStack* stack) c_gtk_stack_get_interpolate_size;
8620 	uint function(GtkStack* stack) c_gtk_stack_get_transition_duration;
8621 	int function(GtkStack* stack) c_gtk_stack_get_transition_running;
8622 	GtkStackTransitionType function(GtkStack* stack) c_gtk_stack_get_transition_type;
8623 	int function(GtkStack* stack) c_gtk_stack_get_vhomogeneous;
8624 	GtkWidget* function(GtkStack* stack) c_gtk_stack_get_visible_child;
8625 	const(char)* function(GtkStack* stack) c_gtk_stack_get_visible_child_name;
8626 	void function(GtkStack* stack, int hhomogeneous) c_gtk_stack_set_hhomogeneous;
8627 	void function(GtkStack* stack, int homogeneous) c_gtk_stack_set_homogeneous;
8628 	void function(GtkStack* stack, int interpolateSize) c_gtk_stack_set_interpolate_size;
8629 	void function(GtkStack* stack, uint duration) c_gtk_stack_set_transition_duration;
8630 	void function(GtkStack* stack, GtkStackTransitionType transition) c_gtk_stack_set_transition_type;
8631 	void function(GtkStack* stack, int vhomogeneous) c_gtk_stack_set_vhomogeneous;
8632 	void function(GtkStack* stack, GtkWidget* child) c_gtk_stack_set_visible_child;
8633 	void function(GtkStack* stack, const(char)* name, GtkStackTransitionType transition) c_gtk_stack_set_visible_child_full;
8634 	void function(GtkStack* stack, const(char)* name) c_gtk_stack_set_visible_child_name;
8635 
8636 	// gtk.StackAccessible
8637 
8638 	GType function() c_gtk_stack_accessible_get_type;
8639 
8640 	// gtk.StackSidebar
8641 
8642 	GType function() c_gtk_stack_sidebar_get_type;
8643 	GtkWidget* function() c_gtk_stack_sidebar_new;
8644 	GtkStack* function(GtkStackSidebar* sidebar) c_gtk_stack_sidebar_get_stack;
8645 	void function(GtkStackSidebar* sidebar, GtkStack* stack) c_gtk_stack_sidebar_set_stack;
8646 
8647 	// gtk.StackSwitcher
8648 
8649 	GType function() c_gtk_stack_switcher_get_type;
8650 	GtkWidget* function() c_gtk_stack_switcher_new;
8651 	GtkStack* function(GtkStackSwitcher* switcher) c_gtk_stack_switcher_get_stack;
8652 	void function(GtkStackSwitcher* switcher, GtkStack* stack) c_gtk_stack_switcher_set_stack;
8653 
8654 	// gtk.StatusIcon
8655 
8656 	GType function() c_gtk_status_icon_get_type;
8657 	GtkStatusIcon* function() c_gtk_status_icon_new;
8658 	GtkStatusIcon* function(char* filename) c_gtk_status_icon_new_from_file;
8659 	GtkStatusIcon* function(GIcon* icon) c_gtk_status_icon_new_from_gicon;
8660 	GtkStatusIcon* function(const(char)* iconName) c_gtk_status_icon_new_from_icon_name;
8661 	GtkStatusIcon* function(GdkPixbuf* pixbuf) c_gtk_status_icon_new_from_pixbuf;
8662 	GtkStatusIcon* function(const(char)* stockId) c_gtk_status_icon_new_from_stock;
8663 	void function(GtkMenu* menu, int* x, int* y, int* pushIn, void* userData) c_gtk_status_icon_position_menu;
8664 	int function(GtkStatusIcon* statusIcon, GdkScreen** screen, GdkRectangle* area, GtkOrientation* orientation) c_gtk_status_icon_get_geometry;
8665 	GIcon* function(GtkStatusIcon* statusIcon) c_gtk_status_icon_get_gicon;
8666 	int function(GtkStatusIcon* statusIcon) c_gtk_status_icon_get_has_tooltip;
8667 	const(char)* function(GtkStatusIcon* statusIcon) c_gtk_status_icon_get_icon_name;
8668 	GdkPixbuf* function(GtkStatusIcon* statusIcon) c_gtk_status_icon_get_pixbuf;
8669 	GdkScreen* function(GtkStatusIcon* statusIcon) c_gtk_status_icon_get_screen;
8670 	int function(GtkStatusIcon* statusIcon) c_gtk_status_icon_get_size;
8671 	const(char)* function(GtkStatusIcon* statusIcon) c_gtk_status_icon_get_stock;
8672 	GtkImageType function(GtkStatusIcon* statusIcon) c_gtk_status_icon_get_storage_type;
8673 	const(char)* function(GtkStatusIcon* statusIcon) c_gtk_status_icon_get_title;
8674 	char* function(GtkStatusIcon* statusIcon) c_gtk_status_icon_get_tooltip_markup;
8675 	char* function(GtkStatusIcon* statusIcon) c_gtk_status_icon_get_tooltip_text;
8676 	int function(GtkStatusIcon* statusIcon) c_gtk_status_icon_get_visible;
8677 	uint function(GtkStatusIcon* statusIcon) c_gtk_status_icon_get_x11_window_id;
8678 	int function(GtkStatusIcon* statusIcon) c_gtk_status_icon_is_embedded;
8679 	void function(GtkStatusIcon* statusIcon, char* filename) c_gtk_status_icon_set_from_file;
8680 	void function(GtkStatusIcon* statusIcon, GIcon* icon) c_gtk_status_icon_set_from_gicon;
8681 	void function(GtkStatusIcon* statusIcon, const(char)* iconName) c_gtk_status_icon_set_from_icon_name;
8682 	void function(GtkStatusIcon* statusIcon, GdkPixbuf* pixbuf) c_gtk_status_icon_set_from_pixbuf;
8683 	void function(GtkStatusIcon* statusIcon, const(char)* stockId) c_gtk_status_icon_set_from_stock;
8684 	void function(GtkStatusIcon* statusIcon, int hasTooltip) c_gtk_status_icon_set_has_tooltip;
8685 	void function(GtkStatusIcon* statusIcon, const(char)* name) c_gtk_status_icon_set_name;
8686 	void function(GtkStatusIcon* statusIcon, GdkScreen* screen) c_gtk_status_icon_set_screen;
8687 	void function(GtkStatusIcon* statusIcon, const(char)* title) c_gtk_status_icon_set_title;
8688 	void function(GtkStatusIcon* statusIcon, const(char)* markup) c_gtk_status_icon_set_tooltip_markup;
8689 	void function(GtkStatusIcon* statusIcon, const(char)* text) c_gtk_status_icon_set_tooltip_text;
8690 	void function(GtkStatusIcon* statusIcon, int visible) c_gtk_status_icon_set_visible;
8691 
8692 	// gtk.Statusbar
8693 
8694 	GType function() c_gtk_statusbar_get_type;
8695 	GtkWidget* function() c_gtk_statusbar_new;
8696 	uint function(GtkStatusbar* statusbar, const(char)* contextDescription) c_gtk_statusbar_get_context_id;
8697 	GtkWidget* function(GtkStatusbar* statusbar) c_gtk_statusbar_get_message_area;
8698 	void function(GtkStatusbar* statusbar, uint contextId) c_gtk_statusbar_pop;
8699 	uint function(GtkStatusbar* statusbar, uint contextId, const(char)* text) c_gtk_statusbar_push;
8700 	void function(GtkStatusbar* statusbar, uint contextId, uint messageId) c_gtk_statusbar_remove;
8701 	void function(GtkStatusbar* statusbar, uint contextId) c_gtk_statusbar_remove_all;
8702 
8703 	// gtk.StatusbarAccessible
8704 
8705 	GType function() c_gtk_statusbar_accessible_get_type;
8706 
8707 	// gtk.StockItem
8708 
8709 	GtkStockItem* function(GtkStockItem* item) c_gtk_stock_item_copy;
8710 	void function(GtkStockItem* item) c_gtk_stock_item_free;
8711 	void function(GtkStockItem* items, uint nItems) c_gtk_stock_add;
8712 	void function(GtkStockItem* items, uint nItems) c_gtk_stock_add_static;
8713 	GSList* function() c_gtk_stock_list_ids;
8714 	int function(const(char)* stockId, GtkStockItem* item) c_gtk_stock_lookup;
8715 	void function(const(char)* domain, GtkTranslateFunc func, void* data, GDestroyNotify notify) c_gtk_stock_set_translate_func;
8716 
8717 	// gtk.Style
8718 
8719 	GType function() c_gtk_style_get_type;
8720 	GtkStyle* function() c_gtk_style_new;
8721 	void function(GtkStyle* style, cairo_t* cr, GdkWindow* window, GtkStateType stateType, int x, int y, int width, int height) c_gtk_style_apply_default_background;
8722 	GtkStyle* function(GtkStyle* style, GdkWindow* window) c_gtk_style_attach;
8723 	GtkStyle* function(GtkStyle* style) c_gtk_style_copy;
8724 	void function(GtkStyle* style) c_gtk_style_detach;
8725 	void function(GtkStyle* style, GType widgetType, const(char)* firstPropertyName, ... ) c_gtk_style_get;
8726 	void function(GtkStyle* style, GType widgetType, const(char)* propertyName, GValue* value) c_gtk_style_get_style_property;
8727 	void function(GtkStyle* style, GType widgetType, const(char)* firstPropertyName, void* varArgs) c_gtk_style_get_valist;
8728 	int function(GtkStyle* style) c_gtk_style_has_context;
8729 	int function(GtkStyle* style, const(char)* colorName, GdkColor* color) c_gtk_style_lookup_color;
8730 	GtkIconSet* function(GtkStyle* style, const(char)* stockId) c_gtk_style_lookup_icon_set;
8731 	GdkPixbuf* function(GtkStyle* style, GtkIconSource* source, GtkTextDirection direction, GtkStateType state, GtkIconSize size, GtkWidget* widget, const(char)* detail) c_gtk_style_render_icon;
8732 	void function(GtkStyle* style, GdkWindow* window, GtkStateType stateType) c_gtk_style_set_background;
8733 	void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, GtkArrowType arrowType, int fill, int x, int y, int width, int height) c_gtk_paint_arrow;
8734 	void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height) c_gtk_paint_box;
8735 	void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height, GtkPositionType gapSide, int gapX, int gapWidth) c_gtk_paint_box_gap;
8736 	void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height) c_gtk_paint_check;
8737 	void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height) c_gtk_paint_diamond;
8738 	void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkWidget* widget, const(char)* detail, int x, int y, GtkExpanderStyle expanderStyle) c_gtk_paint_expander;
8739 	void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height, GtkPositionType gapSide) c_gtk_paint_extension;
8740 	void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height) c_gtk_paint_flat_box;
8741 	void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height) c_gtk_paint_focus;
8742 	void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height, GtkOrientation orientation) c_gtk_paint_handle;
8743 	void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkWidget* widget, const(char)* detail, int x1, int x2, int y) c_gtk_paint_hline;
8744 	void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, int useText, GtkWidget* widget, const(char)* detail, int x, int y, PangoLayout* layout) c_gtk_paint_layout;
8745 	void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height) c_gtk_paint_option;
8746 	void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkWidget* widget, const(char)* detail, GdkWindowEdge edge, int x, int y, int width, int height) c_gtk_paint_resize_grip;
8747 	void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height) c_gtk_paint_shadow;
8748 	void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height, GtkPositionType gapSide, int gapX, int gapWidth) c_gtk_paint_shadow_gap;
8749 	void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height, GtkOrientation orientation) c_gtk_paint_slider;
8750 	void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkWidget* widget, const(char)* detail, uint step, int x, int y, int width, int height) c_gtk_paint_spinner;
8751 	void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkShadowType shadowType, GtkWidget* widget, const(char)* detail, int x, int y, int width, int height) c_gtk_paint_tab;
8752 	void function(GtkStyle* style, cairo_t* cr, GtkStateType stateType, GtkWidget* widget, const(char)* detail, int y1, int y2, int x) c_gtk_paint_vline;
8753 
8754 	// gtk.StyleContext
8755 
8756 	GType function() c_gtk_style_context_get_type;
8757 	GtkStyleContext* function() c_gtk_style_context_new;
8758 	void function(GdkScreen* screen, GtkStyleProvider* provider, uint priority) c_gtk_style_context_add_provider_for_screen;
8759 	void function(GdkScreen* screen, GtkStyleProvider* provider) c_gtk_style_context_remove_provider_for_screen;
8760 	void function(GdkScreen* screen) c_gtk_style_context_reset_widgets;
8761 	void function(GtkStyleContext* context, const(char)* className) c_gtk_style_context_add_class;
8762 	void function(GtkStyleContext* context, GtkStyleProvider* provider, uint priority) c_gtk_style_context_add_provider;
8763 	void function(GtkStyleContext* context, const(char)* regionName, GtkRegionFlags flags) c_gtk_style_context_add_region;
8764 	void function(GtkStyleContext* context, void* regionId) c_gtk_style_context_cancel_animations;
8765 	void function(GtkStyleContext* context, GtkStateFlags state, ... ) c_gtk_style_context_get;
8766 	void function(GtkStyleContext* context, GtkStateFlags state, GdkRGBA* color) c_gtk_style_context_get_background_color;
8767 	void function(GtkStyleContext* context, GtkStateFlags state, GtkBorder* border) c_gtk_style_context_get_border;
8768 	void function(GtkStyleContext* context, GtkStateFlags state, GdkRGBA* color) c_gtk_style_context_get_border_color;
8769 	void function(GtkStyleContext* context, GtkStateFlags state, GdkRGBA* color) c_gtk_style_context_get_color;
8770 	GtkTextDirection function(GtkStyleContext* context) c_gtk_style_context_get_direction;
8771 	PangoFontDescription* function(GtkStyleContext* context, GtkStateFlags state) c_gtk_style_context_get_font;
8772 	GdkFrameClock* function(GtkStyleContext* context) c_gtk_style_context_get_frame_clock;
8773 	GtkJunctionSides function(GtkStyleContext* context) c_gtk_style_context_get_junction_sides;
8774 	void function(GtkStyleContext* context, GtkStateFlags state, GtkBorder* margin) c_gtk_style_context_get_margin;
8775 	void function(GtkStyleContext* context, GtkStateFlags state, GtkBorder* padding) c_gtk_style_context_get_padding;
8776 	GtkStyleContext* function(GtkStyleContext* context) c_gtk_style_context_get_parent;
8777 	GtkWidgetPath* function(GtkStyleContext* context) c_gtk_style_context_get_path;
8778 	void function(GtkStyleContext* context, const(char)* property, GtkStateFlags state, GValue* value) c_gtk_style_context_get_property;
8779 	int function(GtkStyleContext* context) c_gtk_style_context_get_scale;
8780 	GdkScreen* function(GtkStyleContext* context) c_gtk_style_context_get_screen;
8781 	GtkCssSection* function(GtkStyleContext* context, const(char)* property) c_gtk_style_context_get_section;
8782 	GtkStateFlags function(GtkStyleContext* context) c_gtk_style_context_get_state;
8783 	void function(GtkStyleContext* context, ... ) c_gtk_style_context_get_style;
8784 	void function(GtkStyleContext* context, const(char)* propertyName, GValue* value) c_gtk_style_context_get_style_property;
8785 	void function(GtkStyleContext* context, void* args) c_gtk_style_context_get_style_valist;
8786 	void function(GtkStyleContext* context, GtkStateFlags state, void* args) c_gtk_style_context_get_valist;
8787 	int function(GtkStyleContext* context, const(char)* className) c_gtk_style_context_has_class;
8788 	int function(GtkStyleContext* context, const(char)* regionName, GtkRegionFlags* flagsReturn) c_gtk_style_context_has_region;
8789 	void function(GtkStyleContext* context) c_gtk_style_context_invalidate;
8790 	GList* function(GtkStyleContext* context) c_gtk_style_context_list_classes;
8791 	GList* function(GtkStyleContext* context) c_gtk_style_context_list_regions;
8792 	int function(GtkStyleContext* context, const(char)* colorName, GdkRGBA* color) c_gtk_style_context_lookup_color;
8793 	GtkIconSet* function(GtkStyleContext* context, const(char)* stockId) c_gtk_style_context_lookup_icon_set;
8794 	void function(GtkStyleContext* context, GdkWindow* window, void* regionId, GtkStateType state, int stateValue) c_gtk_style_context_notify_state_change;
8795 	void function(GtkStyleContext* context) c_gtk_style_context_pop_animatable_region;
8796 	void function(GtkStyleContext* context, void* regionId) c_gtk_style_context_push_animatable_region;
8797 	void function(GtkStyleContext* context, const(char)* className) c_gtk_style_context_remove_class;
8798 	void function(GtkStyleContext* context, GtkStyleProvider* provider) c_gtk_style_context_remove_provider;
8799 	void function(GtkStyleContext* context, const(char)* regionName) c_gtk_style_context_remove_region;
8800 	void function(GtkStyleContext* context) c_gtk_style_context_restore;
8801 	void function(GtkStyleContext* context) c_gtk_style_context_save;
8802 	void function(GtkStyleContext* context, GdkWindow* window, int dx, int dy) c_gtk_style_context_scroll_animations;
8803 	void function(GtkStyleContext* context, GdkWindow* window) c_gtk_style_context_set_background;
8804 	void function(GtkStyleContext* context, GtkTextDirection direction) c_gtk_style_context_set_direction;
8805 	void function(GtkStyleContext* context, GdkFrameClock* frameClock) c_gtk_style_context_set_frame_clock;
8806 	void function(GtkStyleContext* context, GtkJunctionSides sides) c_gtk_style_context_set_junction_sides;
8807 	void function(GtkStyleContext* context, GtkStyleContext* parent) c_gtk_style_context_set_parent;
8808 	void function(GtkStyleContext* context, GtkWidgetPath* path) c_gtk_style_context_set_path;
8809 	void function(GtkStyleContext* context, int scale) c_gtk_style_context_set_scale;
8810 	void function(GtkStyleContext* context, GdkScreen* screen) c_gtk_style_context_set_screen;
8811 	void function(GtkStyleContext* context, GtkStateFlags flags) c_gtk_style_context_set_state;
8812 	int function(GtkStyleContext* context, GtkStateType state, double* progress) c_gtk_style_context_state_is_running;
8813 	char* function(GtkStyleContext* context, GtkStyleContextPrintFlags flags) c_gtk_style_context_to_string;
8814 	void function(GtkStyleContext* context, cairo_t* cr, double x, double y, double width, double height) c_gtk_render_activity;
8815 	void function(GtkStyleContext* context, cairo_t* cr, double angle, double x, double y, double size) c_gtk_render_arrow;
8816 	void function(GtkStyleContext* context, cairo_t* cr, double x, double y, double width, double height) c_gtk_render_background;
8817 	void function(GtkStyleContext* context, double x, double y, double width, double height, GdkRectangle* outClip) c_gtk_render_background_get_clip;
8818 	void function(GtkStyleContext* context, cairo_t* cr, double x, double y, double width, double height) c_gtk_render_check;
8819 	void function(GtkStyleContext* context, cairo_t* cr, double x, double y, double width, double height) c_gtk_render_expander;
8820 	void function(GtkStyleContext* context, cairo_t* cr, double x, double y, double width, double height, GtkPositionType gapSide) c_gtk_render_extension;
8821 	void function(GtkStyleContext* context, cairo_t* cr, double x, double y, double width, double height) c_gtk_render_focus;
8822 	void function(GtkStyleContext* context, cairo_t* cr, double x, double y, double width, double height) c_gtk_render_frame;
8823 	void function(GtkStyleContext* context, cairo_t* cr, double x, double y, double width, double height, GtkPositionType gapSide, double xy0Gap, double xy1Gap) c_gtk_render_frame_gap;
8824 	void function(GtkStyleContext* context, cairo_t* cr, double x, double y, double width, double height) c_gtk_render_handle;
8825 	void function(GtkStyleContext* context, cairo_t* cr, GdkPixbuf* pixbuf, double x, double y) c_gtk_render_icon;
8826 	GdkPixbuf* function(GtkStyleContext* context, GtkIconSource* source, GtkIconSize size) c_gtk_render_icon_pixbuf;
8827 	void function(GtkStyleContext* context, cairo_t* cr, cairo_surface_t* surface, double x, double y) c_gtk_render_icon_surface;
8828 	void function(GtkStyleContext* context, cairo_t* cr, double x, double y, PangoLayout* layout, int index, PangoDirection direction) c_gtk_render_insertion_cursor;
8829 	void function(GtkStyleContext* context, cairo_t* cr, double x, double y, PangoLayout* layout) c_gtk_render_layout;
8830 	void function(GtkStyleContext* context, cairo_t* cr, double x0, double y0, double x1, double y1) c_gtk_render_line;
8831 	void function(GtkStyleContext* context, cairo_t* cr, double x, double y, double width, double height) c_gtk_render_option;
8832 	void function(GtkStyleContext* context, cairo_t* cr, double x, double y, double width, double height, GtkOrientation orientation) c_gtk_render_slider;
8833 
8834 	// gtk.StyleProperties
8835 
8836 	GType function() c_gtk_style_properties_get_type;
8837 	GtkStyleProperties* function() c_gtk_style_properties_new;
8838 	int function(const(char)* propertyName, GtkStylePropertyParser* parseFunc, GParamSpec** pspec) c_gtk_style_properties_lookup_property;
8839 	void function(GtkStylePropertyParser parseFunc, GParamSpec* pspec) c_gtk_style_properties_register_property;
8840 	void function(GtkStyleProperties* props) c_gtk_style_properties_clear;
8841 	void function(GtkStyleProperties* props, GtkStateFlags state, ... ) c_gtk_style_properties_get;
8842 	int function(GtkStyleProperties* props, const(char)* property, GtkStateFlags state, GValue* value) c_gtk_style_properties_get_property;
8843 	void function(GtkStyleProperties* props, GtkStateFlags state, void* args) c_gtk_style_properties_get_valist;
8844 	GtkSymbolicColor* function(GtkStyleProperties* props, const(char)* name) c_gtk_style_properties_lookup_color;
8845 	void function(GtkStyleProperties* props, const(char)* name, GtkSymbolicColor* color) c_gtk_style_properties_map_color;
8846 	void function(GtkStyleProperties* props, GtkStyleProperties* propsToMerge, int replace) c_gtk_style_properties_merge;
8847 	void function(GtkStyleProperties* props, GtkStateFlags state, ... ) c_gtk_style_properties_set;
8848 	void function(GtkStyleProperties* props, const(char)* property, GtkStateFlags state, GValue* value) c_gtk_style_properties_set_property;
8849 	void function(GtkStyleProperties* props, GtkStateFlags state, void* args) c_gtk_style_properties_set_valist;
8850 	void function(GtkStyleProperties* props, const(char)* property, GtkStateFlags state) c_gtk_style_properties_unset_property;
8851 
8852 	// gtk.StyleProvider
8853 
8854 	GType function() c_gtk_style_provider_get_type;
8855 	GtkIconFactory* function(GtkStyleProvider* provider, GtkWidgetPath* path) c_gtk_style_provider_get_icon_factory;
8856 	GtkStyleProperties* function(GtkStyleProvider* provider, GtkWidgetPath* path) c_gtk_style_provider_get_style;
8857 	int function(GtkStyleProvider* provider, GtkWidgetPath* path, GtkStateFlags state, GParamSpec* pspec, GValue* value) c_gtk_style_provider_get_style_property;
8858 
8859 	// gtk.Switch
8860 
8861 	GType function() c_gtk_switch_get_type;
8862 	GtkWidget* function() c_gtk_switch_new;
8863 	int function(GtkSwitch* sw) c_gtk_switch_get_active;
8864 	int function(GtkSwitch* sw) c_gtk_switch_get_state;
8865 	void function(GtkSwitch* sw, int isActive) c_gtk_switch_set_active;
8866 	void function(GtkSwitch* sw, int state) c_gtk_switch_set_state;
8867 
8868 	// gtk.SwitchAccessible
8869 
8870 	GType function() c_gtk_switch_accessible_get_type;
8871 
8872 	// gtk.SymbolicColor
8873 
8874 	GType function() c_gtk_symbolic_color_get_type;
8875 	GtkSymbolicColor* function(GtkSymbolicColor* color, double factor) c_gtk_symbolic_color_new_alpha;
8876 	GtkSymbolicColor* function(GdkRGBA* color) c_gtk_symbolic_color_new_literal;
8877 	GtkSymbolicColor* function(GtkSymbolicColor* color1, GtkSymbolicColor* color2, double factor) c_gtk_symbolic_color_new_mix;
8878 	GtkSymbolicColor* function(const(char)* name) c_gtk_symbolic_color_new_name;
8879 	GtkSymbolicColor* function(GtkSymbolicColor* color, double factor) c_gtk_symbolic_color_new_shade;
8880 	GtkSymbolicColor* function(const(char)* themeClass, int id) c_gtk_symbolic_color_new_win32;
8881 	GtkSymbolicColor* function(GtkSymbolicColor* color) c_gtk_symbolic_color_ref;
8882 	int function(GtkSymbolicColor* color, GtkStyleProperties* props, GdkRGBA* resolvedColor) c_gtk_symbolic_color_resolve;
8883 	char* function(GtkSymbolicColor* color) c_gtk_symbolic_color_to_string;
8884 	void function(GtkSymbolicColor* color) c_gtk_symbolic_color_unref;
8885 
8886 	// gtk.Table
8887 
8888 	GType function() c_gtk_table_get_type;
8889 	GtkWidget* function(uint rows, uint columns, int homogeneous) c_gtk_table_new;
8890 	void function(GtkTable* table, GtkWidget* child, uint leftAttach, uint rightAttach, uint topAttach, uint bottomAttach, GtkAttachOptions xoptions, GtkAttachOptions yoptions, uint xpadding, uint ypadding) c_gtk_table_attach;
8891 	void function(GtkTable* table, GtkWidget* widget, uint leftAttach, uint rightAttach, uint topAttach, uint bottomAttach) c_gtk_table_attach_defaults;
8892 	uint function(GtkTable* table, uint column) c_gtk_table_get_col_spacing;
8893 	uint function(GtkTable* table) c_gtk_table_get_default_col_spacing;
8894 	uint function(GtkTable* table) c_gtk_table_get_default_row_spacing;
8895 	int function(GtkTable* table) c_gtk_table_get_homogeneous;
8896 	uint function(GtkTable* table, uint row) c_gtk_table_get_row_spacing;
8897 	void function(GtkTable* table, uint* rows, uint* columns) c_gtk_table_get_size;
8898 	void function(GtkTable* table, uint rows, uint columns) c_gtk_table_resize;
8899 	void function(GtkTable* table, uint column, uint spacing) c_gtk_table_set_col_spacing;
8900 	void function(GtkTable* table, uint spacing) c_gtk_table_set_col_spacings;
8901 	void function(GtkTable* table, int homogeneous) c_gtk_table_set_homogeneous;
8902 	void function(GtkTable* table, uint row, uint spacing) c_gtk_table_set_row_spacing;
8903 	void function(GtkTable* table, uint spacing) c_gtk_table_set_row_spacings;
8904 
8905 	// gtk.TargetEntry
8906 
8907 	GType function() c_gtk_target_entry_get_type;
8908 	GtkTargetEntry* function(const(char)* target, uint flags, uint info) c_gtk_target_entry_new;
8909 	GtkTargetEntry* function(GtkTargetEntry* data) c_gtk_target_entry_copy;
8910 	void function(GtkTargetEntry* data) c_gtk_target_entry_free;
8911 
8912 	// gtk.TargetList
8913 
8914 	GType function() c_gtk_target_list_get_type;
8915 	GtkTargetList* function(GtkTargetEntry* targets, uint ntargets) c_gtk_target_list_new;
8916 	void function(GtkTargetList* list, GdkAtom target, uint flags, uint info) c_gtk_target_list_add;
8917 	void function(GtkTargetList* list, uint info, int writable) c_gtk_target_list_add_image_targets;
8918 	void function(GtkTargetList* list, uint info, int deserializable, GtkTextBuffer* buffer) c_gtk_target_list_add_rich_text_targets;
8919 	void function(GtkTargetList* list, GtkTargetEntry* targets, uint ntargets) c_gtk_target_list_add_table;
8920 	void function(GtkTargetList* list, uint info) c_gtk_target_list_add_text_targets;
8921 	void function(GtkTargetList* list, uint info) c_gtk_target_list_add_uri_targets;
8922 	int function(GtkTargetList* list, GdkAtom target, uint* info) c_gtk_target_list_find;
8923 	GtkTargetList* function(GtkTargetList* list) c_gtk_target_list_ref;
8924 	void function(GtkTargetList* list, GdkAtom target) c_gtk_target_list_remove;
8925 	void function(GtkTargetList* list) c_gtk_target_list_unref;
8926 	void function(GtkTargetEntry* targets, int nTargets) c_gtk_target_table_free;
8927 	GtkTargetEntry* function(GtkTargetList* list, int* nTargets) c_gtk_target_table_new_from_list;
8928 	int function(GdkAtom* targets, int nTargets, int writable) c_gtk_targets_include_image;
8929 	int function(GdkAtom* targets, int nTargets, GtkTextBuffer* buffer) c_gtk_targets_include_rich_text;
8930 	int function(GdkAtom* targets, int nTargets) c_gtk_targets_include_text;
8931 	int function(GdkAtom* targets, int nTargets) c_gtk_targets_include_uri;
8932 
8933 	// gtk.TearoffMenuItem
8934 
8935 	GType function() c_gtk_tearoff_menu_item_get_type;
8936 	GtkWidget* function() c_gtk_tearoff_menu_item_new;
8937 
8938 	// gtk.TextAttributes
8939 
8940 	GType function() c_gtk_text_attributes_get_type;
8941 	GtkTextAttributes* function() c_gtk_text_attributes_new;
8942 	GtkTextAttributes* function(GtkTextAttributes* src) c_gtk_text_attributes_copy;
8943 	void function(GtkTextAttributes* src, GtkTextAttributes* dest) c_gtk_text_attributes_copy_values;
8944 	GtkTextAttributes* function(GtkTextAttributes* values) c_gtk_text_attributes_ref;
8945 	void function(GtkTextAttributes* values) c_gtk_text_attributes_unref;
8946 
8947 	// gtk.TextBuffer
8948 
8949 	GType function() c_gtk_text_buffer_get_type;
8950 	GtkTextBuffer* function(GtkTextTagTable* table) c_gtk_text_buffer_new;
8951 	void function(GtkTextBuffer* buffer, GtkTextMark* mark, GtkTextIter* where) c_gtk_text_buffer_add_mark;
8952 	void function(GtkTextBuffer* buffer, GtkClipboard* clipboard) c_gtk_text_buffer_add_selection_clipboard;
8953 	void function(GtkTextBuffer* buffer, GtkTextTag* tag, GtkTextIter* start, GtkTextIter* end) c_gtk_text_buffer_apply_tag;
8954 	void function(GtkTextBuffer* buffer, const(char)* name, GtkTextIter* start, GtkTextIter* end) c_gtk_text_buffer_apply_tag_by_name;
8955 	int function(GtkTextBuffer* buffer, GtkTextIter* iter, int interactive, int defaultEditable) c_gtk_text_buffer_backspace;
8956 	void function(GtkTextBuffer* buffer) c_gtk_text_buffer_begin_user_action;
8957 	void function(GtkTextBuffer* buffer, GtkClipboard* clipboard) c_gtk_text_buffer_copy_clipboard;
8958 	GtkTextChildAnchor* function(GtkTextBuffer* buffer, GtkTextIter* iter) c_gtk_text_buffer_create_child_anchor;
8959 	GtkTextMark* function(GtkTextBuffer* buffer, const(char)* markName, GtkTextIter* where, int leftGravity) c_gtk_text_buffer_create_mark;
8960 	GtkTextTag* function(GtkTextBuffer* buffer, const(char)* tagName, const(char)* firstPropertyName, ... ) c_gtk_text_buffer_create_tag;
8961 	void function(GtkTextBuffer* buffer, GtkClipboard* clipboard, int defaultEditable) c_gtk_text_buffer_cut_clipboard;
8962 	void function(GtkTextBuffer* buffer, GtkTextIter* start, GtkTextIter* end) c_gtk_text_buffer_delete;
8963 	int function(GtkTextBuffer* buffer, GtkTextIter* startIter, GtkTextIter* endIter, int defaultEditable) c_gtk_text_buffer_delete_interactive;
8964 	void function(GtkTextBuffer* buffer, GtkTextMark* mark) c_gtk_text_buffer_delete_mark;
8965 	void function(GtkTextBuffer* buffer, const(char)* name) c_gtk_text_buffer_delete_mark_by_name;
8966 	int function(GtkTextBuffer* buffer, int interactive, int defaultEditable) c_gtk_text_buffer_delete_selection;
8967 	int function(GtkTextBuffer* registerBuffer, GtkTextBuffer* contentBuffer, GdkAtom format, GtkTextIter* iter, ubyte* data, size_t length, GError** err) c_gtk_text_buffer_deserialize;
8968 	int function(GtkTextBuffer* buffer, GdkAtom format) c_gtk_text_buffer_deserialize_get_can_create_tags;
8969 	void function(GtkTextBuffer* buffer, GdkAtom format, int canCreateTags) c_gtk_text_buffer_deserialize_set_can_create_tags;
8970 	void function(GtkTextBuffer* buffer) c_gtk_text_buffer_end_user_action;
8971 	void function(GtkTextBuffer* buffer, GtkTextIter* start, GtkTextIter* end) c_gtk_text_buffer_get_bounds;
8972 	int function(GtkTextBuffer* buffer) c_gtk_text_buffer_get_char_count;
8973 	GtkTargetList* function(GtkTextBuffer* buffer) c_gtk_text_buffer_get_copy_target_list;
8974 	GdkAtom* function(GtkTextBuffer* buffer, int* nFormats) c_gtk_text_buffer_get_deserialize_formats;
8975 	void function(GtkTextBuffer* buffer, GtkTextIter* iter) c_gtk_text_buffer_get_end_iter;
8976 	int function(GtkTextBuffer* buffer) c_gtk_text_buffer_get_has_selection;
8977 	GtkTextMark* function(GtkTextBuffer* buffer) c_gtk_text_buffer_get_insert;
8978 	void function(GtkTextBuffer* buffer, GtkTextIter* iter, GtkTextChildAnchor* anchor) c_gtk_text_buffer_get_iter_at_child_anchor;
8979 	void function(GtkTextBuffer* buffer, GtkTextIter* iter, int lineNumber) c_gtk_text_buffer_get_iter_at_line;
8980 	void function(GtkTextBuffer* buffer, GtkTextIter* iter, int lineNumber, int byteIndex) c_gtk_text_buffer_get_iter_at_line_index;
8981 	void function(GtkTextBuffer* buffer, GtkTextIter* iter, int lineNumber, int charOffset) c_gtk_text_buffer_get_iter_at_line_offset;
8982 	void function(GtkTextBuffer* buffer, GtkTextIter* iter, GtkTextMark* mark) c_gtk_text_buffer_get_iter_at_mark;
8983 	void function(GtkTextBuffer* buffer, GtkTextIter* iter, int charOffset) c_gtk_text_buffer_get_iter_at_offset;
8984 	int function(GtkTextBuffer* buffer) c_gtk_text_buffer_get_line_count;
8985 	GtkTextMark* function(GtkTextBuffer* buffer, const(char)* name) c_gtk_text_buffer_get_mark;
8986 	int function(GtkTextBuffer* buffer) c_gtk_text_buffer_get_modified;
8987 	GtkTargetList* function(GtkTextBuffer* buffer) c_gtk_text_buffer_get_paste_target_list;
8988 	GtkTextMark* function(GtkTextBuffer* buffer) c_gtk_text_buffer_get_selection_bound;
8989 	int function(GtkTextBuffer* buffer, GtkTextIter* start, GtkTextIter* end) c_gtk_text_buffer_get_selection_bounds;
8990 	GdkAtom* function(GtkTextBuffer* buffer, int* nFormats) c_gtk_text_buffer_get_serialize_formats;
8991 	char* function(GtkTextBuffer* buffer, GtkTextIter* start, GtkTextIter* end, int includeHiddenChars) c_gtk_text_buffer_get_slice;
8992 	void function(GtkTextBuffer* buffer, GtkTextIter* iter) c_gtk_text_buffer_get_start_iter;
8993 	GtkTextTagTable* function(GtkTextBuffer* buffer) c_gtk_text_buffer_get_tag_table;
8994 	char* function(GtkTextBuffer* buffer, GtkTextIter* start, GtkTextIter* end, int includeHiddenChars) c_gtk_text_buffer_get_text;
8995 	void function(GtkTextBuffer* buffer, GtkTextIter* iter, const(char)* text, int len) c_gtk_text_buffer_insert;
8996 	void function(GtkTextBuffer* buffer, const(char)* text, int len) c_gtk_text_buffer_insert_at_cursor;
8997 	void function(GtkTextBuffer* buffer, GtkTextIter* iter, GtkTextChildAnchor* anchor) c_gtk_text_buffer_insert_child_anchor;
8998 	int function(GtkTextBuffer* buffer, GtkTextIter* iter, const(char)* text, int len, int defaultEditable) c_gtk_text_buffer_insert_interactive;
8999 	int function(GtkTextBuffer* buffer, const(char)* text, int len, int defaultEditable) c_gtk_text_buffer_insert_interactive_at_cursor;
9000 	void function(GtkTextBuffer* buffer, GtkTextIter* iter, const(char)* markup, int len) c_gtk_text_buffer_insert_markup;
9001 	void function(GtkTextBuffer* buffer, GtkTextIter* iter, GdkPixbuf* pixbuf) c_gtk_text_buffer_insert_pixbuf;
9002 	void function(GtkTextBuffer* buffer, GtkTextIter* iter, GtkTextIter* start, GtkTextIter* end) c_gtk_text_buffer_insert_range;
9003 	int function(GtkTextBuffer* buffer, GtkTextIter* iter, GtkTextIter* start, GtkTextIter* end, int defaultEditable) c_gtk_text_buffer_insert_range_interactive;
9004 	void function(GtkTextBuffer* buffer, GtkTextIter* iter, const(char)* text, int len, GtkTextTag* firstTag, ... ) c_gtk_text_buffer_insert_with_tags;
9005 	void function(GtkTextBuffer* buffer, GtkTextIter* iter, const(char)* text, int len, const(char)* firstTagName, ... ) c_gtk_text_buffer_insert_with_tags_by_name;
9006 	void function(GtkTextBuffer* buffer, GtkTextMark* mark, GtkTextIter* where) c_gtk_text_buffer_move_mark;
9007 	void function(GtkTextBuffer* buffer, const(char)* name, GtkTextIter* where) c_gtk_text_buffer_move_mark_by_name;
9008 	void function(GtkTextBuffer* buffer, GtkClipboard* clipboard, GtkTextIter* overrideLocation, int defaultEditable) c_gtk_text_buffer_paste_clipboard;
9009 	void function(GtkTextBuffer* buffer, GtkTextIter* where) c_gtk_text_buffer_place_cursor;
9010 	GdkAtom function(GtkTextBuffer* buffer, const(char)* mimeType, GtkTextBufferDeserializeFunc function_, void* userData, GDestroyNotify userDataDestroy) c_gtk_text_buffer_register_deserialize_format;
9011 	GdkAtom function(GtkTextBuffer* buffer, const(char)* tagsetName) c_gtk_text_buffer_register_deserialize_tagset;
9012 	GdkAtom function(GtkTextBuffer* buffer, const(char)* mimeType, GtkTextBufferSerializeFunc function_, void* userData, GDestroyNotify userDataDestroy) c_gtk_text_buffer_register_serialize_format;
9013 	GdkAtom function(GtkTextBuffer* buffer, const(char)* tagsetName) c_gtk_text_buffer_register_serialize_tagset;
9014 	void function(GtkTextBuffer* buffer, GtkTextIter* start, GtkTextIter* end) c_gtk_text_buffer_remove_all_tags;
9015 	void function(GtkTextBuffer* buffer, GtkClipboard* clipboard) c_gtk_text_buffer_remove_selection_clipboard;
9016 	void function(GtkTextBuffer* buffer, GtkTextTag* tag, GtkTextIter* start, GtkTextIter* end) c_gtk_text_buffer_remove_tag;
9017 	void function(GtkTextBuffer* buffer, const(char)* name, GtkTextIter* start, GtkTextIter* end) c_gtk_text_buffer_remove_tag_by_name;
9018 	void function(GtkTextBuffer* buffer, GtkTextIter* ins, GtkTextIter* bound) c_gtk_text_buffer_select_range;
9019 	ubyte* function(GtkTextBuffer* registerBuffer, GtkTextBuffer* contentBuffer, GdkAtom format, GtkTextIter* start, GtkTextIter* end, size_t* length) c_gtk_text_buffer_serialize;
9020 	void function(GtkTextBuffer* buffer, int setting) c_gtk_text_buffer_set_modified;
9021 	void function(GtkTextBuffer* buffer, const(char)* text, int len) c_gtk_text_buffer_set_text;
9022 	void function(GtkTextBuffer* buffer, GdkAtom format) c_gtk_text_buffer_unregister_deserialize_format;
9023 	void function(GtkTextBuffer* buffer, GdkAtom format) c_gtk_text_buffer_unregister_serialize_format;
9024 
9025 	// gtk.TextCellAccessible
9026 
9027 	GType function() c_gtk_text_cell_accessible_get_type;
9028 
9029 	// gtk.TextChildAnchor
9030 
9031 	GType function() c_gtk_text_child_anchor_get_type;
9032 	GtkTextChildAnchor* function() c_gtk_text_child_anchor_new;
9033 	int function(GtkTextChildAnchor* anchor) c_gtk_text_child_anchor_get_deleted;
9034 	GList* function(GtkTextChildAnchor* anchor) c_gtk_text_child_anchor_get_widgets;
9035 
9036 	// gtk.TextIter
9037 
9038 	GType function() c_gtk_text_iter_get_type;
9039 	void function(GtkTextIter* iter, GtkTextIter* other) c_gtk_text_iter_assign;
9040 	int function(GtkTextIter* iter) c_gtk_text_iter_backward_char;
9041 	int function(GtkTextIter* iter, int count) c_gtk_text_iter_backward_chars;
9042 	int function(GtkTextIter* iter) c_gtk_text_iter_backward_cursor_position;
9043 	int function(GtkTextIter* iter, int count) c_gtk_text_iter_backward_cursor_positions;
9044 	int function(GtkTextIter* iter, GtkTextCharPredicate pred, void* userData, GtkTextIter* limit) c_gtk_text_iter_backward_find_char;
9045 	int function(GtkTextIter* iter) c_gtk_text_iter_backward_line;
9046 	int function(GtkTextIter* iter, int count) c_gtk_text_iter_backward_lines;
9047 	int function(GtkTextIter* iter, const(char)* str, GtkTextSearchFlags flags, GtkTextIter* matchStart, GtkTextIter* matchEnd, GtkTextIter* limit) c_gtk_text_iter_backward_search;
9048 	int function(GtkTextIter* iter) c_gtk_text_iter_backward_sentence_start;
9049 	int function(GtkTextIter* iter, int count) c_gtk_text_iter_backward_sentence_starts;
9050 	int function(GtkTextIter* iter, GtkTextTag* tag) c_gtk_text_iter_backward_to_tag_toggle;
9051 	int function(GtkTextIter* iter) c_gtk_text_iter_backward_visible_cursor_position;
9052 	int function(GtkTextIter* iter, int count) c_gtk_text_iter_backward_visible_cursor_positions;
9053 	int function(GtkTextIter* iter) c_gtk_text_iter_backward_visible_line;
9054 	int function(GtkTextIter* iter, int count) c_gtk_text_iter_backward_visible_lines;
9055 	int function(GtkTextIter* iter) c_gtk_text_iter_backward_visible_word_start;
9056 	int function(GtkTextIter* iter, int count) c_gtk_text_iter_backward_visible_word_starts;
9057 	int function(GtkTextIter* iter) c_gtk_text_iter_backward_word_start;
9058 	int function(GtkTextIter* iter, int count) c_gtk_text_iter_backward_word_starts;
9059 	int function(GtkTextIter* iter, GtkTextTag* tag) c_gtk_text_iter_begins_tag;
9060 	int function(GtkTextIter* iter, int defaultEditability) c_gtk_text_iter_can_insert;
9061 	int function(GtkTextIter* lhs, GtkTextIter* rhs) c_gtk_text_iter_compare;
9062 	GtkTextIter* function(GtkTextIter* iter) c_gtk_text_iter_copy;
9063 	int function(GtkTextIter* iter, int defaultSetting) c_gtk_text_iter_editable;
9064 	int function(GtkTextIter* iter) c_gtk_text_iter_ends_line;
9065 	int function(GtkTextIter* iter) c_gtk_text_iter_ends_sentence;
9066 	int function(GtkTextIter* iter, GtkTextTag* tag) c_gtk_text_iter_ends_tag;
9067 	int function(GtkTextIter* iter) c_gtk_text_iter_ends_word;
9068 	int function(GtkTextIter* lhs, GtkTextIter* rhs) c_gtk_text_iter_equal;
9069 	int function(GtkTextIter* iter) c_gtk_text_iter_forward_char;
9070 	int function(GtkTextIter* iter, int count) c_gtk_text_iter_forward_chars;
9071 	int function(GtkTextIter* iter) c_gtk_text_iter_forward_cursor_position;
9072 	int function(GtkTextIter* iter, int count) c_gtk_text_iter_forward_cursor_positions;
9073 	int function(GtkTextIter* iter, GtkTextCharPredicate pred, void* userData, GtkTextIter* limit) c_gtk_text_iter_forward_find_char;
9074 	int function(GtkTextIter* iter) c_gtk_text_iter_forward_line;
9075 	int function(GtkTextIter* iter, int count) c_gtk_text_iter_forward_lines;
9076 	int function(GtkTextIter* iter, const(char)* str, GtkTextSearchFlags flags, GtkTextIter* matchStart, GtkTextIter* matchEnd, GtkTextIter* limit) c_gtk_text_iter_forward_search;
9077 	int function(GtkTextIter* iter) c_gtk_text_iter_forward_sentence_end;
9078 	int function(GtkTextIter* iter, int count) c_gtk_text_iter_forward_sentence_ends;
9079 	void function(GtkTextIter* iter) c_gtk_text_iter_forward_to_end;
9080 	int function(GtkTextIter* iter) c_gtk_text_iter_forward_to_line_end;
9081 	int function(GtkTextIter* iter, GtkTextTag* tag) c_gtk_text_iter_forward_to_tag_toggle;
9082 	int function(GtkTextIter* iter) c_gtk_text_iter_forward_visible_cursor_position;
9083 	int function(GtkTextIter* iter, int count) c_gtk_text_iter_forward_visible_cursor_positions;
9084 	int function(GtkTextIter* iter) c_gtk_text_iter_forward_visible_line;
9085 	int function(GtkTextIter* iter, int count) c_gtk_text_iter_forward_visible_lines;
9086 	int function(GtkTextIter* iter) c_gtk_text_iter_forward_visible_word_end;
9087 	int function(GtkTextIter* iter, int count) c_gtk_text_iter_forward_visible_word_ends;
9088 	int function(GtkTextIter* iter) c_gtk_text_iter_forward_word_end;
9089 	int function(GtkTextIter* iter, int count) c_gtk_text_iter_forward_word_ends;
9090 	void function(GtkTextIter* iter) c_gtk_text_iter_free;
9091 	int function(GtkTextIter* iter, GtkTextAttributes* values) c_gtk_text_iter_get_attributes;
9092 	GtkTextBuffer* function(GtkTextIter* iter) c_gtk_text_iter_get_buffer;
9093 	int function(GtkTextIter* iter) c_gtk_text_iter_get_bytes_in_line;
9094 	dchar function(GtkTextIter* iter) c_gtk_text_iter_get_char;
9095 	int function(GtkTextIter* iter) c_gtk_text_iter_get_chars_in_line;
9096 	GtkTextChildAnchor* function(GtkTextIter* iter) c_gtk_text_iter_get_child_anchor;
9097 	PangoLanguage* function(GtkTextIter* iter) c_gtk_text_iter_get_language;
9098 	int function(GtkTextIter* iter) c_gtk_text_iter_get_line;
9099 	int function(GtkTextIter* iter) c_gtk_text_iter_get_line_index;
9100 	int function(GtkTextIter* iter) c_gtk_text_iter_get_line_offset;
9101 	GSList* function(GtkTextIter* iter) c_gtk_text_iter_get_marks;
9102 	int function(GtkTextIter* iter) c_gtk_text_iter_get_offset;
9103 	GdkPixbuf* function(GtkTextIter* iter) c_gtk_text_iter_get_pixbuf;
9104 	char* function(GtkTextIter* start, GtkTextIter* end) c_gtk_text_iter_get_slice;
9105 	GSList* function(GtkTextIter* iter) c_gtk_text_iter_get_tags;
9106 	char* function(GtkTextIter* start, GtkTextIter* end) c_gtk_text_iter_get_text;
9107 	GSList* function(GtkTextIter* iter, int toggledOn) c_gtk_text_iter_get_toggled_tags;
9108 	int function(GtkTextIter* iter) c_gtk_text_iter_get_visible_line_index;
9109 	int function(GtkTextIter* iter) c_gtk_text_iter_get_visible_line_offset;
9110 	char* function(GtkTextIter* start, GtkTextIter* end) c_gtk_text_iter_get_visible_slice;
9111 	char* function(GtkTextIter* start, GtkTextIter* end) c_gtk_text_iter_get_visible_text;
9112 	int function(GtkTextIter* iter, GtkTextTag* tag) c_gtk_text_iter_has_tag;
9113 	int function(GtkTextIter* iter, GtkTextIter* start, GtkTextIter* end) c_gtk_text_iter_in_range;
9114 	int function(GtkTextIter* iter) c_gtk_text_iter_inside_sentence;
9115 	int function(GtkTextIter* iter) c_gtk_text_iter_inside_word;
9116 	int function(GtkTextIter* iter) c_gtk_text_iter_is_cursor_position;
9117 	int function(GtkTextIter* iter) c_gtk_text_iter_is_end;
9118 	int function(GtkTextIter* iter) c_gtk_text_iter_is_start;
9119 	void function(GtkTextIter* first, GtkTextIter* second) c_gtk_text_iter_order;
9120 	void function(GtkTextIter* iter, int lineNumber) c_gtk_text_iter_set_line;
9121 	void function(GtkTextIter* iter, int byteOnLine) c_gtk_text_iter_set_line_index;
9122 	void function(GtkTextIter* iter, int charOnLine) c_gtk_text_iter_set_line_offset;
9123 	void function(GtkTextIter* iter, int charOffset) c_gtk_text_iter_set_offset;
9124 	void function(GtkTextIter* iter, int byteOnLine) c_gtk_text_iter_set_visible_line_index;
9125 	void function(GtkTextIter* iter, int charOnLine) c_gtk_text_iter_set_visible_line_offset;
9126 	int function(GtkTextIter* iter) c_gtk_text_iter_starts_line;
9127 	int function(GtkTextIter* iter) c_gtk_text_iter_starts_sentence;
9128 	int function(GtkTextIter* iter, GtkTextTag* tag) c_gtk_text_iter_starts_tag;
9129 	int function(GtkTextIter* iter) c_gtk_text_iter_starts_word;
9130 	int function(GtkTextIter* iter, GtkTextTag* tag) c_gtk_text_iter_toggles_tag;
9131 
9132 	// gtk.TextMark
9133 
9134 	GType function() c_gtk_text_mark_get_type;
9135 	GtkTextMark* function(const(char)* name, int leftGravity) c_gtk_text_mark_new;
9136 	GtkTextBuffer* function(GtkTextMark* mark) c_gtk_text_mark_get_buffer;
9137 	int function(GtkTextMark* mark) c_gtk_text_mark_get_deleted;
9138 	int function(GtkTextMark* mark) c_gtk_text_mark_get_left_gravity;
9139 	const(char)* function(GtkTextMark* mark) c_gtk_text_mark_get_name;
9140 	int function(GtkTextMark* mark) c_gtk_text_mark_get_visible;
9141 	void function(GtkTextMark* mark, int setting) c_gtk_text_mark_set_visible;
9142 
9143 	// gtk.TextTag
9144 
9145 	GType function() c_gtk_text_tag_get_type;
9146 	GtkTextTag* function(const(char)* name) c_gtk_text_tag_new;
9147 	void function(GtkTextTag* tag, int sizeChanged) c_gtk_text_tag_changed;
9148 	int function(GtkTextTag* tag, GObject* eventObject, GdkEvent* event, GtkTextIter* iter) c_gtk_text_tag_event;
9149 	int function(GtkTextTag* tag) c_gtk_text_tag_get_priority;
9150 	void function(GtkTextTag* tag, int priority) c_gtk_text_tag_set_priority;
9151 
9152 	// gtk.TextTagTable
9153 
9154 	GType function() c_gtk_text_tag_table_get_type;
9155 	GtkTextTagTable* function() c_gtk_text_tag_table_new;
9156 	int function(GtkTextTagTable* table, GtkTextTag* tag) c_gtk_text_tag_table_add;
9157 	void function(GtkTextTagTable* table, GtkTextTagTableForeach func, void* data) c_gtk_text_tag_table_foreach;
9158 	int function(GtkTextTagTable* table) c_gtk_text_tag_table_get_size;
9159 	GtkTextTag* function(GtkTextTagTable* table, const(char)* name) c_gtk_text_tag_table_lookup;
9160 	void function(GtkTextTagTable* table, GtkTextTag* tag) c_gtk_text_tag_table_remove;
9161 
9162 	// gtk.TextView
9163 
9164 	GType function() c_gtk_text_view_get_type;
9165 	GtkWidget* function() c_gtk_text_view_new;
9166 	GtkWidget* function(GtkTextBuffer* buffer) c_gtk_text_view_new_with_buffer;
9167 	void function(GtkTextView* textView, GtkWidget* child, GtkTextChildAnchor* anchor) c_gtk_text_view_add_child_at_anchor;
9168 	void function(GtkTextView* textView, GtkWidget* child, GtkTextWindowType whichWindow, int xpos, int ypos) c_gtk_text_view_add_child_in_window;
9169 	int function(GtkTextView* textView, GtkTextIter* iter) c_gtk_text_view_backward_display_line;
9170 	int function(GtkTextView* textView, GtkTextIter* iter) c_gtk_text_view_backward_display_line_start;
9171 	void function(GtkTextView* textView, GtkTextWindowType win, int bufferX, int bufferY, int* windowX, int* windowY) c_gtk_text_view_buffer_to_window_coords;
9172 	int function(GtkTextView* textView, GtkTextIter* iter) c_gtk_text_view_forward_display_line;
9173 	int function(GtkTextView* textView, GtkTextIter* iter) c_gtk_text_view_forward_display_line_end;
9174 	int function(GtkTextView* textView) c_gtk_text_view_get_accepts_tab;
9175 	int function(GtkTextView* textView, GtkTextWindowType type) c_gtk_text_view_get_border_window_size;
9176 	int function(GtkTextView* textView) c_gtk_text_view_get_bottom_margin;
9177 	GtkTextBuffer* function(GtkTextView* textView) c_gtk_text_view_get_buffer;
9178 	void function(GtkTextView* textView, GtkTextIter* iter, GdkRectangle* strong, GdkRectangle* weak) c_gtk_text_view_get_cursor_locations;
9179 	int function(GtkTextView* textView) c_gtk_text_view_get_cursor_visible;
9180 	GtkTextAttributes* function(GtkTextView* textView) c_gtk_text_view_get_default_attributes;
9181 	int function(GtkTextView* textView) c_gtk_text_view_get_editable;
9182 	GtkAdjustment* function(GtkTextView* textView) c_gtk_text_view_get_hadjustment;
9183 	int function(GtkTextView* textView) c_gtk_text_view_get_indent;
9184 	GtkInputHints function(GtkTextView* textView) c_gtk_text_view_get_input_hints;
9185 	GtkInputPurpose function(GtkTextView* textView) c_gtk_text_view_get_input_purpose;
9186 	int function(GtkTextView* textView, GtkTextIter* iter, int x, int y) c_gtk_text_view_get_iter_at_location;
9187 	int function(GtkTextView* textView, GtkTextIter* iter, int* trailing, int x, int y) c_gtk_text_view_get_iter_at_position;
9188 	void function(GtkTextView* textView, GtkTextIter* iter, GdkRectangle* location) c_gtk_text_view_get_iter_location;
9189 	GtkJustification function(GtkTextView* textView) c_gtk_text_view_get_justification;
9190 	int function(GtkTextView* textView) c_gtk_text_view_get_left_margin;
9191 	void function(GtkTextView* textView, GtkTextIter* targetIter, int y, int* lineTop) c_gtk_text_view_get_line_at_y;
9192 	void function(GtkTextView* textView, GtkTextIter* iter, int* y, int* height) c_gtk_text_view_get_line_yrange;
9193 	int function(GtkTextView* textView) c_gtk_text_view_get_monospace;
9194 	int function(GtkTextView* textView) c_gtk_text_view_get_overwrite;
9195 	int function(GtkTextView* textView) c_gtk_text_view_get_pixels_above_lines;
9196 	int function(GtkTextView* textView) c_gtk_text_view_get_pixels_below_lines;
9197 	int function(GtkTextView* textView) c_gtk_text_view_get_pixels_inside_wrap;
9198 	int function(GtkTextView* textView) c_gtk_text_view_get_right_margin;
9199 	PangoTabArray* function(GtkTextView* textView) c_gtk_text_view_get_tabs;
9200 	int function(GtkTextView* textView) c_gtk_text_view_get_top_margin;
9201 	GtkAdjustment* function(GtkTextView* textView) c_gtk_text_view_get_vadjustment;
9202 	void function(GtkTextView* textView, GdkRectangle* visibleRect) c_gtk_text_view_get_visible_rect;
9203 	GdkWindow* function(GtkTextView* textView, GtkTextWindowType win) c_gtk_text_view_get_window;
9204 	GtkTextWindowType function(GtkTextView* textView, GdkWindow* window) c_gtk_text_view_get_window_type;
9205 	GtkWrapMode function(GtkTextView* textView) c_gtk_text_view_get_wrap_mode;
9206 	int function(GtkTextView* textView, GdkEventKey* event) c_gtk_text_view_im_context_filter_keypress;
9207 	void function(GtkTextView* textView, GtkWidget* child, int xpos, int ypos) c_gtk_text_view_move_child;
9208 	int function(GtkTextView* textView, GtkTextMark* mark) c_gtk_text_view_move_mark_onscreen;
9209 	int function(GtkTextView* textView, GtkTextIter* iter, int count) c_gtk_text_view_move_visually;
9210 	int function(GtkTextView* textView) c_gtk_text_view_place_cursor_onscreen;
9211 	void function(GtkTextView* textView) c_gtk_text_view_reset_cursor_blink;
9212 	void function(GtkTextView* textView) c_gtk_text_view_reset_im_context;
9213 	void function(GtkTextView* textView, GtkTextMark* mark) c_gtk_text_view_scroll_mark_onscreen;
9214 	int function(GtkTextView* textView, GtkTextIter* iter, double withinMargin, int useAlign, double xalign, double yalign) c_gtk_text_view_scroll_to_iter;
9215 	void function(GtkTextView* textView, GtkTextMark* mark, double withinMargin, int useAlign, double xalign, double yalign) c_gtk_text_view_scroll_to_mark;
9216 	void function(GtkTextView* textView, int acceptsTab) c_gtk_text_view_set_accepts_tab;
9217 	void function(GtkTextView* textView, GtkTextWindowType type, int size) c_gtk_text_view_set_border_window_size;
9218 	void function(GtkTextView* textView, int bottomMargin) c_gtk_text_view_set_bottom_margin;
9219 	void function(GtkTextView* textView, GtkTextBuffer* buffer) c_gtk_text_view_set_buffer;
9220 	void function(GtkTextView* textView, int setting) c_gtk_text_view_set_cursor_visible;
9221 	void function(GtkTextView* textView, int setting) c_gtk_text_view_set_editable;
9222 	void function(GtkTextView* textView, int indent) c_gtk_text_view_set_indent;
9223 	void function(GtkTextView* textView, GtkInputHints hints) c_gtk_text_view_set_input_hints;
9224 	void function(GtkTextView* textView, GtkInputPurpose purpose) c_gtk_text_view_set_input_purpose;
9225 	void function(GtkTextView* textView, GtkJustification justification) c_gtk_text_view_set_justification;
9226 	void function(GtkTextView* textView, int leftMargin) c_gtk_text_view_set_left_margin;
9227 	void function(GtkTextView* textView, int monospace) c_gtk_text_view_set_monospace;
9228 	void function(GtkTextView* textView, int overwrite) c_gtk_text_view_set_overwrite;
9229 	void function(GtkTextView* textView, int pixelsAboveLines) c_gtk_text_view_set_pixels_above_lines;
9230 	void function(GtkTextView* textView, int pixelsBelowLines) c_gtk_text_view_set_pixels_below_lines;
9231 	void function(GtkTextView* textView, int pixelsInsideWrap) c_gtk_text_view_set_pixels_inside_wrap;
9232 	void function(GtkTextView* textView, int rightMargin) c_gtk_text_view_set_right_margin;
9233 	void function(GtkTextView* textView, PangoTabArray* tabs) c_gtk_text_view_set_tabs;
9234 	void function(GtkTextView* textView, int topMargin) c_gtk_text_view_set_top_margin;
9235 	void function(GtkTextView* textView, GtkWrapMode wrapMode) c_gtk_text_view_set_wrap_mode;
9236 	int function(GtkTextView* textView, GtkTextIter* iter) c_gtk_text_view_starts_display_line;
9237 	void function(GtkTextView* textView, GtkTextWindowType win, int windowX, int windowY, int* bufferX, int* bufferY) c_gtk_text_view_window_to_buffer_coords;
9238 
9239 	// gtk.TextViewAccessible
9240 
9241 	GType function() c_gtk_text_view_accessible_get_type;
9242 
9243 	// gtk.ThemingEngine
9244 
9245 	GType function() c_gtk_theming_engine_get_type;
9246 	GtkThemingEngine* function(const(char)* name) c_gtk_theming_engine_load;
9247 	void function(const(char)* nameSpace, GtkStylePropertyParser parseFunc, GParamSpec* pspec) c_gtk_theming_engine_register_property;
9248 	void function(GtkThemingEngine* engine, GtkStateFlags state, ... ) c_gtk_theming_engine_get;
9249 	void function(GtkThemingEngine* engine, GtkStateFlags state, GdkRGBA* color) c_gtk_theming_engine_get_background_color;
9250 	void function(GtkThemingEngine* engine, GtkStateFlags state, GtkBorder* border) c_gtk_theming_engine_get_border;
9251 	void function(GtkThemingEngine* engine, GtkStateFlags state, GdkRGBA* color) c_gtk_theming_engine_get_border_color;
9252 	void function(GtkThemingEngine* engine, GtkStateFlags state, GdkRGBA* color) c_gtk_theming_engine_get_color;
9253 	GtkTextDirection function(GtkThemingEngine* engine) c_gtk_theming_engine_get_direction;
9254 	PangoFontDescription* function(GtkThemingEngine* engine, GtkStateFlags state) c_gtk_theming_engine_get_font;
9255 	GtkJunctionSides function(GtkThemingEngine* engine) c_gtk_theming_engine_get_junction_sides;
9256 	void function(GtkThemingEngine* engine, GtkStateFlags state, GtkBorder* margin) c_gtk_theming_engine_get_margin;
9257 	void function(GtkThemingEngine* engine, GtkStateFlags state, GtkBorder* padding) c_gtk_theming_engine_get_padding;
9258 	GtkWidgetPath* function(GtkThemingEngine* engine) c_gtk_theming_engine_get_path;
9259 	void function(GtkThemingEngine* engine, const(char)* property, GtkStateFlags state, GValue* value) c_gtk_theming_engine_get_property;
9260 	GdkScreen* function(GtkThemingEngine* engine) c_gtk_theming_engine_get_screen;
9261 	GtkStateFlags function(GtkThemingEngine* engine) c_gtk_theming_engine_get_state;
9262 	void function(GtkThemingEngine* engine, ... ) c_gtk_theming_engine_get_style;
9263 	void function(GtkThemingEngine* engine, const(char)* propertyName, GValue* value) c_gtk_theming_engine_get_style_property;
9264 	void function(GtkThemingEngine* engine, void* args) c_gtk_theming_engine_get_style_valist;
9265 	void function(GtkThemingEngine* engine, GtkStateFlags state, void* args) c_gtk_theming_engine_get_valist;
9266 	int function(GtkThemingEngine* engine, const(char)* styleClass) c_gtk_theming_engine_has_class;
9267 	int function(GtkThemingEngine* engine, const(char)* styleRegion, GtkRegionFlags* flags) c_gtk_theming_engine_has_region;
9268 	int function(GtkThemingEngine* engine, const(char)* colorName, GdkRGBA* color) c_gtk_theming_engine_lookup_color;
9269 	int function(GtkThemingEngine* engine, GtkStateType state, double* progress) c_gtk_theming_engine_state_is_running;
9270 
9271 	// gtk.ToggleAction
9272 
9273 	GType function() c_gtk_toggle_action_get_type;
9274 	GtkToggleAction* function(const(char)* name, const(char)* label, const(char)* tooltip, const(char)* stockId) c_gtk_toggle_action_new;
9275 	int function(GtkToggleAction* action) c_gtk_toggle_action_get_active;
9276 	int function(GtkToggleAction* action) c_gtk_toggle_action_get_draw_as_radio;
9277 	void function(GtkToggleAction* action, int isActive) c_gtk_toggle_action_set_active;
9278 	void function(GtkToggleAction* action, int drawAsRadio) c_gtk_toggle_action_set_draw_as_radio;
9279 	void function(GtkToggleAction* action) c_gtk_toggle_action_toggled;
9280 
9281 	// gtk.ToggleButton
9282 
9283 	GType function() c_gtk_toggle_button_get_type;
9284 	GtkWidget* function() c_gtk_toggle_button_new;
9285 	GtkWidget* function(const(char)* label) c_gtk_toggle_button_new_with_label;
9286 	GtkWidget* function(const(char)* label) c_gtk_toggle_button_new_with_mnemonic;
9287 	int function(GtkToggleButton* toggleButton) c_gtk_toggle_button_get_active;
9288 	int function(GtkToggleButton* toggleButton) c_gtk_toggle_button_get_inconsistent;
9289 	int function(GtkToggleButton* toggleButton) c_gtk_toggle_button_get_mode;
9290 	void function(GtkToggleButton* toggleButton, int isActive) c_gtk_toggle_button_set_active;
9291 	void function(GtkToggleButton* toggleButton, int setting) c_gtk_toggle_button_set_inconsistent;
9292 	void function(GtkToggleButton* toggleButton, int drawIndicator) c_gtk_toggle_button_set_mode;
9293 	void function(GtkToggleButton* toggleButton) c_gtk_toggle_button_toggled;
9294 
9295 	// gtk.ToggleButtonAccessible
9296 
9297 	GType function() c_gtk_toggle_button_accessible_get_type;
9298 
9299 	// gtk.ToggleToolButton
9300 
9301 	GType function() c_gtk_toggle_tool_button_get_type;
9302 	GtkToolItem* function() c_gtk_toggle_tool_button_new;
9303 	GtkToolItem* function(const(char)* stockId) c_gtk_toggle_tool_button_new_from_stock;
9304 	int function(GtkToggleToolButton* button) c_gtk_toggle_tool_button_get_active;
9305 	void function(GtkToggleToolButton* button, int isActive) c_gtk_toggle_tool_button_set_active;
9306 
9307 	// gtk.ToolButton
9308 
9309 	GType function() c_gtk_tool_button_get_type;
9310 	GtkToolItem* function(GtkWidget* iconWidget, const(char)* label) c_gtk_tool_button_new;
9311 	GtkToolItem* function(const(char)* stockId) c_gtk_tool_button_new_from_stock;
9312 	const(char)* function(GtkToolButton* button) c_gtk_tool_button_get_icon_name;
9313 	GtkWidget* function(GtkToolButton* button) c_gtk_tool_button_get_icon_widget;
9314 	const(char)* function(GtkToolButton* button) c_gtk_tool_button_get_label;
9315 	GtkWidget* function(GtkToolButton* button) c_gtk_tool_button_get_label_widget;
9316 	const(char)* function(GtkToolButton* button) c_gtk_tool_button_get_stock_id;
9317 	int function(GtkToolButton* button) c_gtk_tool_button_get_use_underline;
9318 	void function(GtkToolButton* button, const(char)* iconName) c_gtk_tool_button_set_icon_name;
9319 	void function(GtkToolButton* button, GtkWidget* iconWidget) c_gtk_tool_button_set_icon_widget;
9320 	void function(GtkToolButton* button, const(char)* label) c_gtk_tool_button_set_label;
9321 	void function(GtkToolButton* button, GtkWidget* labelWidget) c_gtk_tool_button_set_label_widget;
9322 	void function(GtkToolButton* button, const(char)* stockId) c_gtk_tool_button_set_stock_id;
9323 	void function(GtkToolButton* button, int useUnderline) c_gtk_tool_button_set_use_underline;
9324 
9325 	// gtk.ToolItem
9326 
9327 	GType function() c_gtk_tool_item_get_type;
9328 	GtkToolItem* function() c_gtk_tool_item_new;
9329 	PangoEllipsizeMode function(GtkToolItem* toolItem) c_gtk_tool_item_get_ellipsize_mode;
9330 	int function(GtkToolItem* toolItem) c_gtk_tool_item_get_expand;
9331 	int function(GtkToolItem* toolItem) c_gtk_tool_item_get_homogeneous;
9332 	GtkIconSize function(GtkToolItem* toolItem) c_gtk_tool_item_get_icon_size;
9333 	int function(GtkToolItem* toolItem) c_gtk_tool_item_get_is_important;
9334 	GtkOrientation function(GtkToolItem* toolItem) c_gtk_tool_item_get_orientation;
9335 	GtkWidget* function(GtkToolItem* toolItem, const(char)* menuItemId) c_gtk_tool_item_get_proxy_menu_item;
9336 	GtkReliefStyle function(GtkToolItem* toolItem) c_gtk_tool_item_get_relief_style;
9337 	float function(GtkToolItem* toolItem) c_gtk_tool_item_get_text_alignment;
9338 	GtkOrientation function(GtkToolItem* toolItem) c_gtk_tool_item_get_text_orientation;
9339 	GtkSizeGroup* function(GtkToolItem* toolItem) c_gtk_tool_item_get_text_size_group;
9340 	GtkToolbarStyle function(GtkToolItem* toolItem) c_gtk_tool_item_get_toolbar_style;
9341 	int function(GtkToolItem* toolItem) c_gtk_tool_item_get_use_drag_window;
9342 	int function(GtkToolItem* toolItem) c_gtk_tool_item_get_visible_horizontal;
9343 	int function(GtkToolItem* toolItem) c_gtk_tool_item_get_visible_vertical;
9344 	void function(GtkToolItem* toolItem) c_gtk_tool_item_rebuild_menu;
9345 	GtkWidget* function(GtkToolItem* toolItem) c_gtk_tool_item_retrieve_proxy_menu_item;
9346 	void function(GtkToolItem* toolItem, int expand) c_gtk_tool_item_set_expand;
9347 	void function(GtkToolItem* toolItem, int homogeneous) c_gtk_tool_item_set_homogeneous;
9348 	void function(GtkToolItem* toolItem, int isImportant) c_gtk_tool_item_set_is_important;
9349 	void function(GtkToolItem* toolItem, const(char)* menuItemId, GtkWidget* menuItem) c_gtk_tool_item_set_proxy_menu_item;
9350 	void function(GtkToolItem* toolItem, const(char)* markup) c_gtk_tool_item_set_tooltip_markup;
9351 	void function(GtkToolItem* toolItem, const(char)* text) c_gtk_tool_item_set_tooltip_text;
9352 	void function(GtkToolItem* toolItem, int useDragWindow) c_gtk_tool_item_set_use_drag_window;
9353 	void function(GtkToolItem* toolItem, int visibleHorizontal) c_gtk_tool_item_set_visible_horizontal;
9354 	void function(GtkToolItem* toolItem, int visibleVertical) c_gtk_tool_item_set_visible_vertical;
9355 	void function(GtkToolItem* toolItem) c_gtk_tool_item_toolbar_reconfigured;
9356 
9357 	// gtk.ToolItemGroup
9358 
9359 	GType function() c_gtk_tool_item_group_get_type;
9360 	GtkWidget* function(const(char)* label) c_gtk_tool_item_group_new;
9361 	int function(GtkToolItemGroup* group) c_gtk_tool_item_group_get_collapsed;
9362 	GtkToolItem* function(GtkToolItemGroup* group, int x, int y) c_gtk_tool_item_group_get_drop_item;
9363 	PangoEllipsizeMode function(GtkToolItemGroup* group) c_gtk_tool_item_group_get_ellipsize;
9364 	GtkReliefStyle function(GtkToolItemGroup* group) c_gtk_tool_item_group_get_header_relief;
9365 	int function(GtkToolItemGroup* group, GtkToolItem* item) c_gtk_tool_item_group_get_item_position;
9366 	const(char)* function(GtkToolItemGroup* group) c_gtk_tool_item_group_get_label;
9367 	GtkWidget* function(GtkToolItemGroup* group) c_gtk_tool_item_group_get_label_widget;
9368 	uint function(GtkToolItemGroup* group) c_gtk_tool_item_group_get_n_items;
9369 	GtkToolItem* function(GtkToolItemGroup* group, uint index) c_gtk_tool_item_group_get_nth_item;
9370 	void function(GtkToolItemGroup* group, GtkToolItem* item, int position) c_gtk_tool_item_group_insert;
9371 	void function(GtkToolItemGroup* group, int collapsed) c_gtk_tool_item_group_set_collapsed;
9372 	void function(GtkToolItemGroup* group, PangoEllipsizeMode ellipsize) c_gtk_tool_item_group_set_ellipsize;
9373 	void function(GtkToolItemGroup* group, GtkReliefStyle style) c_gtk_tool_item_group_set_header_relief;
9374 	void function(GtkToolItemGroup* group, GtkToolItem* item, int position) c_gtk_tool_item_group_set_item_position;
9375 	void function(GtkToolItemGroup* group, const(char)* label) c_gtk_tool_item_group_set_label;
9376 	void function(GtkToolItemGroup* group, GtkWidget* labelWidget) c_gtk_tool_item_group_set_label_widget;
9377 
9378 	// gtk.ToolPalette
9379 
9380 	GType function() c_gtk_tool_palette_get_type;
9381 	GtkWidget* function() c_gtk_tool_palette_new;
9382 	GtkTargetEntry* function() c_gtk_tool_palette_get_drag_target_group;
9383 	GtkTargetEntry* function() c_gtk_tool_palette_get_drag_target_item;
9384 	void function(GtkToolPalette* palette, GtkWidget* widget, GtkDestDefaults flags, GtkToolPaletteDragTargets targets, GdkDragAction actions) c_gtk_tool_palette_add_drag_dest;
9385 	GtkWidget* function(GtkToolPalette* palette, GtkSelectionData* selection) c_gtk_tool_palette_get_drag_item;
9386 	GtkToolItemGroup* function(GtkToolPalette* palette, int x, int y) c_gtk_tool_palette_get_drop_group;
9387 	GtkToolItem* function(GtkToolPalette* palette, int x, int y) c_gtk_tool_palette_get_drop_item;
9388 	int function(GtkToolPalette* palette, GtkToolItemGroup* group) c_gtk_tool_palette_get_exclusive;
9389 	int function(GtkToolPalette* palette, GtkToolItemGroup* group) c_gtk_tool_palette_get_expand;
9390 	int function(GtkToolPalette* palette, GtkToolItemGroup* group) c_gtk_tool_palette_get_group_position;
9391 	GtkAdjustment* function(GtkToolPalette* palette) c_gtk_tool_palette_get_hadjustment;
9392 	GtkIconSize function(GtkToolPalette* palette) c_gtk_tool_palette_get_icon_size;
9393 	GtkToolbarStyle function(GtkToolPalette* palette) c_gtk_tool_palette_get_style;
9394 	GtkAdjustment* function(GtkToolPalette* palette) c_gtk_tool_palette_get_vadjustment;
9395 	void function(GtkToolPalette* palette, GtkToolPaletteDragTargets targets) c_gtk_tool_palette_set_drag_source;
9396 	void function(GtkToolPalette* palette, GtkToolItemGroup* group, int exclusive) c_gtk_tool_palette_set_exclusive;
9397 	void function(GtkToolPalette* palette, GtkToolItemGroup* group, int expand) c_gtk_tool_palette_set_expand;
9398 	void function(GtkToolPalette* palette, GtkToolItemGroup* group, int position) c_gtk_tool_palette_set_group_position;
9399 	void function(GtkToolPalette* palette, GtkIconSize iconSize) c_gtk_tool_palette_set_icon_size;
9400 	void function(GtkToolPalette* palette, GtkToolbarStyle style) c_gtk_tool_palette_set_style;
9401 	void function(GtkToolPalette* palette) c_gtk_tool_palette_unset_icon_size;
9402 	void function(GtkToolPalette* palette) c_gtk_tool_palette_unset_style;
9403 
9404 	// gtk.ToolShell
9405 
9406 	GType function() c_gtk_tool_shell_get_type;
9407 	PangoEllipsizeMode function(GtkToolShell* shell) c_gtk_tool_shell_get_ellipsize_mode;
9408 	GtkIconSize function(GtkToolShell* shell) c_gtk_tool_shell_get_icon_size;
9409 	GtkOrientation function(GtkToolShell* shell) c_gtk_tool_shell_get_orientation;
9410 	GtkReliefStyle function(GtkToolShell* shell) c_gtk_tool_shell_get_relief_style;
9411 	GtkToolbarStyle function(GtkToolShell* shell) c_gtk_tool_shell_get_style;
9412 	float function(GtkToolShell* shell) c_gtk_tool_shell_get_text_alignment;
9413 	GtkOrientation function(GtkToolShell* shell) c_gtk_tool_shell_get_text_orientation;
9414 	GtkSizeGroup* function(GtkToolShell* shell) c_gtk_tool_shell_get_text_size_group;
9415 	void function(GtkToolShell* shell) c_gtk_tool_shell_rebuild_menu;
9416 
9417 	// gtk.Toolbar
9418 
9419 	GType function() c_gtk_toolbar_get_type;
9420 	GtkWidget* function() c_gtk_toolbar_new;
9421 	int function(GtkToolbar* toolbar, int x, int y) c_gtk_toolbar_get_drop_index;
9422 	GtkIconSize function(GtkToolbar* toolbar) c_gtk_toolbar_get_icon_size;
9423 	int function(GtkToolbar* toolbar, GtkToolItem* item) c_gtk_toolbar_get_item_index;
9424 	int function(GtkToolbar* toolbar) c_gtk_toolbar_get_n_items;
9425 	GtkToolItem* function(GtkToolbar* toolbar, int n) c_gtk_toolbar_get_nth_item;
9426 	GtkReliefStyle function(GtkToolbar* toolbar) c_gtk_toolbar_get_relief_style;
9427 	int function(GtkToolbar* toolbar) c_gtk_toolbar_get_show_arrow;
9428 	GtkToolbarStyle function(GtkToolbar* toolbar) c_gtk_toolbar_get_style;
9429 	void function(GtkToolbar* toolbar, GtkToolItem* item, int pos) c_gtk_toolbar_insert;
9430 	void function(GtkToolbar* toolbar, GtkToolItem* toolItem, int index) c_gtk_toolbar_set_drop_highlight_item;
9431 	void function(GtkToolbar* toolbar, GtkIconSize iconSize) c_gtk_toolbar_set_icon_size;
9432 	void function(GtkToolbar* toolbar, int showArrow) c_gtk_toolbar_set_show_arrow;
9433 	void function(GtkToolbar* toolbar, GtkToolbarStyle style) c_gtk_toolbar_set_style;
9434 	void function(GtkToolbar* toolbar) c_gtk_toolbar_unset_icon_size;
9435 	void function(GtkToolbar* toolbar) c_gtk_toolbar_unset_style;
9436 
9437 	// gtk.Tooltip
9438 
9439 	GType function() c_gtk_tooltip_get_type;
9440 	void function(GdkDisplay* display) c_gtk_tooltip_trigger_tooltip_query;
9441 	void function(GtkTooltip* tooltip, GtkWidget* customWidget) c_gtk_tooltip_set_custom;
9442 	void function(GtkTooltip* tooltip, GdkPixbuf* pixbuf) c_gtk_tooltip_set_icon;
9443 	void function(GtkTooltip* tooltip, GIcon* gicon, GtkIconSize size) c_gtk_tooltip_set_icon_from_gicon;
9444 	void function(GtkTooltip* tooltip, const(char)* iconName, GtkIconSize size) c_gtk_tooltip_set_icon_from_icon_name;
9445 	void function(GtkTooltip* tooltip, const(char)* stockId, GtkIconSize size) c_gtk_tooltip_set_icon_from_stock;
9446 	void function(GtkTooltip* tooltip, const(char)* markup) c_gtk_tooltip_set_markup;
9447 	void function(GtkTooltip* tooltip, const(char)* text) c_gtk_tooltip_set_text;
9448 	void function(GtkTooltip* tooltip, GdkRectangle* rect) c_gtk_tooltip_set_tip_area;
9449 
9450 	// gtk.ToplevelAccessible
9451 
9452 	GType function() c_gtk_toplevel_accessible_get_type;
9453 	GList* function(GtkToplevelAccessible* accessible) c_gtk_toplevel_accessible_get_children;
9454 
9455 	// gtk.TreeDragDest
9456 
9457 	GType function() c_gtk_tree_drag_dest_get_type;
9458 	int function(GtkTreeDragDest* dragDest, GtkTreePath* dest, GtkSelectionData* selectionData) c_gtk_tree_drag_dest_drag_data_received;
9459 	int function(GtkTreeDragDest* dragDest, GtkTreePath* destPath, GtkSelectionData* selectionData) c_gtk_tree_drag_dest_row_drop_possible;
9460 
9461 	// gtk.TreeDragSource
9462 
9463 	GType function() c_gtk_tree_drag_source_get_type;
9464 	int function(GtkTreeDragSource* dragSource, GtkTreePath* path) c_gtk_tree_drag_source_drag_data_delete;
9465 	int function(GtkTreeDragSource* dragSource, GtkTreePath* path, GtkSelectionData* selectionData) c_gtk_tree_drag_source_drag_data_get;
9466 	int function(GtkTreeDragSource* dragSource, GtkTreePath* path) c_gtk_tree_drag_source_row_draggable;
9467 	int function(GtkSelectionData* selectionData, GtkTreeModel** treeModel, GtkTreePath** path) c_gtk_tree_get_row_drag_data;
9468 	int function(GtkSelectionData* selectionData, GtkTreeModel* treeModel, GtkTreePath* path) c_gtk_tree_set_row_drag_data;
9469 
9470 	// gtk.TreeIter
9471 
9472 	GType function() c_gtk_tree_iter_get_type;
9473 	GtkTreeIter* function(GtkTreeIter* iter) c_gtk_tree_iter_copy;
9474 	void function(GtkTreeIter* iter) c_gtk_tree_iter_free;
9475 
9476 	// gtk.TreeModel
9477 
9478 	GType function() c_gtk_tree_model_get_type;
9479 	void function(GtkTreeModel* model, GtkTreeModelForeachFunc func, void* userData) c_gtk_tree_model_foreach;
9480 	void function(GtkTreeModel* treeModel, GtkTreeIter* iter, ... ) c_gtk_tree_model_get;
9481 	GType function(GtkTreeModel* treeModel, int index) c_gtk_tree_model_get_column_type;
9482 	GtkTreeModelFlags function(GtkTreeModel* treeModel) c_gtk_tree_model_get_flags;
9483 	int function(GtkTreeModel* treeModel, GtkTreeIter* iter, GtkTreePath* path) c_gtk_tree_model_get_iter;
9484 	int function(GtkTreeModel* treeModel, GtkTreeIter* iter) c_gtk_tree_model_get_iter_first;
9485 	int function(GtkTreeModel* treeModel, GtkTreeIter* iter, const(char)* pathString) c_gtk_tree_model_get_iter_from_string;
9486 	int function(GtkTreeModel* treeModel) c_gtk_tree_model_get_n_columns;
9487 	GtkTreePath* function(GtkTreeModel* treeModel, GtkTreeIter* iter) c_gtk_tree_model_get_path;
9488 	char* function(GtkTreeModel* treeModel, GtkTreeIter* iter) c_gtk_tree_model_get_string_from_iter;
9489 	void function(GtkTreeModel* treeModel, GtkTreeIter* iter, void* varArgs) c_gtk_tree_model_get_valist;
9490 	void function(GtkTreeModel* treeModel, GtkTreeIter* iter, int column, GValue* value) c_gtk_tree_model_get_value;
9491 	int function(GtkTreeModel* treeModel, GtkTreeIter* iter, GtkTreeIter* parent) c_gtk_tree_model_iter_children;
9492 	int function(GtkTreeModel* treeModel, GtkTreeIter* iter) c_gtk_tree_model_iter_has_child;
9493 	int function(GtkTreeModel* treeModel, GtkTreeIter* iter) c_gtk_tree_model_iter_n_children;
9494 	int function(GtkTreeModel* treeModel, GtkTreeIter* iter) c_gtk_tree_model_iter_next;
9495 	int function(GtkTreeModel* treeModel, GtkTreeIter* iter, GtkTreeIter* parent, int n) c_gtk_tree_model_iter_nth_child;
9496 	int function(GtkTreeModel* treeModel, GtkTreeIter* iter, GtkTreeIter* child) c_gtk_tree_model_iter_parent;
9497 	int function(GtkTreeModel* treeModel, GtkTreeIter* iter) c_gtk_tree_model_iter_previous;
9498 	void function(GtkTreeModel* treeModel, GtkTreeIter* iter) c_gtk_tree_model_ref_node;
9499 	void function(GtkTreeModel* treeModel, GtkTreePath* path, GtkTreeIter* iter) c_gtk_tree_model_row_changed;
9500 	void function(GtkTreeModel* treeModel, GtkTreePath* path) c_gtk_tree_model_row_deleted;
9501 	void function(GtkTreeModel* treeModel, GtkTreePath* path, GtkTreeIter* iter) c_gtk_tree_model_row_has_child_toggled;
9502 	void function(GtkTreeModel* treeModel, GtkTreePath* path, GtkTreeIter* iter) c_gtk_tree_model_row_inserted;
9503 	void function(GtkTreeModel* treeModel, GtkTreePath* path, GtkTreeIter* iter, int* newOrder) c_gtk_tree_model_rows_reordered;
9504 	void function(GtkTreeModel* treeModel, GtkTreePath* path, GtkTreeIter* iter, int* newOrder, int length) c_gtk_tree_model_rows_reordered_with_length;
9505 	void function(GtkTreeModel* treeModel, GtkTreeIter* iter) c_gtk_tree_model_unref_node;
9506 
9507 	// gtk.TreeModelFilter
9508 
9509 	GType function() c_gtk_tree_model_filter_get_type;
9510 	void function(GtkTreeModelFilter* filter) c_gtk_tree_model_filter_clear_cache;
9511 	int function(GtkTreeModelFilter* filter, GtkTreeIter* filterIter, GtkTreeIter* childIter) c_gtk_tree_model_filter_convert_child_iter_to_iter;
9512 	GtkTreePath* function(GtkTreeModelFilter* filter, GtkTreePath* childPath) c_gtk_tree_model_filter_convert_child_path_to_path;
9513 	void function(GtkTreeModelFilter* filter, GtkTreeIter* childIter, GtkTreeIter* filterIter) c_gtk_tree_model_filter_convert_iter_to_child_iter;
9514 	GtkTreePath* function(GtkTreeModelFilter* filter, GtkTreePath* filterPath) c_gtk_tree_model_filter_convert_path_to_child_path;
9515 	GtkTreeModel* function(GtkTreeModelFilter* filter) c_gtk_tree_model_filter_get_model;
9516 	void function(GtkTreeModelFilter* filter) c_gtk_tree_model_filter_refilter;
9517 	void function(GtkTreeModelFilter* filter, int nColumns, GType* types, GtkTreeModelFilterModifyFunc func, void* data, GDestroyNotify destroy) c_gtk_tree_model_filter_set_modify_func;
9518 	void function(GtkTreeModelFilter* filter, int column) c_gtk_tree_model_filter_set_visible_column;
9519 	void function(GtkTreeModelFilter* filter, GtkTreeModelFilterVisibleFunc func, void* data, GDestroyNotify destroy) c_gtk_tree_model_filter_set_visible_func;
9520 	GtkTreeModel* function(GtkTreeModel* childModel, GtkTreePath* root) c_gtk_tree_model_filter_new;
9521 
9522 	// gtk.TreeModelSort
9523 
9524 	GType function() c_gtk_tree_model_sort_get_type;
9525 	void function(GtkTreeModelSort* treeModelSort) c_gtk_tree_model_sort_clear_cache;
9526 	int function(GtkTreeModelSort* treeModelSort, GtkTreeIter* sortIter, GtkTreeIter* childIter) c_gtk_tree_model_sort_convert_child_iter_to_iter;
9527 	GtkTreePath* function(GtkTreeModelSort* treeModelSort, GtkTreePath* childPath) c_gtk_tree_model_sort_convert_child_path_to_path;
9528 	void function(GtkTreeModelSort* treeModelSort, GtkTreeIter* childIter, GtkTreeIter* sortedIter) c_gtk_tree_model_sort_convert_iter_to_child_iter;
9529 	GtkTreePath* function(GtkTreeModelSort* treeModelSort, GtkTreePath* sortedPath) c_gtk_tree_model_sort_convert_path_to_child_path;
9530 	GtkTreeModel* function(GtkTreeModelSort* treeModel) c_gtk_tree_model_sort_get_model;
9531 	int function(GtkTreeModelSort* treeModelSort, GtkTreeIter* iter) c_gtk_tree_model_sort_iter_is_valid;
9532 	void function(GtkTreeModelSort* treeModelSort) c_gtk_tree_model_sort_reset_default_sort_func;
9533 	GtkTreeModel* function(GtkTreeModel* childModel) c_gtk_tree_model_sort_new_with_model;
9534 
9535 	// gtk.TreePath
9536 
9537 	GType function() c_gtk_tree_path_get_type;
9538 	GtkTreePath* function() c_gtk_tree_path_new;
9539 	GtkTreePath* function() c_gtk_tree_path_new_first;
9540 	GtkTreePath* function(int firstIndex, ... ) c_gtk_tree_path_new_from_indices;
9541 	GtkTreePath* function(int* indices, size_t length) c_gtk_tree_path_new_from_indicesv;
9542 	GtkTreePath* function(const(char)* path) c_gtk_tree_path_new_from_string;
9543 	void function(GtkTreePath* path, int index) c_gtk_tree_path_append_index;
9544 	int function(GtkTreePath* a, GtkTreePath* b) c_gtk_tree_path_compare;
9545 	GtkTreePath* function(GtkTreePath* path) c_gtk_tree_path_copy;
9546 	void function(GtkTreePath* path) c_gtk_tree_path_down;
9547 	void function(GtkTreePath* path) c_gtk_tree_path_free;
9548 	int function(GtkTreePath* path) c_gtk_tree_path_get_depth;
9549 	int* function(GtkTreePath* path) c_gtk_tree_path_get_indices;
9550 	int* function(GtkTreePath* path, int* depth) c_gtk_tree_path_get_indices_with_depth;
9551 	int function(GtkTreePath* path, GtkTreePath* descendant) c_gtk_tree_path_is_ancestor;
9552 	int function(GtkTreePath* path, GtkTreePath* ancestor) c_gtk_tree_path_is_descendant;
9553 	void function(GtkTreePath* path) c_gtk_tree_path_next;
9554 	void function(GtkTreePath* path, int index) c_gtk_tree_path_prepend_index;
9555 	int function(GtkTreePath* path) c_gtk_tree_path_prev;
9556 	char* function(GtkTreePath* path) c_gtk_tree_path_to_string;
9557 	int function(GtkTreePath* path) c_gtk_tree_path_up;
9558 
9559 	// gtk.TreeRowReference
9560 
9561 	GType function() c_gtk_tree_row_reference_get_type;
9562 	GtkTreeRowReference* function(GtkTreeModel* model, GtkTreePath* path) c_gtk_tree_row_reference_new;
9563 	GtkTreeRowReference* function(GObject* proxy, GtkTreeModel* model, GtkTreePath* path) c_gtk_tree_row_reference_new_proxy;
9564 	GtkTreeRowReference* function(GtkTreeRowReference* reference) c_gtk_tree_row_reference_copy;
9565 	void function(GtkTreeRowReference* reference) c_gtk_tree_row_reference_free;
9566 	GtkTreeModel* function(GtkTreeRowReference* reference) c_gtk_tree_row_reference_get_model;
9567 	GtkTreePath* function(GtkTreeRowReference* reference) c_gtk_tree_row_reference_get_path;
9568 	int function(GtkTreeRowReference* reference) c_gtk_tree_row_reference_valid;
9569 	void function(GObject* proxy, GtkTreePath* path) c_gtk_tree_row_reference_deleted;
9570 	void function(GObject* proxy, GtkTreePath* path) c_gtk_tree_row_reference_inserted;
9571 	void function(GObject* proxy, GtkTreePath* path, GtkTreeIter* iter, int* newOrder) c_gtk_tree_row_reference_reordered;
9572 
9573 	// gtk.TreeSelection
9574 
9575 	GType function() c_gtk_tree_selection_get_type;
9576 	int function(GtkTreeSelection* selection) c_gtk_tree_selection_count_selected_rows;
9577 	GtkSelectionMode function(GtkTreeSelection* selection) c_gtk_tree_selection_get_mode;
9578 	GtkTreeSelectionFunc function(GtkTreeSelection* selection) c_gtk_tree_selection_get_select_function;
9579 	int function(GtkTreeSelection* selection, GtkTreeModel** model, GtkTreeIter* iter) c_gtk_tree_selection_get_selected;
9580 	GList* function(GtkTreeSelection* selection, GtkTreeModel** model) c_gtk_tree_selection_get_selected_rows;
9581 	GtkTreeView* function(GtkTreeSelection* selection) c_gtk_tree_selection_get_tree_view;
9582 	void* function(GtkTreeSelection* selection) c_gtk_tree_selection_get_user_data;
9583 	int function(GtkTreeSelection* selection, GtkTreeIter* iter) c_gtk_tree_selection_iter_is_selected;
9584 	int function(GtkTreeSelection* selection, GtkTreePath* path) c_gtk_tree_selection_path_is_selected;
9585 	void function(GtkTreeSelection* selection) c_gtk_tree_selection_select_all;
9586 	void function(GtkTreeSelection* selection, GtkTreeIter* iter) c_gtk_tree_selection_select_iter;
9587 	void function(GtkTreeSelection* selection, GtkTreePath* path) c_gtk_tree_selection_select_path;
9588 	void function(GtkTreeSelection* selection, GtkTreePath* startPath, GtkTreePath* endPath) c_gtk_tree_selection_select_range;
9589 	void function(GtkTreeSelection* selection, GtkTreeSelectionForeachFunc func, void* data) c_gtk_tree_selection_selected_foreach;
9590 	void function(GtkTreeSelection* selection, GtkSelectionMode type) c_gtk_tree_selection_set_mode;
9591 	void function(GtkTreeSelection* selection, GtkTreeSelectionFunc func, void* data, GDestroyNotify destroy) c_gtk_tree_selection_set_select_function;
9592 	void function(GtkTreeSelection* selection) c_gtk_tree_selection_unselect_all;
9593 	void function(GtkTreeSelection* selection, GtkTreeIter* iter) c_gtk_tree_selection_unselect_iter;
9594 	void function(GtkTreeSelection* selection, GtkTreePath* path) c_gtk_tree_selection_unselect_path;
9595 	void function(GtkTreeSelection* selection, GtkTreePath* startPath, GtkTreePath* endPath) c_gtk_tree_selection_unselect_range;
9596 
9597 	// gtk.TreeSortable
9598 
9599 	GType function() c_gtk_tree_sortable_get_type;
9600 	int function(GtkTreeSortable* sortable, int* sortColumnId, GtkSortType* order) c_gtk_tree_sortable_get_sort_column_id;
9601 	int function(GtkTreeSortable* sortable) c_gtk_tree_sortable_has_default_sort_func;
9602 	void function(GtkTreeSortable* sortable, GtkTreeIterCompareFunc sortFunc, void* userData, GDestroyNotify destroy) c_gtk_tree_sortable_set_default_sort_func;
9603 	void function(GtkTreeSortable* sortable, int sortColumnId, GtkSortType order) c_gtk_tree_sortable_set_sort_column_id;
9604 	void function(GtkTreeSortable* sortable, int sortColumnId, GtkTreeIterCompareFunc sortFunc, void* userData, GDestroyNotify destroy) c_gtk_tree_sortable_set_sort_func;
9605 	void function(GtkTreeSortable* sortable) c_gtk_tree_sortable_sort_column_changed;
9606 
9607 	// gtk.TreeStore
9608 
9609 	GType function() c_gtk_tree_store_get_type;
9610 	GtkTreeStore* function(int nColumns, ... ) c_gtk_tree_store_new;
9611 	GtkTreeStore* function(int nColumns, GType* types) c_gtk_tree_store_newv;
9612 	void function(GtkTreeStore* treeStore, GtkTreeIter* iter, GtkTreeIter* parent) c_gtk_tree_store_append;
9613 	void function(GtkTreeStore* treeStore) c_gtk_tree_store_clear;
9614 	void function(GtkTreeStore* treeStore, GtkTreeIter* iter, GtkTreeIter* parent, int position) c_gtk_tree_store_insert;
9615 	void function(GtkTreeStore* treeStore, GtkTreeIter* iter, GtkTreeIter* parent, GtkTreeIter* sibling) c_gtk_tree_store_insert_after;
9616 	void function(GtkTreeStore* treeStore, GtkTreeIter* iter, GtkTreeIter* parent, GtkTreeIter* sibling) c_gtk_tree_store_insert_before;
9617 	void function(GtkTreeStore* treeStore, GtkTreeIter* iter, GtkTreeIter* parent, int position, ... ) c_gtk_tree_store_insert_with_values;
9618 	void function(GtkTreeStore* treeStore, GtkTreeIter* iter, GtkTreeIter* parent, int position, int* columns, GValue* values, int nValues) c_gtk_tree_store_insert_with_valuesv;
9619 	int function(GtkTreeStore* treeStore, GtkTreeIter* iter, GtkTreeIter* descendant) c_gtk_tree_store_is_ancestor;
9620 	int function(GtkTreeStore* treeStore, GtkTreeIter* iter) c_gtk_tree_store_iter_depth;
9621 	int function(GtkTreeStore* treeStore, GtkTreeIter* iter) c_gtk_tree_store_iter_is_valid;
9622 	void function(GtkTreeStore* treeStore, GtkTreeIter* iter, GtkTreeIter* position) c_gtk_tree_store_move_after;
9623 	void function(GtkTreeStore* treeStore, GtkTreeIter* iter, GtkTreeIter* position) c_gtk_tree_store_move_before;
9624 	void function(GtkTreeStore* treeStore, GtkTreeIter* iter, GtkTreeIter* parent) c_gtk_tree_store_prepend;
9625 	int function(GtkTreeStore* treeStore, GtkTreeIter* iter) c_gtk_tree_store_remove;
9626 	void function(GtkTreeStore* treeStore, GtkTreeIter* parent, int* newOrder) c_gtk_tree_store_reorder;
9627 	void function(GtkTreeStore* treeStore, GtkTreeIter* iter, ... ) c_gtk_tree_store_set;
9628 	void function(GtkTreeStore* treeStore, int nColumns, GType* types) c_gtk_tree_store_set_column_types;
9629 	void function(GtkTreeStore* treeStore, GtkTreeIter* iter, void* varArgs) c_gtk_tree_store_set_valist;
9630 	void function(GtkTreeStore* treeStore, GtkTreeIter* iter, int column, GValue* value) c_gtk_tree_store_set_value;
9631 	void function(GtkTreeStore* treeStore, GtkTreeIter* iter, int* columns, GValue* values, int nValues) c_gtk_tree_store_set_valuesv;
9632 	void function(GtkTreeStore* treeStore, GtkTreeIter* a, GtkTreeIter* b) c_gtk_tree_store_swap;
9633 
9634 	// gtk.TreeView
9635 
9636 	GType function() c_gtk_tree_view_get_type;
9637 	GtkWidget* function() c_gtk_tree_view_new;
9638 	GtkWidget* function(GtkTreeModel* model) c_gtk_tree_view_new_with_model;
9639 	int function(GtkTreeView* treeView, GtkTreeViewColumn* column) c_gtk_tree_view_append_column;
9640 	void function(GtkTreeView* treeView) c_gtk_tree_view_collapse_all;
9641 	int function(GtkTreeView* treeView, GtkTreePath* path) c_gtk_tree_view_collapse_row;
9642 	void function(GtkTreeView* treeView) c_gtk_tree_view_columns_autosize;
9643 	void function(GtkTreeView* treeView, int bx, int by, int* tx, int* ty) c_gtk_tree_view_convert_bin_window_to_tree_coords;
9644 	void function(GtkTreeView* treeView, int bx, int by, int* wx, int* wy) c_gtk_tree_view_convert_bin_window_to_widget_coords;
9645 	void function(GtkTreeView* treeView, int tx, int ty, int* bx, int* by) c_gtk_tree_view_convert_tree_to_bin_window_coords;
9646 	void function(GtkTreeView* treeView, int tx, int ty, int* wx, int* wy) c_gtk_tree_view_convert_tree_to_widget_coords;
9647 	void function(GtkTreeView* treeView, int wx, int wy, int* bx, int* by) c_gtk_tree_view_convert_widget_to_bin_window_coords;
9648 	void function(GtkTreeView* treeView, int wx, int wy, int* tx, int* ty) c_gtk_tree_view_convert_widget_to_tree_coords;
9649 	cairo_surface_t* function(GtkTreeView* treeView, GtkTreePath* path) c_gtk_tree_view_create_row_drag_icon;
9650 	void function(GtkTreeView* treeView, GtkTargetEntry* targets, int nTargets, GdkDragAction actions) c_gtk_tree_view_enable_model_drag_dest;
9651 	void function(GtkTreeView* treeView, GdkModifierType startButtonMask, GtkTargetEntry* targets, int nTargets, GdkDragAction actions) c_gtk_tree_view_enable_model_drag_source;
9652 	void function(GtkTreeView* treeView) c_gtk_tree_view_expand_all;
9653 	int function(GtkTreeView* treeView, GtkTreePath* path, int openAll) c_gtk_tree_view_expand_row;
9654 	void function(GtkTreeView* treeView, GtkTreePath* path) c_gtk_tree_view_expand_to_path;
9655 	int function(GtkTreeView* treeView) c_gtk_tree_view_get_activate_on_single_click;
9656 	void function(GtkTreeView* treeView, GtkTreePath* path, GtkTreeViewColumn* column, GdkRectangle* rect) c_gtk_tree_view_get_background_area;
9657 	GdkWindow* function(GtkTreeView* treeView) c_gtk_tree_view_get_bin_window;
9658 	void function(GtkTreeView* treeView, GtkTreePath* path, GtkTreeViewColumn* column, GdkRectangle* rect) c_gtk_tree_view_get_cell_area;
9659 	GtkTreeViewColumn* function(GtkTreeView* treeView, int n) c_gtk_tree_view_get_column;
9660 	GList* function(GtkTreeView* treeView) c_gtk_tree_view_get_columns;
9661 	void function(GtkTreeView* treeView, GtkTreePath** path, GtkTreeViewColumn** focusColumn) c_gtk_tree_view_get_cursor;
9662 	int function(GtkTreeView* treeView, int dragX, int dragY, GtkTreePath** path, GtkTreeViewDropPosition* pos) c_gtk_tree_view_get_dest_row_at_pos;
9663 	void function(GtkTreeView* treeView, GtkTreePath** path, GtkTreeViewDropPosition* pos) c_gtk_tree_view_get_drag_dest_row;
9664 	int function(GtkTreeView* treeView) c_gtk_tree_view_get_enable_search;
9665 	int function(GtkTreeView* treeView) c_gtk_tree_view_get_enable_tree_lines;
9666 	GtkTreeViewColumn* function(GtkTreeView* treeView) c_gtk_tree_view_get_expander_column;
9667 	int function(GtkTreeView* treeView) c_gtk_tree_view_get_fixed_height_mode;
9668 	GtkTreeViewGridLines function(GtkTreeView* treeView) c_gtk_tree_view_get_grid_lines;
9669 	GtkAdjustment* function(GtkTreeView* treeView) c_gtk_tree_view_get_hadjustment;
9670 	int function(GtkTreeView* treeView) c_gtk_tree_view_get_headers_clickable;
9671 	int function(GtkTreeView* treeView) c_gtk_tree_view_get_headers_visible;
9672 	int function(GtkTreeView* treeView) c_gtk_tree_view_get_hover_expand;
9673 	int function(GtkTreeView* treeView) c_gtk_tree_view_get_hover_selection;
9674 	int function(GtkTreeView* treeView) c_gtk_tree_view_get_level_indentation;
9675 	GtkTreeModel* function(GtkTreeView* treeView) c_gtk_tree_view_get_model;
9676 	uint function(GtkTreeView* treeView) c_gtk_tree_view_get_n_columns;
9677 	int function(GtkTreeView* treeView, int x, int y, GtkTreePath** path, GtkTreeViewColumn** column, int* cellX, int* cellY) c_gtk_tree_view_get_path_at_pos;
9678 	int function(GtkTreeView* treeView) c_gtk_tree_view_get_reorderable;
9679 	GtkTreeViewRowSeparatorFunc function(GtkTreeView* treeView) c_gtk_tree_view_get_row_separator_func;
9680 	int function(GtkTreeView* treeView) c_gtk_tree_view_get_rubber_banding;
9681 	int function(GtkTreeView* treeView) c_gtk_tree_view_get_rules_hint;
9682 	int function(GtkTreeView* treeView) c_gtk_tree_view_get_search_column;
9683 	GtkEntry* function(GtkTreeView* treeView) c_gtk_tree_view_get_search_entry;
9684 	GtkTreeViewSearchEqualFunc function(GtkTreeView* treeView) c_gtk_tree_view_get_search_equal_func;
9685 	GtkTreeViewSearchPositionFunc function(GtkTreeView* treeView) c_gtk_tree_view_get_search_position_func;
9686 	GtkTreeSelection* function(GtkTreeView* treeView) c_gtk_tree_view_get_selection;
9687 	int function(GtkTreeView* treeView) c_gtk_tree_view_get_show_expanders;
9688 	int function(GtkTreeView* treeView) c_gtk_tree_view_get_tooltip_column;
9689 	int function(GtkTreeView* treeView, int* x, int* y, int keyboardTip, GtkTreeModel** model, GtkTreePath** path, GtkTreeIter* iter) c_gtk_tree_view_get_tooltip_context;
9690 	GtkAdjustment* function(GtkTreeView* treeView) c_gtk_tree_view_get_vadjustment;
9691 	int function(GtkTreeView* treeView, GtkTreePath** startPath, GtkTreePath** endPath) c_gtk_tree_view_get_visible_range;
9692 	void function(GtkTreeView* treeView, GdkRectangle* visibleRect) c_gtk_tree_view_get_visible_rect;
9693 	int function(GtkTreeView* treeView, GtkTreeViewColumn* column, int position) c_gtk_tree_view_insert_column;
9694 	int function(GtkTreeView* treeView, int position, const(char)* title, GtkCellRenderer* cell, ... ) c_gtk_tree_view_insert_column_with_attributes;
9695 	int function(GtkTreeView* treeView, int position, const(char)* title, GtkCellRenderer* cell, GtkTreeCellDataFunc func, void* data, GDestroyNotify dnotify) c_gtk_tree_view_insert_column_with_data_func;
9696 	int function(GtkTreeView* treeView, int x, int y, GtkTreePath** path, GtkTreeViewColumn** column, int* cellX, int* cellY) c_gtk_tree_view_is_blank_at_pos;
9697 	int function(GtkTreeView* treeView) c_gtk_tree_view_is_rubber_banding_active;
9698 	void function(GtkTreeView* treeView, GtkTreeViewMappingFunc func, void* data) c_gtk_tree_view_map_expanded_rows;
9699 	void function(GtkTreeView* treeView, GtkTreeViewColumn* column, GtkTreeViewColumn* baseColumn) c_gtk_tree_view_move_column_after;
9700 	int function(GtkTreeView* treeView, GtkTreeViewColumn* column) c_gtk_tree_view_remove_column;
9701 	void function(GtkTreeView* treeView, GtkTreePath* path, GtkTreeViewColumn* column) c_gtk_tree_view_row_activated;
9702 	int function(GtkTreeView* treeView, GtkTreePath* path) c_gtk_tree_view_row_expanded;
9703 	void function(GtkTreeView* treeView, GtkTreePath* path, GtkTreeViewColumn* column, int useAlign, float rowAlign, float colAlign) c_gtk_tree_view_scroll_to_cell;
9704 	void function(GtkTreeView* treeView, int treeX, int treeY) c_gtk_tree_view_scroll_to_point;
9705 	void function(GtkTreeView* treeView, int single) c_gtk_tree_view_set_activate_on_single_click;
9706 	void function(GtkTreeView* treeView, GtkTreeViewColumnDropFunc func, void* userData, GDestroyNotify destroy) c_gtk_tree_view_set_column_drag_function;
9707 	void function(GtkTreeView* treeView, GtkTreePath* path, GtkTreeViewColumn* focusColumn, int startEditing) c_gtk_tree_view_set_cursor;
9708 	void function(GtkTreeView* treeView, GtkTreePath* path, GtkTreeViewColumn* focusColumn, GtkCellRenderer* focusCell, int startEditing) c_gtk_tree_view_set_cursor_on_cell;
9709 	void function(GtkTreeView* treeView, GtkTreeDestroyCountFunc func, void* data, GDestroyNotify destroy) c_gtk_tree_view_set_destroy_count_func;
9710 	void function(GtkTreeView* treeView, GtkTreePath* path, GtkTreeViewDropPosition pos) c_gtk_tree_view_set_drag_dest_row;
9711 	void function(GtkTreeView* treeView, int enableSearch) c_gtk_tree_view_set_enable_search;
9712 	void function(GtkTreeView* treeView, int enabled) c_gtk_tree_view_set_enable_tree_lines;
9713 	void function(GtkTreeView* treeView, GtkTreeViewColumn* column) c_gtk_tree_view_set_expander_column;
9714 	void function(GtkTreeView* treeView, int enable) c_gtk_tree_view_set_fixed_height_mode;
9715 	void function(GtkTreeView* treeView, GtkTreeViewGridLines gridLines) c_gtk_tree_view_set_grid_lines;
9716 	void function(GtkTreeView* treeView, GtkAdjustment* adjustment) c_gtk_tree_view_set_hadjustment;
9717 	void function(GtkTreeView* treeView, int setting) c_gtk_tree_view_set_headers_clickable;
9718 	void function(GtkTreeView* treeView, int headersVisible) c_gtk_tree_view_set_headers_visible;
9719 	void function(GtkTreeView* treeView, int expand) c_gtk_tree_view_set_hover_expand;
9720 	void function(GtkTreeView* treeView, int hover) c_gtk_tree_view_set_hover_selection;
9721 	void function(GtkTreeView* treeView, int indentation) c_gtk_tree_view_set_level_indentation;
9722 	void function(GtkTreeView* treeView, GtkTreeModel* model) c_gtk_tree_view_set_model;
9723 	void function(GtkTreeView* treeView, int reorderable) c_gtk_tree_view_set_reorderable;
9724 	void function(GtkTreeView* treeView, GtkTreeViewRowSeparatorFunc func, void* data, GDestroyNotify destroy) c_gtk_tree_view_set_row_separator_func;
9725 	void function(GtkTreeView* treeView, int enable) c_gtk_tree_view_set_rubber_banding;
9726 	void function(GtkTreeView* treeView, int setting) c_gtk_tree_view_set_rules_hint;
9727 	void function(GtkTreeView* treeView, int column) c_gtk_tree_view_set_search_column;
9728 	void function(GtkTreeView* treeView, GtkEntry* entry) c_gtk_tree_view_set_search_entry;
9729 	void function(GtkTreeView* treeView, GtkTreeViewSearchEqualFunc searchEqualFunc, void* searchUserData, GDestroyNotify searchDestroy) c_gtk_tree_view_set_search_equal_func;
9730 	void function(GtkTreeView* treeView, GtkTreeViewSearchPositionFunc func, void* data, GDestroyNotify destroy) c_gtk_tree_view_set_search_position_func;
9731 	void function(GtkTreeView* treeView, int enabled) c_gtk_tree_view_set_show_expanders;
9732 	void function(GtkTreeView* treeView, GtkTooltip* tooltip, GtkTreePath* path, GtkTreeViewColumn* column, GtkCellRenderer* cell) c_gtk_tree_view_set_tooltip_cell;
9733 	void function(GtkTreeView* treeView, int column) c_gtk_tree_view_set_tooltip_column;
9734 	void function(GtkTreeView* treeView, GtkTooltip* tooltip, GtkTreePath* path) c_gtk_tree_view_set_tooltip_row;
9735 	void function(GtkTreeView* treeView, GtkAdjustment* adjustment) c_gtk_tree_view_set_vadjustment;
9736 	void function(GtkTreeView* treeView) c_gtk_tree_view_unset_rows_drag_dest;
9737 	void function(GtkTreeView* treeView) c_gtk_tree_view_unset_rows_drag_source;
9738 
9739 	// gtk.TreeViewAccessible
9740 
9741 	GType function() c_gtk_tree_view_accessible_get_type;
9742 
9743 	// gtk.TreeViewColumn
9744 
9745 	GType function() c_gtk_tree_view_column_get_type;
9746 	GtkTreeViewColumn* function() c_gtk_tree_view_column_new;
9747 	GtkTreeViewColumn* function(GtkCellArea* area) c_gtk_tree_view_column_new_with_area;
9748 	GtkTreeViewColumn* function(const(char)* title, GtkCellRenderer* cell, ... ) c_gtk_tree_view_column_new_with_attributes;
9749 	void function(GtkTreeViewColumn* treeColumn, GtkCellRenderer* cellRenderer, const(char)* attribute, int column) c_gtk_tree_view_column_add_attribute;
9750 	int function(GtkTreeViewColumn* treeColumn, GtkCellRenderer* cellRenderer, int* xOffset, int* width) c_gtk_tree_view_column_cell_get_position;
9751 	void function(GtkTreeViewColumn* treeColumn, GdkRectangle* cellArea, int* xOffset, int* yOffset, int* width, int* height) c_gtk_tree_view_column_cell_get_size;
9752 	int function(GtkTreeViewColumn* treeColumn) c_gtk_tree_view_column_cell_is_visible;
9753 	void function(GtkTreeViewColumn* treeColumn, GtkTreeModel* treeModel, GtkTreeIter* iter, int isExpander, int isExpanded) c_gtk_tree_view_column_cell_set_cell_data;
9754 	void function(GtkTreeViewColumn* treeColumn) c_gtk_tree_view_column_clear;
9755 	void function(GtkTreeViewColumn* treeColumn, GtkCellRenderer* cellRenderer) c_gtk_tree_view_column_clear_attributes;
9756 	void function(GtkTreeViewColumn* treeColumn) c_gtk_tree_view_column_clicked;
9757 	void function(GtkTreeViewColumn* treeColumn, GtkCellRenderer* cell) c_gtk_tree_view_column_focus_cell;
9758 	float function(GtkTreeViewColumn* treeColumn) c_gtk_tree_view_column_get_alignment;
9759 	GtkWidget* function(GtkTreeViewColumn* treeColumn) c_gtk_tree_view_column_get_button;
9760 	int function(GtkTreeViewColumn* treeColumn) c_gtk_tree_view_column_get_clickable;
9761 	int function(GtkTreeViewColumn* treeColumn) c_gtk_tree_view_column_get_expand;
9762 	int function(GtkTreeViewColumn* treeColumn) c_gtk_tree_view_column_get_fixed_width;
9763 	int function(GtkTreeViewColumn* treeColumn) c_gtk_tree_view_column_get_max_width;
9764 	int function(GtkTreeViewColumn* treeColumn) c_gtk_tree_view_column_get_min_width;
9765 	int function(GtkTreeViewColumn* treeColumn) c_gtk_tree_view_column_get_reorderable;
9766 	int function(GtkTreeViewColumn* treeColumn) c_gtk_tree_view_column_get_resizable;
9767 	GtkTreeViewColumnSizing function(GtkTreeViewColumn* treeColumn) c_gtk_tree_view_column_get_sizing;
9768 	int function(GtkTreeViewColumn* treeColumn) c_gtk_tree_view_column_get_sort_column_id;
9769 	int function(GtkTreeViewColumn* treeColumn) c_gtk_tree_view_column_get_sort_indicator;
9770 	GtkSortType function(GtkTreeViewColumn* treeColumn) c_gtk_tree_view_column_get_sort_order;
9771 	int function(GtkTreeViewColumn* treeColumn) c_gtk_tree_view_column_get_spacing;
9772 	const(char)* function(GtkTreeViewColumn* treeColumn) c_gtk_tree_view_column_get_title;
9773 	GtkWidget* function(GtkTreeViewColumn* treeColumn) c_gtk_tree_view_column_get_tree_view;
9774 	int function(GtkTreeViewColumn* treeColumn) c_gtk_tree_view_column_get_visible;
9775 	GtkWidget* function(GtkTreeViewColumn* treeColumn) c_gtk_tree_view_column_get_widget;
9776 	int function(GtkTreeViewColumn* treeColumn) c_gtk_tree_view_column_get_width;
9777 	int function(GtkTreeViewColumn* treeColumn) c_gtk_tree_view_column_get_x_offset;
9778 	void function(GtkTreeViewColumn* treeColumn, GtkCellRenderer* cell, int expand) c_gtk_tree_view_column_pack_end;
9779 	void function(GtkTreeViewColumn* treeColumn, GtkCellRenderer* cell, int expand) c_gtk_tree_view_column_pack_start;
9780 	void function(GtkTreeViewColumn* treeColumn) c_gtk_tree_view_column_queue_resize;
9781 	void function(GtkTreeViewColumn* treeColumn, float xalign) c_gtk_tree_view_column_set_alignment;
9782 	void function(GtkTreeViewColumn* treeColumn, GtkCellRenderer* cellRenderer, ... ) c_gtk_tree_view_column_set_attributes;
9783 	void function(GtkTreeViewColumn* treeColumn, GtkCellRenderer* cellRenderer, GtkTreeCellDataFunc func, void* funcData, GDestroyNotify destroy) c_gtk_tree_view_column_set_cell_data_func;
9784 	void function(GtkTreeViewColumn* treeColumn, int clickable) c_gtk_tree_view_column_set_clickable;
9785 	void function(GtkTreeViewColumn* treeColumn, int expand) c_gtk_tree_view_column_set_expand;
9786 	void function(GtkTreeViewColumn* treeColumn, int fixedWidth) c_gtk_tree_view_column_set_fixed_width;
9787 	void function(GtkTreeViewColumn* treeColumn, int maxWidth) c_gtk_tree_view_column_set_max_width;
9788 	void function(GtkTreeViewColumn* treeColumn, int minWidth) c_gtk_tree_view_column_set_min_width;
9789 	void function(GtkTreeViewColumn* treeColumn, int reorderable) c_gtk_tree_view_column_set_reorderable;
9790 	void function(GtkTreeViewColumn* treeColumn, int resizable) c_gtk_tree_view_column_set_resizable;
9791 	void function(GtkTreeViewColumn* treeColumn, GtkTreeViewColumnSizing type) c_gtk_tree_view_column_set_sizing;
9792 	void function(GtkTreeViewColumn* treeColumn, int sortColumnId) c_gtk_tree_view_column_set_sort_column_id;
9793 	void function(GtkTreeViewColumn* treeColumn, int setting) c_gtk_tree_view_column_set_sort_indicator;
9794 	void function(GtkTreeViewColumn* treeColumn, GtkSortType order) c_gtk_tree_view_column_set_sort_order;
9795 	void function(GtkTreeViewColumn* treeColumn, int spacing) c_gtk_tree_view_column_set_spacing;
9796 	void function(GtkTreeViewColumn* treeColumn, const(char)* title) c_gtk_tree_view_column_set_title;
9797 	void function(GtkTreeViewColumn* treeColumn, int visible) c_gtk_tree_view_column_set_visible;
9798 	void function(GtkTreeViewColumn* treeColumn, GtkWidget* widget) c_gtk_tree_view_column_set_widget;
9799 
9800 	// gtk.UIManager
9801 
9802 	GType function() c_gtk_ui_manager_get_type;
9803 	GtkUIManager* function() c_gtk_ui_manager_new;
9804 	void function(GtkUIManager* manager, uint mergeId, const(char)* path, const(char)* name, const(char)* action, GtkUIManagerItemType type, int top) c_gtk_ui_manager_add_ui;
9805 	uint function(GtkUIManager* manager, char* filename, GError** err) c_gtk_ui_manager_add_ui_from_file;
9806 	uint function(GtkUIManager* manager, const(char)* resourcePath, GError** err) c_gtk_ui_manager_add_ui_from_resource;
9807 	uint function(GtkUIManager* manager, const(char)* buffer, ptrdiff_t length, GError** err) c_gtk_ui_manager_add_ui_from_string;
9808 	void function(GtkUIManager* manager) c_gtk_ui_manager_ensure_update;
9809 	GtkAccelGroup* function(GtkUIManager* manager) c_gtk_ui_manager_get_accel_group;
9810 	GtkAction* function(GtkUIManager* manager, const(char)* path) c_gtk_ui_manager_get_action;
9811 	GList* function(GtkUIManager* manager) c_gtk_ui_manager_get_action_groups;
9812 	int function(GtkUIManager* manager) c_gtk_ui_manager_get_add_tearoffs;
9813 	GSList* function(GtkUIManager* manager, GtkUIManagerItemType types) c_gtk_ui_manager_get_toplevels;
9814 	char* function(GtkUIManager* manager) c_gtk_ui_manager_get_ui;
9815 	GtkWidget* function(GtkUIManager* manager, const(char)* path) c_gtk_ui_manager_get_widget;
9816 	void function(GtkUIManager* manager, GtkActionGroup* actionGroup, int pos) c_gtk_ui_manager_insert_action_group;
9817 	uint function(GtkUIManager* manager) c_gtk_ui_manager_new_merge_id;
9818 	void function(GtkUIManager* manager, GtkActionGroup* actionGroup) c_gtk_ui_manager_remove_action_group;
9819 	void function(GtkUIManager* manager, uint mergeId) c_gtk_ui_manager_remove_ui;
9820 	void function(GtkUIManager* manager, int addTearoffs) c_gtk_ui_manager_set_add_tearoffs;
9821 
9822 	// gtk.VBox
9823 
9824 	GType function() c_gtk_vbox_get_type;
9825 	GtkWidget* function(int homogeneous, int spacing) c_gtk_vbox_new;
9826 
9827 	// gtk.VButtonBox
9828 
9829 	GType function() c_gtk_vbutton_box_get_type;
9830 	GtkWidget* function() c_gtk_vbutton_box_new;
9831 
9832 	// gtk.VPaned
9833 
9834 	GType function() c_gtk_vpaned_get_type;
9835 	GtkWidget* function() c_gtk_vpaned_new;
9836 
9837 	// gtk.VScale
9838 
9839 	GType function() c_gtk_vscale_get_type;
9840 	GtkWidget* function(GtkAdjustment* adjustment) c_gtk_vscale_new;
9841 	GtkWidget* function(double min, double max, double step) c_gtk_vscale_new_with_range;
9842 
9843 	// gtk.VScrollbar
9844 
9845 	GType function() c_gtk_vscrollbar_get_type;
9846 	GtkWidget* function(GtkAdjustment* adjustment) c_gtk_vscrollbar_new;
9847 
9848 	// gtk.VSeparator
9849 
9850 	GType function() c_gtk_vseparator_get_type;
9851 	GtkWidget* function() c_gtk_vseparator_new;
9852 
9853 	// gtk.Viewport
9854 
9855 	GType function() c_gtk_viewport_get_type;
9856 	GtkWidget* function(GtkAdjustment* hadjustment, GtkAdjustment* vadjustment) c_gtk_viewport_new;
9857 	GdkWindow* function(GtkViewport* viewport) c_gtk_viewport_get_bin_window;
9858 	GtkAdjustment* function(GtkViewport* viewport) c_gtk_viewport_get_hadjustment;
9859 	GtkShadowType function(GtkViewport* viewport) c_gtk_viewport_get_shadow_type;
9860 	GtkAdjustment* function(GtkViewport* viewport) c_gtk_viewport_get_vadjustment;
9861 	GdkWindow* function(GtkViewport* viewport) c_gtk_viewport_get_view_window;
9862 	void function(GtkViewport* viewport, GtkAdjustment* adjustment) c_gtk_viewport_set_hadjustment;
9863 	void function(GtkViewport* viewport, GtkShadowType type) c_gtk_viewport_set_shadow_type;
9864 	void function(GtkViewport* viewport, GtkAdjustment* adjustment) c_gtk_viewport_set_vadjustment;
9865 
9866 	// gtk.VolumeButton
9867 
9868 	GType function() c_gtk_volume_button_get_type;
9869 	GtkWidget* function() c_gtk_volume_button_new;
9870 
9871 	// gtk.Widget
9872 
9873 	GType function() c_gtk_widget_get_type;
9874 	GtkWidget* function(GType type, const(char)* firstPropertyName, ... ) c_gtk_widget_new;
9875 	GtkTextDirection function() c_gtk_widget_get_default_direction;
9876 	GtkStyle* function() c_gtk_widget_get_default_style;
9877 	void function() c_gtk_widget_pop_composite_child;
9878 	void function() c_gtk_widget_push_composite_child;
9879 	void function(GtkTextDirection dir) c_gtk_widget_set_default_direction;
9880 	int function(GtkWidget* widget) c_gtk_widget_activate;
9881 	void function(GtkWidget* widget, const(char)* accelSignal, GtkAccelGroup* accelGroup, uint accelKey, GdkModifierType accelMods, GtkAccelFlags accelFlags) c_gtk_widget_add_accelerator;
9882 	void function(GtkWidget* widget, GdkDevice* device, GdkEventMask events) c_gtk_widget_add_device_events;
9883 	void function(GtkWidget* widget, int events) c_gtk_widget_add_events;
9884 	void function(GtkWidget* widget, GtkWidget* label) c_gtk_widget_add_mnemonic_label;
9885 	uint function(GtkWidget* widget, GtkTickCallback callback, void* userData, GDestroyNotify notify) c_gtk_widget_add_tick_callback;
9886 	int function(GtkWidget* widget, uint signalId) c_gtk_widget_can_activate_accel;
9887 	int function(GtkWidget* widget, GtkDirectionType direction) c_gtk_widget_child_focus;
9888 	void function(GtkWidget* widget, const(char)* childProperty) c_gtk_widget_child_notify;
9889 	void function(GtkWidget* widget, uint* pathLength, char** path, char** pathReversed) c_gtk_widget_class_path;
9890 	int function(GtkWidget* widget, GtkOrientation orientation) c_gtk_widget_compute_expand;
9891 	PangoContext* function(GtkWidget* widget) c_gtk_widget_create_pango_context;
9892 	PangoLayout* function(GtkWidget* widget, const(char)* text) c_gtk_widget_create_pango_layout;
9893 	void function(GtkWidget* widget) c_gtk_widget_destroy;
9894 	void function(GtkWidget* widget, GtkWidget** widgetPointer) c_gtk_widget_destroyed;
9895 	int function(GtkWidget* widget, GdkDevice* device) c_gtk_widget_device_is_shadowed;
9896 	GdkDragContext* function(GtkWidget* widget, GtkTargetList* targets, GdkDragAction actions, int button, GdkEvent* event) c_gtk_drag_begin;
9897 	GdkDragContext* function(GtkWidget* widget, GtkTargetList* targets, GdkDragAction actions, int button, GdkEvent* event, int x, int y) c_gtk_drag_begin_with_coordinates;
9898 	int function(GtkWidget* widget, int startX, int startY, int currentX, int currentY) c_gtk_drag_check_threshold;
9899 	void function(GtkWidget* widget) c_gtk_drag_dest_add_image_targets;
9900 	void function(GtkWidget* widget) c_gtk_drag_dest_add_text_targets;
9901 	void function(GtkWidget* widget) c_gtk_drag_dest_add_uri_targets;
9902 	GdkAtom function(GtkWidget* widget, GdkDragContext* context, GtkTargetList* targetList) c_gtk_drag_dest_find_target;
9903 	GtkTargetList* function(GtkWidget* widget) c_gtk_drag_dest_get_target_list;
9904 	int function(GtkWidget* widget) c_gtk_drag_dest_get_track_motion;
9905 	void function(GtkWidget* widget, GtkDestDefaults flags, GtkTargetEntry* targets, int nTargets, GdkDragAction actions) c_gtk_drag_dest_set;
9906 	void function(GtkWidget* widget, GdkWindow* proxyWindow, GdkDragProtocol protocol, int useCoordinates) c_gtk_drag_dest_set_proxy;
9907 	void function(GtkWidget* widget, GtkTargetList* targetList) c_gtk_drag_dest_set_target_list;
9908 	void function(GtkWidget* widget, int trackMotion) c_gtk_drag_dest_set_track_motion;
9909 	void function(GtkWidget* widget) c_gtk_drag_dest_unset;
9910 	void function(GtkWidget* widget, GdkDragContext* context, GdkAtom target, uint time) c_gtk_drag_get_data;
9911 	void function(GtkWidget* widget) c_gtk_drag_highlight;
9912 	void function(GtkWidget* widget) c_gtk_drag_source_add_image_targets;
9913 	void function(GtkWidget* widget) c_gtk_drag_source_add_text_targets;
9914 	void function(GtkWidget* widget) c_gtk_drag_source_add_uri_targets;
9915 	GtkTargetList* function(GtkWidget* widget) c_gtk_drag_source_get_target_list;
9916 	void function(GtkWidget* widget, GdkModifierType startButtonMask, GtkTargetEntry* targets, int nTargets, GdkDragAction actions) c_gtk_drag_source_set;
9917 	void function(GtkWidget* widget, GIcon* icon) c_gtk_drag_source_set_icon_gicon;
9918 	void function(GtkWidget* widget, const(char)* iconName) c_gtk_drag_source_set_icon_name;
9919 	void function(GtkWidget* widget, GdkPixbuf* pixbuf) c_gtk_drag_source_set_icon_pixbuf;
9920 	void function(GtkWidget* widget, const(char)* stockId) c_gtk_drag_source_set_icon_stock;
9921 	void function(GtkWidget* widget, GtkTargetList* targetList) c_gtk_drag_source_set_target_list;
9922 	void function(GtkWidget* widget) c_gtk_drag_source_unset;
9923 	void function(GtkWidget* widget) c_gtk_drag_unhighlight;
9924 	void function(GtkWidget* widget, cairo_t* cr) c_gtk_widget_draw;
9925 	void function(GtkWidget* widget) c_gtk_widget_ensure_style;
9926 	void function(GtkWidget* widget) c_gtk_widget_error_bell;
9927 	int function(GtkWidget* widget, GdkEvent* event) c_gtk_widget_event;
9928 	void function(GtkWidget* widget) c_gtk_widget_freeze_child_notify;
9929 	AtkObject* function(GtkWidget* widget) c_gtk_widget_get_accessible;
9930 	GActionGroup* function(GtkWidget* widget, const(char)* prefix) c_gtk_widget_get_action_group;
9931 	int function(GtkWidget* widget) c_gtk_widget_get_allocated_baseline;
9932 	int function(GtkWidget* widget) c_gtk_widget_get_allocated_height;
9933 	void function(GtkWidget* widget, GtkAllocation* allocation, int* baseline) c_gtk_widget_get_allocated_size;
9934 	int function(GtkWidget* widget) c_gtk_widget_get_allocated_width;
9935 	void function(GtkWidget* widget, GtkAllocation* allocation) c_gtk_widget_get_allocation;
9936 	GtkWidget* function(GtkWidget* widget, GType widgetType) c_gtk_widget_get_ancestor;
9937 	int function(GtkWidget* widget) c_gtk_widget_get_app_paintable;
9938 	int function(GtkWidget* widget) c_gtk_widget_get_can_default;
9939 	int function(GtkWidget* widget) c_gtk_widget_get_can_focus;
9940 	void function(GtkWidget* widget, GtkRequisition* requisition) c_gtk_widget_get_child_requisition;
9941 	int function(GtkWidget* widget) c_gtk_widget_get_child_visible;
9942 	void function(GtkWidget* widget, GtkAllocation* clip) c_gtk_widget_get_clip;
9943 	GtkClipboard* function(GtkWidget* widget, GdkAtom selection) c_gtk_widget_get_clipboard;
9944 	char* function(GtkWidget* widget) c_gtk_widget_get_composite_name;
9945 	int function(GtkWidget* widget, GdkDevice* device) c_gtk_widget_get_device_enabled;
9946 	GdkEventMask function(GtkWidget* widget, GdkDevice* device) c_gtk_widget_get_device_events;
9947 	GtkTextDirection function(GtkWidget* widget) c_gtk_widget_get_direction;
9948 	GdkDisplay* function(GtkWidget* widget) c_gtk_widget_get_display;
9949 	int function(GtkWidget* widget) c_gtk_widget_get_double_buffered;
9950 	int function(GtkWidget* widget) c_gtk_widget_get_events;
9951 	int function(GtkWidget* widget) c_gtk_widget_get_focus_on_click;
9952 	PangoFontMap* function(GtkWidget* widget) c_gtk_widget_get_font_map;
9953 	cairo_font_options_t* function(GtkWidget* widget) c_gtk_widget_get_font_options;
9954 	GdkFrameClock* function(GtkWidget* widget) c_gtk_widget_get_frame_clock;
9955 	GtkAlign function(GtkWidget* widget) c_gtk_widget_get_halign;
9956 	int function(GtkWidget* widget) c_gtk_widget_get_has_tooltip;
9957 	int function(GtkWidget* widget) c_gtk_widget_get_has_window;
9958 	int function(GtkWidget* widget) c_gtk_widget_get_hexpand;
9959 	int function(GtkWidget* widget) c_gtk_widget_get_hexpand_set;
9960 	int function(GtkWidget* widget) c_gtk_widget_get_mapped;
9961 	int function(GtkWidget* widget) c_gtk_widget_get_margin_bottom;
9962 	int function(GtkWidget* widget) c_gtk_widget_get_margin_end;
9963 	int function(GtkWidget* widget) c_gtk_widget_get_margin_left;
9964 	int function(GtkWidget* widget) c_gtk_widget_get_margin_right;
9965 	int function(GtkWidget* widget) c_gtk_widget_get_margin_start;
9966 	int function(GtkWidget* widget) c_gtk_widget_get_margin_top;
9967 	GdkModifierType function(GtkWidget* widget, GdkModifierIntent intent) c_gtk_widget_get_modifier_mask;
9968 	GtkRcStyle* function(GtkWidget* widget) c_gtk_widget_get_modifier_style;
9969 	const(char)* function(GtkWidget* widget) c_gtk_widget_get_name;
9970 	int function(GtkWidget* widget) c_gtk_widget_get_no_show_all;
9971 	double function(GtkWidget* widget) c_gtk_widget_get_opacity;
9972 	PangoContext* function(GtkWidget* widget) c_gtk_widget_get_pango_context;
9973 	GtkWidget* function(GtkWidget* widget) c_gtk_widget_get_parent;
9974 	GdkWindow* function(GtkWidget* widget) c_gtk_widget_get_parent_window;
9975 	GtkWidgetPath* function(GtkWidget* widget) c_gtk_widget_get_path;
9976 	void function(GtkWidget* widget, int* x, int* y) c_gtk_widget_get_pointer;
9977 	void function(GtkWidget* widget, int* minimumHeight, int* naturalHeight) c_gtk_widget_get_preferred_height;
9978 	void function(GtkWidget* widget, int width, int* minimumHeight, int* naturalHeight, int* minimumBaseline, int* naturalBaseline) c_gtk_widget_get_preferred_height_and_baseline_for_width;
9979 	void function(GtkWidget* widget, int width, int* minimumHeight, int* naturalHeight) c_gtk_widget_get_preferred_height_for_width;
9980 	void function(GtkWidget* widget, GtkRequisition* minimumSize, GtkRequisition* naturalSize) c_gtk_widget_get_preferred_size;
9981 	void function(GtkWidget* widget, int* minimumWidth, int* naturalWidth) c_gtk_widget_get_preferred_width;
9982 	void function(GtkWidget* widget, int height, int* minimumWidth, int* naturalWidth) c_gtk_widget_get_preferred_width_for_height;
9983 	int function(GtkWidget* widget) c_gtk_widget_get_realized;
9984 	int function(GtkWidget* widget) c_gtk_widget_get_receives_default;
9985 	GtkSizeRequestMode function(GtkWidget* widget) c_gtk_widget_get_request_mode;
9986 	void function(GtkWidget* widget, GtkRequisition* requisition) c_gtk_widget_get_requisition;
9987 	GdkWindow* function(GtkWidget* widget) c_gtk_widget_get_root_window;
9988 	int function(GtkWidget* widget) c_gtk_widget_get_scale_factor;
9989 	GdkScreen* function(GtkWidget* widget) c_gtk_widget_get_screen;
9990 	int function(GtkWidget* widget) c_gtk_widget_get_sensitive;
9991 	GtkSettings* function(GtkWidget* widget) c_gtk_widget_get_settings;
9992 	void function(GtkWidget* widget, int* width, int* height) c_gtk_widget_get_size_request;
9993 	GtkStateType function(GtkWidget* widget) c_gtk_widget_get_state;
9994 	GtkStateFlags function(GtkWidget* widget) c_gtk_widget_get_state_flags;
9995 	GtkStyle* function(GtkWidget* widget) c_gtk_widget_get_style;
9996 	GtkStyleContext* function(GtkWidget* widget) c_gtk_widget_get_style_context;
9997 	int function(GtkWidget* widget) c_gtk_widget_get_support_multidevice;
9998 	GObject* function(GtkWidget* widget, GType widgetType, const(char)* name) c_gtk_widget_get_template_child;
9999 	char* function(GtkWidget* widget) c_gtk_widget_get_tooltip_markup;
10000 	char* function(GtkWidget* widget) c_gtk_widget_get_tooltip_text;
10001 	GtkWindow* function(GtkWidget* widget) c_gtk_widget_get_tooltip_window;
10002 	GtkWidget* function(GtkWidget* widget) c_gtk_widget_get_toplevel;
10003 	GtkAlign function(GtkWidget* widget) c_gtk_widget_get_valign;
10004 	GtkAlign function(GtkWidget* widget) c_gtk_widget_get_valign_with_baseline;
10005 	int function(GtkWidget* widget) c_gtk_widget_get_vexpand;
10006 	int function(GtkWidget* widget) c_gtk_widget_get_vexpand_set;
10007 	int function(GtkWidget* widget) c_gtk_widget_get_visible;
10008 	GdkVisual* function(GtkWidget* widget) c_gtk_widget_get_visual;
10009 	GdkWindow* function(GtkWidget* widget) c_gtk_widget_get_window;
10010 	void function(GtkWidget* widget) c_gtk_grab_add;
10011 	void function(GtkWidget* widget) c_gtk_widget_grab_default;
10012 	void function(GtkWidget* widget) c_gtk_widget_grab_focus;
10013 	void function(GtkWidget* widget) c_gtk_grab_remove;
10014 	int function(GtkWidget* widget) c_gtk_widget_has_default;
10015 	int function(GtkWidget* widget) c_gtk_widget_has_focus;
10016 	int function(GtkWidget* widget) c_gtk_widget_has_grab;
10017 	int function(GtkWidget* widget) c_gtk_widget_has_rc_style;
10018 	int function(GtkWidget* widget) c_gtk_widget_has_screen;
10019 	int function(GtkWidget* widget) c_gtk_widget_has_visible_focus;
10020 	void function(GtkWidget* widget) c_gtk_widget_hide;
10021 	int function(GtkWidget* widget) c_gtk_widget_hide_on_delete;
10022 	int function(GtkWidget* widget) c_gtk_widget_in_destruction;
10023 	void function(GtkWidget* widget) c_gtk_widget_init_template;
10024 	void function(GtkWidget* widget, cairo_region_t* region) c_gtk_widget_input_shape_combine_region;
10025 	void function(GtkWidget* widget, const(char)* name, GActionGroup* group) c_gtk_widget_insert_action_group;
10026 	int function(GtkWidget* widget, GdkRectangle* area, GdkRectangle* intersection) c_gtk_widget_intersect;
10027 	int function(GtkWidget* widget, GtkWidget* ancestor) c_gtk_widget_is_ancestor;
10028 	int function(GtkWidget* widget) c_gtk_widget_is_composited;
10029 	int function(GtkWidget* widget) c_gtk_widget_is_drawable;
10030 	int function(GtkWidget* widget) c_gtk_widget_is_focus;
10031 	int function(GtkWidget* widget) c_gtk_widget_is_sensitive;
10032 	int function(GtkWidget* widget) c_gtk_widget_is_toplevel;
10033 	int function(GtkWidget* widget) c_gtk_widget_is_visible;
10034 	int function(GtkWidget* widget, GtkDirectionType direction) c_gtk_widget_keynav_failed;
10035 	GList* function(GtkWidget* widget) c_gtk_widget_list_accel_closures;
10036 	char** function(GtkWidget* widget) c_gtk_widget_list_action_prefixes;
10037 	GList* function(GtkWidget* widget) c_gtk_widget_list_mnemonic_labels;
10038 	void function(GtkWidget* widget) c_gtk_widget_map;
10039 	int function(GtkWidget* widget, int groupCycling) c_gtk_widget_mnemonic_activate;
10040 	void function(GtkWidget* widget, GtkStateType state, GdkColor* color) c_gtk_widget_modify_base;
10041 	void function(GtkWidget* widget, GtkStateType state, GdkColor* color) c_gtk_widget_modify_bg;
10042 	void function(GtkWidget* widget, GdkColor* primary, GdkColor* secondary) c_gtk_widget_modify_cursor;
10043 	void function(GtkWidget* widget, GtkStateType state, GdkColor* color) c_gtk_widget_modify_fg;
10044 	void function(GtkWidget* widget, PangoFontDescription* fontDesc) c_gtk_widget_modify_font;
10045 	void function(GtkWidget* widget, GtkRcStyle* style) c_gtk_widget_modify_style;
10046 	void function(GtkWidget* widget, GtkStateType state, GdkColor* color) c_gtk_widget_modify_text;
10047 	void function(GtkWidget* widget, GtkStateFlags state, GdkRGBA* color) c_gtk_widget_override_background_color;
10048 	void function(GtkWidget* widget, GtkStateFlags state, GdkRGBA* color) c_gtk_widget_override_color;
10049 	void function(GtkWidget* widget, GdkRGBA* cursor, GdkRGBA* secondaryCursor) c_gtk_widget_override_cursor;
10050 	void function(GtkWidget* widget, PangoFontDescription* fontDesc) c_gtk_widget_override_font;
10051 	void function(GtkWidget* widget, const(char)* name, GdkRGBA* color) c_gtk_widget_override_symbolic_color;
10052 	void function(GtkWidget* widget, uint* pathLength, char** path, char** pathReversed) c_gtk_widget_path;
10053 	void function(GtkWidget* widget) c_gtk_widget_queue_allocate;
10054 	void function(GtkWidget* widget) c_gtk_widget_queue_compute_expand;
10055 	void function(GtkWidget* widget) c_gtk_widget_queue_draw;
10056 	void function(GtkWidget* widget, int x, int y, int width, int height) c_gtk_widget_queue_draw_area;
10057 	void function(GtkWidget* widget, cairo_region_t* region) c_gtk_widget_queue_draw_region;
10058 	void function(GtkWidget* widget) c_gtk_widget_queue_resize;
10059 	void function(GtkWidget* widget) c_gtk_widget_queue_resize_no_redraw;
10060 	void function(GtkWidget* widget) c_gtk_widget_realize;
10061 	cairo_region_t* function(GtkWidget* widget, cairo_region_t* region) c_gtk_widget_region_intersect;
10062 	void function(GtkWidget* widget, GdkWindow* window) c_gtk_widget_register_window;
10063 	int function(GtkWidget* widget, GtkAccelGroup* accelGroup, uint accelKey, GdkModifierType accelMods) c_gtk_widget_remove_accelerator;
10064 	void function(GtkWidget* widget, GtkWidget* label) c_gtk_widget_remove_mnemonic_label;
10065 	void function(GtkWidget* widget, uint id) c_gtk_widget_remove_tick_callback;
10066 	GdkPixbuf* function(GtkWidget* widget, const(char)* stockId, GtkIconSize size, const(char)* detail) c_gtk_widget_render_icon;
10067 	GdkPixbuf* function(GtkWidget* widget, const(char)* stockId, GtkIconSize size) c_gtk_widget_render_icon_pixbuf;
10068 	void function(GtkWidget* widget, GtkWidget* newParent) c_gtk_widget_reparent;
10069 	void function(GtkWidget* widget) c_gtk_widget_reset_rc_styles;
10070 	void function(GtkWidget* widget) c_gtk_widget_reset_style;
10071 	int function(GtkWidget* widget, GdkEvent* event) c_gtk_widget_send_expose;
10072 	int function(GtkWidget* widget, GdkEvent* event) c_gtk_widget_send_focus_change;
10073 	void function(GtkWidget* widget, const(char)* accelPath, GtkAccelGroup* accelGroup) c_gtk_widget_set_accel_path;
10074 	void function(GtkWidget* widget, GtkAllocation* allocation) c_gtk_widget_set_allocation;
10075 	void function(GtkWidget* widget, int appPaintable) c_gtk_widget_set_app_paintable;
10076 	void function(GtkWidget* widget, int canDefault) c_gtk_widget_set_can_default;
10077 	void function(GtkWidget* widget, int canFocus) c_gtk_widget_set_can_focus;
10078 	void function(GtkWidget* widget, int isVisible) c_gtk_widget_set_child_visible;
10079 	void function(GtkWidget* widget, GtkAllocation* clip) c_gtk_widget_set_clip;
10080 	void function(GtkWidget* widget, const(char)* name) c_gtk_widget_set_composite_name;
10081 	void function(GtkWidget* widget, GdkDevice* device, int enabled) c_gtk_widget_set_device_enabled;
10082 	void function(GtkWidget* widget, GdkDevice* device, GdkEventMask events) c_gtk_widget_set_device_events;
10083 	void function(GtkWidget* widget, GtkTextDirection dir) c_gtk_widget_set_direction;
10084 	void function(GtkWidget* widget, int doubleBuffered) c_gtk_widget_set_double_buffered;
10085 	void function(GtkWidget* widget, int events) c_gtk_widget_set_events;
10086 	void function(GtkWidget* widget, int focusOnClick) c_gtk_widget_set_focus_on_click;
10087 	void function(GtkWidget* widget, PangoFontMap* fontMap) c_gtk_widget_set_font_map;
10088 	void function(GtkWidget* widget, cairo_font_options_t* options) c_gtk_widget_set_font_options;
10089 	void function(GtkWidget* widget, GtkAlign align_) c_gtk_widget_set_halign;
10090 	void function(GtkWidget* widget, int hasTooltip) c_gtk_widget_set_has_tooltip;
10091 	void function(GtkWidget* widget, int hasWindow) c_gtk_widget_set_has_window;
10092 	void function(GtkWidget* widget, int expand) c_gtk_widget_set_hexpand;
10093 	void function(GtkWidget* widget, int set) c_gtk_widget_set_hexpand_set;
10094 	void function(GtkWidget* widget, int mapped) c_gtk_widget_set_mapped;
10095 	void function(GtkWidget* widget, int margin) c_gtk_widget_set_margin_bottom;
10096 	void function(GtkWidget* widget, int margin) c_gtk_widget_set_margin_end;
10097 	void function(GtkWidget* widget, int margin) c_gtk_widget_set_margin_left;
10098 	void function(GtkWidget* widget, int margin) c_gtk_widget_set_margin_right;
10099 	void function(GtkWidget* widget, int margin) c_gtk_widget_set_margin_start;
10100 	void function(GtkWidget* widget, int margin) c_gtk_widget_set_margin_top;
10101 	void function(GtkWidget* widget, const(char)* name) c_gtk_widget_set_name;
10102 	void function(GtkWidget* widget, int noShowAll) c_gtk_widget_set_no_show_all;
10103 	void function(GtkWidget* widget, double opacity) c_gtk_widget_set_opacity;
10104 	void function(GtkWidget* widget, GtkWidget* parent) c_gtk_widget_set_parent;
10105 	void function(GtkWidget* widget, GdkWindow* parentWindow) c_gtk_widget_set_parent_window;
10106 	void function(GtkWidget* widget, int realized) c_gtk_widget_set_realized;
10107 	void function(GtkWidget* widget, int receivesDefault) c_gtk_widget_set_receives_default;
10108 	void function(GtkWidget* widget, int redrawOnAllocate) c_gtk_widget_set_redraw_on_allocate;
10109 	void function(GtkWidget* widget, int sensitive) c_gtk_widget_set_sensitive;
10110 	void function(GtkWidget* widget, int width, int height) c_gtk_widget_set_size_request;
10111 	void function(GtkWidget* widget, GtkStateType state) c_gtk_widget_set_state;
10112 	void function(GtkWidget* widget, GtkStateFlags flags, int clear) c_gtk_widget_set_state_flags;
10113 	void function(GtkWidget* widget, GtkStyle* style) c_gtk_widget_set_style;
10114 	void function(GtkWidget* widget, int supportMultidevice) c_gtk_widget_set_support_multidevice;
10115 	void function(GtkWidget* widget, const(char)* markup) c_gtk_widget_set_tooltip_markup;
10116 	void function(GtkWidget* widget, const(char)* text) c_gtk_widget_set_tooltip_text;
10117 	void function(GtkWidget* widget, GtkWindow* customWindow) c_gtk_widget_set_tooltip_window;
10118 	void function(GtkWidget* widget, GtkAlign align_) c_gtk_widget_set_valign;
10119 	void function(GtkWidget* widget, int expand) c_gtk_widget_set_vexpand;
10120 	void function(GtkWidget* widget, int set) c_gtk_widget_set_vexpand_set;
10121 	void function(GtkWidget* widget, int visible) c_gtk_widget_set_visible;
10122 	void function(GtkWidget* widget, GdkVisual* visual) c_gtk_widget_set_visual;
10123 	void function(GtkWidget* widget, GdkWindow* window) c_gtk_widget_set_window;
10124 	void function(GtkWidget* widget, cairo_region_t* region) c_gtk_widget_shape_combine_region;
10125 	void function(GtkWidget* widget) c_gtk_widget_show;
10126 	void function(GtkWidget* widget) c_gtk_widget_show_all;
10127 	void function(GtkWidget* widget) c_gtk_widget_show_now;
10128 	void function(GtkWidget* widget, GtkAllocation* allocation) c_gtk_widget_size_allocate;
10129 	void function(GtkWidget* widget, GtkAllocation* allocation, int baseline) c_gtk_widget_size_allocate_with_baseline;
10130 	void function(GtkWidget* widget, GtkRequisition* requisition) c_gtk_widget_size_request;
10131 	void function(GtkWidget* widget) c_gtk_widget_style_attach;
10132 	void function(GtkWidget* widget, const(char)* firstPropertyName, ... ) c_gtk_widget_style_get;
10133 	void function(GtkWidget* widget, const(char)* propertyName, GValue* value) c_gtk_widget_style_get_property;
10134 	void function(GtkWidget* widget, const(char)* firstPropertyName, void* varArgs) c_gtk_widget_style_get_valist;
10135 	void function(GtkWidget* widget) c_gtk_widget_thaw_child_notify;
10136 	int function(GtkWidget* srcWidget, GtkWidget* destWidget, int srcX, int srcY, int* destX, int* destY) c_gtk_widget_translate_coordinates;
10137 	void function(GtkWidget* widget) c_gtk_widget_trigger_tooltip_query;
10138 	void function(GtkWidget* widget) c_gtk_widget_unmap;
10139 	void function(GtkWidget* widget) c_gtk_widget_unparent;
10140 	void function(GtkWidget* widget) c_gtk_widget_unrealize;
10141 	void function(GtkWidget* widget, GdkWindow* window) c_gtk_widget_unregister_window;
10142 	void function(GtkWidget* widget, GtkStateFlags flags) c_gtk_widget_unset_state_flags;
10143 	int function(cairo_t* cr, GdkWindow* window) c_gtk_cairo_should_draw_window;
10144 	void function(cairo_t* cr, GtkWidget* widget, GdkWindow* window) c_gtk_cairo_transform_to_window;
10145 	int function(int extraSpace, uint nRequestedSizes, GtkRequestedSize* sizes) c_gtk_distribute_natural_allocation;
10146 
10147 	// gtk.WidgetAccessible
10148 
10149 	GType function() c_gtk_widget_accessible_get_type;
10150 
10151 	// gtk.WidgetClass
10152 
10153 	void function(GtkWidgetClass* widgetClass, const(char)* callbackName, GCallback callbackSymbol) c_gtk_widget_class_bind_template_callback_full;
10154 	void function(GtkWidgetClass* widgetClass, const(char)* name, int internalChild, ptrdiff_t structOffset) c_gtk_widget_class_bind_template_child_full;
10155 	GParamSpec* function(GtkWidgetClass* klass, const(char)* propertyName) c_gtk_widget_class_find_style_property;
10156 	const(char)* function(GtkWidgetClass* widgetClass) c_gtk_widget_class_get_css_name;
10157 	void function(GtkWidgetClass* klass, GParamSpec* pspec) c_gtk_widget_class_install_style_property;
10158 	void function(GtkWidgetClass* klass, GParamSpec* pspec, GtkRcPropertyParser parser) c_gtk_widget_class_install_style_property_parser;
10159 	GParamSpec** function(GtkWidgetClass* klass, uint* nProperties) c_gtk_widget_class_list_style_properties;
10160 	void function(GtkWidgetClass* widgetClass, AtkRole role) c_gtk_widget_class_set_accessible_role;
10161 	void function(GtkWidgetClass* widgetClass, GType type) c_gtk_widget_class_set_accessible_type;
10162 	void function(GtkWidgetClass* widgetClass, GtkBuilderConnectFunc connectFunc, void* connectData, GDestroyNotify connectDataDestroy) c_gtk_widget_class_set_connect_func;
10163 	void function(GtkWidgetClass* widgetClass, const(char)* name) c_gtk_widget_class_set_css_name;
10164 	void function(GtkWidgetClass* widgetClass, GBytes* templateBytes) c_gtk_widget_class_set_template;
10165 	void function(GtkWidgetClass* widgetClass, const(char)* resourceName) c_gtk_widget_class_set_template_from_resource;
10166 
10167 	// gtk.WidgetPath
10168 
10169 	GType function() c_gtk_widget_path_get_type;
10170 	GtkWidgetPath* function() c_gtk_widget_path_new;
10171 	int function(GtkWidgetPath* path, GtkWidget* widget) c_gtk_widget_path_append_for_widget;
10172 	int function(GtkWidgetPath* path, GType type) c_gtk_widget_path_append_type;
10173 	int function(GtkWidgetPath* path, GtkWidgetPath* siblings, uint siblingIndex) c_gtk_widget_path_append_with_siblings;
10174 	GtkWidgetPath* function(GtkWidgetPath* path) c_gtk_widget_path_copy;
10175 	void function(GtkWidgetPath* path) c_gtk_widget_path_free;
10176 	GType function(GtkWidgetPath* path) c_gtk_widget_path_get_object_type;
10177 	int function(GtkWidgetPath* path, GType type) c_gtk_widget_path_has_parent;
10178 	int function(GtkWidgetPath* path, GType type) c_gtk_widget_path_is_type;
10179 	void function(GtkWidgetPath* path, int pos, const(char)* name) c_gtk_widget_path_iter_add_class;
10180 	void function(GtkWidgetPath* path, int pos, const(char)* name, GtkRegionFlags flags) c_gtk_widget_path_iter_add_region;
10181 	void function(GtkWidgetPath* path, int pos) c_gtk_widget_path_iter_clear_classes;
10182 	void function(GtkWidgetPath* path, int pos) c_gtk_widget_path_iter_clear_regions;
10183 	const(char)* function(GtkWidgetPath* path, int pos) c_gtk_widget_path_iter_get_name;
10184 	const(char)* function(GtkWidgetPath* path, int pos) c_gtk_widget_path_iter_get_object_name;
10185 	GType function(GtkWidgetPath* path, int pos) c_gtk_widget_path_iter_get_object_type;
10186 	uint function(GtkWidgetPath* path, int pos) c_gtk_widget_path_iter_get_sibling_index;
10187 	GtkWidgetPath* function(GtkWidgetPath* path, int pos) c_gtk_widget_path_iter_get_siblings;
10188 	GtkStateFlags function(GtkWidgetPath* path, int pos) c_gtk_widget_path_iter_get_state;
10189 	int function(GtkWidgetPath* path, int pos, const(char)* name) c_gtk_widget_path_iter_has_class;
10190 	int function(GtkWidgetPath* path, int pos, const(char)* name) c_gtk_widget_path_iter_has_name;
10191 	int function(GtkWidgetPath* path, int pos, GQuark qname) c_gtk_widget_path_iter_has_qclass;
10192 	int function(GtkWidgetPath* path, int pos, GQuark qname) c_gtk_widget_path_iter_has_qname;
10193 	int function(GtkWidgetPath* path, int pos, GQuark qname, GtkRegionFlags* flags) c_gtk_widget_path_iter_has_qregion;
10194 	int function(GtkWidgetPath* path, int pos, const(char)* name, GtkRegionFlags* flags) c_gtk_widget_path_iter_has_region;
10195 	GSList* function(GtkWidgetPath* path, int pos) c_gtk_widget_path_iter_list_classes;
10196 	GSList* function(GtkWidgetPath* path, int pos) c_gtk_widget_path_iter_list_regions;
10197 	void function(GtkWidgetPath* path, int pos, const(char)* name) c_gtk_widget_path_iter_remove_class;
10198 	void function(GtkWidgetPath* path, int pos, const(char)* name) c_gtk_widget_path_iter_remove_region;
10199 	void function(GtkWidgetPath* path, int pos, const(char)* name) c_gtk_widget_path_iter_set_name;
10200 	void function(GtkWidgetPath* path, int pos, const(char)* name) c_gtk_widget_path_iter_set_object_name;
10201 	void function(GtkWidgetPath* path, int pos, GType type) c_gtk_widget_path_iter_set_object_type;
10202 	void function(GtkWidgetPath* path, int pos, GtkStateFlags state) c_gtk_widget_path_iter_set_state;
10203 	int function(GtkWidgetPath* path) c_gtk_widget_path_length;
10204 	void function(GtkWidgetPath* path, GType type) c_gtk_widget_path_prepend_type;
10205 	GtkWidgetPath* function(GtkWidgetPath* path) c_gtk_widget_path_ref;
10206 	char* function(GtkWidgetPath* path) c_gtk_widget_path_to_string;
10207 	void function(GtkWidgetPath* path) c_gtk_widget_path_unref;
10208 
10209 	// gtk.Window
10210 
10211 	GType function() c_gtk_window_get_type;
10212 	GtkWidget* function(GtkWindowType type) c_gtk_window_new;
10213 	GList* function() c_gtk_window_get_default_icon_list;
10214 	const(char)* function() c_gtk_window_get_default_icon_name;
10215 	GList* function() c_gtk_window_list_toplevels;
10216 	void function(int setting) c_gtk_window_set_auto_startup_notification;
10217 	void function(GdkPixbuf* icon) c_gtk_window_set_default_icon;
10218 	int function(char* filename, GError** err) c_gtk_window_set_default_icon_from_file;
10219 	void function(GList* list) c_gtk_window_set_default_icon_list;
10220 	void function(const(char)* name) c_gtk_window_set_default_icon_name;
10221 	void function(int enable) c_gtk_window_set_interactive_debugging;
10222 	int function(GtkWindow* window) c_gtk_window_activate_default;
10223 	int function(GtkWindow* window) c_gtk_window_activate_focus;
10224 	int function(GtkWindow* window, GdkEventKey* event) c_gtk_window_activate_key;
10225 	void function(GtkWindow* window, GtkAccelGroup* accelGroup) c_gtk_window_add_accel_group;
10226 	void function(GtkWindow* window, uint keyval, GtkWidget* target) c_gtk_window_add_mnemonic;
10227 	void function(GtkWindow* window, int button, int rootX, int rootY, uint timestamp) c_gtk_window_begin_move_drag;
10228 	void function(GtkWindow* window, GdkWindowEdge edge, int button, int rootX, int rootY, uint timestamp) c_gtk_window_begin_resize_drag;
10229 	void function(GtkWindow* window) c_gtk_window_close;
10230 	void function(GtkWindow* window) c_gtk_window_deiconify;
10231 	void function(GtkWindow* window) c_gtk_window_fullscreen;
10232 	void function(GtkWindow* window, GdkScreen* screen, int monitor) c_gtk_window_fullscreen_on_monitor;
10233 	int function(GtkWindow* window) c_gtk_window_get_accept_focus;
10234 	GtkApplication* function(GtkWindow* window) c_gtk_window_get_application;
10235 	GtkWidget* function(GtkWindow* window) c_gtk_window_get_attached_to;
10236 	int function(GtkWindow* window) c_gtk_window_get_decorated;
10237 	void function(GtkWindow* window, int* width, int* height) c_gtk_window_get_default_size;
10238 	GtkWidget* function(GtkWindow* window) c_gtk_window_get_default_widget;
10239 	int function(GtkWindow* window) c_gtk_window_get_deletable;
10240 	int function(GtkWindow* window) c_gtk_window_get_destroy_with_parent;
10241 	GtkWidget* function(GtkWindow* window) c_gtk_window_get_focus;
10242 	int function(GtkWindow* window) c_gtk_window_get_focus_on_map;
10243 	int function(GtkWindow* window) c_gtk_window_get_focus_visible;
10244 	GdkGravity function(GtkWindow* window) c_gtk_window_get_gravity;
10245 	GtkWindowGroup* function(GtkWindow* window) c_gtk_window_get_group;
10246 	int function(GtkWindow* window) c_gtk_window_get_has_resize_grip;
10247 	int function(GtkWindow* window) c_gtk_window_get_hide_titlebar_when_maximized;
10248 	GdkPixbuf* function(GtkWindow* window) c_gtk_window_get_icon;
10249 	GList* function(GtkWindow* window) c_gtk_window_get_icon_list;
10250 	const(char)* function(GtkWindow* window) c_gtk_window_get_icon_name;
10251 	GdkModifierType function(GtkWindow* window) c_gtk_window_get_mnemonic_modifier;
10252 	int function(GtkWindow* window) c_gtk_window_get_mnemonics_visible;
10253 	int function(GtkWindow* window) c_gtk_window_get_modal;
10254 	double function(GtkWindow* window) c_gtk_window_get_opacity;
10255 	void function(GtkWindow* window, int* rootX, int* rootY) c_gtk_window_get_position;
10256 	int function(GtkWindow* window) c_gtk_window_get_resizable;
10257 	int function(GtkWindow* window, GdkRectangle* rect) c_gtk_window_get_resize_grip_area;
10258 	const(char)* function(GtkWindow* window) c_gtk_window_get_role;
10259 	GdkScreen* function(GtkWindow* window) c_gtk_window_get_screen;
10260 	void function(GtkWindow* window, int* width, int* height) c_gtk_window_get_size;
10261 	int function(GtkWindow* window) c_gtk_window_get_skip_pager_hint;
10262 	int function(GtkWindow* window) c_gtk_window_get_skip_taskbar_hint;
10263 	const(char)* function(GtkWindow* window) c_gtk_window_get_title;
10264 	GtkWidget* function(GtkWindow* window) c_gtk_window_get_titlebar;
10265 	GtkWindow* function(GtkWindow* window) c_gtk_window_get_transient_for;
10266 	GdkWindowTypeHint function(GtkWindow* window) c_gtk_window_get_type_hint;
10267 	int function(GtkWindow* window) c_gtk_window_get_urgency_hint;
10268 	GtkWindowType function(GtkWindow* window) c_gtk_window_get_window_type;
10269 	int function(GtkWindow* window) c_gtk_window_has_group;
10270 	int function(GtkWindow* window) c_gtk_window_has_toplevel_focus;
10271 	void function(GtkWindow* window) c_gtk_window_iconify;
10272 	int function(GtkWindow* window) c_gtk_window_is_active;
10273 	int function(GtkWindow* window) c_gtk_window_is_maximized;
10274 	void function(GtkWindow* window) c_gtk_window_maximize;
10275 	int function(GtkWindow* window, uint keyval, GdkModifierType modifier) c_gtk_window_mnemonic_activate;
10276 	void function(GtkWindow* window, int x, int y) c_gtk_window_move;
10277 	int function(GtkWindow* window, const(char)* geometry) c_gtk_window_parse_geometry;
10278 	void function(GtkWindow* window) c_gtk_window_present;
10279 	void function(GtkWindow* window, uint timestamp) c_gtk_window_present_with_time;
10280 	int function(GtkWindow* window, GdkEventKey* event) c_gtk_window_propagate_key_event;
10281 	void function(GtkWindow* window, GtkAccelGroup* accelGroup) c_gtk_window_remove_accel_group;
10282 	void function(GtkWindow* window, uint keyval, GtkWidget* target) c_gtk_window_remove_mnemonic;
10283 	void function(GtkWindow* window) c_gtk_window_reshow_with_initial_size;
10284 	void function(GtkWindow* window, int width, int height) c_gtk_window_resize;
10285 	int function(GtkWindow* window) c_gtk_window_resize_grip_is_visible;
10286 	void function(GtkWindow* window, int width, int height) c_gtk_window_resize_to_geometry;
10287 	void function(GtkWindow* window, int setting) c_gtk_window_set_accept_focus;
10288 	void function(GtkWindow* window, GtkApplication* application) c_gtk_window_set_application;
10289 	void function(GtkWindow* window, GtkWidget* attachWidget) c_gtk_window_set_attached_to;
10290 	void function(GtkWindow* window, int setting) c_gtk_window_set_decorated;
10291 	void function(GtkWindow* window, GtkWidget* defaultWidget) c_gtk_window_set_default;
10292 	void function(GtkWindow* window, int width, int height) c_gtk_window_set_default_geometry;
10293 	void function(GtkWindow* window, int width, int height) c_gtk_window_set_default_size;
10294 	void function(GtkWindow* window, int setting) c_gtk_window_set_deletable;
10295 	void function(GtkWindow* window, int setting) c_gtk_window_set_destroy_with_parent;
10296 	void function(GtkWindow* window, GtkWidget* focus) c_gtk_window_set_focus;
10297 	void function(GtkWindow* window, int setting) c_gtk_window_set_focus_on_map;
10298 	void function(GtkWindow* window, int setting) c_gtk_window_set_focus_visible;
10299 	void function(GtkWindow* window, GtkWidget* geometryWidget, GdkGeometry* geometry, GdkWindowHints geomMask) c_gtk_window_set_geometry_hints;
10300 	void function(GtkWindow* window, GdkGravity gravity) c_gtk_window_set_gravity;
10301 	void function(GtkWindow* window, int value) c_gtk_window_set_has_resize_grip;
10302 	void function(GtkWindow* window, int setting) c_gtk_window_set_has_user_ref_count;
10303 	void function(GtkWindow* window, int setting) c_gtk_window_set_hide_titlebar_when_maximized;
10304 	void function(GtkWindow* window, GdkPixbuf* icon) c_gtk_window_set_icon;
10305 	int function(GtkWindow* window, char* filename, GError** err) c_gtk_window_set_icon_from_file;
10306 	void function(GtkWindow* window, GList* list) c_gtk_window_set_icon_list;
10307 	void function(GtkWindow* window, const(char)* name) c_gtk_window_set_icon_name;
10308 	void function(GtkWindow* window, int setting) c_gtk_window_set_keep_above;
10309 	void function(GtkWindow* window, int setting) c_gtk_window_set_keep_below;
10310 	void function(GtkWindow* window, GdkModifierType modifier) c_gtk_window_set_mnemonic_modifier;
10311 	void function(GtkWindow* window, int setting) c_gtk_window_set_mnemonics_visible;
10312 	void function(GtkWindow* window, int modal) c_gtk_window_set_modal;
10313 	void function(GtkWindow* window, double opacity) c_gtk_window_set_opacity;
10314 	void function(GtkWindow* window, GtkWindowPosition position) c_gtk_window_set_position;
10315 	void function(GtkWindow* window, int resizable) c_gtk_window_set_resizable;
10316 	void function(GtkWindow* window, const(char)* role) c_gtk_window_set_role;
10317 	void function(GtkWindow* window, GdkScreen* screen) c_gtk_window_set_screen;
10318 	void function(GtkWindow* window, int setting) c_gtk_window_set_skip_pager_hint;
10319 	void function(GtkWindow* window, int setting) c_gtk_window_set_skip_taskbar_hint;
10320 	void function(GtkWindow* window, const(char)* startupId) c_gtk_window_set_startup_id;
10321 	void function(GtkWindow* window, const(char)* title) c_gtk_window_set_title;
10322 	void function(GtkWindow* window, GtkWidget* titlebar) c_gtk_window_set_titlebar;
10323 	void function(GtkWindow* window, GtkWindow* parent) c_gtk_window_set_transient_for;
10324 	void function(GtkWindow* window, GdkWindowTypeHint hint) c_gtk_window_set_type_hint;
10325 	void function(GtkWindow* window, int setting) c_gtk_window_set_urgency_hint;
10326 	void function(GtkWindow* window, const(char)* wmclassName, const(char)* wmclassClass) c_gtk_window_set_wmclass;
10327 	void function(GtkWindow* window) c_gtk_window_stick;
10328 	void function(GtkWindow* window) c_gtk_window_unfullscreen;
10329 	void function(GtkWindow* window) c_gtk_window_unmaximize;
10330 	void function(GtkWindow* window) c_gtk_window_unstick;
10331 	int function(GtkWindow* parent, const(char)* uri, uint timestamp, GError** err) c_gtk_show_uri_on_window;
10332 
10333 	// gtk.WindowAccessible
10334 
10335 	GType function() c_gtk_window_accessible_get_type;
10336 
10337 	// gtk.WindowGroup
10338 
10339 	GType function() c_gtk_window_group_get_type;
10340 	GtkWindowGroup* function() c_gtk_window_group_new;
10341 	void function(GtkWindowGroup* windowGroup, GtkWindow* window) c_gtk_window_group_add_window;
10342 	GtkWidget* function(GtkWindowGroup* windowGroup, GdkDevice* device) c_gtk_window_group_get_current_device_grab;
10343 	GtkWidget* function(GtkWindowGroup* windowGroup) c_gtk_window_group_get_current_grab;
10344 	GList* function(GtkWindowGroup* windowGroup) c_gtk_window_group_list_windows;
10345 	void function(GtkWindowGroup* windowGroup, GtkWindow* window) c_gtk_window_group_remove_window;
10346 
10347 	// gtk.Main
10348 
10349 	void function(GtkWidget* widget, GdkDevice* device, int blockOthers) c_gtk_device_grab_add;
10350 	void function(GtkWidget* widget, GdkDevice* device) c_gtk_device_grab_remove;
10351 	void function() c_gtk_disable_setlocale;
10352 	int function() c_gtk_events_pending;
10353 	GdkEvent* function() c_gtk_get_current_event;
10354 	GdkDevice* function() c_gtk_get_current_event_device;
10355 	int function(GdkModifierType* state) c_gtk_get_current_event_state;
10356 	uint function() c_gtk_get_current_event_time;
10357 	uint function() c_gtk_get_debug_flags;
10358 	PangoLanguage* function() c_gtk_get_default_language;
10359 	GtkWidget* function(GdkEvent* event) c_gtk_get_event_widget;
10360 	GtkTextDirection function() c_gtk_get_locale_direction;
10361 	GOptionGroup* function(int openDefaultDisplay) c_gtk_get_option_group;
10362 	GtkWidget* function() c_gtk_grab_get_current;
10363 	void function(int* argc, char*** argv) c_gtk_init;
10364 	int function(int* argc, char*** argv) c_gtk_init_check;
10365 	int function(int* argc, char*** argv, const(char)* parameterString, GOptionEntry* entries, const(char)* translationDomain, GError** err) c_gtk_init_with_args;
10366 	uint function(GtkKeySnoopFunc snooper, void* funcData) c_gtk_key_snooper_install;
10367 	void function(uint snooperHandlerId) c_gtk_key_snooper_remove;
10368 	void function() c_gtk_main;
10369 	void function(GdkEvent* event) c_gtk_main_do_event;
10370 	int function() c_gtk_main_iteration;
10371 	int function(int blocking) c_gtk_main_iteration_do;
10372 	uint function() c_gtk_main_level;
10373 	void function() c_gtk_main_quit;
10374 	int function(int* argc, char*** argv) c_gtk_parse_args;
10375 	void function(GtkWidget* widget, GdkEvent* event) c_gtk_propagate_event;
10376 	void function(uint flags) c_gtk_set_debug_flags;
10377 
10378 	// gtk.Testing
10379 
10380 	GtkWidget* function(const(char)* windowTitle, const(char)* dialogText) c_gtk_test_create_simple_window;
10381 	GtkWidget* function(GType widgetType, const(char)* firstPropertyName, ... ) c_gtk_test_create_widget;
10382 	GtkWidget* function(const(char)* windowTitle, const(char)* dialogText, ... ) c_gtk_test_display_button_window;
10383 	GtkWidget* function(GtkWidget* widget, const(char)* labelPattern) c_gtk_test_find_label;
10384 	GtkWidget* function(GtkWidget* baseWidget, GType widgetType) c_gtk_test_find_sibling;
10385 	GtkWidget* function(GtkWidget* widget, const(char)* labelPattern, GType widgetType) c_gtk_test_find_widget;
10386 	void function(int* argcp, char*** argvp, ... ) c_gtk_test_init;
10387 	GType* function(uint* nTypes) c_gtk_test_list_all_types;
10388 	void function() c_gtk_test_register_all_types;
10389 	double function(GtkWidget* widget) c_gtk_test_slider_get_value;
10390 	void function(GtkWidget* widget, double percentage) c_gtk_test_slider_set_perc;
10391 	int function(GtkSpinButton* spinner, uint button, int upwards) c_gtk_test_spin_button_click;
10392 	char* function(GtkWidget* widget) c_gtk_test_text_get;
10393 	void function(GtkWidget* widget, const(char)* string_) c_gtk_test_text_set;
10394 	int function(GtkWidget* widget, uint button, GdkModifierType modifiers) c_gtk_test_widget_click;
10395 	int function(GtkWidget* widget, uint keyval, GdkModifierType modifiers) c_gtk_test_widget_send_key;
10396 	void function(GtkWidget* widget) c_gtk_test_widget_wait_for_draw;
10397 
10398 	// gtk.DragAndDrop
10399 
10400 	void function(GdkDragContext* context) c_gtk_drag_cancel;
10401 	void function(GdkDragContext* context, int success, int del, uint time) c_gtk_drag_finish;
10402 	GtkWidget* function(GdkDragContext* context) c_gtk_drag_get_source_widget;
10403 	void function(GdkDragContext* context) c_gtk_drag_set_icon_default;
10404 	void function(GdkDragContext* context, GIcon* icon, int hotX, int hotY) c_gtk_drag_set_icon_gicon;
10405 	void function(GdkDragContext* context, const(char)* iconName, int hotX, int hotY) c_gtk_drag_set_icon_name;
10406 	void function(GdkDragContext* context, GdkPixbuf* pixbuf, int hotX, int hotY) c_gtk_drag_set_icon_pixbuf;
10407 	void function(GdkDragContext* context, const(char)* stockId, int hotX, int hotY) c_gtk_drag_set_icon_stock;
10408 	void function(GdkDragContext* context, cairo_surface_t* surface) c_gtk_drag_set_icon_surface;
10409 	void function(GdkDragContext* context, GtkWidget* widget, int hotX, int hotY) c_gtk_drag_set_icon_widget;
10410 	void function(GtkWidget* widget, cairo_t* cr, GdkRectangle* location, int isPrimary, GtkTextDirection direction, int drawArrow) c_gtk_draw_insertion_cursor;
10411 
10412 	// gtk.IconSize
10413 
10414 	GtkIconSize function(const(char)* name) c_gtk_icon_size_from_name;
10415 	const(char)* function(GtkIconSize size) c_gtk_icon_size_get_name;
10416 	int function(GtkIconSize size, int* width, int* height) c_gtk_icon_size_lookup;
10417 	int function(GtkSettings* settings, GtkIconSize size, int* width, int* height) c_gtk_icon_size_lookup_for_settings;
10418 	GtkIconSize function(const(char)* name, int width, int height) c_gtk_icon_size_register;
10419 	void function(const(char)* alias_, GtkIconSize target) c_gtk_icon_size_register_alias;
10420 
10421 	// gtk.Version
10422 
10423 	const(char)* function(uint requiredMajor, uint requiredMinor, uint requiredMicro) c_gtk_check_version;
10424 	uint function() c_gtk_get_binary_age;
10425 	uint function() c_gtk_get_interface_age;
10426 	uint function() c_gtk_get_major_version;
10427 	uint function() c_gtk_get_micro_version;
10428 	uint function() c_gtk_get_minor_version;
10429 }
10430 
10431 
10432 // gtk.AboutDialog
10433 
10434 alias c_gtk_about_dialog_get_type gtk_about_dialog_get_type;
10435 alias c_gtk_about_dialog_new gtk_about_dialog_new;
10436 alias c_gtk_about_dialog_add_credit_section gtk_about_dialog_add_credit_section;
10437 alias c_gtk_about_dialog_get_artists gtk_about_dialog_get_artists;
10438 alias c_gtk_about_dialog_get_authors gtk_about_dialog_get_authors;
10439 alias c_gtk_about_dialog_get_comments gtk_about_dialog_get_comments;
10440 alias c_gtk_about_dialog_get_copyright gtk_about_dialog_get_copyright;
10441 alias c_gtk_about_dialog_get_documenters gtk_about_dialog_get_documenters;
10442 alias c_gtk_about_dialog_get_license gtk_about_dialog_get_license;
10443 alias c_gtk_about_dialog_get_license_type gtk_about_dialog_get_license_type;
10444 alias c_gtk_about_dialog_get_logo gtk_about_dialog_get_logo;
10445 alias c_gtk_about_dialog_get_logo_icon_name gtk_about_dialog_get_logo_icon_name;
10446 alias c_gtk_about_dialog_get_program_name gtk_about_dialog_get_program_name;
10447 alias c_gtk_about_dialog_get_translator_credits gtk_about_dialog_get_translator_credits;
10448 alias c_gtk_about_dialog_get_version gtk_about_dialog_get_version;
10449 alias c_gtk_about_dialog_get_website gtk_about_dialog_get_website;
10450 alias c_gtk_about_dialog_get_website_label gtk_about_dialog_get_website_label;
10451 alias c_gtk_about_dialog_get_wrap_license gtk_about_dialog_get_wrap_license;
10452 alias c_gtk_about_dialog_set_artists gtk_about_dialog_set_artists;
10453 alias c_gtk_about_dialog_set_authors gtk_about_dialog_set_authors;
10454 alias c_gtk_about_dialog_set_comments gtk_about_dialog_set_comments;
10455 alias c_gtk_about_dialog_set_copyright gtk_about_dialog_set_copyright;
10456 alias c_gtk_about_dialog_set_documenters gtk_about_dialog_set_documenters;
10457 alias c_gtk_about_dialog_set_license gtk_about_dialog_set_license;
10458 alias c_gtk_about_dialog_set_license_type gtk_about_dialog_set_license_type;
10459 alias c_gtk_about_dialog_set_logo gtk_about_dialog_set_logo;
10460 alias c_gtk_about_dialog_set_logo_icon_name gtk_about_dialog_set_logo_icon_name;
10461 alias c_gtk_about_dialog_set_program_name gtk_about_dialog_set_program_name;
10462 alias c_gtk_about_dialog_set_translator_credits gtk_about_dialog_set_translator_credits;
10463 alias c_gtk_about_dialog_set_version gtk_about_dialog_set_version;
10464 alias c_gtk_about_dialog_set_website gtk_about_dialog_set_website;
10465 alias c_gtk_about_dialog_set_website_label gtk_about_dialog_set_website_label;
10466 alias c_gtk_about_dialog_set_wrap_license gtk_about_dialog_set_wrap_license;
10467 alias c_gtk_show_about_dialog gtk_show_about_dialog;
10468 
10469 // gtk.AccelGroup
10470 
10471 alias c_gtk_accel_group_get_type gtk_accel_group_get_type;
10472 alias c_gtk_accel_group_new gtk_accel_group_new;
10473 alias c_gtk_accel_group_from_accel_closure gtk_accel_group_from_accel_closure;
10474 alias c_gtk_accel_group_activate gtk_accel_group_activate;
10475 alias c_gtk_accel_group_connect gtk_accel_group_connect;
10476 alias c_gtk_accel_group_connect_by_path gtk_accel_group_connect_by_path;
10477 alias c_gtk_accel_group_disconnect gtk_accel_group_disconnect;
10478 alias c_gtk_accel_group_disconnect_key gtk_accel_group_disconnect_key;
10479 alias c_gtk_accel_group_find gtk_accel_group_find;
10480 alias c_gtk_accel_group_get_is_locked gtk_accel_group_get_is_locked;
10481 alias c_gtk_accel_group_get_modifier_mask gtk_accel_group_get_modifier_mask;
10482 alias c_gtk_accel_group_lock gtk_accel_group_lock;
10483 alias c_gtk_accel_group_query gtk_accel_group_query;
10484 alias c_gtk_accel_group_unlock gtk_accel_group_unlock;
10485 alias c_gtk_accel_groups_activate gtk_accel_groups_activate;
10486 alias c_gtk_accel_groups_from_object gtk_accel_groups_from_object;
10487 alias c_gtk_accelerator_get_default_mod_mask gtk_accelerator_get_default_mod_mask;
10488 alias c_gtk_accelerator_get_label gtk_accelerator_get_label;
10489 alias c_gtk_accelerator_get_label_with_keycode gtk_accelerator_get_label_with_keycode;
10490 alias c_gtk_accelerator_name gtk_accelerator_name;
10491 alias c_gtk_accelerator_name_with_keycode gtk_accelerator_name_with_keycode;
10492 alias c_gtk_accelerator_parse gtk_accelerator_parse;
10493 alias c_gtk_accelerator_parse_with_keycode gtk_accelerator_parse_with_keycode;
10494 alias c_gtk_accelerator_set_default_mod_mask gtk_accelerator_set_default_mod_mask;
10495 alias c_gtk_accelerator_valid gtk_accelerator_valid;
10496 
10497 // gtk.AccelLabel
10498 
10499 alias c_gtk_accel_label_get_type gtk_accel_label_get_type;
10500 alias c_gtk_accel_label_new gtk_accel_label_new;
10501 alias c_gtk_accel_label_get_accel gtk_accel_label_get_accel;
10502 alias c_gtk_accel_label_get_accel_widget gtk_accel_label_get_accel_widget;
10503 alias c_gtk_accel_label_get_accel_width gtk_accel_label_get_accel_width;
10504 alias c_gtk_accel_label_refetch gtk_accel_label_refetch;
10505 alias c_gtk_accel_label_set_accel gtk_accel_label_set_accel;
10506 alias c_gtk_accel_label_set_accel_closure gtk_accel_label_set_accel_closure;
10507 alias c_gtk_accel_label_set_accel_widget gtk_accel_label_set_accel_widget;
10508 
10509 // gtk.AccelMap
10510 
10511 alias c_gtk_accel_map_get_type gtk_accel_map_get_type;
10512 alias c_gtk_accel_map_add_entry gtk_accel_map_add_entry;
10513 alias c_gtk_accel_map_add_filter gtk_accel_map_add_filter;
10514 alias c_gtk_accel_map_change_entry gtk_accel_map_change_entry;
10515 alias c_gtk_accel_map_foreach gtk_accel_map_foreach;
10516 alias c_gtk_accel_map_foreach_unfiltered gtk_accel_map_foreach_unfiltered;
10517 alias c_gtk_accel_map_get gtk_accel_map_get;
10518 alias c_gtk_accel_map_load gtk_accel_map_load;
10519 alias c_gtk_accel_map_load_fd gtk_accel_map_load_fd;
10520 alias c_gtk_accel_map_load_scanner gtk_accel_map_load_scanner;
10521 alias c_gtk_accel_map_lock_path gtk_accel_map_lock_path;
10522 alias c_gtk_accel_map_lookup_entry gtk_accel_map_lookup_entry;
10523 alias c_gtk_accel_map_save gtk_accel_map_save;
10524 alias c_gtk_accel_map_save_fd gtk_accel_map_save_fd;
10525 alias c_gtk_accel_map_unlock_path gtk_accel_map_unlock_path;
10526 
10527 // gtk.Accessible
10528 
10529 alias c_gtk_accessible_get_type gtk_accessible_get_type;
10530 alias c_gtk_accessible_connect_widget_destroyed gtk_accessible_connect_widget_destroyed;
10531 alias c_gtk_accessible_get_widget gtk_accessible_get_widget;
10532 alias c_gtk_accessible_set_widget gtk_accessible_set_widget;
10533 
10534 // gtk.Action
10535 
10536 alias c_gtk_action_get_type gtk_action_get_type;
10537 alias c_gtk_action_new gtk_action_new;
10538 alias c_gtk_action_activate gtk_action_activate;
10539 alias c_gtk_action_block_activate gtk_action_block_activate;
10540 alias c_gtk_action_connect_accelerator gtk_action_connect_accelerator;
10541 alias c_gtk_action_create_icon gtk_action_create_icon;
10542 alias c_gtk_action_create_menu gtk_action_create_menu;
10543 alias c_gtk_action_create_menu_item gtk_action_create_menu_item;
10544 alias c_gtk_action_create_tool_item gtk_action_create_tool_item;
10545 alias c_gtk_action_disconnect_accelerator gtk_action_disconnect_accelerator;
10546 alias c_gtk_action_get_accel_closure gtk_action_get_accel_closure;
10547 alias c_gtk_action_get_accel_path gtk_action_get_accel_path;
10548 alias c_gtk_action_get_always_show_image gtk_action_get_always_show_image;
10549 alias c_gtk_action_get_gicon gtk_action_get_gicon;
10550 alias c_gtk_action_get_icon_name gtk_action_get_icon_name;
10551 alias c_gtk_action_get_is_important gtk_action_get_is_important;
10552 alias c_gtk_action_get_label gtk_action_get_label;
10553 alias c_gtk_action_get_name gtk_action_get_name;
10554 alias c_gtk_action_get_proxies gtk_action_get_proxies;
10555 alias c_gtk_action_get_sensitive gtk_action_get_sensitive;
10556 alias c_gtk_action_get_short_label gtk_action_get_short_label;
10557 alias c_gtk_action_get_stock_id gtk_action_get_stock_id;
10558 alias c_gtk_action_get_tooltip gtk_action_get_tooltip;
10559 alias c_gtk_action_get_visible gtk_action_get_visible;
10560 alias c_gtk_action_get_visible_horizontal gtk_action_get_visible_horizontal;
10561 alias c_gtk_action_get_visible_vertical gtk_action_get_visible_vertical;
10562 alias c_gtk_action_is_sensitive gtk_action_is_sensitive;
10563 alias c_gtk_action_is_visible gtk_action_is_visible;
10564 alias c_gtk_action_set_accel_group gtk_action_set_accel_group;
10565 alias c_gtk_action_set_accel_path gtk_action_set_accel_path;
10566 alias c_gtk_action_set_always_show_image gtk_action_set_always_show_image;
10567 alias c_gtk_action_set_gicon gtk_action_set_gicon;
10568 alias c_gtk_action_set_icon_name gtk_action_set_icon_name;
10569 alias c_gtk_action_set_is_important gtk_action_set_is_important;
10570 alias c_gtk_action_set_label gtk_action_set_label;
10571 alias c_gtk_action_set_sensitive gtk_action_set_sensitive;
10572 alias c_gtk_action_set_short_label gtk_action_set_short_label;
10573 alias c_gtk_action_set_stock_id gtk_action_set_stock_id;
10574 alias c_gtk_action_set_tooltip gtk_action_set_tooltip;
10575 alias c_gtk_action_set_visible gtk_action_set_visible;
10576 alias c_gtk_action_set_visible_horizontal gtk_action_set_visible_horizontal;
10577 alias c_gtk_action_set_visible_vertical gtk_action_set_visible_vertical;
10578 alias c_gtk_action_unblock_activate gtk_action_unblock_activate;
10579 
10580 // gtk.ActionBar
10581 
10582 alias c_gtk_action_bar_get_type gtk_action_bar_get_type;
10583 alias c_gtk_action_bar_new gtk_action_bar_new;
10584 alias c_gtk_action_bar_get_center_widget gtk_action_bar_get_center_widget;
10585 alias c_gtk_action_bar_pack_end gtk_action_bar_pack_end;
10586 alias c_gtk_action_bar_pack_start gtk_action_bar_pack_start;
10587 alias c_gtk_action_bar_set_center_widget gtk_action_bar_set_center_widget;
10588 
10589 // gtk.ActionGroup
10590 
10591 alias c_gtk_action_group_get_type gtk_action_group_get_type;
10592 alias c_gtk_action_group_new gtk_action_group_new;
10593 alias c_gtk_action_group_add_action gtk_action_group_add_action;
10594 alias c_gtk_action_group_add_action_with_accel gtk_action_group_add_action_with_accel;
10595 alias c_gtk_action_group_add_actions gtk_action_group_add_actions;
10596 alias c_gtk_action_group_add_actions_full gtk_action_group_add_actions_full;
10597 alias c_gtk_action_group_add_radio_actions gtk_action_group_add_radio_actions;
10598 alias c_gtk_action_group_add_radio_actions_full gtk_action_group_add_radio_actions_full;
10599 alias c_gtk_action_group_add_toggle_actions gtk_action_group_add_toggle_actions;
10600 alias c_gtk_action_group_add_toggle_actions_full gtk_action_group_add_toggle_actions_full;
10601 alias c_gtk_action_group_get_accel_group gtk_action_group_get_accel_group;
10602 alias c_gtk_action_group_get_action gtk_action_group_get_action;
10603 alias c_gtk_action_group_get_name gtk_action_group_get_name;
10604 alias c_gtk_action_group_get_sensitive gtk_action_group_get_sensitive;
10605 alias c_gtk_action_group_get_visible gtk_action_group_get_visible;
10606 alias c_gtk_action_group_list_actions gtk_action_group_list_actions;
10607 alias c_gtk_action_group_remove_action gtk_action_group_remove_action;
10608 alias c_gtk_action_group_set_accel_group gtk_action_group_set_accel_group;
10609 alias c_gtk_action_group_set_sensitive gtk_action_group_set_sensitive;
10610 alias c_gtk_action_group_set_translate_func gtk_action_group_set_translate_func;
10611 alias c_gtk_action_group_set_translation_domain gtk_action_group_set_translation_domain;
10612 alias c_gtk_action_group_set_visible gtk_action_group_set_visible;
10613 alias c_gtk_action_group_translate_string gtk_action_group_translate_string;
10614 
10615 // gtk.Actionable
10616 
10617 alias c_gtk_actionable_get_type gtk_actionable_get_type;
10618 alias c_gtk_actionable_get_action_name gtk_actionable_get_action_name;
10619 alias c_gtk_actionable_get_action_target_value gtk_actionable_get_action_target_value;
10620 alias c_gtk_actionable_set_action_name gtk_actionable_set_action_name;
10621 alias c_gtk_actionable_set_action_target gtk_actionable_set_action_target;
10622 alias c_gtk_actionable_set_action_target_value gtk_actionable_set_action_target_value;
10623 alias c_gtk_actionable_set_detailed_action_name gtk_actionable_set_detailed_action_name;
10624 
10625 // gtk.Activatable
10626 
10627 alias c_gtk_activatable_get_type gtk_activatable_get_type;
10628 alias c_gtk_activatable_do_set_related_action gtk_activatable_do_set_related_action;
10629 alias c_gtk_activatable_get_related_action gtk_activatable_get_related_action;
10630 alias c_gtk_activatable_get_use_action_appearance gtk_activatable_get_use_action_appearance;
10631 alias c_gtk_activatable_set_related_action gtk_activatable_set_related_action;
10632 alias c_gtk_activatable_set_use_action_appearance gtk_activatable_set_use_action_appearance;
10633 alias c_gtk_activatable_sync_action_properties gtk_activatable_sync_action_properties;
10634 
10635 // gtk.Adjustment
10636 
10637 alias c_gtk_adjustment_get_type gtk_adjustment_get_type;
10638 alias c_gtk_adjustment_new gtk_adjustment_new;
10639 alias c_gtk_adjustment_changed gtk_adjustment_changed;
10640 alias c_gtk_adjustment_clamp_page gtk_adjustment_clamp_page;
10641 alias c_gtk_adjustment_configure gtk_adjustment_configure;
10642 alias c_gtk_adjustment_get_lower gtk_adjustment_get_lower;
10643 alias c_gtk_adjustment_get_minimum_increment gtk_adjustment_get_minimum_increment;
10644 alias c_gtk_adjustment_get_page_increment gtk_adjustment_get_page_increment;
10645 alias c_gtk_adjustment_get_page_size gtk_adjustment_get_page_size;
10646 alias c_gtk_adjustment_get_step_increment gtk_adjustment_get_step_increment;
10647 alias c_gtk_adjustment_get_upper gtk_adjustment_get_upper;
10648 alias c_gtk_adjustment_get_value gtk_adjustment_get_value;
10649 alias c_gtk_adjustment_set_lower gtk_adjustment_set_lower;
10650 alias c_gtk_adjustment_set_page_increment gtk_adjustment_set_page_increment;
10651 alias c_gtk_adjustment_set_page_size gtk_adjustment_set_page_size;
10652 alias c_gtk_adjustment_set_step_increment gtk_adjustment_set_step_increment;
10653 alias c_gtk_adjustment_set_upper gtk_adjustment_set_upper;
10654 alias c_gtk_adjustment_set_value gtk_adjustment_set_value;
10655 alias c_gtk_adjustment_value_changed gtk_adjustment_value_changed;
10656 
10657 // gtk.Alignment
10658 
10659 alias c_gtk_alignment_get_type gtk_alignment_get_type;
10660 alias c_gtk_alignment_new gtk_alignment_new;
10661 alias c_gtk_alignment_get_padding gtk_alignment_get_padding;
10662 alias c_gtk_alignment_set gtk_alignment_set;
10663 alias c_gtk_alignment_set_padding gtk_alignment_set_padding;
10664 
10665 // gtk.AppChooser
10666 
10667 alias c_gtk_app_chooser_get_type gtk_app_chooser_get_type;
10668 alias c_gtk_app_chooser_get_app_info gtk_app_chooser_get_app_info;
10669 alias c_gtk_app_chooser_get_content_type gtk_app_chooser_get_content_type;
10670 alias c_gtk_app_chooser_refresh gtk_app_chooser_refresh;
10671 
10672 // gtk.AppChooserButton
10673 
10674 alias c_gtk_app_chooser_button_get_type gtk_app_chooser_button_get_type;
10675 alias c_gtk_app_chooser_button_new gtk_app_chooser_button_new;
10676 alias c_gtk_app_chooser_button_append_custom_item gtk_app_chooser_button_append_custom_item;
10677 alias c_gtk_app_chooser_button_append_separator gtk_app_chooser_button_append_separator;
10678 alias c_gtk_app_chooser_button_get_heading gtk_app_chooser_button_get_heading;
10679 alias c_gtk_app_chooser_button_get_show_default_item gtk_app_chooser_button_get_show_default_item;
10680 alias c_gtk_app_chooser_button_get_show_dialog_item gtk_app_chooser_button_get_show_dialog_item;
10681 alias c_gtk_app_chooser_button_set_active_custom_item gtk_app_chooser_button_set_active_custom_item;
10682 alias c_gtk_app_chooser_button_set_heading gtk_app_chooser_button_set_heading;
10683 alias c_gtk_app_chooser_button_set_show_default_item gtk_app_chooser_button_set_show_default_item;
10684 alias c_gtk_app_chooser_button_set_show_dialog_item gtk_app_chooser_button_set_show_dialog_item;
10685 
10686 // gtk.AppChooserDialog
10687 
10688 alias c_gtk_app_chooser_dialog_get_type gtk_app_chooser_dialog_get_type;
10689 alias c_gtk_app_chooser_dialog_new gtk_app_chooser_dialog_new;
10690 alias c_gtk_app_chooser_dialog_new_for_content_type gtk_app_chooser_dialog_new_for_content_type;
10691 alias c_gtk_app_chooser_dialog_get_heading gtk_app_chooser_dialog_get_heading;
10692 alias c_gtk_app_chooser_dialog_get_widget gtk_app_chooser_dialog_get_widget;
10693 alias c_gtk_app_chooser_dialog_set_heading gtk_app_chooser_dialog_set_heading;
10694 
10695 // gtk.AppChooserWidget
10696 
10697 alias c_gtk_app_chooser_widget_get_type gtk_app_chooser_widget_get_type;
10698 alias c_gtk_app_chooser_widget_new gtk_app_chooser_widget_new;
10699 alias c_gtk_app_chooser_widget_get_default_text gtk_app_chooser_widget_get_default_text;
10700 alias c_gtk_app_chooser_widget_get_show_all gtk_app_chooser_widget_get_show_all;
10701 alias c_gtk_app_chooser_widget_get_show_default gtk_app_chooser_widget_get_show_default;
10702 alias c_gtk_app_chooser_widget_get_show_fallback gtk_app_chooser_widget_get_show_fallback;
10703 alias c_gtk_app_chooser_widget_get_show_other gtk_app_chooser_widget_get_show_other;
10704 alias c_gtk_app_chooser_widget_get_show_recommended gtk_app_chooser_widget_get_show_recommended;
10705 alias c_gtk_app_chooser_widget_set_default_text gtk_app_chooser_widget_set_default_text;
10706 alias c_gtk_app_chooser_widget_set_show_all gtk_app_chooser_widget_set_show_all;
10707 alias c_gtk_app_chooser_widget_set_show_default gtk_app_chooser_widget_set_show_default;
10708 alias c_gtk_app_chooser_widget_set_show_fallback gtk_app_chooser_widget_set_show_fallback;
10709 alias c_gtk_app_chooser_widget_set_show_other gtk_app_chooser_widget_set_show_other;
10710 alias c_gtk_app_chooser_widget_set_show_recommended gtk_app_chooser_widget_set_show_recommended;
10711 
10712 // gtk.Application
10713 
10714 alias c_gtk_application_get_type gtk_application_get_type;
10715 alias c_gtk_application_new gtk_application_new;
10716 alias c_gtk_application_add_accelerator gtk_application_add_accelerator;
10717 alias c_gtk_application_add_window gtk_application_add_window;
10718 alias c_gtk_application_get_accels_for_action gtk_application_get_accels_for_action;
10719 alias c_gtk_application_get_actions_for_accel gtk_application_get_actions_for_accel;
10720 alias c_gtk_application_get_active_window gtk_application_get_active_window;
10721 alias c_gtk_application_get_app_menu gtk_application_get_app_menu;
10722 alias c_gtk_application_get_menu_by_id gtk_application_get_menu_by_id;
10723 alias c_gtk_application_get_menubar gtk_application_get_menubar;
10724 alias c_gtk_application_get_window_by_id gtk_application_get_window_by_id;
10725 alias c_gtk_application_get_windows gtk_application_get_windows;
10726 alias c_gtk_application_inhibit gtk_application_inhibit;
10727 alias c_gtk_application_is_inhibited gtk_application_is_inhibited;
10728 alias c_gtk_application_list_action_descriptions gtk_application_list_action_descriptions;
10729 alias c_gtk_application_prefers_app_menu gtk_application_prefers_app_menu;
10730 alias c_gtk_application_remove_accelerator gtk_application_remove_accelerator;
10731 alias c_gtk_application_remove_window gtk_application_remove_window;
10732 alias c_gtk_application_set_accels_for_action gtk_application_set_accels_for_action;
10733 alias c_gtk_application_set_app_menu gtk_application_set_app_menu;
10734 alias c_gtk_application_set_menubar gtk_application_set_menubar;
10735 alias c_gtk_application_uninhibit gtk_application_uninhibit;
10736 
10737 // gtk.ApplicationWindow
10738 
10739 alias c_gtk_application_window_get_type gtk_application_window_get_type;
10740 alias c_gtk_application_window_new gtk_application_window_new;
10741 alias c_gtk_application_window_get_help_overlay gtk_application_window_get_help_overlay;
10742 alias c_gtk_application_window_get_id gtk_application_window_get_id;
10743 alias c_gtk_application_window_get_show_menubar gtk_application_window_get_show_menubar;
10744 alias c_gtk_application_window_set_help_overlay gtk_application_window_set_help_overlay;
10745 alias c_gtk_application_window_set_show_menubar gtk_application_window_set_show_menubar;
10746 
10747 // gtk.Arrow
10748 
10749 alias c_gtk_arrow_get_type gtk_arrow_get_type;
10750 alias c_gtk_arrow_new gtk_arrow_new;
10751 alias c_gtk_arrow_set gtk_arrow_set;
10752 
10753 // gtk.ArrowAccessible
10754 
10755 alias c_gtk_arrow_accessible_get_type gtk_arrow_accessible_get_type;
10756 
10757 // gtk.AspectFrame
10758 
10759 alias c_gtk_aspect_frame_get_type gtk_aspect_frame_get_type;
10760 alias c_gtk_aspect_frame_new gtk_aspect_frame_new;
10761 alias c_gtk_aspect_frame_set gtk_aspect_frame_set;
10762 
10763 // gtk.Assistant
10764 
10765 alias c_gtk_assistant_get_type gtk_assistant_get_type;
10766 alias c_gtk_assistant_new gtk_assistant_new;
10767 alias c_gtk_assistant_add_action_widget gtk_assistant_add_action_widget;
10768 alias c_gtk_assistant_append_page gtk_assistant_append_page;
10769 alias c_gtk_assistant_commit gtk_assistant_commit;
10770 alias c_gtk_assistant_get_current_page gtk_assistant_get_current_page;
10771 alias c_gtk_assistant_get_n_pages gtk_assistant_get_n_pages;
10772 alias c_gtk_assistant_get_nth_page gtk_assistant_get_nth_page;
10773 alias c_gtk_assistant_get_page_complete gtk_assistant_get_page_complete;
10774 alias c_gtk_assistant_get_page_has_padding gtk_assistant_get_page_has_padding;
10775 alias c_gtk_assistant_get_page_header_image gtk_assistant_get_page_header_image;
10776 alias c_gtk_assistant_get_page_side_image gtk_assistant_get_page_side_image;
10777 alias c_gtk_assistant_get_page_title gtk_assistant_get_page_title;
10778 alias c_gtk_assistant_get_page_type gtk_assistant_get_page_type;
10779 alias c_gtk_assistant_insert_page gtk_assistant_insert_page;
10780 alias c_gtk_assistant_next_page gtk_assistant_next_page;
10781 alias c_gtk_assistant_prepend_page gtk_assistant_prepend_page;
10782 alias c_gtk_assistant_previous_page gtk_assistant_previous_page;
10783 alias c_gtk_assistant_remove_action_widget gtk_assistant_remove_action_widget;
10784 alias c_gtk_assistant_remove_page gtk_assistant_remove_page;
10785 alias c_gtk_assistant_set_current_page gtk_assistant_set_current_page;
10786 alias c_gtk_assistant_set_forward_page_func gtk_assistant_set_forward_page_func;
10787 alias c_gtk_assistant_set_page_complete gtk_assistant_set_page_complete;
10788 alias c_gtk_assistant_set_page_has_padding gtk_assistant_set_page_has_padding;
10789 alias c_gtk_assistant_set_page_header_image gtk_assistant_set_page_header_image;
10790 alias c_gtk_assistant_set_page_side_image gtk_assistant_set_page_side_image;
10791 alias c_gtk_assistant_set_page_title gtk_assistant_set_page_title;
10792 alias c_gtk_assistant_set_page_type gtk_assistant_set_page_type;
10793 alias c_gtk_assistant_update_buttons_state gtk_assistant_update_buttons_state;
10794 
10795 // gtk.Bin
10796 
10797 alias c_gtk_bin_get_type gtk_bin_get_type;
10798 alias c_gtk_bin_get_child gtk_bin_get_child;
10799 
10800 // gtk.BindingEntry
10801 
10802 alias c_gtk_binding_entry_add_signal gtk_binding_entry_add_signal;
10803 alias c_gtk_binding_entry_add_signal_from_string gtk_binding_entry_add_signal_from_string;
10804 alias c_gtk_binding_entry_add_signall gtk_binding_entry_add_signall;
10805 alias c_gtk_binding_entry_remove gtk_binding_entry_remove;
10806 alias c_gtk_binding_entry_skip gtk_binding_entry_skip;
10807 
10808 // gtk.BindingSet
10809 
10810 alias c_gtk_binding_set_activate gtk_binding_set_activate;
10811 alias c_gtk_binding_set_add_path gtk_binding_set_add_path;
10812 alias c_gtk_binding_set_by_class gtk_binding_set_by_class;
10813 alias c_gtk_binding_set_find gtk_binding_set_find;
10814 alias c_gtk_binding_set_new gtk_binding_set_new;
10815 alias c_gtk_bindings_activate gtk_bindings_activate;
10816 alias c_gtk_bindings_activate_event gtk_bindings_activate_event;
10817 
10818 // gtk.BooleanCellAccessible
10819 
10820 alias c_gtk_boolean_cell_accessible_get_type gtk_boolean_cell_accessible_get_type;
10821 
10822 // gtk.Border
10823 
10824 alias c_gtk_border_get_type gtk_border_get_type;
10825 alias c_gtk_border_new gtk_border_new;
10826 alias c_gtk_border_copy gtk_border_copy;
10827 alias c_gtk_border_free gtk_border_free;
10828 
10829 // gtk.Box
10830 
10831 alias c_gtk_box_get_type gtk_box_get_type;
10832 alias c_gtk_box_new gtk_box_new;
10833 alias c_gtk_box_get_baseline_position gtk_box_get_baseline_position;
10834 alias c_gtk_box_get_center_widget gtk_box_get_center_widget;
10835 alias c_gtk_box_get_homogeneous gtk_box_get_homogeneous;
10836 alias c_gtk_box_get_spacing gtk_box_get_spacing;
10837 alias c_gtk_box_pack_end gtk_box_pack_end;
10838 alias c_gtk_box_pack_start gtk_box_pack_start;
10839 alias c_gtk_box_query_child_packing gtk_box_query_child_packing;
10840 alias c_gtk_box_reorder_child gtk_box_reorder_child;
10841 alias c_gtk_box_set_baseline_position gtk_box_set_baseline_position;
10842 alias c_gtk_box_set_center_widget gtk_box_set_center_widget;
10843 alias c_gtk_box_set_child_packing gtk_box_set_child_packing;
10844 alias c_gtk_box_set_homogeneous gtk_box_set_homogeneous;
10845 alias c_gtk_box_set_spacing gtk_box_set_spacing;
10846 
10847 // gtk.Buildable
10848 
10849 alias c_gtk_buildable_get_type gtk_buildable_get_type;
10850 alias c_gtk_buildable_add_child gtk_buildable_add_child;
10851 alias c_gtk_buildable_construct_child gtk_buildable_construct_child;
10852 alias c_gtk_buildable_custom_finished gtk_buildable_custom_finished;
10853 alias c_gtk_buildable_custom_tag_end gtk_buildable_custom_tag_end;
10854 alias c_gtk_buildable_custom_tag_start gtk_buildable_custom_tag_start;
10855 alias c_gtk_buildable_get_internal_child gtk_buildable_get_internal_child;
10856 alias c_gtk_buildable_get_name gtk_buildable_get_name;
10857 alias c_gtk_buildable_parser_finished gtk_buildable_parser_finished;
10858 alias c_gtk_buildable_set_buildable_property gtk_buildable_set_buildable_property;
10859 alias c_gtk_buildable_set_name gtk_buildable_set_name;
10860 
10861 // gtk.Builder
10862 
10863 alias c_gtk_builder_get_type gtk_builder_get_type;
10864 alias c_gtk_builder_new gtk_builder_new;
10865 alias c_gtk_builder_new_from_file gtk_builder_new_from_file;
10866 alias c_gtk_builder_new_from_resource gtk_builder_new_from_resource;
10867 alias c_gtk_builder_new_from_string gtk_builder_new_from_string;
10868 alias c_gtk_builder_add_callback_symbol gtk_builder_add_callback_symbol;
10869 alias c_gtk_builder_add_callback_symbols gtk_builder_add_callback_symbols;
10870 alias c_gtk_builder_add_from_file gtk_builder_add_from_file;
10871 alias c_gtk_builder_add_from_resource gtk_builder_add_from_resource;
10872 alias c_gtk_builder_add_from_string gtk_builder_add_from_string;
10873 alias c_gtk_builder_add_objects_from_file gtk_builder_add_objects_from_file;
10874 alias c_gtk_builder_add_objects_from_resource gtk_builder_add_objects_from_resource;
10875 alias c_gtk_builder_add_objects_from_string gtk_builder_add_objects_from_string;
10876 alias c_gtk_builder_connect_signals gtk_builder_connect_signals;
10877 alias c_gtk_builder_connect_signals_full gtk_builder_connect_signals_full;
10878 alias c_gtk_builder_expose_object gtk_builder_expose_object;
10879 alias c_gtk_builder_extend_with_template gtk_builder_extend_with_template;
10880 alias c_gtk_builder_get_application gtk_builder_get_application;
10881 alias c_gtk_builder_get_object gtk_builder_get_object;
10882 alias c_gtk_builder_get_objects gtk_builder_get_objects;
10883 alias c_gtk_builder_get_translation_domain gtk_builder_get_translation_domain;
10884 alias c_gtk_builder_get_type_from_name gtk_builder_get_type_from_name;
10885 alias c_gtk_builder_lookup_callback_symbol gtk_builder_lookup_callback_symbol;
10886 alias c_gtk_builder_set_application gtk_builder_set_application;
10887 alias c_gtk_builder_set_translation_domain gtk_builder_set_translation_domain;
10888 alias c_gtk_builder_value_from_string gtk_builder_value_from_string;
10889 alias c_gtk_builder_value_from_string_type gtk_builder_value_from_string_type;
10890 
10891 // gtk.Button
10892 
10893 alias c_gtk_button_get_type gtk_button_get_type;
10894 alias c_gtk_button_new gtk_button_new;
10895 alias c_gtk_button_new_from_icon_name gtk_button_new_from_icon_name;
10896 alias c_gtk_button_new_from_stock gtk_button_new_from_stock;
10897 alias c_gtk_button_new_with_label gtk_button_new_with_label;
10898 alias c_gtk_button_new_with_mnemonic gtk_button_new_with_mnemonic;
10899 alias c_gtk_button_clicked gtk_button_clicked;
10900 alias c_gtk_button_enter gtk_button_enter;
10901 alias c_gtk_button_get_alignment gtk_button_get_alignment;
10902 alias c_gtk_button_get_always_show_image gtk_button_get_always_show_image;
10903 alias c_gtk_button_get_event_window gtk_button_get_event_window;
10904 alias c_gtk_button_get_focus_on_click gtk_button_get_focus_on_click;
10905 alias c_gtk_button_get_image gtk_button_get_image;
10906 alias c_gtk_button_get_image_position gtk_button_get_image_position;
10907 alias c_gtk_button_get_label gtk_button_get_label;
10908 alias c_gtk_button_get_relief gtk_button_get_relief;
10909 alias c_gtk_button_get_use_stock gtk_button_get_use_stock;
10910 alias c_gtk_button_get_use_underline gtk_button_get_use_underline;
10911 alias c_gtk_button_leave gtk_button_leave;
10912 alias c_gtk_button_pressed gtk_button_pressed;
10913 alias c_gtk_button_released gtk_button_released;
10914 alias c_gtk_button_set_alignment gtk_button_set_alignment;
10915 alias c_gtk_button_set_always_show_image gtk_button_set_always_show_image;
10916 alias c_gtk_button_set_focus_on_click gtk_button_set_focus_on_click;
10917 alias c_gtk_button_set_image gtk_button_set_image;
10918 alias c_gtk_button_set_image_position gtk_button_set_image_position;
10919 alias c_gtk_button_set_label gtk_button_set_label;
10920 alias c_gtk_button_set_relief gtk_button_set_relief;
10921 alias c_gtk_button_set_use_stock gtk_button_set_use_stock;
10922 alias c_gtk_button_set_use_underline gtk_button_set_use_underline;
10923 
10924 // gtk.ButtonAccessible
10925 
10926 alias c_gtk_button_accessible_get_type gtk_button_accessible_get_type;
10927 
10928 // gtk.ButtonBox
10929 
10930 alias c_gtk_button_box_get_type gtk_button_box_get_type;
10931 alias c_gtk_button_box_new gtk_button_box_new;
10932 alias c_gtk_button_box_get_child_non_homogeneous gtk_button_box_get_child_non_homogeneous;
10933 alias c_gtk_button_box_get_child_secondary gtk_button_box_get_child_secondary;
10934 alias c_gtk_button_box_get_layout gtk_button_box_get_layout;
10935 alias c_gtk_button_box_set_child_non_homogeneous gtk_button_box_set_child_non_homogeneous;
10936 alias c_gtk_button_box_set_child_secondary gtk_button_box_set_child_secondary;
10937 alias c_gtk_button_box_set_layout gtk_button_box_set_layout;
10938 
10939 // gtk.Calendar
10940 
10941 alias c_gtk_calendar_get_type gtk_calendar_get_type;
10942 alias c_gtk_calendar_new gtk_calendar_new;
10943 alias c_gtk_calendar_clear_marks gtk_calendar_clear_marks;
10944 alias c_gtk_calendar_get_date gtk_calendar_get_date;
10945 alias c_gtk_calendar_get_day_is_marked gtk_calendar_get_day_is_marked;
10946 alias c_gtk_calendar_get_detail_height_rows gtk_calendar_get_detail_height_rows;
10947 alias c_gtk_calendar_get_detail_width_chars gtk_calendar_get_detail_width_chars;
10948 alias c_gtk_calendar_get_display_options gtk_calendar_get_display_options;
10949 alias c_gtk_calendar_mark_day gtk_calendar_mark_day;
10950 alias c_gtk_calendar_select_day gtk_calendar_select_day;
10951 alias c_gtk_calendar_select_month gtk_calendar_select_month;
10952 alias c_gtk_calendar_set_detail_func gtk_calendar_set_detail_func;
10953 alias c_gtk_calendar_set_detail_height_rows gtk_calendar_set_detail_height_rows;
10954 alias c_gtk_calendar_set_detail_width_chars gtk_calendar_set_detail_width_chars;
10955 alias c_gtk_calendar_set_display_options gtk_calendar_set_display_options;
10956 alias c_gtk_calendar_unmark_day gtk_calendar_unmark_day;
10957 
10958 // gtk.CellAccessible
10959 
10960 alias c_gtk_cell_accessible_get_type gtk_cell_accessible_get_type;
10961 
10962 // gtk.CellAccessibleParent
10963 
10964 alias c_gtk_cell_accessible_parent_get_type gtk_cell_accessible_parent_get_type;
10965 alias c_gtk_cell_accessible_parent_activate gtk_cell_accessible_parent_activate;
10966 alias c_gtk_cell_accessible_parent_edit gtk_cell_accessible_parent_edit;
10967 alias c_gtk_cell_accessible_parent_expand_collapse gtk_cell_accessible_parent_expand_collapse;
10968 alias c_gtk_cell_accessible_parent_get_cell_area gtk_cell_accessible_parent_get_cell_area;
10969 alias c_gtk_cell_accessible_parent_get_cell_extents gtk_cell_accessible_parent_get_cell_extents;
10970 alias c_gtk_cell_accessible_parent_get_cell_position gtk_cell_accessible_parent_get_cell_position;
10971 alias c_gtk_cell_accessible_parent_get_child_index gtk_cell_accessible_parent_get_child_index;
10972 alias c_gtk_cell_accessible_parent_get_column_header_cells gtk_cell_accessible_parent_get_column_header_cells;
10973 alias c_gtk_cell_accessible_parent_get_renderer_state gtk_cell_accessible_parent_get_renderer_state;
10974 alias c_gtk_cell_accessible_parent_get_row_header_cells gtk_cell_accessible_parent_get_row_header_cells;
10975 alias c_gtk_cell_accessible_parent_grab_focus gtk_cell_accessible_parent_grab_focus;
10976 alias c_gtk_cell_accessible_parent_update_relationset gtk_cell_accessible_parent_update_relationset;
10977 
10978 // gtk.CellArea
10979 
10980 alias c_gtk_cell_area_get_type gtk_cell_area_get_type;
10981 alias c_gtk_cell_area_activate gtk_cell_area_activate;
10982 alias c_gtk_cell_area_activate_cell gtk_cell_area_activate_cell;
10983 alias c_gtk_cell_area_add gtk_cell_area_add;
10984 alias c_gtk_cell_area_add_focus_sibling gtk_cell_area_add_focus_sibling;
10985 alias c_gtk_cell_area_add_with_properties gtk_cell_area_add_with_properties;
10986 alias c_gtk_cell_area_apply_attributes gtk_cell_area_apply_attributes;
10987 alias c_gtk_cell_area_attribute_connect gtk_cell_area_attribute_connect;
10988 alias c_gtk_cell_area_attribute_disconnect gtk_cell_area_attribute_disconnect;
10989 alias c_gtk_cell_area_attribute_get_column gtk_cell_area_attribute_get_column;
10990 alias c_gtk_cell_area_cell_get gtk_cell_area_cell_get;
10991 alias c_gtk_cell_area_cell_get_property gtk_cell_area_cell_get_property;
10992 alias c_gtk_cell_area_cell_get_valist gtk_cell_area_cell_get_valist;
10993 alias c_gtk_cell_area_cell_set gtk_cell_area_cell_set;
10994 alias c_gtk_cell_area_cell_set_property gtk_cell_area_cell_set_property;
10995 alias c_gtk_cell_area_cell_set_valist gtk_cell_area_cell_set_valist;
10996 alias c_gtk_cell_area_copy_context gtk_cell_area_copy_context;
10997 alias c_gtk_cell_area_create_context gtk_cell_area_create_context;
10998 alias c_gtk_cell_area_event gtk_cell_area_event;
10999 alias c_gtk_cell_area_focus gtk_cell_area_focus;
11000 alias c_gtk_cell_area_foreach gtk_cell_area_foreach;
11001 alias c_gtk_cell_area_foreach_alloc gtk_cell_area_foreach_alloc;
11002 alias c_gtk_cell_area_get_cell_allocation gtk_cell_area_get_cell_allocation;
11003 alias c_gtk_cell_area_get_cell_at_position gtk_cell_area_get_cell_at_position;
11004 alias c_gtk_cell_area_get_current_path_string gtk_cell_area_get_current_path_string;
11005 alias c_gtk_cell_area_get_edit_widget gtk_cell_area_get_edit_widget;
11006 alias c_gtk_cell_area_get_edited_cell gtk_cell_area_get_edited_cell;
11007 alias c_gtk_cell_area_get_focus_cell gtk_cell_area_get_focus_cell;
11008 alias c_gtk_cell_area_get_focus_from_sibling gtk_cell_area_get_focus_from_sibling;
11009 alias c_gtk_cell_area_get_focus_siblings gtk_cell_area_get_focus_siblings;
11010 alias c_gtk_cell_area_get_preferred_height gtk_cell_area_get_preferred_height;
11011 alias c_gtk_cell_area_get_preferred_height_for_width gtk_cell_area_get_preferred_height_for_width;
11012 alias c_gtk_cell_area_get_preferred_width gtk_cell_area_get_preferred_width;
11013 alias c_gtk_cell_area_get_preferred_width_for_height gtk_cell_area_get_preferred_width_for_height;
11014 alias c_gtk_cell_area_get_request_mode gtk_cell_area_get_request_mode;
11015 alias c_gtk_cell_area_has_renderer gtk_cell_area_has_renderer;
11016 alias c_gtk_cell_area_inner_cell_area gtk_cell_area_inner_cell_area;
11017 alias c_gtk_cell_area_is_activatable gtk_cell_area_is_activatable;
11018 alias c_gtk_cell_area_is_focus_sibling gtk_cell_area_is_focus_sibling;
11019 alias c_gtk_cell_area_remove gtk_cell_area_remove;
11020 alias c_gtk_cell_area_remove_focus_sibling gtk_cell_area_remove_focus_sibling;
11021 alias c_gtk_cell_area_render gtk_cell_area_render;
11022 alias c_gtk_cell_area_request_renderer gtk_cell_area_request_renderer;
11023 alias c_gtk_cell_area_set_focus_cell gtk_cell_area_set_focus_cell;
11024 alias c_gtk_cell_area_stop_editing gtk_cell_area_stop_editing;
11025 
11026 // gtk.CellAreaBox
11027 
11028 alias c_gtk_cell_area_box_get_type gtk_cell_area_box_get_type;
11029 alias c_gtk_cell_area_box_new gtk_cell_area_box_new;
11030 alias c_gtk_cell_area_box_get_spacing gtk_cell_area_box_get_spacing;
11031 alias c_gtk_cell_area_box_pack_end gtk_cell_area_box_pack_end;
11032 alias c_gtk_cell_area_box_pack_start gtk_cell_area_box_pack_start;
11033 alias c_gtk_cell_area_box_set_spacing gtk_cell_area_box_set_spacing;
11034 
11035 // gtk.CellAreaClass
11036 
11037 alias c_gtk_cell_area_class_find_cell_property gtk_cell_area_class_find_cell_property;
11038 alias c_gtk_cell_area_class_install_cell_property gtk_cell_area_class_install_cell_property;
11039 alias c_gtk_cell_area_class_list_cell_properties gtk_cell_area_class_list_cell_properties;
11040 
11041 // gtk.CellAreaContext
11042 
11043 alias c_gtk_cell_area_context_get_type gtk_cell_area_context_get_type;
11044 alias c_gtk_cell_area_context_allocate gtk_cell_area_context_allocate;
11045 alias c_gtk_cell_area_context_get_allocation gtk_cell_area_context_get_allocation;
11046 alias c_gtk_cell_area_context_get_area gtk_cell_area_context_get_area;
11047 alias c_gtk_cell_area_context_get_preferred_height gtk_cell_area_context_get_preferred_height;
11048 alias c_gtk_cell_area_context_get_preferred_height_for_width gtk_cell_area_context_get_preferred_height_for_width;
11049 alias c_gtk_cell_area_context_get_preferred_width gtk_cell_area_context_get_preferred_width;
11050 alias c_gtk_cell_area_context_get_preferred_width_for_height gtk_cell_area_context_get_preferred_width_for_height;
11051 alias c_gtk_cell_area_context_push_preferred_height gtk_cell_area_context_push_preferred_height;
11052 alias c_gtk_cell_area_context_push_preferred_width gtk_cell_area_context_push_preferred_width;
11053 alias c_gtk_cell_area_context_reset gtk_cell_area_context_reset;
11054 
11055 // gtk.CellEditable
11056 
11057 alias c_gtk_cell_editable_get_type gtk_cell_editable_get_type;
11058 alias c_gtk_cell_editable_editing_done gtk_cell_editable_editing_done;
11059 alias c_gtk_cell_editable_remove_widget gtk_cell_editable_remove_widget;
11060 alias c_gtk_cell_editable_start_editing gtk_cell_editable_start_editing;
11061 
11062 // gtk.CellLayout
11063 
11064 alias c_gtk_cell_layout_get_type gtk_cell_layout_get_type;
11065 alias c_gtk_cell_layout_add_attribute gtk_cell_layout_add_attribute;
11066 alias c_gtk_cell_layout_clear gtk_cell_layout_clear;
11067 alias c_gtk_cell_layout_clear_attributes gtk_cell_layout_clear_attributes;
11068 alias c_gtk_cell_layout_get_area gtk_cell_layout_get_area;
11069 alias c_gtk_cell_layout_get_cells gtk_cell_layout_get_cells;
11070 alias c_gtk_cell_layout_pack_end gtk_cell_layout_pack_end;
11071 alias c_gtk_cell_layout_pack_start gtk_cell_layout_pack_start;
11072 alias c_gtk_cell_layout_reorder gtk_cell_layout_reorder;
11073 alias c_gtk_cell_layout_set_attributes gtk_cell_layout_set_attributes;
11074 alias c_gtk_cell_layout_set_cell_data_func gtk_cell_layout_set_cell_data_func;
11075 
11076 // gtk.CellRenderer
11077 
11078 alias c_gtk_cell_renderer_get_type gtk_cell_renderer_get_type;
11079 alias c_gtk_cell_renderer_activate gtk_cell_renderer_activate;
11080 alias c_gtk_cell_renderer_get_aligned_area gtk_cell_renderer_get_aligned_area;
11081 alias c_gtk_cell_renderer_get_alignment gtk_cell_renderer_get_alignment;
11082 alias c_gtk_cell_renderer_get_fixed_size gtk_cell_renderer_get_fixed_size;
11083 alias c_gtk_cell_renderer_get_padding gtk_cell_renderer_get_padding;
11084 alias c_gtk_cell_renderer_get_preferred_height gtk_cell_renderer_get_preferred_height;
11085 alias c_gtk_cell_renderer_get_preferred_height_for_width gtk_cell_renderer_get_preferred_height_for_width;
11086 alias c_gtk_cell_renderer_get_preferred_size gtk_cell_renderer_get_preferred_size;
11087 alias c_gtk_cell_renderer_get_preferred_width gtk_cell_renderer_get_preferred_width;
11088 alias c_gtk_cell_renderer_get_preferred_width_for_height gtk_cell_renderer_get_preferred_width_for_height;
11089 alias c_gtk_cell_renderer_get_request_mode gtk_cell_renderer_get_request_mode;
11090 alias c_gtk_cell_renderer_get_sensitive gtk_cell_renderer_get_sensitive;
11091 alias c_gtk_cell_renderer_get_size gtk_cell_renderer_get_size;
11092 alias c_gtk_cell_renderer_get_state gtk_cell_renderer_get_state;
11093 alias c_gtk_cell_renderer_get_visible gtk_cell_renderer_get_visible;
11094 alias c_gtk_cell_renderer_is_activatable gtk_cell_renderer_is_activatable;
11095 alias c_gtk_cell_renderer_render gtk_cell_renderer_render;
11096 alias c_gtk_cell_renderer_set_alignment gtk_cell_renderer_set_alignment;
11097 alias c_gtk_cell_renderer_set_fixed_size gtk_cell_renderer_set_fixed_size;
11098 alias c_gtk_cell_renderer_set_padding gtk_cell_renderer_set_padding;
11099 alias c_gtk_cell_renderer_set_sensitive gtk_cell_renderer_set_sensitive;
11100 alias c_gtk_cell_renderer_set_visible gtk_cell_renderer_set_visible;
11101 alias c_gtk_cell_renderer_start_editing gtk_cell_renderer_start_editing;
11102 alias c_gtk_cell_renderer_stop_editing gtk_cell_renderer_stop_editing;
11103 
11104 // gtk.CellRendererAccel
11105 
11106 alias c_gtk_cell_renderer_accel_get_type gtk_cell_renderer_accel_get_type;
11107 alias c_gtk_cell_renderer_accel_new gtk_cell_renderer_accel_new;
11108 
11109 // gtk.CellRendererClass
11110 
11111 alias c_gtk_cell_renderer_class_set_accessible_type gtk_cell_renderer_class_set_accessible_type;
11112 
11113 // gtk.CellRendererCombo
11114 
11115 alias c_gtk_cell_renderer_combo_get_type gtk_cell_renderer_combo_get_type;
11116 alias c_gtk_cell_renderer_combo_new gtk_cell_renderer_combo_new;
11117 
11118 // gtk.CellRendererPixbuf
11119 
11120 alias c_gtk_cell_renderer_pixbuf_get_type gtk_cell_renderer_pixbuf_get_type;
11121 alias c_gtk_cell_renderer_pixbuf_new gtk_cell_renderer_pixbuf_new;
11122 
11123 // gtk.CellRendererProgress
11124 
11125 alias c_gtk_cell_renderer_progress_get_type gtk_cell_renderer_progress_get_type;
11126 alias c_gtk_cell_renderer_progress_new gtk_cell_renderer_progress_new;
11127 
11128 // gtk.CellRendererSpin
11129 
11130 alias c_gtk_cell_renderer_spin_get_type gtk_cell_renderer_spin_get_type;
11131 alias c_gtk_cell_renderer_spin_new gtk_cell_renderer_spin_new;
11132 
11133 // gtk.CellRendererSpinner
11134 
11135 alias c_gtk_cell_renderer_spinner_get_type gtk_cell_renderer_spinner_get_type;
11136 alias c_gtk_cell_renderer_spinner_new gtk_cell_renderer_spinner_new;
11137 
11138 // gtk.CellRendererText
11139 
11140 alias c_gtk_cell_renderer_text_get_type gtk_cell_renderer_text_get_type;
11141 alias c_gtk_cell_renderer_text_new gtk_cell_renderer_text_new;
11142 alias c_gtk_cell_renderer_text_set_fixed_height_from_font gtk_cell_renderer_text_set_fixed_height_from_font;
11143 
11144 // gtk.CellRendererToggle
11145 
11146 alias c_gtk_cell_renderer_toggle_get_type gtk_cell_renderer_toggle_get_type;
11147 alias c_gtk_cell_renderer_toggle_new gtk_cell_renderer_toggle_new;
11148 alias c_gtk_cell_renderer_toggle_get_activatable gtk_cell_renderer_toggle_get_activatable;
11149 alias c_gtk_cell_renderer_toggle_get_active gtk_cell_renderer_toggle_get_active;
11150 alias c_gtk_cell_renderer_toggle_get_radio gtk_cell_renderer_toggle_get_radio;
11151 alias c_gtk_cell_renderer_toggle_set_activatable gtk_cell_renderer_toggle_set_activatable;
11152 alias c_gtk_cell_renderer_toggle_set_active gtk_cell_renderer_toggle_set_active;
11153 alias c_gtk_cell_renderer_toggle_set_radio gtk_cell_renderer_toggle_set_radio;
11154 
11155 // gtk.CellView
11156 
11157 alias c_gtk_cell_view_get_type gtk_cell_view_get_type;
11158 alias c_gtk_cell_view_new gtk_cell_view_new;
11159 alias c_gtk_cell_view_new_with_context gtk_cell_view_new_with_context;
11160 alias c_gtk_cell_view_new_with_markup gtk_cell_view_new_with_markup;
11161 alias c_gtk_cell_view_new_with_pixbuf gtk_cell_view_new_with_pixbuf;
11162 alias c_gtk_cell_view_new_with_text gtk_cell_view_new_with_text;
11163 alias c_gtk_cell_view_get_displayed_row gtk_cell_view_get_displayed_row;
11164 alias c_gtk_cell_view_get_draw_sensitive gtk_cell_view_get_draw_sensitive;
11165 alias c_gtk_cell_view_get_fit_model gtk_cell_view_get_fit_model;
11166 alias c_gtk_cell_view_get_model gtk_cell_view_get_model;
11167 alias c_gtk_cell_view_get_size_of_row gtk_cell_view_get_size_of_row;
11168 alias c_gtk_cell_view_set_background_color gtk_cell_view_set_background_color;
11169 alias c_gtk_cell_view_set_background_rgba gtk_cell_view_set_background_rgba;
11170 alias c_gtk_cell_view_set_displayed_row gtk_cell_view_set_displayed_row;
11171 alias c_gtk_cell_view_set_draw_sensitive gtk_cell_view_set_draw_sensitive;
11172 alias c_gtk_cell_view_set_fit_model gtk_cell_view_set_fit_model;
11173 alias c_gtk_cell_view_set_model gtk_cell_view_set_model;
11174 
11175 // gtk.CheckButton
11176 
11177 alias c_gtk_check_button_get_type gtk_check_button_get_type;
11178 alias c_gtk_check_button_new gtk_check_button_new;
11179 alias c_gtk_check_button_new_with_label gtk_check_button_new_with_label;
11180 alias c_gtk_check_button_new_with_mnemonic gtk_check_button_new_with_mnemonic;
11181 
11182 // gtk.CheckMenuItem
11183 
11184 alias c_gtk_check_menu_item_get_type gtk_check_menu_item_get_type;
11185 alias c_gtk_check_menu_item_new gtk_check_menu_item_new;
11186 alias c_gtk_check_menu_item_new_with_label gtk_check_menu_item_new_with_label;
11187 alias c_gtk_check_menu_item_new_with_mnemonic gtk_check_menu_item_new_with_mnemonic;
11188 alias c_gtk_check_menu_item_get_active gtk_check_menu_item_get_active;
11189 alias c_gtk_check_menu_item_get_draw_as_radio gtk_check_menu_item_get_draw_as_radio;
11190 alias c_gtk_check_menu_item_get_inconsistent gtk_check_menu_item_get_inconsistent;
11191 alias c_gtk_check_menu_item_set_active gtk_check_menu_item_set_active;
11192 alias c_gtk_check_menu_item_set_draw_as_radio gtk_check_menu_item_set_draw_as_radio;
11193 alias c_gtk_check_menu_item_set_inconsistent gtk_check_menu_item_set_inconsistent;
11194 alias c_gtk_check_menu_item_toggled gtk_check_menu_item_toggled;
11195 
11196 // gtk.CheckMenuItemAccessible
11197 
11198 alias c_gtk_check_menu_item_accessible_get_type gtk_check_menu_item_accessible_get_type;
11199 
11200 // gtk.Clipboard
11201 
11202 alias c_gtk_clipboard_get_type gtk_clipboard_get_type;
11203 alias c_gtk_clipboard_get gtk_clipboard_get;
11204 alias c_gtk_clipboard_get_default gtk_clipboard_get_default;
11205 alias c_gtk_clipboard_get_for_display gtk_clipboard_get_for_display;
11206 alias c_gtk_clipboard_clear gtk_clipboard_clear;
11207 alias c_gtk_clipboard_get_display gtk_clipboard_get_display;
11208 alias c_gtk_clipboard_get_owner gtk_clipboard_get_owner;
11209 alias c_gtk_clipboard_get_selection gtk_clipboard_get_selection;
11210 alias c_gtk_clipboard_request_contents gtk_clipboard_request_contents;
11211 alias c_gtk_clipboard_request_image gtk_clipboard_request_image;
11212 alias c_gtk_clipboard_request_rich_text gtk_clipboard_request_rich_text;
11213 alias c_gtk_clipboard_request_targets gtk_clipboard_request_targets;
11214 alias c_gtk_clipboard_request_text gtk_clipboard_request_text;
11215 alias c_gtk_clipboard_request_uris gtk_clipboard_request_uris;
11216 alias c_gtk_clipboard_set_can_store gtk_clipboard_set_can_store;
11217 alias c_gtk_clipboard_set_image gtk_clipboard_set_image;
11218 alias c_gtk_clipboard_set_text gtk_clipboard_set_text;
11219 alias c_gtk_clipboard_set_with_data gtk_clipboard_set_with_data;
11220 alias c_gtk_clipboard_set_with_owner gtk_clipboard_set_with_owner;
11221 alias c_gtk_clipboard_store gtk_clipboard_store;
11222 alias c_gtk_clipboard_wait_for_contents gtk_clipboard_wait_for_contents;
11223 alias c_gtk_clipboard_wait_for_image gtk_clipboard_wait_for_image;
11224 alias c_gtk_clipboard_wait_for_rich_text gtk_clipboard_wait_for_rich_text;
11225 alias c_gtk_clipboard_wait_for_targets gtk_clipboard_wait_for_targets;
11226 alias c_gtk_clipboard_wait_for_text gtk_clipboard_wait_for_text;
11227 alias c_gtk_clipboard_wait_for_uris gtk_clipboard_wait_for_uris;
11228 alias c_gtk_clipboard_wait_is_image_available gtk_clipboard_wait_is_image_available;
11229 alias c_gtk_clipboard_wait_is_rich_text_available gtk_clipboard_wait_is_rich_text_available;
11230 alias c_gtk_clipboard_wait_is_target_available gtk_clipboard_wait_is_target_available;
11231 alias c_gtk_clipboard_wait_is_text_available gtk_clipboard_wait_is_text_available;
11232 alias c_gtk_clipboard_wait_is_uris_available gtk_clipboard_wait_is_uris_available;
11233 
11234 // gtk.ColorButton
11235 
11236 alias c_gtk_color_button_get_type gtk_color_button_get_type;
11237 alias c_gtk_color_button_new gtk_color_button_new;
11238 alias c_gtk_color_button_new_with_color gtk_color_button_new_with_color;
11239 alias c_gtk_color_button_new_with_rgba gtk_color_button_new_with_rgba;
11240 alias c_gtk_color_button_get_alpha gtk_color_button_get_alpha;
11241 alias c_gtk_color_button_get_color gtk_color_button_get_color;
11242 alias c_gtk_color_button_get_rgba gtk_color_button_get_rgba;
11243 alias c_gtk_color_button_get_title gtk_color_button_get_title;
11244 alias c_gtk_color_button_get_use_alpha gtk_color_button_get_use_alpha;
11245 alias c_gtk_color_button_set_alpha gtk_color_button_set_alpha;
11246 alias c_gtk_color_button_set_color gtk_color_button_set_color;
11247 alias c_gtk_color_button_set_rgba gtk_color_button_set_rgba;
11248 alias c_gtk_color_button_set_title gtk_color_button_set_title;
11249 alias c_gtk_color_button_set_use_alpha gtk_color_button_set_use_alpha;
11250 
11251 // gtk.ColorChooser
11252 
11253 alias c_gtk_color_chooser_get_type gtk_color_chooser_get_type;
11254 alias c_gtk_color_chooser_add_palette gtk_color_chooser_add_palette;
11255 alias c_gtk_color_chooser_get_rgba gtk_color_chooser_get_rgba;
11256 alias c_gtk_color_chooser_get_use_alpha gtk_color_chooser_get_use_alpha;
11257 alias c_gtk_color_chooser_set_rgba gtk_color_chooser_set_rgba;
11258 alias c_gtk_color_chooser_set_use_alpha gtk_color_chooser_set_use_alpha;
11259 
11260 // gtk.ColorChooserDialog
11261 
11262 alias c_gtk_color_chooser_dialog_get_type gtk_color_chooser_dialog_get_type;
11263 alias c_gtk_color_chooser_dialog_new gtk_color_chooser_dialog_new;
11264 
11265 // gtk.ColorChooserWidget
11266 
11267 alias c_gtk_color_chooser_widget_get_type gtk_color_chooser_widget_get_type;
11268 alias c_gtk_color_chooser_widget_new gtk_color_chooser_widget_new;
11269 
11270 // gtk.ColorSelection
11271 
11272 alias c_gtk_color_selection_get_type gtk_color_selection_get_type;
11273 alias c_gtk_color_selection_new gtk_color_selection_new;
11274 alias c_gtk_color_selection_palette_from_string gtk_color_selection_palette_from_string;
11275 alias c_gtk_color_selection_palette_to_string gtk_color_selection_palette_to_string;
11276 alias c_gtk_color_selection_set_change_palette_with_screen_hook gtk_color_selection_set_change_palette_with_screen_hook;
11277 alias c_gtk_color_selection_get_current_alpha gtk_color_selection_get_current_alpha;
11278 alias c_gtk_color_selection_get_current_color gtk_color_selection_get_current_color;
11279 alias c_gtk_color_selection_get_current_rgba gtk_color_selection_get_current_rgba;
11280 alias c_gtk_color_selection_get_has_opacity_control gtk_color_selection_get_has_opacity_control;
11281 alias c_gtk_color_selection_get_has_palette gtk_color_selection_get_has_palette;
11282 alias c_gtk_color_selection_get_previous_alpha gtk_color_selection_get_previous_alpha;
11283 alias c_gtk_color_selection_get_previous_color gtk_color_selection_get_previous_color;
11284 alias c_gtk_color_selection_get_previous_rgba gtk_color_selection_get_previous_rgba;
11285 alias c_gtk_color_selection_is_adjusting gtk_color_selection_is_adjusting;
11286 alias c_gtk_color_selection_set_current_alpha gtk_color_selection_set_current_alpha;
11287 alias c_gtk_color_selection_set_current_color gtk_color_selection_set_current_color;
11288 alias c_gtk_color_selection_set_current_rgba gtk_color_selection_set_current_rgba;
11289 alias c_gtk_color_selection_set_has_opacity_control gtk_color_selection_set_has_opacity_control;
11290 alias c_gtk_color_selection_set_has_palette gtk_color_selection_set_has_palette;
11291 alias c_gtk_color_selection_set_previous_alpha gtk_color_selection_set_previous_alpha;
11292 alias c_gtk_color_selection_set_previous_color gtk_color_selection_set_previous_color;
11293 alias c_gtk_color_selection_set_previous_rgba gtk_color_selection_set_previous_rgba;
11294 
11295 // gtk.ColorSelectionDialog
11296 
11297 alias c_gtk_color_selection_dialog_get_type gtk_color_selection_dialog_get_type;
11298 alias c_gtk_color_selection_dialog_new gtk_color_selection_dialog_new;
11299 alias c_gtk_color_selection_dialog_get_color_selection gtk_color_selection_dialog_get_color_selection;
11300 
11301 // gtk.ComboBox
11302 
11303 alias c_gtk_combo_box_get_type gtk_combo_box_get_type;
11304 alias c_gtk_combo_box_new gtk_combo_box_new;
11305 alias c_gtk_combo_box_new_with_area gtk_combo_box_new_with_area;
11306 alias c_gtk_combo_box_new_with_area_and_entry gtk_combo_box_new_with_area_and_entry;
11307 alias c_gtk_combo_box_new_with_entry gtk_combo_box_new_with_entry;
11308 alias c_gtk_combo_box_new_with_model gtk_combo_box_new_with_model;
11309 alias c_gtk_combo_box_new_with_model_and_entry gtk_combo_box_new_with_model_and_entry;
11310 alias c_gtk_combo_box_get_active gtk_combo_box_get_active;
11311 alias c_gtk_combo_box_get_active_id gtk_combo_box_get_active_id;
11312 alias c_gtk_combo_box_get_active_iter gtk_combo_box_get_active_iter;
11313 alias c_gtk_combo_box_get_add_tearoffs gtk_combo_box_get_add_tearoffs;
11314 alias c_gtk_combo_box_get_button_sensitivity gtk_combo_box_get_button_sensitivity;
11315 alias c_gtk_combo_box_get_column_span_column gtk_combo_box_get_column_span_column;
11316 alias c_gtk_combo_box_get_entry_text_column gtk_combo_box_get_entry_text_column;
11317 alias c_gtk_combo_box_get_focus_on_click gtk_combo_box_get_focus_on_click;
11318 alias c_gtk_combo_box_get_has_entry gtk_combo_box_get_has_entry;
11319 alias c_gtk_combo_box_get_id_column gtk_combo_box_get_id_column;
11320 alias c_gtk_combo_box_get_model gtk_combo_box_get_model;
11321 alias c_gtk_combo_box_get_popup_accessible gtk_combo_box_get_popup_accessible;
11322 alias c_gtk_combo_box_get_popup_fixed_width gtk_combo_box_get_popup_fixed_width;
11323 alias c_gtk_combo_box_get_row_separator_func gtk_combo_box_get_row_separator_func;
11324 alias c_gtk_combo_box_get_row_span_column gtk_combo_box_get_row_span_column;
11325 alias c_gtk_combo_box_get_title gtk_combo_box_get_title;
11326 alias c_gtk_combo_box_get_wrap_width gtk_combo_box_get_wrap_width;
11327 alias c_gtk_combo_box_popdown gtk_combo_box_popdown;
11328 alias c_gtk_combo_box_popup gtk_combo_box_popup;
11329 alias c_gtk_combo_box_popup_for_device gtk_combo_box_popup_for_device;
11330 alias c_gtk_combo_box_set_active gtk_combo_box_set_active;
11331 alias c_gtk_combo_box_set_active_id gtk_combo_box_set_active_id;
11332 alias c_gtk_combo_box_set_active_iter gtk_combo_box_set_active_iter;
11333 alias c_gtk_combo_box_set_add_tearoffs gtk_combo_box_set_add_tearoffs;
11334 alias c_gtk_combo_box_set_button_sensitivity gtk_combo_box_set_button_sensitivity;
11335 alias c_gtk_combo_box_set_column_span_column gtk_combo_box_set_column_span_column;
11336 alias c_gtk_combo_box_set_entry_text_column gtk_combo_box_set_entry_text_column;
11337 alias c_gtk_combo_box_set_focus_on_click gtk_combo_box_set_focus_on_click;
11338 alias c_gtk_combo_box_set_id_column gtk_combo_box_set_id_column;
11339 alias c_gtk_combo_box_set_model gtk_combo_box_set_model;
11340 alias c_gtk_combo_box_set_popup_fixed_width gtk_combo_box_set_popup_fixed_width;
11341 alias c_gtk_combo_box_set_row_separator_func gtk_combo_box_set_row_separator_func;
11342 alias c_gtk_combo_box_set_row_span_column gtk_combo_box_set_row_span_column;
11343 alias c_gtk_combo_box_set_title gtk_combo_box_set_title;
11344 alias c_gtk_combo_box_set_wrap_width gtk_combo_box_set_wrap_width;
11345 
11346 // gtk.ComboBoxAccessible
11347 
11348 alias c_gtk_combo_box_accessible_get_type gtk_combo_box_accessible_get_type;
11349 
11350 // gtk.ComboBoxText
11351 
11352 alias c_gtk_combo_box_text_get_type gtk_combo_box_text_get_type;
11353 alias c_gtk_combo_box_text_new gtk_combo_box_text_new;
11354 alias c_gtk_combo_box_text_new_with_entry gtk_combo_box_text_new_with_entry;
11355 alias c_gtk_combo_box_text_append gtk_combo_box_text_append;
11356 alias c_gtk_combo_box_text_append_text gtk_combo_box_text_append_text;
11357 alias c_gtk_combo_box_text_get_active_text gtk_combo_box_text_get_active_text;
11358 alias c_gtk_combo_box_text_insert gtk_combo_box_text_insert;
11359 alias c_gtk_combo_box_text_insert_text gtk_combo_box_text_insert_text;
11360 alias c_gtk_combo_box_text_prepend gtk_combo_box_text_prepend;
11361 alias c_gtk_combo_box_text_prepend_text gtk_combo_box_text_prepend_text;
11362 alias c_gtk_combo_box_text_remove gtk_combo_box_text_remove;
11363 alias c_gtk_combo_box_text_remove_all gtk_combo_box_text_remove_all;
11364 
11365 // gtk.Container
11366 
11367 alias c_gtk_container_get_type gtk_container_get_type;
11368 alias c_gtk_container_add gtk_container_add;
11369 alias c_gtk_container_add_with_properties gtk_container_add_with_properties;
11370 alias c_gtk_container_check_resize gtk_container_check_resize;
11371 alias c_gtk_container_child_get gtk_container_child_get;
11372 alias c_gtk_container_child_get_property gtk_container_child_get_property;
11373 alias c_gtk_container_child_get_valist gtk_container_child_get_valist;
11374 alias c_gtk_container_child_notify gtk_container_child_notify;
11375 alias c_gtk_container_child_notify_by_pspec gtk_container_child_notify_by_pspec;
11376 alias c_gtk_container_child_set gtk_container_child_set;
11377 alias c_gtk_container_child_set_property gtk_container_child_set_property;
11378 alias c_gtk_container_child_set_valist gtk_container_child_set_valist;
11379 alias c_gtk_container_child_type gtk_container_child_type;
11380 alias c_gtk_container_forall gtk_container_forall;
11381 alias c_gtk_container_foreach gtk_container_foreach;
11382 alias c_gtk_container_get_border_width gtk_container_get_border_width;
11383 alias c_gtk_container_get_children gtk_container_get_children;
11384 alias c_gtk_container_get_focus_chain gtk_container_get_focus_chain;
11385 alias c_gtk_container_get_focus_child gtk_container_get_focus_child;
11386 alias c_gtk_container_get_focus_hadjustment gtk_container_get_focus_hadjustment;
11387 alias c_gtk_container_get_focus_vadjustment gtk_container_get_focus_vadjustment;
11388 alias c_gtk_container_get_path_for_child gtk_container_get_path_for_child;
11389 alias c_gtk_container_get_resize_mode gtk_container_get_resize_mode;
11390 alias c_gtk_container_propagate_draw gtk_container_propagate_draw;
11391 alias c_gtk_container_remove gtk_container_remove;
11392 alias c_gtk_container_resize_children gtk_container_resize_children;
11393 alias c_gtk_container_set_border_width gtk_container_set_border_width;
11394 alias c_gtk_container_set_focus_chain gtk_container_set_focus_chain;
11395 alias c_gtk_container_set_focus_child gtk_container_set_focus_child;
11396 alias c_gtk_container_set_focus_hadjustment gtk_container_set_focus_hadjustment;
11397 alias c_gtk_container_set_focus_vadjustment gtk_container_set_focus_vadjustment;
11398 alias c_gtk_container_set_reallocate_redraws gtk_container_set_reallocate_redraws;
11399 alias c_gtk_container_set_resize_mode gtk_container_set_resize_mode;
11400 alias c_gtk_container_unset_focus_chain gtk_container_unset_focus_chain;
11401 
11402 // gtk.ContainerAccessible
11403 
11404 alias c_gtk_container_accessible_get_type gtk_container_accessible_get_type;
11405 
11406 // gtk.ContainerCellAccessible
11407 
11408 alias c_gtk_container_cell_accessible_get_type gtk_container_cell_accessible_get_type;
11409 alias c_gtk_container_cell_accessible_new gtk_container_cell_accessible_new;
11410 alias c_gtk_container_cell_accessible_add_child gtk_container_cell_accessible_add_child;
11411 alias c_gtk_container_cell_accessible_get_children gtk_container_cell_accessible_get_children;
11412 alias c_gtk_container_cell_accessible_remove_child gtk_container_cell_accessible_remove_child;
11413 
11414 // gtk.ContainerClass
11415 
11416 alias c_gtk_container_class_find_child_property gtk_container_class_find_child_property;
11417 alias c_gtk_container_class_handle_border_width gtk_container_class_handle_border_width;
11418 alias c_gtk_container_class_install_child_properties gtk_container_class_install_child_properties;
11419 alias c_gtk_container_class_install_child_property gtk_container_class_install_child_property;
11420 alias c_gtk_container_class_list_child_properties gtk_container_class_list_child_properties;
11421 
11422 // gtk.CssProvider
11423 
11424 alias c_gtk_css_provider_get_type gtk_css_provider_get_type;
11425 alias c_gtk_css_provider_new gtk_css_provider_new;
11426 alias c_gtk_css_provider_get_default gtk_css_provider_get_default;
11427 alias c_gtk_css_provider_get_named gtk_css_provider_get_named;
11428 alias c_gtk_css_provider_load_from_data gtk_css_provider_load_from_data;
11429 alias c_gtk_css_provider_load_from_file gtk_css_provider_load_from_file;
11430 alias c_gtk_css_provider_load_from_path gtk_css_provider_load_from_path;
11431 alias c_gtk_css_provider_load_from_resource gtk_css_provider_load_from_resource;
11432 alias c_gtk_css_provider_to_string gtk_css_provider_to_string;
11433 
11434 // gtk.CssSection
11435 
11436 alias c_gtk_css_section_get_type gtk_css_section_get_type;
11437 alias c_gtk_css_section_get_end_line gtk_css_section_get_end_line;
11438 alias c_gtk_css_section_get_end_position gtk_css_section_get_end_position;
11439 alias c_gtk_css_section_get_file gtk_css_section_get_file;
11440 alias c_gtk_css_section_get_parent gtk_css_section_get_parent;
11441 alias c_gtk_css_section_get_section_type gtk_css_section_get_section_type;
11442 alias c_gtk_css_section_get_start_line gtk_css_section_get_start_line;
11443 alias c_gtk_css_section_get_start_position gtk_css_section_get_start_position;
11444 alias c_gtk_css_section_ref gtk_css_section_ref;
11445 alias c_gtk_css_section_unref gtk_css_section_unref;
11446 
11447 // gtk.Dialog
11448 
11449 alias c_gtk_dialog_get_type gtk_dialog_get_type;
11450 alias c_gtk_dialog_new gtk_dialog_new;
11451 alias c_gtk_dialog_new_with_buttons gtk_dialog_new_with_buttons;
11452 alias c_gtk_dialog_add_action_widget gtk_dialog_add_action_widget;
11453 alias c_gtk_dialog_add_button gtk_dialog_add_button;
11454 alias c_gtk_dialog_add_buttons gtk_dialog_add_buttons;
11455 alias c_gtk_dialog_get_action_area gtk_dialog_get_action_area;
11456 alias c_gtk_dialog_get_content_area gtk_dialog_get_content_area;
11457 alias c_gtk_dialog_get_header_bar gtk_dialog_get_header_bar;
11458 alias c_gtk_dialog_get_response_for_widget gtk_dialog_get_response_for_widget;
11459 alias c_gtk_dialog_get_widget_for_response gtk_dialog_get_widget_for_response;
11460 alias c_gtk_dialog_response gtk_dialog_response;
11461 alias c_gtk_dialog_run gtk_dialog_run;
11462 alias c_gtk_dialog_set_alternative_button_order gtk_dialog_set_alternative_button_order;
11463 alias c_gtk_dialog_set_alternative_button_order_from_array gtk_dialog_set_alternative_button_order_from_array;
11464 alias c_gtk_dialog_set_default_response gtk_dialog_set_default_response;
11465 alias c_gtk_dialog_set_response_sensitive gtk_dialog_set_response_sensitive;
11466 alias c_gtk_alternative_dialog_button_order gtk_alternative_dialog_button_order;
11467 
11468 // gtk.DrawingArea
11469 
11470 alias c_gtk_drawing_area_get_type gtk_drawing_area_get_type;
11471 alias c_gtk_drawing_area_new gtk_drawing_area_new;
11472 
11473 // gtk.Editable
11474 
11475 alias c_gtk_editable_get_type gtk_editable_get_type;
11476 alias c_gtk_editable_copy_clipboard gtk_editable_copy_clipboard;
11477 alias c_gtk_editable_cut_clipboard gtk_editable_cut_clipboard;
11478 alias c_gtk_editable_delete_selection gtk_editable_delete_selection;
11479 alias c_gtk_editable_delete_text gtk_editable_delete_text;
11480 alias c_gtk_editable_get_chars gtk_editable_get_chars;
11481 alias c_gtk_editable_get_editable gtk_editable_get_editable;
11482 alias c_gtk_editable_get_position gtk_editable_get_position;
11483 alias c_gtk_editable_get_selection_bounds gtk_editable_get_selection_bounds;
11484 alias c_gtk_editable_insert_text gtk_editable_insert_text;
11485 alias c_gtk_editable_paste_clipboard gtk_editable_paste_clipboard;
11486 alias c_gtk_editable_select_region gtk_editable_select_region;
11487 alias c_gtk_editable_set_editable gtk_editable_set_editable;
11488 alias c_gtk_editable_set_position gtk_editable_set_position;
11489 
11490 // gtk.Entry
11491 
11492 alias c_gtk_entry_get_type gtk_entry_get_type;
11493 alias c_gtk_entry_new gtk_entry_new;
11494 alias c_gtk_entry_new_with_buffer gtk_entry_new_with_buffer;
11495 alias c_gtk_entry_get_activates_default gtk_entry_get_activates_default;
11496 alias c_gtk_entry_get_alignment gtk_entry_get_alignment;
11497 alias c_gtk_entry_get_attributes gtk_entry_get_attributes;
11498 alias c_gtk_entry_get_buffer gtk_entry_get_buffer;
11499 alias c_gtk_entry_get_completion gtk_entry_get_completion;
11500 alias c_gtk_entry_get_current_icon_drag_source gtk_entry_get_current_icon_drag_source;
11501 alias c_gtk_entry_get_cursor_hadjustment gtk_entry_get_cursor_hadjustment;
11502 alias c_gtk_entry_get_has_frame gtk_entry_get_has_frame;
11503 alias c_gtk_entry_get_icon_activatable gtk_entry_get_icon_activatable;
11504 alias c_gtk_entry_get_icon_area gtk_entry_get_icon_area;
11505 alias c_gtk_entry_get_icon_at_pos gtk_entry_get_icon_at_pos;
11506 alias c_gtk_entry_get_icon_gicon gtk_entry_get_icon_gicon;
11507 alias c_gtk_entry_get_icon_name gtk_entry_get_icon_name;
11508 alias c_gtk_entry_get_icon_pixbuf gtk_entry_get_icon_pixbuf;
11509 alias c_gtk_entry_get_icon_sensitive gtk_entry_get_icon_sensitive;
11510 alias c_gtk_entry_get_icon_stock gtk_entry_get_icon_stock;
11511 alias c_gtk_entry_get_icon_storage_type gtk_entry_get_icon_storage_type;
11512 alias c_gtk_entry_get_icon_tooltip_markup gtk_entry_get_icon_tooltip_markup;
11513 alias c_gtk_entry_get_icon_tooltip_text gtk_entry_get_icon_tooltip_text;
11514 alias c_gtk_entry_get_inner_border gtk_entry_get_inner_border;
11515 alias c_gtk_entry_get_input_hints gtk_entry_get_input_hints;
11516 alias c_gtk_entry_get_input_purpose gtk_entry_get_input_purpose;
11517 alias c_gtk_entry_get_invisible_char gtk_entry_get_invisible_char;
11518 alias c_gtk_entry_get_layout gtk_entry_get_layout;
11519 alias c_gtk_entry_get_layout_offsets gtk_entry_get_layout_offsets;
11520 alias c_gtk_entry_get_max_length gtk_entry_get_max_length;
11521 alias c_gtk_entry_get_max_width_chars gtk_entry_get_max_width_chars;
11522 alias c_gtk_entry_get_overwrite_mode gtk_entry_get_overwrite_mode;
11523 alias c_gtk_entry_get_placeholder_text gtk_entry_get_placeholder_text;
11524 alias c_gtk_entry_get_progress_fraction gtk_entry_get_progress_fraction;
11525 alias c_gtk_entry_get_progress_pulse_step gtk_entry_get_progress_pulse_step;
11526 alias c_gtk_entry_get_tabs gtk_entry_get_tabs;
11527 alias c_gtk_entry_get_text gtk_entry_get_text;
11528 alias c_gtk_entry_get_text_area gtk_entry_get_text_area;
11529 alias c_gtk_entry_get_text_length gtk_entry_get_text_length;
11530 alias c_gtk_entry_get_visibility gtk_entry_get_visibility;
11531 alias c_gtk_entry_get_width_chars gtk_entry_get_width_chars;
11532 alias c_gtk_entry_grab_focus_without_selecting gtk_entry_grab_focus_without_selecting;
11533 alias c_gtk_entry_im_context_filter_keypress gtk_entry_im_context_filter_keypress;
11534 alias c_gtk_entry_layout_index_to_text_index gtk_entry_layout_index_to_text_index;
11535 alias c_gtk_entry_progress_pulse gtk_entry_progress_pulse;
11536 alias c_gtk_entry_reset_im_context gtk_entry_reset_im_context;
11537 alias c_gtk_entry_set_activates_default gtk_entry_set_activates_default;
11538 alias c_gtk_entry_set_alignment gtk_entry_set_alignment;
11539 alias c_gtk_entry_set_attributes gtk_entry_set_attributes;
11540 alias c_gtk_entry_set_buffer gtk_entry_set_buffer;
11541 alias c_gtk_entry_set_completion gtk_entry_set_completion;
11542 alias c_gtk_entry_set_cursor_hadjustment gtk_entry_set_cursor_hadjustment;
11543 alias c_gtk_entry_set_has_frame gtk_entry_set_has_frame;
11544 alias c_gtk_entry_set_icon_activatable gtk_entry_set_icon_activatable;
11545 alias c_gtk_entry_set_icon_drag_source gtk_entry_set_icon_drag_source;
11546 alias c_gtk_entry_set_icon_from_gicon gtk_entry_set_icon_from_gicon;
11547 alias c_gtk_entry_set_icon_from_icon_name gtk_entry_set_icon_from_icon_name;
11548 alias c_gtk_entry_set_icon_from_pixbuf gtk_entry_set_icon_from_pixbuf;
11549 alias c_gtk_entry_set_icon_from_stock gtk_entry_set_icon_from_stock;
11550 alias c_gtk_entry_set_icon_sensitive gtk_entry_set_icon_sensitive;
11551 alias c_gtk_entry_set_icon_tooltip_markup gtk_entry_set_icon_tooltip_markup;
11552 alias c_gtk_entry_set_icon_tooltip_text gtk_entry_set_icon_tooltip_text;
11553 alias c_gtk_entry_set_inner_border gtk_entry_set_inner_border;
11554 alias c_gtk_entry_set_input_hints gtk_entry_set_input_hints;
11555 alias c_gtk_entry_set_input_purpose gtk_entry_set_input_purpose;
11556 alias c_gtk_entry_set_invisible_char gtk_entry_set_invisible_char;
11557 alias c_gtk_entry_set_max_length gtk_entry_set_max_length;
11558 alias c_gtk_entry_set_max_width_chars gtk_entry_set_max_width_chars;
11559 alias c_gtk_entry_set_overwrite_mode gtk_entry_set_overwrite_mode;
11560 alias c_gtk_entry_set_placeholder_text gtk_entry_set_placeholder_text;
11561 alias c_gtk_entry_set_progress_fraction gtk_entry_set_progress_fraction;
11562 alias c_gtk_entry_set_progress_pulse_step gtk_entry_set_progress_pulse_step;
11563 alias c_gtk_entry_set_tabs gtk_entry_set_tabs;
11564 alias c_gtk_entry_set_text gtk_entry_set_text;
11565 alias c_gtk_entry_set_visibility gtk_entry_set_visibility;
11566 alias c_gtk_entry_set_width_chars gtk_entry_set_width_chars;
11567 alias c_gtk_entry_text_index_to_layout_index gtk_entry_text_index_to_layout_index;
11568 alias c_gtk_entry_unset_invisible_char gtk_entry_unset_invisible_char;
11569 
11570 // gtk.EntryAccessible
11571 
11572 alias c_gtk_entry_accessible_get_type gtk_entry_accessible_get_type;
11573 
11574 // gtk.EntryBuffer
11575 
11576 alias c_gtk_entry_buffer_get_type gtk_entry_buffer_get_type;
11577 alias c_gtk_entry_buffer_new gtk_entry_buffer_new;
11578 alias c_gtk_entry_buffer_delete_text gtk_entry_buffer_delete_text;
11579 alias c_gtk_entry_buffer_emit_deleted_text gtk_entry_buffer_emit_deleted_text;
11580 alias c_gtk_entry_buffer_emit_inserted_text gtk_entry_buffer_emit_inserted_text;
11581 alias c_gtk_entry_buffer_get_bytes gtk_entry_buffer_get_bytes;
11582 alias c_gtk_entry_buffer_get_length gtk_entry_buffer_get_length;
11583 alias c_gtk_entry_buffer_get_max_length gtk_entry_buffer_get_max_length;
11584 alias c_gtk_entry_buffer_get_text gtk_entry_buffer_get_text;
11585 alias c_gtk_entry_buffer_insert_text gtk_entry_buffer_insert_text;
11586 alias c_gtk_entry_buffer_set_max_length gtk_entry_buffer_set_max_length;
11587 alias c_gtk_entry_buffer_set_text gtk_entry_buffer_set_text;
11588 
11589 // gtk.EntryCompletion
11590 
11591 alias c_gtk_entry_completion_get_type gtk_entry_completion_get_type;
11592 alias c_gtk_entry_completion_new gtk_entry_completion_new;
11593 alias c_gtk_entry_completion_new_with_area gtk_entry_completion_new_with_area;
11594 alias c_gtk_entry_completion_complete gtk_entry_completion_complete;
11595 alias c_gtk_entry_completion_compute_prefix gtk_entry_completion_compute_prefix;
11596 alias c_gtk_entry_completion_delete_action gtk_entry_completion_delete_action;
11597 alias c_gtk_entry_completion_get_completion_prefix gtk_entry_completion_get_completion_prefix;
11598 alias c_gtk_entry_completion_get_entry gtk_entry_completion_get_entry;
11599 alias c_gtk_entry_completion_get_inline_completion gtk_entry_completion_get_inline_completion;
11600 alias c_gtk_entry_completion_get_inline_selection gtk_entry_completion_get_inline_selection;
11601 alias c_gtk_entry_completion_get_minimum_key_length gtk_entry_completion_get_minimum_key_length;
11602 alias c_gtk_entry_completion_get_model gtk_entry_completion_get_model;
11603 alias c_gtk_entry_completion_get_popup_completion gtk_entry_completion_get_popup_completion;
11604 alias c_gtk_entry_completion_get_popup_set_width gtk_entry_completion_get_popup_set_width;
11605 alias c_gtk_entry_completion_get_popup_single_match gtk_entry_completion_get_popup_single_match;
11606 alias c_gtk_entry_completion_get_text_column gtk_entry_completion_get_text_column;
11607 alias c_gtk_entry_completion_insert_action_markup gtk_entry_completion_insert_action_markup;
11608 alias c_gtk_entry_completion_insert_action_text gtk_entry_completion_insert_action_text;
11609 alias c_gtk_entry_completion_insert_prefix gtk_entry_completion_insert_prefix;
11610 alias c_gtk_entry_completion_set_inline_completion gtk_entry_completion_set_inline_completion;
11611 alias c_gtk_entry_completion_set_inline_selection gtk_entry_completion_set_inline_selection;
11612 alias c_gtk_entry_completion_set_match_func gtk_entry_completion_set_match_func;
11613 alias c_gtk_entry_completion_set_minimum_key_length gtk_entry_completion_set_minimum_key_length;
11614 alias c_gtk_entry_completion_set_model gtk_entry_completion_set_model;
11615 alias c_gtk_entry_completion_set_popup_completion gtk_entry_completion_set_popup_completion;
11616 alias c_gtk_entry_completion_set_popup_set_width gtk_entry_completion_set_popup_set_width;
11617 alias c_gtk_entry_completion_set_popup_single_match gtk_entry_completion_set_popup_single_match;
11618 alias c_gtk_entry_completion_set_text_column gtk_entry_completion_set_text_column;
11619 
11620 // gtk.EntryIconAccessible
11621 
11622 alias c_gtk_entry_icon_accessible_get_type gtk_entry_icon_accessible_get_type;
11623 
11624 // gtk.EventBox
11625 
11626 alias c_gtk_event_box_get_type gtk_event_box_get_type;
11627 alias c_gtk_event_box_new gtk_event_box_new;
11628 alias c_gtk_event_box_get_above_child gtk_event_box_get_above_child;
11629 alias c_gtk_event_box_get_visible_window gtk_event_box_get_visible_window;
11630 alias c_gtk_event_box_set_above_child gtk_event_box_set_above_child;
11631 alias c_gtk_event_box_set_visible_window gtk_event_box_set_visible_window;
11632 
11633 // gtk.EventController
11634 
11635 alias c_gtk_event_controller_get_type gtk_event_controller_get_type;
11636 alias c_gtk_event_controller_get_propagation_phase gtk_event_controller_get_propagation_phase;
11637 alias c_gtk_event_controller_get_widget gtk_event_controller_get_widget;
11638 alias c_gtk_event_controller_handle_event gtk_event_controller_handle_event;
11639 alias c_gtk_event_controller_reset gtk_event_controller_reset;
11640 alias c_gtk_event_controller_set_propagation_phase gtk_event_controller_set_propagation_phase;
11641 
11642 // gtk.EventControllerKey
11643 
11644 alias c_gtk_event_controller_key_get_type gtk_event_controller_key_get_type;
11645 alias c_gtk_event_controller_key_new gtk_event_controller_key_new;
11646 alias c_gtk_event_controller_key_forward gtk_event_controller_key_forward;
11647 alias c_gtk_event_controller_key_get_group gtk_event_controller_key_get_group;
11648 alias c_gtk_event_controller_key_get_im_context gtk_event_controller_key_get_im_context;
11649 alias c_gtk_event_controller_key_set_im_context gtk_event_controller_key_set_im_context;
11650 
11651 // gtk.EventControllerMotion
11652 
11653 alias c_gtk_event_controller_motion_get_type gtk_event_controller_motion_get_type;
11654 alias c_gtk_event_controller_motion_new gtk_event_controller_motion_new;
11655 
11656 // gtk.EventControllerScroll
11657 
11658 alias c_gtk_event_controller_scroll_get_type gtk_event_controller_scroll_get_type;
11659 alias c_gtk_event_controller_scroll_new gtk_event_controller_scroll_new;
11660 alias c_gtk_event_controller_scroll_get_flags gtk_event_controller_scroll_get_flags;
11661 alias c_gtk_event_controller_scroll_set_flags gtk_event_controller_scroll_set_flags;
11662 
11663 // gtk.Expander
11664 
11665 alias c_gtk_expander_get_type gtk_expander_get_type;
11666 alias c_gtk_expander_new gtk_expander_new;
11667 alias c_gtk_expander_new_with_mnemonic gtk_expander_new_with_mnemonic;
11668 alias c_gtk_expander_get_expanded gtk_expander_get_expanded;
11669 alias c_gtk_expander_get_label gtk_expander_get_label;
11670 alias c_gtk_expander_get_label_fill gtk_expander_get_label_fill;
11671 alias c_gtk_expander_get_label_widget gtk_expander_get_label_widget;
11672 alias c_gtk_expander_get_resize_toplevel gtk_expander_get_resize_toplevel;
11673 alias c_gtk_expander_get_spacing gtk_expander_get_spacing;
11674 alias c_gtk_expander_get_use_markup gtk_expander_get_use_markup;
11675 alias c_gtk_expander_get_use_underline gtk_expander_get_use_underline;
11676 alias c_gtk_expander_set_expanded gtk_expander_set_expanded;
11677 alias c_gtk_expander_set_label gtk_expander_set_label;
11678 alias c_gtk_expander_set_label_fill gtk_expander_set_label_fill;
11679 alias c_gtk_expander_set_label_widget gtk_expander_set_label_widget;
11680 alias c_gtk_expander_set_resize_toplevel gtk_expander_set_resize_toplevel;
11681 alias c_gtk_expander_set_spacing gtk_expander_set_spacing;
11682 alias c_gtk_expander_set_use_markup gtk_expander_set_use_markup;
11683 alias c_gtk_expander_set_use_underline gtk_expander_set_use_underline;
11684 
11685 // gtk.ExpanderAccessible
11686 
11687 alias c_gtk_expander_accessible_get_type gtk_expander_accessible_get_type;
11688 
11689 // gtk.FileChooser
11690 
11691 alias c_gtk_file_chooser_get_type gtk_file_chooser_get_type;
11692 alias c_gtk_file_chooser_add_choice gtk_file_chooser_add_choice;
11693 alias c_gtk_file_chooser_add_filter gtk_file_chooser_add_filter;
11694 alias c_gtk_file_chooser_add_shortcut_folder gtk_file_chooser_add_shortcut_folder;
11695 alias c_gtk_file_chooser_add_shortcut_folder_uri gtk_file_chooser_add_shortcut_folder_uri;
11696 alias c_gtk_file_chooser_get_action gtk_file_chooser_get_action;
11697 alias c_gtk_file_chooser_get_choice gtk_file_chooser_get_choice;
11698 alias c_gtk_file_chooser_get_create_folders gtk_file_chooser_get_create_folders;
11699 alias c_gtk_file_chooser_get_current_folder gtk_file_chooser_get_current_folder;
11700 alias c_gtk_file_chooser_get_current_folder_file gtk_file_chooser_get_current_folder_file;
11701 alias c_gtk_file_chooser_get_current_folder_uri gtk_file_chooser_get_current_folder_uri;
11702 alias c_gtk_file_chooser_get_current_name gtk_file_chooser_get_current_name;
11703 alias c_gtk_file_chooser_get_do_overwrite_confirmation gtk_file_chooser_get_do_overwrite_confirmation;
11704 alias c_gtk_file_chooser_get_extra_widget gtk_file_chooser_get_extra_widget;
11705 alias c_gtk_file_chooser_get_file gtk_file_chooser_get_file;
11706 alias c_gtk_file_chooser_get_filename gtk_file_chooser_get_filename;
11707 alias c_gtk_file_chooser_get_filenames gtk_file_chooser_get_filenames;
11708 alias c_gtk_file_chooser_get_files gtk_file_chooser_get_files;
11709 alias c_gtk_file_chooser_get_filter gtk_file_chooser_get_filter;
11710 alias c_gtk_file_chooser_get_local_only gtk_file_chooser_get_local_only;
11711 alias c_gtk_file_chooser_get_preview_file gtk_file_chooser_get_preview_file;
11712 alias c_gtk_file_chooser_get_preview_filename gtk_file_chooser_get_preview_filename;
11713 alias c_gtk_file_chooser_get_preview_uri gtk_file_chooser_get_preview_uri;
11714 alias c_gtk_file_chooser_get_preview_widget gtk_file_chooser_get_preview_widget;
11715 alias c_gtk_file_chooser_get_preview_widget_active gtk_file_chooser_get_preview_widget_active;
11716 alias c_gtk_file_chooser_get_select_multiple gtk_file_chooser_get_select_multiple;
11717 alias c_gtk_file_chooser_get_show_hidden gtk_file_chooser_get_show_hidden;
11718 alias c_gtk_file_chooser_get_uri gtk_file_chooser_get_uri;
11719 alias c_gtk_file_chooser_get_uris gtk_file_chooser_get_uris;
11720 alias c_gtk_file_chooser_get_use_preview_label gtk_file_chooser_get_use_preview_label;
11721 alias c_gtk_file_chooser_list_filters gtk_file_chooser_list_filters;
11722 alias c_gtk_file_chooser_list_shortcut_folder_uris gtk_file_chooser_list_shortcut_folder_uris;
11723 alias c_gtk_file_chooser_list_shortcut_folders gtk_file_chooser_list_shortcut_folders;
11724 alias c_gtk_file_chooser_remove_choice gtk_file_chooser_remove_choice;
11725 alias c_gtk_file_chooser_remove_filter gtk_file_chooser_remove_filter;
11726 alias c_gtk_file_chooser_remove_shortcut_folder gtk_file_chooser_remove_shortcut_folder;
11727 alias c_gtk_file_chooser_remove_shortcut_folder_uri gtk_file_chooser_remove_shortcut_folder_uri;
11728 alias c_gtk_file_chooser_select_all gtk_file_chooser_select_all;
11729 alias c_gtk_file_chooser_select_file gtk_file_chooser_select_file;
11730 alias c_gtk_file_chooser_select_filename gtk_file_chooser_select_filename;
11731 alias c_gtk_file_chooser_select_uri gtk_file_chooser_select_uri;
11732 alias c_gtk_file_chooser_set_action gtk_file_chooser_set_action;
11733 alias c_gtk_file_chooser_set_choice gtk_file_chooser_set_choice;
11734 alias c_gtk_file_chooser_set_create_folders gtk_file_chooser_set_create_folders;
11735 alias c_gtk_file_chooser_set_current_folder gtk_file_chooser_set_current_folder;
11736 alias c_gtk_file_chooser_set_current_folder_file gtk_file_chooser_set_current_folder_file;
11737 alias c_gtk_file_chooser_set_current_folder_uri gtk_file_chooser_set_current_folder_uri;
11738 alias c_gtk_file_chooser_set_current_name gtk_file_chooser_set_current_name;
11739 alias c_gtk_file_chooser_set_do_overwrite_confirmation gtk_file_chooser_set_do_overwrite_confirmation;
11740 alias c_gtk_file_chooser_set_extra_widget gtk_file_chooser_set_extra_widget;
11741 alias c_gtk_file_chooser_set_file gtk_file_chooser_set_file;
11742 alias c_gtk_file_chooser_set_filename gtk_file_chooser_set_filename;
11743 alias c_gtk_file_chooser_set_filter gtk_file_chooser_set_filter;
11744 alias c_gtk_file_chooser_set_local_only gtk_file_chooser_set_local_only;
11745 alias c_gtk_file_chooser_set_preview_widget gtk_file_chooser_set_preview_widget;
11746 alias c_gtk_file_chooser_set_preview_widget_active gtk_file_chooser_set_preview_widget_active;
11747 alias c_gtk_file_chooser_set_select_multiple gtk_file_chooser_set_select_multiple;
11748 alias c_gtk_file_chooser_set_show_hidden gtk_file_chooser_set_show_hidden;
11749 alias c_gtk_file_chooser_set_uri gtk_file_chooser_set_uri;
11750 alias c_gtk_file_chooser_set_use_preview_label gtk_file_chooser_set_use_preview_label;
11751 alias c_gtk_file_chooser_unselect_all gtk_file_chooser_unselect_all;
11752 alias c_gtk_file_chooser_unselect_file gtk_file_chooser_unselect_file;
11753 alias c_gtk_file_chooser_unselect_filename gtk_file_chooser_unselect_filename;
11754 alias c_gtk_file_chooser_unselect_uri gtk_file_chooser_unselect_uri;
11755 
11756 // gtk.FileChooserButton
11757 
11758 alias c_gtk_file_chooser_button_get_type gtk_file_chooser_button_get_type;
11759 alias c_gtk_file_chooser_button_new gtk_file_chooser_button_new;
11760 alias c_gtk_file_chooser_button_new_with_dialog gtk_file_chooser_button_new_with_dialog;
11761 alias c_gtk_file_chooser_button_get_focus_on_click gtk_file_chooser_button_get_focus_on_click;
11762 alias c_gtk_file_chooser_button_get_title gtk_file_chooser_button_get_title;
11763 alias c_gtk_file_chooser_button_get_width_chars gtk_file_chooser_button_get_width_chars;
11764 alias c_gtk_file_chooser_button_set_focus_on_click gtk_file_chooser_button_set_focus_on_click;
11765 alias c_gtk_file_chooser_button_set_title gtk_file_chooser_button_set_title;
11766 alias c_gtk_file_chooser_button_set_width_chars gtk_file_chooser_button_set_width_chars;
11767 
11768 // gtk.FileChooserDialog
11769 
11770 alias c_gtk_file_chooser_dialog_get_type gtk_file_chooser_dialog_get_type;
11771 alias c_gtk_file_chooser_dialog_new gtk_file_chooser_dialog_new;
11772 
11773 // gtk.FileChooserNative
11774 
11775 alias c_gtk_file_chooser_native_get_type gtk_file_chooser_native_get_type;
11776 alias c_gtk_file_chooser_native_new gtk_file_chooser_native_new;
11777 alias c_gtk_file_chooser_native_get_accept_label gtk_file_chooser_native_get_accept_label;
11778 alias c_gtk_file_chooser_native_get_cancel_label gtk_file_chooser_native_get_cancel_label;
11779 alias c_gtk_file_chooser_native_set_accept_label gtk_file_chooser_native_set_accept_label;
11780 alias c_gtk_file_chooser_native_set_cancel_label gtk_file_chooser_native_set_cancel_label;
11781 
11782 // gtk.FileChooserWidget
11783 
11784 alias c_gtk_file_chooser_widget_get_type gtk_file_chooser_widget_get_type;
11785 alias c_gtk_file_chooser_widget_new gtk_file_chooser_widget_new;
11786 
11787 // gtk.FileFilter
11788 
11789 alias c_gtk_file_filter_get_type gtk_file_filter_get_type;
11790 alias c_gtk_file_filter_new gtk_file_filter_new;
11791 alias c_gtk_file_filter_new_from_gvariant gtk_file_filter_new_from_gvariant;
11792 alias c_gtk_file_filter_add_custom gtk_file_filter_add_custom;
11793 alias c_gtk_file_filter_add_mime_type gtk_file_filter_add_mime_type;
11794 alias c_gtk_file_filter_add_pattern gtk_file_filter_add_pattern;
11795 alias c_gtk_file_filter_add_pixbuf_formats gtk_file_filter_add_pixbuf_formats;
11796 alias c_gtk_file_filter_filter gtk_file_filter_filter;
11797 alias c_gtk_file_filter_get_name gtk_file_filter_get_name;
11798 alias c_gtk_file_filter_get_needed gtk_file_filter_get_needed;
11799 alias c_gtk_file_filter_set_name gtk_file_filter_set_name;
11800 alias c_gtk_file_filter_to_gvariant gtk_file_filter_to_gvariant;
11801 
11802 // gtk.Fixed
11803 
11804 alias c_gtk_fixed_get_type gtk_fixed_get_type;
11805 alias c_gtk_fixed_new gtk_fixed_new;
11806 alias c_gtk_fixed_move gtk_fixed_move;
11807 alias c_gtk_fixed_put gtk_fixed_put;
11808 
11809 // gtk.FlowBox
11810 
11811 alias c_gtk_flow_box_get_type gtk_flow_box_get_type;
11812 alias c_gtk_flow_box_new gtk_flow_box_new;
11813 alias c_gtk_flow_box_bind_model gtk_flow_box_bind_model;
11814 alias c_gtk_flow_box_get_activate_on_single_click gtk_flow_box_get_activate_on_single_click;
11815 alias c_gtk_flow_box_get_child_at_index gtk_flow_box_get_child_at_index;
11816 alias c_gtk_flow_box_get_child_at_pos gtk_flow_box_get_child_at_pos;
11817 alias c_gtk_flow_box_get_column_spacing gtk_flow_box_get_column_spacing;
11818 alias c_gtk_flow_box_get_homogeneous gtk_flow_box_get_homogeneous;
11819 alias c_gtk_flow_box_get_max_children_per_line gtk_flow_box_get_max_children_per_line;
11820 alias c_gtk_flow_box_get_min_children_per_line gtk_flow_box_get_min_children_per_line;
11821 alias c_gtk_flow_box_get_row_spacing gtk_flow_box_get_row_spacing;
11822 alias c_gtk_flow_box_get_selected_children gtk_flow_box_get_selected_children;
11823 alias c_gtk_flow_box_get_selection_mode gtk_flow_box_get_selection_mode;
11824 alias c_gtk_flow_box_insert gtk_flow_box_insert;
11825 alias c_gtk_flow_box_invalidate_filter gtk_flow_box_invalidate_filter;
11826 alias c_gtk_flow_box_invalidate_sort gtk_flow_box_invalidate_sort;
11827 alias c_gtk_flow_box_select_all gtk_flow_box_select_all;
11828 alias c_gtk_flow_box_select_child gtk_flow_box_select_child;
11829 alias c_gtk_flow_box_selected_foreach gtk_flow_box_selected_foreach;
11830 alias c_gtk_flow_box_set_activate_on_single_click gtk_flow_box_set_activate_on_single_click;
11831 alias c_gtk_flow_box_set_column_spacing gtk_flow_box_set_column_spacing;
11832 alias c_gtk_flow_box_set_filter_func gtk_flow_box_set_filter_func;
11833 alias c_gtk_flow_box_set_hadjustment gtk_flow_box_set_hadjustment;
11834 alias c_gtk_flow_box_set_homogeneous gtk_flow_box_set_homogeneous;
11835 alias c_gtk_flow_box_set_max_children_per_line gtk_flow_box_set_max_children_per_line;
11836 alias c_gtk_flow_box_set_min_children_per_line gtk_flow_box_set_min_children_per_line;
11837 alias c_gtk_flow_box_set_row_spacing gtk_flow_box_set_row_spacing;
11838 alias c_gtk_flow_box_set_selection_mode gtk_flow_box_set_selection_mode;
11839 alias c_gtk_flow_box_set_sort_func gtk_flow_box_set_sort_func;
11840 alias c_gtk_flow_box_set_vadjustment gtk_flow_box_set_vadjustment;
11841 alias c_gtk_flow_box_unselect_all gtk_flow_box_unselect_all;
11842 alias c_gtk_flow_box_unselect_child gtk_flow_box_unselect_child;
11843 
11844 // gtk.FlowBoxAccessible
11845 
11846 alias c_gtk_flow_box_accessible_get_type gtk_flow_box_accessible_get_type;
11847 
11848 // gtk.FlowBoxChild
11849 
11850 alias c_gtk_flow_box_child_get_type gtk_flow_box_child_get_type;
11851 alias c_gtk_flow_box_child_new gtk_flow_box_child_new;
11852 alias c_gtk_flow_box_child_changed gtk_flow_box_child_changed;
11853 alias c_gtk_flow_box_child_get_index gtk_flow_box_child_get_index;
11854 alias c_gtk_flow_box_child_is_selected gtk_flow_box_child_is_selected;
11855 
11856 // gtk.FlowBoxChildAccessible
11857 
11858 alias c_gtk_flow_box_child_accessible_get_type gtk_flow_box_child_accessible_get_type;
11859 
11860 // gtk.FontButton
11861 
11862 alias c_gtk_font_button_get_type gtk_font_button_get_type;
11863 alias c_gtk_font_button_new gtk_font_button_new;
11864 alias c_gtk_font_button_new_with_font gtk_font_button_new_with_font;
11865 alias c_gtk_font_button_get_font_name gtk_font_button_get_font_name;
11866 alias c_gtk_font_button_get_show_size gtk_font_button_get_show_size;
11867 alias c_gtk_font_button_get_show_style gtk_font_button_get_show_style;
11868 alias c_gtk_font_button_get_title gtk_font_button_get_title;
11869 alias c_gtk_font_button_get_use_font gtk_font_button_get_use_font;
11870 alias c_gtk_font_button_get_use_size gtk_font_button_get_use_size;
11871 alias c_gtk_font_button_set_font_name gtk_font_button_set_font_name;
11872 alias c_gtk_font_button_set_show_size gtk_font_button_set_show_size;
11873 alias c_gtk_font_button_set_show_style gtk_font_button_set_show_style;
11874 alias c_gtk_font_button_set_title gtk_font_button_set_title;
11875 alias c_gtk_font_button_set_use_font gtk_font_button_set_use_font;
11876 alias c_gtk_font_button_set_use_size gtk_font_button_set_use_size;
11877 
11878 // gtk.FontChooser
11879 
11880 alias c_gtk_font_chooser_get_type gtk_font_chooser_get_type;
11881 alias c_gtk_font_chooser_get_font gtk_font_chooser_get_font;
11882 alias c_gtk_font_chooser_get_font_desc gtk_font_chooser_get_font_desc;
11883 alias c_gtk_font_chooser_get_font_face gtk_font_chooser_get_font_face;
11884 alias c_gtk_font_chooser_get_font_family gtk_font_chooser_get_font_family;
11885 alias c_gtk_font_chooser_get_font_features gtk_font_chooser_get_font_features;
11886 alias c_gtk_font_chooser_get_font_map gtk_font_chooser_get_font_map;
11887 alias c_gtk_font_chooser_get_font_size gtk_font_chooser_get_font_size;
11888 alias c_gtk_font_chooser_get_language gtk_font_chooser_get_language;
11889 alias c_gtk_font_chooser_get_level gtk_font_chooser_get_level;
11890 alias c_gtk_font_chooser_get_preview_text gtk_font_chooser_get_preview_text;
11891 alias c_gtk_font_chooser_get_show_preview_entry gtk_font_chooser_get_show_preview_entry;
11892 alias c_gtk_font_chooser_set_filter_func gtk_font_chooser_set_filter_func;
11893 alias c_gtk_font_chooser_set_font gtk_font_chooser_set_font;
11894 alias c_gtk_font_chooser_set_font_desc gtk_font_chooser_set_font_desc;
11895 alias c_gtk_font_chooser_set_font_map gtk_font_chooser_set_font_map;
11896 alias c_gtk_font_chooser_set_language gtk_font_chooser_set_language;
11897 alias c_gtk_font_chooser_set_level gtk_font_chooser_set_level;
11898 alias c_gtk_font_chooser_set_preview_text gtk_font_chooser_set_preview_text;
11899 alias c_gtk_font_chooser_set_show_preview_entry gtk_font_chooser_set_show_preview_entry;
11900 
11901 // gtk.FontChooserDialog
11902 
11903 alias c_gtk_font_chooser_dialog_get_type gtk_font_chooser_dialog_get_type;
11904 alias c_gtk_font_chooser_dialog_new gtk_font_chooser_dialog_new;
11905 
11906 // gtk.FontChooserWidget
11907 
11908 alias c_gtk_font_chooser_widget_get_type gtk_font_chooser_widget_get_type;
11909 alias c_gtk_font_chooser_widget_new gtk_font_chooser_widget_new;
11910 
11911 // gtk.FontSelection
11912 
11913 alias c_gtk_font_selection_get_type gtk_font_selection_get_type;
11914 alias c_gtk_font_selection_new gtk_font_selection_new;
11915 alias c_gtk_font_selection_get_face gtk_font_selection_get_face;
11916 alias c_gtk_font_selection_get_face_list gtk_font_selection_get_face_list;
11917 alias c_gtk_font_selection_get_family gtk_font_selection_get_family;
11918 alias c_gtk_font_selection_get_family_list gtk_font_selection_get_family_list;
11919 alias c_gtk_font_selection_get_font_name gtk_font_selection_get_font_name;
11920 alias c_gtk_font_selection_get_preview_entry gtk_font_selection_get_preview_entry;
11921 alias c_gtk_font_selection_get_preview_text gtk_font_selection_get_preview_text;
11922 alias c_gtk_font_selection_get_size gtk_font_selection_get_size;
11923 alias c_gtk_font_selection_get_size_entry gtk_font_selection_get_size_entry;
11924 alias c_gtk_font_selection_get_size_list gtk_font_selection_get_size_list;
11925 alias c_gtk_font_selection_set_font_name gtk_font_selection_set_font_name;
11926 alias c_gtk_font_selection_set_preview_text gtk_font_selection_set_preview_text;
11927 
11928 // gtk.FontSelectionDialog
11929 
11930 alias c_gtk_font_selection_dialog_get_type gtk_font_selection_dialog_get_type;
11931 alias c_gtk_font_selection_dialog_new gtk_font_selection_dialog_new;
11932 alias c_gtk_font_selection_dialog_get_cancel_button gtk_font_selection_dialog_get_cancel_button;
11933 alias c_gtk_font_selection_dialog_get_font_name gtk_font_selection_dialog_get_font_name;
11934 alias c_gtk_font_selection_dialog_get_font_selection gtk_font_selection_dialog_get_font_selection;
11935 alias c_gtk_font_selection_dialog_get_ok_button gtk_font_selection_dialog_get_ok_button;
11936 alias c_gtk_font_selection_dialog_get_preview_text gtk_font_selection_dialog_get_preview_text;
11937 alias c_gtk_font_selection_dialog_set_font_name gtk_font_selection_dialog_set_font_name;
11938 alias c_gtk_font_selection_dialog_set_preview_text gtk_font_selection_dialog_set_preview_text;
11939 
11940 // gtk.Frame
11941 
11942 alias c_gtk_frame_get_type gtk_frame_get_type;
11943 alias c_gtk_frame_new gtk_frame_new;
11944 alias c_gtk_frame_get_label gtk_frame_get_label;
11945 alias c_gtk_frame_get_label_align gtk_frame_get_label_align;
11946 alias c_gtk_frame_get_label_widget gtk_frame_get_label_widget;
11947 alias c_gtk_frame_get_shadow_type gtk_frame_get_shadow_type;
11948 alias c_gtk_frame_set_label gtk_frame_set_label;
11949 alias c_gtk_frame_set_label_align gtk_frame_set_label_align;
11950 alias c_gtk_frame_set_label_widget gtk_frame_set_label_widget;
11951 alias c_gtk_frame_set_shadow_type gtk_frame_set_shadow_type;
11952 
11953 // gtk.FrameAccessible
11954 
11955 alias c_gtk_frame_accessible_get_type gtk_frame_accessible_get_type;
11956 
11957 // gtk.GLArea
11958 
11959 alias c_gtk_gl_area_get_type gtk_gl_area_get_type;
11960 alias c_gtk_gl_area_new gtk_gl_area_new;
11961 alias c_gtk_gl_area_attach_buffers gtk_gl_area_attach_buffers;
11962 alias c_gtk_gl_area_get_auto_render gtk_gl_area_get_auto_render;
11963 alias c_gtk_gl_area_get_context gtk_gl_area_get_context;
11964 alias c_gtk_gl_area_get_error gtk_gl_area_get_error;
11965 alias c_gtk_gl_area_get_has_alpha gtk_gl_area_get_has_alpha;
11966 alias c_gtk_gl_area_get_has_depth_buffer gtk_gl_area_get_has_depth_buffer;
11967 alias c_gtk_gl_area_get_has_stencil_buffer gtk_gl_area_get_has_stencil_buffer;
11968 alias c_gtk_gl_area_get_required_version gtk_gl_area_get_required_version;
11969 alias c_gtk_gl_area_get_use_es gtk_gl_area_get_use_es;
11970 alias c_gtk_gl_area_make_current gtk_gl_area_make_current;
11971 alias c_gtk_gl_area_queue_render gtk_gl_area_queue_render;
11972 alias c_gtk_gl_area_set_auto_render gtk_gl_area_set_auto_render;
11973 alias c_gtk_gl_area_set_error gtk_gl_area_set_error;
11974 alias c_gtk_gl_area_set_has_alpha gtk_gl_area_set_has_alpha;
11975 alias c_gtk_gl_area_set_has_depth_buffer gtk_gl_area_set_has_depth_buffer;
11976 alias c_gtk_gl_area_set_has_stencil_buffer gtk_gl_area_set_has_stencil_buffer;
11977 alias c_gtk_gl_area_set_required_version gtk_gl_area_set_required_version;
11978 alias c_gtk_gl_area_set_use_es gtk_gl_area_set_use_es;
11979 
11980 // gtk.Gesture
11981 
11982 alias c_gtk_gesture_get_type gtk_gesture_get_type;
11983 alias c_gtk_gesture_get_bounding_box gtk_gesture_get_bounding_box;
11984 alias c_gtk_gesture_get_bounding_box_center gtk_gesture_get_bounding_box_center;
11985 alias c_gtk_gesture_get_device gtk_gesture_get_device;
11986 alias c_gtk_gesture_get_group gtk_gesture_get_group;
11987 alias c_gtk_gesture_get_last_event gtk_gesture_get_last_event;
11988 alias c_gtk_gesture_get_last_updated_sequence gtk_gesture_get_last_updated_sequence;
11989 alias c_gtk_gesture_get_point gtk_gesture_get_point;
11990 alias c_gtk_gesture_get_sequence_state gtk_gesture_get_sequence_state;
11991 alias c_gtk_gesture_get_sequences gtk_gesture_get_sequences;
11992 alias c_gtk_gesture_get_window gtk_gesture_get_window;
11993 alias c_gtk_gesture_group gtk_gesture_group;
11994 alias c_gtk_gesture_handles_sequence gtk_gesture_handles_sequence;
11995 alias c_gtk_gesture_is_active gtk_gesture_is_active;
11996 alias c_gtk_gesture_is_grouped_with gtk_gesture_is_grouped_with;
11997 alias c_gtk_gesture_is_recognized gtk_gesture_is_recognized;
11998 alias c_gtk_gesture_set_sequence_state gtk_gesture_set_sequence_state;
11999 alias c_gtk_gesture_set_state gtk_gesture_set_state;
12000 alias c_gtk_gesture_set_window gtk_gesture_set_window;
12001 alias c_gtk_gesture_ungroup gtk_gesture_ungroup;
12002 
12003 // gtk.GestureDrag
12004 
12005 alias c_gtk_gesture_drag_get_type gtk_gesture_drag_get_type;
12006 alias c_gtk_gesture_drag_new gtk_gesture_drag_new;
12007 alias c_gtk_gesture_drag_get_offset gtk_gesture_drag_get_offset;
12008 alias c_gtk_gesture_drag_get_start_point gtk_gesture_drag_get_start_point;
12009 
12010 // gtk.GestureLongPress
12011 
12012 alias c_gtk_gesture_long_press_get_type gtk_gesture_long_press_get_type;
12013 alias c_gtk_gesture_long_press_new gtk_gesture_long_press_new;
12014 
12015 // gtk.GestureMultiPress
12016 
12017 alias c_gtk_gesture_multi_press_get_type gtk_gesture_multi_press_get_type;
12018 alias c_gtk_gesture_multi_press_new gtk_gesture_multi_press_new;
12019 alias c_gtk_gesture_multi_press_get_area gtk_gesture_multi_press_get_area;
12020 alias c_gtk_gesture_multi_press_set_area gtk_gesture_multi_press_set_area;
12021 
12022 // gtk.GesturePan
12023 
12024 alias c_gtk_gesture_pan_get_type gtk_gesture_pan_get_type;
12025 alias c_gtk_gesture_pan_new gtk_gesture_pan_new;
12026 alias c_gtk_gesture_pan_get_orientation gtk_gesture_pan_get_orientation;
12027 alias c_gtk_gesture_pan_set_orientation gtk_gesture_pan_set_orientation;
12028 
12029 // gtk.GestureRotate
12030 
12031 alias c_gtk_gesture_rotate_get_type gtk_gesture_rotate_get_type;
12032 alias c_gtk_gesture_rotate_new gtk_gesture_rotate_new;
12033 alias c_gtk_gesture_rotate_get_angle_delta gtk_gesture_rotate_get_angle_delta;
12034 
12035 // gtk.GestureSingle
12036 
12037 alias c_gtk_gesture_single_get_type gtk_gesture_single_get_type;
12038 alias c_gtk_gesture_single_get_button gtk_gesture_single_get_button;
12039 alias c_gtk_gesture_single_get_current_button gtk_gesture_single_get_current_button;
12040 alias c_gtk_gesture_single_get_current_sequence gtk_gesture_single_get_current_sequence;
12041 alias c_gtk_gesture_single_get_exclusive gtk_gesture_single_get_exclusive;
12042 alias c_gtk_gesture_single_get_touch_only gtk_gesture_single_get_touch_only;
12043 alias c_gtk_gesture_single_set_button gtk_gesture_single_set_button;
12044 alias c_gtk_gesture_single_set_exclusive gtk_gesture_single_set_exclusive;
12045 alias c_gtk_gesture_single_set_touch_only gtk_gesture_single_set_touch_only;
12046 
12047 // gtk.GestureStylus
12048 
12049 alias c_gtk_gesture_stylus_get_type gtk_gesture_stylus_get_type;
12050 alias c_gtk_gesture_stylus_new gtk_gesture_stylus_new;
12051 alias c_gtk_gesture_stylus_get_axes gtk_gesture_stylus_get_axes;
12052 alias c_gtk_gesture_stylus_get_axis gtk_gesture_stylus_get_axis;
12053 alias c_gtk_gesture_stylus_get_device_tool gtk_gesture_stylus_get_device_tool;
12054 
12055 // gtk.GestureSwipe
12056 
12057 alias c_gtk_gesture_swipe_get_type gtk_gesture_swipe_get_type;
12058 alias c_gtk_gesture_swipe_new gtk_gesture_swipe_new;
12059 alias c_gtk_gesture_swipe_get_velocity gtk_gesture_swipe_get_velocity;
12060 
12061 // gtk.GestureZoom
12062 
12063 alias c_gtk_gesture_zoom_get_type gtk_gesture_zoom_get_type;
12064 alias c_gtk_gesture_zoom_new gtk_gesture_zoom_new;
12065 alias c_gtk_gesture_zoom_get_scale_delta gtk_gesture_zoom_get_scale_delta;
12066 
12067 // gtk.Gradient
12068 
12069 alias c_gtk_gradient_get_type gtk_gradient_get_type;
12070 alias c_gtk_gradient_new_linear gtk_gradient_new_linear;
12071 alias c_gtk_gradient_new_radial gtk_gradient_new_radial;
12072 alias c_gtk_gradient_add_color_stop gtk_gradient_add_color_stop;
12073 alias c_gtk_gradient_ref gtk_gradient_ref;
12074 alias c_gtk_gradient_resolve gtk_gradient_resolve;
12075 alias c_gtk_gradient_resolve_for_context gtk_gradient_resolve_for_context;
12076 alias c_gtk_gradient_to_string gtk_gradient_to_string;
12077 alias c_gtk_gradient_unref gtk_gradient_unref;
12078 
12079 // gtk.Grid
12080 
12081 alias c_gtk_grid_get_type gtk_grid_get_type;
12082 alias c_gtk_grid_new gtk_grid_new;
12083 alias c_gtk_grid_attach gtk_grid_attach;
12084 alias c_gtk_grid_attach_next_to gtk_grid_attach_next_to;
12085 alias c_gtk_grid_get_baseline_row gtk_grid_get_baseline_row;
12086 alias c_gtk_grid_get_child_at gtk_grid_get_child_at;
12087 alias c_gtk_grid_get_column_homogeneous gtk_grid_get_column_homogeneous;
12088 alias c_gtk_grid_get_column_spacing gtk_grid_get_column_spacing;
12089 alias c_gtk_grid_get_row_baseline_position gtk_grid_get_row_baseline_position;
12090 alias c_gtk_grid_get_row_homogeneous gtk_grid_get_row_homogeneous;
12091 alias c_gtk_grid_get_row_spacing gtk_grid_get_row_spacing;
12092 alias c_gtk_grid_insert_column gtk_grid_insert_column;
12093 alias c_gtk_grid_insert_next_to gtk_grid_insert_next_to;
12094 alias c_gtk_grid_insert_row gtk_grid_insert_row;
12095 alias c_gtk_grid_remove_column gtk_grid_remove_column;
12096 alias c_gtk_grid_remove_row gtk_grid_remove_row;
12097 alias c_gtk_grid_set_baseline_row gtk_grid_set_baseline_row;
12098 alias c_gtk_grid_set_column_homogeneous gtk_grid_set_column_homogeneous;
12099 alias c_gtk_grid_set_column_spacing gtk_grid_set_column_spacing;
12100 alias c_gtk_grid_set_row_baseline_position gtk_grid_set_row_baseline_position;
12101 alias c_gtk_grid_set_row_homogeneous gtk_grid_set_row_homogeneous;
12102 alias c_gtk_grid_set_row_spacing gtk_grid_set_row_spacing;
12103 
12104 // gtk.HBox
12105 
12106 alias c_gtk_hbox_get_type gtk_hbox_get_type;
12107 alias c_gtk_hbox_new gtk_hbox_new;
12108 
12109 // gtk.HButtonBox
12110 
12111 alias c_gtk_hbutton_box_get_type gtk_hbutton_box_get_type;
12112 alias c_gtk_hbutton_box_new gtk_hbutton_box_new;
12113 
12114 // gtk.HPaned
12115 
12116 alias c_gtk_hpaned_get_type gtk_hpaned_get_type;
12117 alias c_gtk_hpaned_new gtk_hpaned_new;
12118 
12119 // gtk.HSV
12120 
12121 alias c_gtk_hsv_get_type gtk_hsv_get_type;
12122 alias c_gtk_hsv_new gtk_hsv_new;
12123 alias c_gtk_hsv_to_rgb gtk_hsv_to_rgb;
12124 alias c_gtk_hsv_get_color gtk_hsv_get_color;
12125 alias c_gtk_hsv_get_metrics gtk_hsv_get_metrics;
12126 alias c_gtk_hsv_is_adjusting gtk_hsv_is_adjusting;
12127 alias c_gtk_hsv_set_color gtk_hsv_set_color;
12128 alias c_gtk_hsv_set_metrics gtk_hsv_set_metrics;
12129 alias c_gtk_rgb_to_hsv gtk_rgb_to_hsv;
12130 
12131 // gtk.HScale
12132 
12133 alias c_gtk_hscale_get_type gtk_hscale_get_type;
12134 alias c_gtk_hscale_new gtk_hscale_new;
12135 alias c_gtk_hscale_new_with_range gtk_hscale_new_with_range;
12136 
12137 // gtk.HScrollbar
12138 
12139 alias c_gtk_hscrollbar_get_type gtk_hscrollbar_get_type;
12140 alias c_gtk_hscrollbar_new gtk_hscrollbar_new;
12141 
12142 // gtk.HSeparator
12143 
12144 alias c_gtk_hseparator_get_type gtk_hseparator_get_type;
12145 alias c_gtk_hseparator_new gtk_hseparator_new;
12146 
12147 // gtk.HandleBox
12148 
12149 alias c_gtk_handle_box_get_type gtk_handle_box_get_type;
12150 alias c_gtk_handle_box_new gtk_handle_box_new;
12151 alias c_gtk_handle_box_get_child_detached gtk_handle_box_get_child_detached;
12152 alias c_gtk_handle_box_get_handle_position gtk_handle_box_get_handle_position;
12153 alias c_gtk_handle_box_get_shadow_type gtk_handle_box_get_shadow_type;
12154 alias c_gtk_handle_box_get_snap_edge gtk_handle_box_get_snap_edge;
12155 alias c_gtk_handle_box_set_handle_position gtk_handle_box_set_handle_position;
12156 alias c_gtk_handle_box_set_shadow_type gtk_handle_box_set_shadow_type;
12157 alias c_gtk_handle_box_set_snap_edge gtk_handle_box_set_snap_edge;
12158 
12159 // gtk.HeaderBar
12160 
12161 alias c_gtk_header_bar_get_type gtk_header_bar_get_type;
12162 alias c_gtk_header_bar_new gtk_header_bar_new;
12163 alias c_gtk_header_bar_get_custom_title gtk_header_bar_get_custom_title;
12164 alias c_gtk_header_bar_get_decoration_layout gtk_header_bar_get_decoration_layout;
12165 alias c_gtk_header_bar_get_has_subtitle gtk_header_bar_get_has_subtitle;
12166 alias c_gtk_header_bar_get_show_close_button gtk_header_bar_get_show_close_button;
12167 alias c_gtk_header_bar_get_subtitle gtk_header_bar_get_subtitle;
12168 alias c_gtk_header_bar_get_title gtk_header_bar_get_title;
12169 alias c_gtk_header_bar_pack_end gtk_header_bar_pack_end;
12170 alias c_gtk_header_bar_pack_start gtk_header_bar_pack_start;
12171 alias c_gtk_header_bar_set_custom_title gtk_header_bar_set_custom_title;
12172 alias c_gtk_header_bar_set_decoration_layout gtk_header_bar_set_decoration_layout;
12173 alias c_gtk_header_bar_set_has_subtitle gtk_header_bar_set_has_subtitle;
12174 alias c_gtk_header_bar_set_show_close_button gtk_header_bar_set_show_close_button;
12175 alias c_gtk_header_bar_set_subtitle gtk_header_bar_set_subtitle;
12176 alias c_gtk_header_bar_set_title gtk_header_bar_set_title;
12177 
12178 // gtk.IMContext
12179 
12180 alias c_gtk_im_context_get_type gtk_im_context_get_type;
12181 alias c_gtk_im_context_delete_surrounding gtk_im_context_delete_surrounding;
12182 alias c_gtk_im_context_filter_keypress gtk_im_context_filter_keypress;
12183 alias c_gtk_im_context_focus_in gtk_im_context_focus_in;
12184 alias c_gtk_im_context_focus_out gtk_im_context_focus_out;
12185 alias c_gtk_im_context_get_preedit_string gtk_im_context_get_preedit_string;
12186 alias c_gtk_im_context_get_surrounding gtk_im_context_get_surrounding;
12187 alias c_gtk_im_context_reset gtk_im_context_reset;
12188 alias c_gtk_im_context_set_client_window gtk_im_context_set_client_window;
12189 alias c_gtk_im_context_set_cursor_location gtk_im_context_set_cursor_location;
12190 alias c_gtk_im_context_set_surrounding gtk_im_context_set_surrounding;
12191 alias c_gtk_im_context_set_use_preedit gtk_im_context_set_use_preedit;
12192 
12193 // gtk.IMContextSimple
12194 
12195 alias c_gtk_im_context_simple_get_type gtk_im_context_simple_get_type;
12196 alias c_gtk_im_context_simple_new gtk_im_context_simple_new;
12197 alias c_gtk_im_context_simple_add_compose_file gtk_im_context_simple_add_compose_file;
12198 alias c_gtk_im_context_simple_add_table gtk_im_context_simple_add_table;
12199 
12200 // gtk.IMMulticontext
12201 
12202 alias c_gtk_im_multicontext_get_type gtk_im_multicontext_get_type;
12203 alias c_gtk_im_multicontext_new gtk_im_multicontext_new;
12204 alias c_gtk_im_multicontext_append_menuitems gtk_im_multicontext_append_menuitems;
12205 alias c_gtk_im_multicontext_get_context_id gtk_im_multicontext_get_context_id;
12206 alias c_gtk_im_multicontext_set_context_id gtk_im_multicontext_set_context_id;
12207 
12208 // gtk.IconFactory
12209 
12210 alias c_gtk_icon_factory_get_type gtk_icon_factory_get_type;
12211 alias c_gtk_icon_factory_new gtk_icon_factory_new;
12212 alias c_gtk_icon_factory_lookup_default gtk_icon_factory_lookup_default;
12213 alias c_gtk_icon_factory_add gtk_icon_factory_add;
12214 alias c_gtk_icon_factory_add_default gtk_icon_factory_add_default;
12215 alias c_gtk_icon_factory_lookup gtk_icon_factory_lookup;
12216 alias c_gtk_icon_factory_remove_default gtk_icon_factory_remove_default;
12217 
12218 // gtk.IconInfo
12219 
12220 alias c_gtk_icon_info_get_type gtk_icon_info_get_type;
12221 alias c_gtk_icon_info_new_for_pixbuf gtk_icon_info_new_for_pixbuf;
12222 alias c_gtk_icon_info_copy gtk_icon_info_copy;
12223 alias c_gtk_icon_info_free gtk_icon_info_free;
12224 alias c_gtk_icon_info_get_attach_points gtk_icon_info_get_attach_points;
12225 alias c_gtk_icon_info_get_base_scale gtk_icon_info_get_base_scale;
12226 alias c_gtk_icon_info_get_base_size gtk_icon_info_get_base_size;
12227 alias c_gtk_icon_info_get_builtin_pixbuf gtk_icon_info_get_builtin_pixbuf;
12228 alias c_gtk_icon_info_get_display_name gtk_icon_info_get_display_name;
12229 alias c_gtk_icon_info_get_embedded_rect gtk_icon_info_get_embedded_rect;
12230 alias c_gtk_icon_info_get_filename gtk_icon_info_get_filename;
12231 alias c_gtk_icon_info_is_symbolic gtk_icon_info_is_symbolic;
12232 alias c_gtk_icon_info_load_icon gtk_icon_info_load_icon;
12233 alias c_gtk_icon_info_load_icon_async gtk_icon_info_load_icon_async;
12234 alias c_gtk_icon_info_load_icon_finish gtk_icon_info_load_icon_finish;
12235 alias c_gtk_icon_info_load_surface gtk_icon_info_load_surface;
12236 alias c_gtk_icon_info_load_symbolic gtk_icon_info_load_symbolic;
12237 alias c_gtk_icon_info_load_symbolic_async gtk_icon_info_load_symbolic_async;
12238 alias c_gtk_icon_info_load_symbolic_finish gtk_icon_info_load_symbolic_finish;
12239 alias c_gtk_icon_info_load_symbolic_for_context gtk_icon_info_load_symbolic_for_context;
12240 alias c_gtk_icon_info_load_symbolic_for_context_async gtk_icon_info_load_symbolic_for_context_async;
12241 alias c_gtk_icon_info_load_symbolic_for_context_finish gtk_icon_info_load_symbolic_for_context_finish;
12242 alias c_gtk_icon_info_load_symbolic_for_style gtk_icon_info_load_symbolic_for_style;
12243 alias c_gtk_icon_info_set_raw_coordinates gtk_icon_info_set_raw_coordinates;
12244 
12245 // gtk.IconSet
12246 
12247 alias c_gtk_icon_set_get_type gtk_icon_set_get_type;
12248 alias c_gtk_icon_set_new gtk_icon_set_new;
12249 alias c_gtk_icon_set_new_from_pixbuf gtk_icon_set_new_from_pixbuf;
12250 alias c_gtk_icon_set_add_source gtk_icon_set_add_source;
12251 alias c_gtk_icon_set_copy gtk_icon_set_copy;
12252 alias c_gtk_icon_set_get_sizes gtk_icon_set_get_sizes;
12253 alias c_gtk_icon_set_ref gtk_icon_set_ref;
12254 alias c_gtk_icon_set_render_icon gtk_icon_set_render_icon;
12255 alias c_gtk_icon_set_render_icon_pixbuf gtk_icon_set_render_icon_pixbuf;
12256 alias c_gtk_icon_set_render_icon_surface gtk_icon_set_render_icon_surface;
12257 alias c_gtk_icon_set_unref gtk_icon_set_unref;
12258 
12259 // gtk.IconSource
12260 
12261 alias c_gtk_icon_source_get_type gtk_icon_source_get_type;
12262 alias c_gtk_icon_source_new gtk_icon_source_new;
12263 alias c_gtk_icon_source_copy gtk_icon_source_copy;
12264 alias c_gtk_icon_source_free gtk_icon_source_free;
12265 alias c_gtk_icon_source_get_direction gtk_icon_source_get_direction;
12266 alias c_gtk_icon_source_get_direction_wildcarded gtk_icon_source_get_direction_wildcarded;
12267 alias c_gtk_icon_source_get_filename gtk_icon_source_get_filename;
12268 alias c_gtk_icon_source_get_icon_name gtk_icon_source_get_icon_name;
12269 alias c_gtk_icon_source_get_pixbuf gtk_icon_source_get_pixbuf;
12270 alias c_gtk_icon_source_get_size gtk_icon_source_get_size;
12271 alias c_gtk_icon_source_get_size_wildcarded gtk_icon_source_get_size_wildcarded;
12272 alias c_gtk_icon_source_get_state gtk_icon_source_get_state;
12273 alias c_gtk_icon_source_get_state_wildcarded gtk_icon_source_get_state_wildcarded;
12274 alias c_gtk_icon_source_set_direction gtk_icon_source_set_direction;
12275 alias c_gtk_icon_source_set_direction_wildcarded gtk_icon_source_set_direction_wildcarded;
12276 alias c_gtk_icon_source_set_filename gtk_icon_source_set_filename;
12277 alias c_gtk_icon_source_set_icon_name gtk_icon_source_set_icon_name;
12278 alias c_gtk_icon_source_set_pixbuf gtk_icon_source_set_pixbuf;
12279 alias c_gtk_icon_source_set_size gtk_icon_source_set_size;
12280 alias c_gtk_icon_source_set_size_wildcarded gtk_icon_source_set_size_wildcarded;
12281 alias c_gtk_icon_source_set_state gtk_icon_source_set_state;
12282 alias c_gtk_icon_source_set_state_wildcarded gtk_icon_source_set_state_wildcarded;
12283 
12284 // gtk.IconTheme
12285 
12286 alias c_gtk_icon_theme_get_type gtk_icon_theme_get_type;
12287 alias c_gtk_icon_theme_new gtk_icon_theme_new;
12288 alias c_gtk_icon_theme_add_builtin_icon gtk_icon_theme_add_builtin_icon;
12289 alias c_gtk_icon_theme_get_default gtk_icon_theme_get_default;
12290 alias c_gtk_icon_theme_get_for_screen gtk_icon_theme_get_for_screen;
12291 alias c_gtk_icon_theme_add_resource_path gtk_icon_theme_add_resource_path;
12292 alias c_gtk_icon_theme_append_search_path gtk_icon_theme_append_search_path;
12293 alias c_gtk_icon_theme_choose_icon gtk_icon_theme_choose_icon;
12294 alias c_gtk_icon_theme_choose_icon_for_scale gtk_icon_theme_choose_icon_for_scale;
12295 alias c_gtk_icon_theme_get_example_icon_name gtk_icon_theme_get_example_icon_name;
12296 alias c_gtk_icon_theme_get_icon_sizes gtk_icon_theme_get_icon_sizes;
12297 alias c_gtk_icon_theme_get_search_path gtk_icon_theme_get_search_path;
12298 alias c_gtk_icon_theme_has_icon gtk_icon_theme_has_icon;
12299 alias c_gtk_icon_theme_list_contexts gtk_icon_theme_list_contexts;
12300 alias c_gtk_icon_theme_list_icons gtk_icon_theme_list_icons;
12301 alias c_gtk_icon_theme_load_icon gtk_icon_theme_load_icon;
12302 alias c_gtk_icon_theme_load_icon_for_scale gtk_icon_theme_load_icon_for_scale;
12303 alias c_gtk_icon_theme_load_surface gtk_icon_theme_load_surface;
12304 alias c_gtk_icon_theme_lookup_by_gicon gtk_icon_theme_lookup_by_gicon;
12305 alias c_gtk_icon_theme_lookup_by_gicon_for_scale gtk_icon_theme_lookup_by_gicon_for_scale;
12306 alias c_gtk_icon_theme_lookup_icon gtk_icon_theme_lookup_icon;
12307 alias c_gtk_icon_theme_lookup_icon_for_scale gtk_icon_theme_lookup_icon_for_scale;
12308 alias c_gtk_icon_theme_prepend_search_path gtk_icon_theme_prepend_search_path;
12309 alias c_gtk_icon_theme_rescan_if_needed gtk_icon_theme_rescan_if_needed;
12310 alias c_gtk_icon_theme_set_custom_theme gtk_icon_theme_set_custom_theme;
12311 alias c_gtk_icon_theme_set_screen gtk_icon_theme_set_screen;
12312 alias c_gtk_icon_theme_set_search_path gtk_icon_theme_set_search_path;
12313 
12314 // gtk.IconView
12315 
12316 alias c_gtk_icon_view_get_type gtk_icon_view_get_type;
12317 alias c_gtk_icon_view_new gtk_icon_view_new;
12318 alias c_gtk_icon_view_new_with_area gtk_icon_view_new_with_area;
12319 alias c_gtk_icon_view_new_with_model gtk_icon_view_new_with_model;
12320 alias c_gtk_icon_view_convert_widget_to_bin_window_coords gtk_icon_view_convert_widget_to_bin_window_coords;
12321 alias c_gtk_icon_view_create_drag_icon gtk_icon_view_create_drag_icon;
12322 alias c_gtk_icon_view_enable_model_drag_dest gtk_icon_view_enable_model_drag_dest;
12323 alias c_gtk_icon_view_enable_model_drag_source gtk_icon_view_enable_model_drag_source;
12324 alias c_gtk_icon_view_get_activate_on_single_click gtk_icon_view_get_activate_on_single_click;
12325 alias c_gtk_icon_view_get_cell_rect gtk_icon_view_get_cell_rect;
12326 alias c_gtk_icon_view_get_column_spacing gtk_icon_view_get_column_spacing;
12327 alias c_gtk_icon_view_get_columns gtk_icon_view_get_columns;
12328 alias c_gtk_icon_view_get_cursor gtk_icon_view_get_cursor;
12329 alias c_gtk_icon_view_get_dest_item_at_pos gtk_icon_view_get_dest_item_at_pos;
12330 alias c_gtk_icon_view_get_drag_dest_item gtk_icon_view_get_drag_dest_item;
12331 alias c_gtk_icon_view_get_item_at_pos gtk_icon_view_get_item_at_pos;
12332 alias c_gtk_icon_view_get_item_column gtk_icon_view_get_item_column;
12333 alias c_gtk_icon_view_get_item_orientation gtk_icon_view_get_item_orientation;
12334 alias c_gtk_icon_view_get_item_padding gtk_icon_view_get_item_padding;
12335 alias c_gtk_icon_view_get_item_row gtk_icon_view_get_item_row;
12336 alias c_gtk_icon_view_get_item_width gtk_icon_view_get_item_width;
12337 alias c_gtk_icon_view_get_margin gtk_icon_view_get_margin;
12338 alias c_gtk_icon_view_get_markup_column gtk_icon_view_get_markup_column;
12339 alias c_gtk_icon_view_get_model gtk_icon_view_get_model;
12340 alias c_gtk_icon_view_get_path_at_pos gtk_icon_view_get_path_at_pos;
12341 alias c_gtk_icon_view_get_pixbuf_column gtk_icon_view_get_pixbuf_column;
12342 alias c_gtk_icon_view_get_reorderable gtk_icon_view_get_reorderable;
12343 alias c_gtk_icon_view_get_row_spacing gtk_icon_view_get_row_spacing;
12344 alias c_gtk_icon_view_get_selected_items gtk_icon_view_get_selected_items;
12345 alias c_gtk_icon_view_get_selection_mode gtk_icon_view_get_selection_mode;
12346 alias c_gtk_icon_view_get_spacing gtk_icon_view_get_spacing;
12347 alias c_gtk_icon_view_get_text_column gtk_icon_view_get_text_column;
12348 alias c_gtk_icon_view_get_tooltip_column gtk_icon_view_get_tooltip_column;
12349 alias c_gtk_icon_view_get_tooltip_context gtk_icon_view_get_tooltip_context;
12350 alias c_gtk_icon_view_get_visible_range gtk_icon_view_get_visible_range;
12351 alias c_gtk_icon_view_item_activated gtk_icon_view_item_activated;
12352 alias c_gtk_icon_view_path_is_selected gtk_icon_view_path_is_selected;
12353 alias c_gtk_icon_view_scroll_to_path gtk_icon_view_scroll_to_path;
12354 alias c_gtk_icon_view_select_all gtk_icon_view_select_all;
12355 alias c_gtk_icon_view_select_path gtk_icon_view_select_path;
12356 alias c_gtk_icon_view_selected_foreach gtk_icon_view_selected_foreach;
12357 alias c_gtk_icon_view_set_activate_on_single_click gtk_icon_view_set_activate_on_single_click;
12358 alias c_gtk_icon_view_set_column_spacing gtk_icon_view_set_column_spacing;
12359 alias c_gtk_icon_view_set_columns gtk_icon_view_set_columns;
12360 alias c_gtk_icon_view_set_cursor gtk_icon_view_set_cursor;
12361 alias c_gtk_icon_view_set_drag_dest_item gtk_icon_view_set_drag_dest_item;
12362 alias c_gtk_icon_view_set_item_orientation gtk_icon_view_set_item_orientation;
12363 alias c_gtk_icon_view_set_item_padding gtk_icon_view_set_item_padding;
12364 alias c_gtk_icon_view_set_item_width gtk_icon_view_set_item_width;
12365 alias c_gtk_icon_view_set_margin gtk_icon_view_set_margin;
12366 alias c_gtk_icon_view_set_markup_column gtk_icon_view_set_markup_column;
12367 alias c_gtk_icon_view_set_model gtk_icon_view_set_model;
12368 alias c_gtk_icon_view_set_pixbuf_column gtk_icon_view_set_pixbuf_column;
12369 alias c_gtk_icon_view_set_reorderable gtk_icon_view_set_reorderable;
12370 alias c_gtk_icon_view_set_row_spacing gtk_icon_view_set_row_spacing;
12371 alias c_gtk_icon_view_set_selection_mode gtk_icon_view_set_selection_mode;
12372 alias c_gtk_icon_view_set_spacing gtk_icon_view_set_spacing;
12373 alias c_gtk_icon_view_set_text_column gtk_icon_view_set_text_column;
12374 alias c_gtk_icon_view_set_tooltip_cell gtk_icon_view_set_tooltip_cell;
12375 alias c_gtk_icon_view_set_tooltip_column gtk_icon_view_set_tooltip_column;
12376 alias c_gtk_icon_view_set_tooltip_item gtk_icon_view_set_tooltip_item;
12377 alias c_gtk_icon_view_unselect_all gtk_icon_view_unselect_all;
12378 alias c_gtk_icon_view_unselect_path gtk_icon_view_unselect_path;
12379 alias c_gtk_icon_view_unset_model_drag_dest gtk_icon_view_unset_model_drag_dest;
12380 alias c_gtk_icon_view_unset_model_drag_source gtk_icon_view_unset_model_drag_source;
12381 
12382 // gtk.IconViewAccessible
12383 
12384 alias c_gtk_icon_view_accessible_get_type gtk_icon_view_accessible_get_type;
12385 
12386 // gtk.Image
12387 
12388 alias c_gtk_image_get_type gtk_image_get_type;
12389 alias c_gtk_image_new gtk_image_new;
12390 alias c_gtk_image_new_from_animation gtk_image_new_from_animation;
12391 alias c_gtk_image_new_from_file gtk_image_new_from_file;
12392 alias c_gtk_image_new_from_gicon gtk_image_new_from_gicon;
12393 alias c_gtk_image_new_from_icon_name gtk_image_new_from_icon_name;
12394 alias c_gtk_image_new_from_icon_set gtk_image_new_from_icon_set;
12395 alias c_gtk_image_new_from_pixbuf gtk_image_new_from_pixbuf;
12396 alias c_gtk_image_new_from_resource gtk_image_new_from_resource;
12397 alias c_gtk_image_new_from_stock gtk_image_new_from_stock;
12398 alias c_gtk_image_new_from_surface gtk_image_new_from_surface;
12399 alias c_gtk_image_clear gtk_image_clear;
12400 alias c_gtk_image_get_animation gtk_image_get_animation;
12401 alias c_gtk_image_get_gicon gtk_image_get_gicon;
12402 alias c_gtk_image_get_icon_name gtk_image_get_icon_name;
12403 alias c_gtk_image_get_icon_set gtk_image_get_icon_set;
12404 alias c_gtk_image_get_pixbuf gtk_image_get_pixbuf;
12405 alias c_gtk_image_get_pixel_size gtk_image_get_pixel_size;
12406 alias c_gtk_image_get_stock gtk_image_get_stock;
12407 alias c_gtk_image_get_storage_type gtk_image_get_storage_type;
12408 alias c_gtk_image_set_from_animation gtk_image_set_from_animation;
12409 alias c_gtk_image_set_from_file gtk_image_set_from_file;
12410 alias c_gtk_image_set_from_gicon gtk_image_set_from_gicon;
12411 alias c_gtk_image_set_from_icon_name gtk_image_set_from_icon_name;
12412 alias c_gtk_image_set_from_icon_set gtk_image_set_from_icon_set;
12413 alias c_gtk_image_set_from_pixbuf gtk_image_set_from_pixbuf;
12414 alias c_gtk_image_set_from_resource gtk_image_set_from_resource;
12415 alias c_gtk_image_set_from_stock gtk_image_set_from_stock;
12416 alias c_gtk_image_set_from_surface gtk_image_set_from_surface;
12417 alias c_gtk_image_set_pixel_size gtk_image_set_pixel_size;
12418 
12419 // gtk.ImageAccessible
12420 
12421 alias c_gtk_image_accessible_get_type gtk_image_accessible_get_type;
12422 
12423 // gtk.ImageCellAccessible
12424 
12425 alias c_gtk_image_cell_accessible_get_type gtk_image_cell_accessible_get_type;
12426 
12427 // gtk.ImageMenuItem
12428 
12429 alias c_gtk_image_menu_item_get_type gtk_image_menu_item_get_type;
12430 alias c_gtk_image_menu_item_new gtk_image_menu_item_new;
12431 alias c_gtk_image_menu_item_new_from_stock gtk_image_menu_item_new_from_stock;
12432 alias c_gtk_image_menu_item_new_with_label gtk_image_menu_item_new_with_label;
12433 alias c_gtk_image_menu_item_new_with_mnemonic gtk_image_menu_item_new_with_mnemonic;
12434 alias c_gtk_image_menu_item_get_always_show_image gtk_image_menu_item_get_always_show_image;
12435 alias c_gtk_image_menu_item_get_image gtk_image_menu_item_get_image;
12436 alias c_gtk_image_menu_item_get_use_stock gtk_image_menu_item_get_use_stock;
12437 alias c_gtk_image_menu_item_set_accel_group gtk_image_menu_item_set_accel_group;
12438 alias c_gtk_image_menu_item_set_always_show_image gtk_image_menu_item_set_always_show_image;
12439 alias c_gtk_image_menu_item_set_image gtk_image_menu_item_set_image;
12440 alias c_gtk_image_menu_item_set_use_stock gtk_image_menu_item_set_use_stock;
12441 
12442 // gtk.InfoBar
12443 
12444 alias c_gtk_info_bar_get_type gtk_info_bar_get_type;
12445 alias c_gtk_info_bar_new gtk_info_bar_new;
12446 alias c_gtk_info_bar_new_with_buttons gtk_info_bar_new_with_buttons;
12447 alias c_gtk_info_bar_add_action_widget gtk_info_bar_add_action_widget;
12448 alias c_gtk_info_bar_add_button gtk_info_bar_add_button;
12449 alias c_gtk_info_bar_add_buttons gtk_info_bar_add_buttons;
12450 alias c_gtk_info_bar_get_action_area gtk_info_bar_get_action_area;
12451 alias c_gtk_info_bar_get_content_area gtk_info_bar_get_content_area;
12452 alias c_gtk_info_bar_get_message_type gtk_info_bar_get_message_type;
12453 alias c_gtk_info_bar_get_revealed gtk_info_bar_get_revealed;
12454 alias c_gtk_info_bar_get_show_close_button gtk_info_bar_get_show_close_button;
12455 alias c_gtk_info_bar_response gtk_info_bar_response;
12456 alias c_gtk_info_bar_set_default_response gtk_info_bar_set_default_response;
12457 alias c_gtk_info_bar_set_message_type gtk_info_bar_set_message_type;
12458 alias c_gtk_info_bar_set_response_sensitive gtk_info_bar_set_response_sensitive;
12459 alias c_gtk_info_bar_set_revealed gtk_info_bar_set_revealed;
12460 alias c_gtk_info_bar_set_show_close_button gtk_info_bar_set_show_close_button;
12461 
12462 // gtk.Invisible
12463 
12464 alias c_gtk_invisible_get_type gtk_invisible_get_type;
12465 alias c_gtk_invisible_new gtk_invisible_new;
12466 alias c_gtk_invisible_new_for_screen gtk_invisible_new_for_screen;
12467 alias c_gtk_invisible_get_screen gtk_invisible_get_screen;
12468 alias c_gtk_invisible_set_screen gtk_invisible_set_screen;
12469 
12470 // gtk.Label
12471 
12472 alias c_gtk_label_get_type gtk_label_get_type;
12473 alias c_gtk_label_new gtk_label_new;
12474 alias c_gtk_label_new_with_mnemonic gtk_label_new_with_mnemonic;
12475 alias c_gtk_label_get_angle gtk_label_get_angle;
12476 alias c_gtk_label_get_attributes gtk_label_get_attributes;
12477 alias c_gtk_label_get_current_uri gtk_label_get_current_uri;
12478 alias c_gtk_label_get_ellipsize gtk_label_get_ellipsize;
12479 alias c_gtk_label_get_justify gtk_label_get_justify;
12480 alias c_gtk_label_get_label gtk_label_get_label;
12481 alias c_gtk_label_get_layout gtk_label_get_layout;
12482 alias c_gtk_label_get_layout_offsets gtk_label_get_layout_offsets;
12483 alias c_gtk_label_get_line_wrap gtk_label_get_line_wrap;
12484 alias c_gtk_label_get_line_wrap_mode gtk_label_get_line_wrap_mode;
12485 alias c_gtk_label_get_lines gtk_label_get_lines;
12486 alias c_gtk_label_get_max_width_chars gtk_label_get_max_width_chars;
12487 alias c_gtk_label_get_mnemonic_keyval gtk_label_get_mnemonic_keyval;
12488 alias c_gtk_label_get_mnemonic_widget gtk_label_get_mnemonic_widget;
12489 alias c_gtk_label_get_selectable gtk_label_get_selectable;
12490 alias c_gtk_label_get_selection_bounds gtk_label_get_selection_bounds;
12491 alias c_gtk_label_get_single_line_mode gtk_label_get_single_line_mode;
12492 alias c_gtk_label_get_text gtk_label_get_text;
12493 alias c_gtk_label_get_track_visited_links gtk_label_get_track_visited_links;
12494 alias c_gtk_label_get_use_markup gtk_label_get_use_markup;
12495 alias c_gtk_label_get_use_underline gtk_label_get_use_underline;
12496 alias c_gtk_label_get_width_chars gtk_label_get_width_chars;
12497 alias c_gtk_label_get_xalign gtk_label_get_xalign;
12498 alias c_gtk_label_get_yalign gtk_label_get_yalign;
12499 alias c_gtk_label_select_region gtk_label_select_region;
12500 alias c_gtk_label_set_angle gtk_label_set_angle;
12501 alias c_gtk_label_set_attributes gtk_label_set_attributes;
12502 alias c_gtk_label_set_ellipsize gtk_label_set_ellipsize;
12503 alias c_gtk_label_set_justify gtk_label_set_justify;
12504 alias c_gtk_label_set_label gtk_label_set_label;
12505 alias c_gtk_label_set_line_wrap gtk_label_set_line_wrap;
12506 alias c_gtk_label_set_line_wrap_mode gtk_label_set_line_wrap_mode;
12507 alias c_gtk_label_set_lines gtk_label_set_lines;
12508 alias c_gtk_label_set_markup gtk_label_set_markup;
12509 alias c_gtk_label_set_markup_with_mnemonic gtk_label_set_markup_with_mnemonic;
12510 alias c_gtk_label_set_max_width_chars gtk_label_set_max_width_chars;
12511 alias c_gtk_label_set_mnemonic_widget gtk_label_set_mnemonic_widget;
12512 alias c_gtk_label_set_pattern gtk_label_set_pattern;
12513 alias c_gtk_label_set_selectable gtk_label_set_selectable;
12514 alias c_gtk_label_set_single_line_mode gtk_label_set_single_line_mode;
12515 alias c_gtk_label_set_text gtk_label_set_text;
12516 alias c_gtk_label_set_text_with_mnemonic gtk_label_set_text_with_mnemonic;
12517 alias c_gtk_label_set_track_visited_links gtk_label_set_track_visited_links;
12518 alias c_gtk_label_set_use_markup gtk_label_set_use_markup;
12519 alias c_gtk_label_set_use_underline gtk_label_set_use_underline;
12520 alias c_gtk_label_set_width_chars gtk_label_set_width_chars;
12521 alias c_gtk_label_set_xalign gtk_label_set_xalign;
12522 alias c_gtk_label_set_yalign gtk_label_set_yalign;
12523 
12524 // gtk.LabelAccessible
12525 
12526 alias c_gtk_label_accessible_get_type gtk_label_accessible_get_type;
12527 
12528 // gtk.Layout
12529 
12530 alias c_gtk_layout_get_type gtk_layout_get_type;
12531 alias c_gtk_layout_new gtk_layout_new;
12532 alias c_gtk_layout_get_bin_window gtk_layout_get_bin_window;
12533 alias c_gtk_layout_get_hadjustment gtk_layout_get_hadjustment;
12534 alias c_gtk_layout_get_size gtk_layout_get_size;
12535 alias c_gtk_layout_get_vadjustment gtk_layout_get_vadjustment;
12536 alias c_gtk_layout_move gtk_layout_move;
12537 alias c_gtk_layout_put gtk_layout_put;
12538 alias c_gtk_layout_set_hadjustment gtk_layout_set_hadjustment;
12539 alias c_gtk_layout_set_size gtk_layout_set_size;
12540 alias c_gtk_layout_set_vadjustment gtk_layout_set_vadjustment;
12541 
12542 // gtk.LevelBar
12543 
12544 alias c_gtk_level_bar_get_type gtk_level_bar_get_type;
12545 alias c_gtk_level_bar_new gtk_level_bar_new;
12546 alias c_gtk_level_bar_new_for_interval gtk_level_bar_new_for_interval;
12547 alias c_gtk_level_bar_add_offset_value gtk_level_bar_add_offset_value;
12548 alias c_gtk_level_bar_get_inverted gtk_level_bar_get_inverted;
12549 alias c_gtk_level_bar_get_max_value gtk_level_bar_get_max_value;
12550 alias c_gtk_level_bar_get_min_value gtk_level_bar_get_min_value;
12551 alias c_gtk_level_bar_get_mode gtk_level_bar_get_mode;
12552 alias c_gtk_level_bar_get_offset_value gtk_level_bar_get_offset_value;
12553 alias c_gtk_level_bar_get_value gtk_level_bar_get_value;
12554 alias c_gtk_level_bar_remove_offset_value gtk_level_bar_remove_offset_value;
12555 alias c_gtk_level_bar_set_inverted gtk_level_bar_set_inverted;
12556 alias c_gtk_level_bar_set_max_value gtk_level_bar_set_max_value;
12557 alias c_gtk_level_bar_set_min_value gtk_level_bar_set_min_value;
12558 alias c_gtk_level_bar_set_mode gtk_level_bar_set_mode;
12559 alias c_gtk_level_bar_set_value gtk_level_bar_set_value;
12560 
12561 // gtk.LevelBarAccessible
12562 
12563 alias c_gtk_level_bar_accessible_get_type gtk_level_bar_accessible_get_type;
12564 
12565 // gtk.LinkButton
12566 
12567 alias c_gtk_link_button_get_type gtk_link_button_get_type;
12568 alias c_gtk_link_button_new gtk_link_button_new;
12569 alias c_gtk_link_button_new_with_label gtk_link_button_new_with_label;
12570 alias c_gtk_link_button_get_uri gtk_link_button_get_uri;
12571 alias c_gtk_link_button_get_visited gtk_link_button_get_visited;
12572 alias c_gtk_link_button_set_uri gtk_link_button_set_uri;
12573 alias c_gtk_link_button_set_visited gtk_link_button_set_visited;
12574 
12575 // gtk.LinkButtonAccessible
12576 
12577 alias c_gtk_link_button_accessible_get_type gtk_link_button_accessible_get_type;
12578 
12579 // gtk.ListBox
12580 
12581 alias c_gtk_list_box_get_type gtk_list_box_get_type;
12582 alias c_gtk_list_box_new gtk_list_box_new;
12583 alias c_gtk_list_box_bind_model gtk_list_box_bind_model;
12584 alias c_gtk_list_box_drag_highlight_row gtk_list_box_drag_highlight_row;
12585 alias c_gtk_list_box_drag_unhighlight_row gtk_list_box_drag_unhighlight_row;
12586 alias c_gtk_list_box_get_activate_on_single_click gtk_list_box_get_activate_on_single_click;
12587 alias c_gtk_list_box_get_adjustment gtk_list_box_get_adjustment;
12588 alias c_gtk_list_box_get_row_at_index gtk_list_box_get_row_at_index;
12589 alias c_gtk_list_box_get_row_at_y gtk_list_box_get_row_at_y;
12590 alias c_gtk_list_box_get_selected_row gtk_list_box_get_selected_row;
12591 alias c_gtk_list_box_get_selected_rows gtk_list_box_get_selected_rows;
12592 alias c_gtk_list_box_get_selection_mode gtk_list_box_get_selection_mode;
12593 alias c_gtk_list_box_insert gtk_list_box_insert;
12594 alias c_gtk_list_box_invalidate_filter gtk_list_box_invalidate_filter;
12595 alias c_gtk_list_box_invalidate_headers gtk_list_box_invalidate_headers;
12596 alias c_gtk_list_box_invalidate_sort gtk_list_box_invalidate_sort;
12597 alias c_gtk_list_box_prepend gtk_list_box_prepend;
12598 alias c_gtk_list_box_select_all gtk_list_box_select_all;
12599 alias c_gtk_list_box_select_row gtk_list_box_select_row;
12600 alias c_gtk_list_box_selected_foreach gtk_list_box_selected_foreach;
12601 alias c_gtk_list_box_set_activate_on_single_click gtk_list_box_set_activate_on_single_click;
12602 alias c_gtk_list_box_set_adjustment gtk_list_box_set_adjustment;
12603 alias c_gtk_list_box_set_filter_func gtk_list_box_set_filter_func;
12604 alias c_gtk_list_box_set_header_func gtk_list_box_set_header_func;
12605 alias c_gtk_list_box_set_placeholder gtk_list_box_set_placeholder;
12606 alias c_gtk_list_box_set_selection_mode gtk_list_box_set_selection_mode;
12607 alias c_gtk_list_box_set_sort_func gtk_list_box_set_sort_func;
12608 alias c_gtk_list_box_unselect_all gtk_list_box_unselect_all;
12609 alias c_gtk_list_box_unselect_row gtk_list_box_unselect_row;
12610 
12611 // gtk.ListBoxAccessible
12612 
12613 alias c_gtk_list_box_accessible_get_type gtk_list_box_accessible_get_type;
12614 
12615 // gtk.ListBoxRow
12616 
12617 alias c_gtk_list_box_row_get_type gtk_list_box_row_get_type;
12618 alias c_gtk_list_box_row_new gtk_list_box_row_new;
12619 alias c_gtk_list_box_row_changed gtk_list_box_row_changed;
12620 alias c_gtk_list_box_row_get_activatable gtk_list_box_row_get_activatable;
12621 alias c_gtk_list_box_row_get_header gtk_list_box_row_get_header;
12622 alias c_gtk_list_box_row_get_index gtk_list_box_row_get_index;
12623 alias c_gtk_list_box_row_get_selectable gtk_list_box_row_get_selectable;
12624 alias c_gtk_list_box_row_is_selected gtk_list_box_row_is_selected;
12625 alias c_gtk_list_box_row_set_activatable gtk_list_box_row_set_activatable;
12626 alias c_gtk_list_box_row_set_header gtk_list_box_row_set_header;
12627 alias c_gtk_list_box_row_set_selectable gtk_list_box_row_set_selectable;
12628 
12629 // gtk.ListBoxRowAccessible
12630 
12631 alias c_gtk_list_box_row_accessible_get_type gtk_list_box_row_accessible_get_type;
12632 
12633 // gtk.ListStore
12634 
12635 alias c_gtk_list_store_get_type gtk_list_store_get_type;
12636 alias c_gtk_list_store_new gtk_list_store_new;
12637 alias c_gtk_list_store_newv gtk_list_store_newv;
12638 alias c_gtk_list_store_append gtk_list_store_append;
12639 alias c_gtk_list_store_clear gtk_list_store_clear;
12640 alias c_gtk_list_store_insert gtk_list_store_insert;
12641 alias c_gtk_list_store_insert_after gtk_list_store_insert_after;
12642 alias c_gtk_list_store_insert_before gtk_list_store_insert_before;
12643 alias c_gtk_list_store_insert_with_values gtk_list_store_insert_with_values;
12644 alias c_gtk_list_store_insert_with_valuesv gtk_list_store_insert_with_valuesv;
12645 alias c_gtk_list_store_iter_is_valid gtk_list_store_iter_is_valid;
12646 alias c_gtk_list_store_move_after gtk_list_store_move_after;
12647 alias c_gtk_list_store_move_before gtk_list_store_move_before;
12648 alias c_gtk_list_store_prepend gtk_list_store_prepend;
12649 alias c_gtk_list_store_remove gtk_list_store_remove;
12650 alias c_gtk_list_store_reorder gtk_list_store_reorder;
12651 alias c_gtk_list_store_set gtk_list_store_set;
12652 alias c_gtk_list_store_set_column_types gtk_list_store_set_column_types;
12653 alias c_gtk_list_store_set_valist gtk_list_store_set_valist;
12654 alias c_gtk_list_store_set_value gtk_list_store_set_value;
12655 alias c_gtk_list_store_set_valuesv gtk_list_store_set_valuesv;
12656 alias c_gtk_list_store_swap gtk_list_store_swap;
12657 
12658 // gtk.LockButton
12659 
12660 alias c_gtk_lock_button_get_type gtk_lock_button_get_type;
12661 alias c_gtk_lock_button_new gtk_lock_button_new;
12662 alias c_gtk_lock_button_get_permission gtk_lock_button_get_permission;
12663 alias c_gtk_lock_button_set_permission gtk_lock_button_set_permission;
12664 
12665 // gtk.LockButtonAccessible
12666 
12667 alias c_gtk_lock_button_accessible_get_type gtk_lock_button_accessible_get_type;
12668 
12669 // gtk.Menu
12670 
12671 alias c_gtk_menu_get_type gtk_menu_get_type;
12672 alias c_gtk_menu_new gtk_menu_new;
12673 alias c_gtk_menu_new_from_model gtk_menu_new_from_model;
12674 alias c_gtk_menu_get_for_attach_widget gtk_menu_get_for_attach_widget;
12675 alias c_gtk_menu_attach gtk_menu_attach;
12676 alias c_gtk_menu_attach_to_widget gtk_menu_attach_to_widget;
12677 alias c_gtk_menu_detach gtk_menu_detach;
12678 alias c_gtk_menu_get_accel_group gtk_menu_get_accel_group;
12679 alias c_gtk_menu_get_accel_path gtk_menu_get_accel_path;
12680 alias c_gtk_menu_get_active gtk_menu_get_active;
12681 alias c_gtk_menu_get_attach_widget gtk_menu_get_attach_widget;
12682 alias c_gtk_menu_get_monitor gtk_menu_get_monitor;
12683 alias c_gtk_menu_get_reserve_toggle_size gtk_menu_get_reserve_toggle_size;
12684 alias c_gtk_menu_get_tearoff_state gtk_menu_get_tearoff_state;
12685 alias c_gtk_menu_get_title gtk_menu_get_title;
12686 alias c_gtk_menu_place_on_monitor gtk_menu_place_on_monitor;
12687 alias c_gtk_menu_popdown gtk_menu_popdown;
12688 alias c_gtk_menu_popup gtk_menu_popup;
12689 alias c_gtk_menu_popup_at_pointer gtk_menu_popup_at_pointer;
12690 alias c_gtk_menu_popup_at_rect gtk_menu_popup_at_rect;
12691 alias c_gtk_menu_popup_at_widget gtk_menu_popup_at_widget;
12692 alias c_gtk_menu_popup_for_device gtk_menu_popup_for_device;
12693 alias c_gtk_menu_reorder_child gtk_menu_reorder_child;
12694 alias c_gtk_menu_reposition gtk_menu_reposition;
12695 alias c_gtk_menu_set_accel_group gtk_menu_set_accel_group;
12696 alias c_gtk_menu_set_accel_path gtk_menu_set_accel_path;
12697 alias c_gtk_menu_set_active gtk_menu_set_active;
12698 alias c_gtk_menu_set_monitor gtk_menu_set_monitor;
12699 alias c_gtk_menu_set_reserve_toggle_size gtk_menu_set_reserve_toggle_size;
12700 alias c_gtk_menu_set_screen gtk_menu_set_screen;
12701 alias c_gtk_menu_set_tearoff_state gtk_menu_set_tearoff_state;
12702 alias c_gtk_menu_set_title gtk_menu_set_title;
12703 
12704 // gtk.MenuAccessible
12705 
12706 alias c_gtk_menu_accessible_get_type gtk_menu_accessible_get_type;
12707 
12708 // gtk.MenuBar
12709 
12710 alias c_gtk_menu_bar_get_type gtk_menu_bar_get_type;
12711 alias c_gtk_menu_bar_new gtk_menu_bar_new;
12712 alias c_gtk_menu_bar_new_from_model gtk_menu_bar_new_from_model;
12713 alias c_gtk_menu_bar_get_child_pack_direction gtk_menu_bar_get_child_pack_direction;
12714 alias c_gtk_menu_bar_get_pack_direction gtk_menu_bar_get_pack_direction;
12715 alias c_gtk_menu_bar_set_child_pack_direction gtk_menu_bar_set_child_pack_direction;
12716 alias c_gtk_menu_bar_set_pack_direction gtk_menu_bar_set_pack_direction;
12717 
12718 // gtk.MenuButton
12719 
12720 alias c_gtk_menu_button_get_type gtk_menu_button_get_type;
12721 alias c_gtk_menu_button_new gtk_menu_button_new;
12722 alias c_gtk_menu_button_get_align_widget gtk_menu_button_get_align_widget;
12723 alias c_gtk_menu_button_get_direction gtk_menu_button_get_direction;
12724 alias c_gtk_menu_button_get_menu_model gtk_menu_button_get_menu_model;
12725 alias c_gtk_menu_button_get_popover gtk_menu_button_get_popover;
12726 alias c_gtk_menu_button_get_popup gtk_menu_button_get_popup;
12727 alias c_gtk_menu_button_get_use_popover gtk_menu_button_get_use_popover;
12728 alias c_gtk_menu_button_set_align_widget gtk_menu_button_set_align_widget;
12729 alias c_gtk_menu_button_set_direction gtk_menu_button_set_direction;
12730 alias c_gtk_menu_button_set_menu_model gtk_menu_button_set_menu_model;
12731 alias c_gtk_menu_button_set_popover gtk_menu_button_set_popover;
12732 alias c_gtk_menu_button_set_popup gtk_menu_button_set_popup;
12733 alias c_gtk_menu_button_set_use_popover gtk_menu_button_set_use_popover;
12734 
12735 // gtk.MenuButtonAccessible
12736 
12737 alias c_gtk_menu_button_accessible_get_type gtk_menu_button_accessible_get_type;
12738 
12739 // gtk.MenuItem
12740 
12741 alias c_gtk_menu_item_get_type gtk_menu_item_get_type;
12742 alias c_gtk_menu_item_new gtk_menu_item_new;
12743 alias c_gtk_menu_item_new_with_label gtk_menu_item_new_with_label;
12744 alias c_gtk_menu_item_new_with_mnemonic gtk_menu_item_new_with_mnemonic;
12745 alias c_gtk_menu_item_activate gtk_menu_item_activate;
12746 alias c_gtk_menu_item_deselect gtk_menu_item_deselect;
12747 alias c_gtk_menu_item_get_accel_path gtk_menu_item_get_accel_path;
12748 alias c_gtk_menu_item_get_label gtk_menu_item_get_label;
12749 alias c_gtk_menu_item_get_reserve_indicator gtk_menu_item_get_reserve_indicator;
12750 alias c_gtk_menu_item_get_right_justified gtk_menu_item_get_right_justified;
12751 alias c_gtk_menu_item_get_submenu gtk_menu_item_get_submenu;
12752 alias c_gtk_menu_item_get_use_underline gtk_menu_item_get_use_underline;
12753 alias c_gtk_menu_item_select gtk_menu_item_select;
12754 alias c_gtk_menu_item_set_accel_path gtk_menu_item_set_accel_path;
12755 alias c_gtk_menu_item_set_label gtk_menu_item_set_label;
12756 alias c_gtk_menu_item_set_reserve_indicator gtk_menu_item_set_reserve_indicator;
12757 alias c_gtk_menu_item_set_right_justified gtk_menu_item_set_right_justified;
12758 alias c_gtk_menu_item_set_submenu gtk_menu_item_set_submenu;
12759 alias c_gtk_menu_item_set_use_underline gtk_menu_item_set_use_underline;
12760 alias c_gtk_menu_item_toggle_size_allocate gtk_menu_item_toggle_size_allocate;
12761 alias c_gtk_menu_item_toggle_size_request gtk_menu_item_toggle_size_request;
12762 
12763 // gtk.MenuItemAccessible
12764 
12765 alias c_gtk_menu_item_accessible_get_type gtk_menu_item_accessible_get_type;
12766 
12767 // gtk.MenuShell
12768 
12769 alias c_gtk_menu_shell_get_type gtk_menu_shell_get_type;
12770 alias c_gtk_menu_shell_activate_item gtk_menu_shell_activate_item;
12771 alias c_gtk_menu_shell_append gtk_menu_shell_append;
12772 alias c_gtk_menu_shell_bind_model gtk_menu_shell_bind_model;
12773 alias c_gtk_menu_shell_cancel gtk_menu_shell_cancel;
12774 alias c_gtk_menu_shell_deactivate gtk_menu_shell_deactivate;
12775 alias c_gtk_menu_shell_deselect gtk_menu_shell_deselect;
12776 alias c_gtk_menu_shell_get_parent_shell gtk_menu_shell_get_parent_shell;
12777 alias c_gtk_menu_shell_get_selected_item gtk_menu_shell_get_selected_item;
12778 alias c_gtk_menu_shell_get_take_focus gtk_menu_shell_get_take_focus;
12779 alias c_gtk_menu_shell_insert gtk_menu_shell_insert;
12780 alias c_gtk_menu_shell_prepend gtk_menu_shell_prepend;
12781 alias c_gtk_menu_shell_select_first gtk_menu_shell_select_first;
12782 alias c_gtk_menu_shell_select_item gtk_menu_shell_select_item;
12783 alias c_gtk_menu_shell_set_take_focus gtk_menu_shell_set_take_focus;
12784 
12785 // gtk.MenuShellAccessible
12786 
12787 alias c_gtk_menu_shell_accessible_get_type gtk_menu_shell_accessible_get_type;
12788 
12789 // gtk.MenuToolButton
12790 
12791 alias c_gtk_menu_tool_button_get_type gtk_menu_tool_button_get_type;
12792 alias c_gtk_menu_tool_button_new gtk_menu_tool_button_new;
12793 alias c_gtk_menu_tool_button_new_from_stock gtk_menu_tool_button_new_from_stock;
12794 alias c_gtk_menu_tool_button_get_menu gtk_menu_tool_button_get_menu;
12795 alias c_gtk_menu_tool_button_set_arrow_tooltip_markup gtk_menu_tool_button_set_arrow_tooltip_markup;
12796 alias c_gtk_menu_tool_button_set_arrow_tooltip_text gtk_menu_tool_button_set_arrow_tooltip_text;
12797 alias c_gtk_menu_tool_button_set_menu gtk_menu_tool_button_set_menu;
12798 
12799 // gtk.MessageDialog
12800 
12801 alias c_gtk_message_dialog_get_type gtk_message_dialog_get_type;
12802 alias c_gtk_message_dialog_new gtk_message_dialog_new;
12803 alias c_gtk_message_dialog_new_with_markup gtk_message_dialog_new_with_markup;
12804 alias c_gtk_message_dialog_format_secondary_markup gtk_message_dialog_format_secondary_markup;
12805 alias c_gtk_message_dialog_format_secondary_text gtk_message_dialog_format_secondary_text;
12806 alias c_gtk_message_dialog_get_image gtk_message_dialog_get_image;
12807 alias c_gtk_message_dialog_get_message_area gtk_message_dialog_get_message_area;
12808 alias c_gtk_message_dialog_set_image gtk_message_dialog_set_image;
12809 alias c_gtk_message_dialog_set_markup gtk_message_dialog_set_markup;
12810 
12811 // gtk.Misc
12812 
12813 alias c_gtk_misc_get_type gtk_misc_get_type;
12814 alias c_gtk_misc_get_alignment gtk_misc_get_alignment;
12815 alias c_gtk_misc_get_padding gtk_misc_get_padding;
12816 alias c_gtk_misc_set_alignment gtk_misc_set_alignment;
12817 alias c_gtk_misc_set_padding gtk_misc_set_padding;
12818 
12819 // gtk.ModelButton
12820 
12821 alias c_gtk_model_button_get_type gtk_model_button_get_type;
12822 alias c_gtk_model_button_new gtk_model_button_new;
12823 
12824 // gtk.MountOperation
12825 
12826 alias c_gtk_mount_operation_get_type gtk_mount_operation_get_type;
12827 alias c_gtk_mount_operation_new gtk_mount_operation_new;
12828 alias c_gtk_mount_operation_get_parent gtk_mount_operation_get_parent;
12829 alias c_gtk_mount_operation_get_screen gtk_mount_operation_get_screen;
12830 alias c_gtk_mount_operation_is_showing gtk_mount_operation_is_showing;
12831 alias c_gtk_mount_operation_set_parent gtk_mount_operation_set_parent;
12832 alias c_gtk_mount_operation_set_screen gtk_mount_operation_set_screen;
12833 alias c_gtk_show_uri gtk_show_uri;
12834 
12835 // gtk.NativeDialog
12836 
12837 alias c_gtk_native_dialog_get_type gtk_native_dialog_get_type;
12838 alias c_gtk_native_dialog_destroy gtk_native_dialog_destroy;
12839 alias c_gtk_native_dialog_get_modal gtk_native_dialog_get_modal;
12840 alias c_gtk_native_dialog_get_title gtk_native_dialog_get_title;
12841 alias c_gtk_native_dialog_get_transient_for gtk_native_dialog_get_transient_for;
12842 alias c_gtk_native_dialog_get_visible gtk_native_dialog_get_visible;
12843 alias c_gtk_native_dialog_hide gtk_native_dialog_hide;
12844 alias c_gtk_native_dialog_run gtk_native_dialog_run;
12845 alias c_gtk_native_dialog_set_modal gtk_native_dialog_set_modal;
12846 alias c_gtk_native_dialog_set_title gtk_native_dialog_set_title;
12847 alias c_gtk_native_dialog_set_transient_for gtk_native_dialog_set_transient_for;
12848 alias c_gtk_native_dialog_show gtk_native_dialog_show;
12849 
12850 // gtk.Notebook
12851 
12852 alias c_gtk_notebook_get_type gtk_notebook_get_type;
12853 alias c_gtk_notebook_new gtk_notebook_new;
12854 alias c_gtk_notebook_append_page gtk_notebook_append_page;
12855 alias c_gtk_notebook_append_page_menu gtk_notebook_append_page_menu;
12856 alias c_gtk_notebook_detach_tab gtk_notebook_detach_tab;
12857 alias c_gtk_notebook_get_action_widget gtk_notebook_get_action_widget;
12858 alias c_gtk_notebook_get_current_page gtk_notebook_get_current_page;
12859 alias c_gtk_notebook_get_group_name gtk_notebook_get_group_name;
12860 alias c_gtk_notebook_get_menu_label gtk_notebook_get_menu_label;
12861 alias c_gtk_notebook_get_menu_label_text gtk_notebook_get_menu_label_text;
12862 alias c_gtk_notebook_get_n_pages gtk_notebook_get_n_pages;
12863 alias c_gtk_notebook_get_nth_page gtk_notebook_get_nth_page;
12864 alias c_gtk_notebook_get_scrollable gtk_notebook_get_scrollable;
12865 alias c_gtk_notebook_get_show_border gtk_notebook_get_show_border;
12866 alias c_gtk_notebook_get_show_tabs gtk_notebook_get_show_tabs;
12867 alias c_gtk_notebook_get_tab_detachable gtk_notebook_get_tab_detachable;
12868 alias c_gtk_notebook_get_tab_hborder gtk_notebook_get_tab_hborder;
12869 alias c_gtk_notebook_get_tab_label gtk_notebook_get_tab_label;
12870 alias c_gtk_notebook_get_tab_label_text gtk_notebook_get_tab_label_text;
12871 alias c_gtk_notebook_get_tab_pos gtk_notebook_get_tab_pos;
12872 alias c_gtk_notebook_get_tab_reorderable gtk_notebook_get_tab_reorderable;
12873 alias c_gtk_notebook_get_tab_vborder gtk_notebook_get_tab_vborder;
12874 alias c_gtk_notebook_insert_page gtk_notebook_insert_page;
12875 alias c_gtk_notebook_insert_page_menu gtk_notebook_insert_page_menu;
12876 alias c_gtk_notebook_next_page gtk_notebook_next_page;
12877 alias c_gtk_notebook_page_num gtk_notebook_page_num;
12878 alias c_gtk_notebook_popup_disable gtk_notebook_popup_disable;
12879 alias c_gtk_notebook_popup_enable gtk_notebook_popup_enable;
12880 alias c_gtk_notebook_prepend_page gtk_notebook_prepend_page;
12881 alias c_gtk_notebook_prepend_page_menu gtk_notebook_prepend_page_menu;
12882 alias c_gtk_notebook_prev_page gtk_notebook_prev_page;
12883 alias c_gtk_notebook_remove_page gtk_notebook_remove_page;
12884 alias c_gtk_notebook_reorder_child gtk_notebook_reorder_child;
12885 alias c_gtk_notebook_set_action_widget gtk_notebook_set_action_widget;
12886 alias c_gtk_notebook_set_current_page gtk_notebook_set_current_page;
12887 alias c_gtk_notebook_set_group_name gtk_notebook_set_group_name;
12888 alias c_gtk_notebook_set_menu_label gtk_notebook_set_menu_label;
12889 alias c_gtk_notebook_set_menu_label_text gtk_notebook_set_menu_label_text;
12890 alias c_gtk_notebook_set_scrollable gtk_notebook_set_scrollable;
12891 alias c_gtk_notebook_set_show_border gtk_notebook_set_show_border;
12892 alias c_gtk_notebook_set_show_tabs gtk_notebook_set_show_tabs;
12893 alias c_gtk_notebook_set_tab_detachable gtk_notebook_set_tab_detachable;
12894 alias c_gtk_notebook_set_tab_label gtk_notebook_set_tab_label;
12895 alias c_gtk_notebook_set_tab_label_text gtk_notebook_set_tab_label_text;
12896 alias c_gtk_notebook_set_tab_pos gtk_notebook_set_tab_pos;
12897 alias c_gtk_notebook_set_tab_reorderable gtk_notebook_set_tab_reorderable;
12898 
12899 // gtk.NotebookAccessible
12900 
12901 alias c_gtk_notebook_accessible_get_type gtk_notebook_accessible_get_type;
12902 
12903 // gtk.NotebookPageAccessible
12904 
12905 alias c_gtk_notebook_page_accessible_get_type gtk_notebook_page_accessible_get_type;
12906 alias c_gtk_notebook_page_accessible_new gtk_notebook_page_accessible_new;
12907 alias c_gtk_notebook_page_accessible_invalidate gtk_notebook_page_accessible_invalidate;
12908 
12909 // gtk.NumerableIcon
12910 
12911 alias c_gtk_numerable_icon_get_type gtk_numerable_icon_get_type;
12912 alias c_gtk_numerable_icon_new gtk_numerable_icon_new;
12913 alias c_gtk_numerable_icon_new_with_style_context gtk_numerable_icon_new_with_style_context;
12914 alias c_gtk_numerable_icon_get_background_gicon gtk_numerable_icon_get_background_gicon;
12915 alias c_gtk_numerable_icon_get_background_icon_name gtk_numerable_icon_get_background_icon_name;
12916 alias c_gtk_numerable_icon_get_count gtk_numerable_icon_get_count;
12917 alias c_gtk_numerable_icon_get_label gtk_numerable_icon_get_label;
12918 alias c_gtk_numerable_icon_get_style_context gtk_numerable_icon_get_style_context;
12919 alias c_gtk_numerable_icon_set_background_gicon gtk_numerable_icon_set_background_gicon;
12920 alias c_gtk_numerable_icon_set_background_icon_name gtk_numerable_icon_set_background_icon_name;
12921 alias c_gtk_numerable_icon_set_count gtk_numerable_icon_set_count;
12922 alias c_gtk_numerable_icon_set_label gtk_numerable_icon_set_label;
12923 alias c_gtk_numerable_icon_set_style_context gtk_numerable_icon_set_style_context;
12924 
12925 // gtk.OffscreenWindow
12926 
12927 alias c_gtk_offscreen_window_get_type gtk_offscreen_window_get_type;
12928 alias c_gtk_offscreen_window_new gtk_offscreen_window_new;
12929 alias c_gtk_offscreen_window_get_pixbuf gtk_offscreen_window_get_pixbuf;
12930 alias c_gtk_offscreen_window_get_surface gtk_offscreen_window_get_surface;
12931 
12932 // gtk.Orientable
12933 
12934 alias c_gtk_orientable_get_type gtk_orientable_get_type;
12935 alias c_gtk_orientable_get_orientation gtk_orientable_get_orientation;
12936 alias c_gtk_orientable_set_orientation gtk_orientable_set_orientation;
12937 
12938 // gtk.Overlay
12939 
12940 alias c_gtk_overlay_get_type gtk_overlay_get_type;
12941 alias c_gtk_overlay_new gtk_overlay_new;
12942 alias c_gtk_overlay_add_overlay gtk_overlay_add_overlay;
12943 alias c_gtk_overlay_get_overlay_pass_through gtk_overlay_get_overlay_pass_through;
12944 alias c_gtk_overlay_reorder_overlay gtk_overlay_reorder_overlay;
12945 alias c_gtk_overlay_set_overlay_pass_through gtk_overlay_set_overlay_pass_through;
12946 
12947 // gtk.PadController
12948 
12949 alias c_gtk_pad_controller_get_type gtk_pad_controller_get_type;
12950 alias c_gtk_pad_controller_new gtk_pad_controller_new;
12951 alias c_gtk_pad_controller_set_action gtk_pad_controller_set_action;
12952 alias c_gtk_pad_controller_set_action_entries gtk_pad_controller_set_action_entries;
12953 
12954 // gtk.PageSetup
12955 
12956 alias c_gtk_page_setup_get_type gtk_page_setup_get_type;
12957 alias c_gtk_page_setup_new gtk_page_setup_new;
12958 alias c_gtk_page_setup_new_from_file gtk_page_setup_new_from_file;
12959 alias c_gtk_page_setup_new_from_gvariant gtk_page_setup_new_from_gvariant;
12960 alias c_gtk_page_setup_new_from_key_file gtk_page_setup_new_from_key_file;
12961 alias c_gtk_page_setup_copy gtk_page_setup_copy;
12962 alias c_gtk_page_setup_get_bottom_margin gtk_page_setup_get_bottom_margin;
12963 alias c_gtk_page_setup_get_left_margin gtk_page_setup_get_left_margin;
12964 alias c_gtk_page_setup_get_orientation gtk_page_setup_get_orientation;
12965 alias c_gtk_page_setup_get_page_height gtk_page_setup_get_page_height;
12966 alias c_gtk_page_setup_get_page_width gtk_page_setup_get_page_width;
12967 alias c_gtk_page_setup_get_paper_height gtk_page_setup_get_paper_height;
12968 alias c_gtk_page_setup_get_paper_size gtk_page_setup_get_paper_size;
12969 alias c_gtk_page_setup_get_paper_width gtk_page_setup_get_paper_width;
12970 alias c_gtk_page_setup_get_right_margin gtk_page_setup_get_right_margin;
12971 alias c_gtk_page_setup_get_top_margin gtk_page_setup_get_top_margin;
12972 alias c_gtk_page_setup_load_file gtk_page_setup_load_file;
12973 alias c_gtk_page_setup_load_key_file gtk_page_setup_load_key_file;
12974 alias c_gtk_page_setup_set_bottom_margin gtk_page_setup_set_bottom_margin;
12975 alias c_gtk_page_setup_set_left_margin gtk_page_setup_set_left_margin;
12976 alias c_gtk_page_setup_set_orientation gtk_page_setup_set_orientation;
12977 alias c_gtk_page_setup_set_paper_size gtk_page_setup_set_paper_size;
12978 alias c_gtk_page_setup_set_paper_size_and_default_margins gtk_page_setup_set_paper_size_and_default_margins;
12979 alias c_gtk_page_setup_set_right_margin gtk_page_setup_set_right_margin;
12980 alias c_gtk_page_setup_set_top_margin gtk_page_setup_set_top_margin;
12981 alias c_gtk_page_setup_to_file gtk_page_setup_to_file;
12982 alias c_gtk_page_setup_to_gvariant gtk_page_setup_to_gvariant;
12983 alias c_gtk_page_setup_to_key_file gtk_page_setup_to_key_file;
12984 
12985 // gtk.Paned
12986 
12987 alias c_gtk_paned_get_type gtk_paned_get_type;
12988 alias c_gtk_paned_new gtk_paned_new;
12989 alias c_gtk_paned_add1 gtk_paned_add1;
12990 alias c_gtk_paned_add2 gtk_paned_add2;
12991 alias c_gtk_paned_get_child1 gtk_paned_get_child1;
12992 alias c_gtk_paned_get_child2 gtk_paned_get_child2;
12993 alias c_gtk_paned_get_handle_window gtk_paned_get_handle_window;
12994 alias c_gtk_paned_get_position gtk_paned_get_position;
12995 alias c_gtk_paned_get_wide_handle gtk_paned_get_wide_handle;
12996 alias c_gtk_paned_pack1 gtk_paned_pack1;
12997 alias c_gtk_paned_pack2 gtk_paned_pack2;
12998 alias c_gtk_paned_set_position gtk_paned_set_position;
12999 alias c_gtk_paned_set_wide_handle gtk_paned_set_wide_handle;
13000 
13001 // gtk.PanedAccessible
13002 
13003 alias c_gtk_paned_accessible_get_type gtk_paned_accessible_get_type;
13004 
13005 // gtk.PaperSize
13006 
13007 alias c_gtk_paper_size_get_type gtk_paper_size_get_type;
13008 alias c_gtk_paper_size_new gtk_paper_size_new;
13009 alias c_gtk_paper_size_new_custom gtk_paper_size_new_custom;
13010 alias c_gtk_paper_size_new_from_gvariant gtk_paper_size_new_from_gvariant;
13011 alias c_gtk_paper_size_new_from_ipp gtk_paper_size_new_from_ipp;
13012 alias c_gtk_paper_size_new_from_key_file gtk_paper_size_new_from_key_file;
13013 alias c_gtk_paper_size_new_from_ppd gtk_paper_size_new_from_ppd;
13014 alias c_gtk_paper_size_copy gtk_paper_size_copy;
13015 alias c_gtk_paper_size_free gtk_paper_size_free;
13016 alias c_gtk_paper_size_get_default_bottom_margin gtk_paper_size_get_default_bottom_margin;
13017 alias c_gtk_paper_size_get_default_left_margin gtk_paper_size_get_default_left_margin;
13018 alias c_gtk_paper_size_get_default_right_margin gtk_paper_size_get_default_right_margin;
13019 alias c_gtk_paper_size_get_default_top_margin gtk_paper_size_get_default_top_margin;
13020 alias c_gtk_paper_size_get_display_name gtk_paper_size_get_display_name;
13021 alias c_gtk_paper_size_get_height gtk_paper_size_get_height;
13022 alias c_gtk_paper_size_get_name gtk_paper_size_get_name;
13023 alias c_gtk_paper_size_get_ppd_name gtk_paper_size_get_ppd_name;
13024 alias c_gtk_paper_size_get_width gtk_paper_size_get_width;
13025 alias c_gtk_paper_size_is_custom gtk_paper_size_is_custom;
13026 alias c_gtk_paper_size_is_equal gtk_paper_size_is_equal;
13027 alias c_gtk_paper_size_is_ipp gtk_paper_size_is_ipp;
13028 alias c_gtk_paper_size_set_size gtk_paper_size_set_size;
13029 alias c_gtk_paper_size_to_gvariant gtk_paper_size_to_gvariant;
13030 alias c_gtk_paper_size_to_key_file gtk_paper_size_to_key_file;
13031 alias c_gtk_paper_size_get_default gtk_paper_size_get_default;
13032 alias c_gtk_paper_size_get_paper_sizes gtk_paper_size_get_paper_sizes;
13033 
13034 // gtk.PlacesSidebar
13035 
13036 alias c_gtk_places_sidebar_get_type gtk_places_sidebar_get_type;
13037 alias c_gtk_places_sidebar_new gtk_places_sidebar_new;
13038 alias c_gtk_places_sidebar_add_shortcut gtk_places_sidebar_add_shortcut;
13039 alias c_gtk_places_sidebar_get_local_only gtk_places_sidebar_get_local_only;
13040 alias c_gtk_places_sidebar_get_location gtk_places_sidebar_get_location;
13041 alias c_gtk_places_sidebar_get_nth_bookmark gtk_places_sidebar_get_nth_bookmark;
13042 alias c_gtk_places_sidebar_get_open_flags gtk_places_sidebar_get_open_flags;
13043 alias c_gtk_places_sidebar_get_show_connect_to_server gtk_places_sidebar_get_show_connect_to_server;
13044 alias c_gtk_places_sidebar_get_show_desktop gtk_places_sidebar_get_show_desktop;
13045 alias c_gtk_places_sidebar_get_show_enter_location gtk_places_sidebar_get_show_enter_location;
13046 alias c_gtk_places_sidebar_get_show_other_locations gtk_places_sidebar_get_show_other_locations;
13047 alias c_gtk_places_sidebar_get_show_recent gtk_places_sidebar_get_show_recent;
13048 alias c_gtk_places_sidebar_get_show_starred_location gtk_places_sidebar_get_show_starred_location;
13049 alias c_gtk_places_sidebar_get_show_trash gtk_places_sidebar_get_show_trash;
13050 alias c_gtk_places_sidebar_list_shortcuts gtk_places_sidebar_list_shortcuts;
13051 alias c_gtk_places_sidebar_remove_shortcut gtk_places_sidebar_remove_shortcut;
13052 alias c_gtk_places_sidebar_set_drop_targets_visible gtk_places_sidebar_set_drop_targets_visible;
13053 alias c_gtk_places_sidebar_set_local_only gtk_places_sidebar_set_local_only;
13054 alias c_gtk_places_sidebar_set_location gtk_places_sidebar_set_location;
13055 alias c_gtk_places_sidebar_set_open_flags gtk_places_sidebar_set_open_flags;
13056 alias c_gtk_places_sidebar_set_show_connect_to_server gtk_places_sidebar_set_show_connect_to_server;
13057 alias c_gtk_places_sidebar_set_show_desktop gtk_places_sidebar_set_show_desktop;
13058 alias c_gtk_places_sidebar_set_show_enter_location gtk_places_sidebar_set_show_enter_location;
13059 alias c_gtk_places_sidebar_set_show_other_locations gtk_places_sidebar_set_show_other_locations;
13060 alias c_gtk_places_sidebar_set_show_recent gtk_places_sidebar_set_show_recent;
13061 alias c_gtk_places_sidebar_set_show_starred_location gtk_places_sidebar_set_show_starred_location;
13062 alias c_gtk_places_sidebar_set_show_trash gtk_places_sidebar_set_show_trash;
13063 
13064 // gtk.Plug
13065 
13066 alias c_gtk_plug_get_type gtk_plug_get_type;
13067 alias c_gtk_plug_new gtk_plug_new;
13068 alias c_gtk_plug_new_for_display gtk_plug_new_for_display;
13069 alias c_gtk_plug_construct gtk_plug_construct;
13070 alias c_gtk_plug_construct_for_display gtk_plug_construct_for_display;
13071 alias c_gtk_plug_get_embedded gtk_plug_get_embedded;
13072 alias c_gtk_plug_get_id gtk_plug_get_id;
13073 alias c_gtk_plug_get_socket_window gtk_plug_get_socket_window;
13074 
13075 // gtk.Popover
13076 
13077 alias c_gtk_popover_get_type gtk_popover_get_type;
13078 alias c_gtk_popover_new gtk_popover_new;
13079 alias c_gtk_popover_new_from_model gtk_popover_new_from_model;
13080 alias c_gtk_popover_bind_model gtk_popover_bind_model;
13081 alias c_gtk_popover_get_constrain_to gtk_popover_get_constrain_to;
13082 alias c_gtk_popover_get_default_widget gtk_popover_get_default_widget;
13083 alias c_gtk_popover_get_modal gtk_popover_get_modal;
13084 alias c_gtk_popover_get_pointing_to gtk_popover_get_pointing_to;
13085 alias c_gtk_popover_get_position gtk_popover_get_position;
13086 alias c_gtk_popover_get_relative_to gtk_popover_get_relative_to;
13087 alias c_gtk_popover_get_transitions_enabled gtk_popover_get_transitions_enabled;
13088 alias c_gtk_popover_popdown gtk_popover_popdown;
13089 alias c_gtk_popover_popup gtk_popover_popup;
13090 alias c_gtk_popover_set_constrain_to gtk_popover_set_constrain_to;
13091 alias c_gtk_popover_set_default_widget gtk_popover_set_default_widget;
13092 alias c_gtk_popover_set_modal gtk_popover_set_modal;
13093 alias c_gtk_popover_set_pointing_to gtk_popover_set_pointing_to;
13094 alias c_gtk_popover_set_position gtk_popover_set_position;
13095 alias c_gtk_popover_set_relative_to gtk_popover_set_relative_to;
13096 alias c_gtk_popover_set_transitions_enabled gtk_popover_set_transitions_enabled;
13097 
13098 // gtk.PopoverAccessible
13099 
13100 alias c_gtk_popover_accessible_get_type gtk_popover_accessible_get_type;
13101 
13102 // gtk.PopoverMenu
13103 
13104 alias c_gtk_popover_menu_get_type gtk_popover_menu_get_type;
13105 alias c_gtk_popover_menu_new gtk_popover_menu_new;
13106 alias c_gtk_popover_menu_open_submenu gtk_popover_menu_open_submenu;
13107 
13108 // gtk.PrintContext
13109 
13110 alias c_gtk_print_context_get_type gtk_print_context_get_type;
13111 alias c_gtk_print_context_create_pango_context gtk_print_context_create_pango_context;
13112 alias c_gtk_print_context_create_pango_layout gtk_print_context_create_pango_layout;
13113 alias c_gtk_print_context_get_cairo_context gtk_print_context_get_cairo_context;
13114 alias c_gtk_print_context_get_dpi_x gtk_print_context_get_dpi_x;
13115 alias c_gtk_print_context_get_dpi_y gtk_print_context_get_dpi_y;
13116 alias c_gtk_print_context_get_hard_margins gtk_print_context_get_hard_margins;
13117 alias c_gtk_print_context_get_height gtk_print_context_get_height;
13118 alias c_gtk_print_context_get_page_setup gtk_print_context_get_page_setup;
13119 alias c_gtk_print_context_get_pango_fontmap gtk_print_context_get_pango_fontmap;
13120 alias c_gtk_print_context_get_width gtk_print_context_get_width;
13121 alias c_gtk_print_context_set_cairo_context gtk_print_context_set_cairo_context;
13122 
13123 // gtk.PrintOperation
13124 
13125 alias c_gtk_print_operation_get_type gtk_print_operation_get_type;
13126 alias c_gtk_print_operation_new gtk_print_operation_new;
13127 alias c_gtk_print_operation_cancel gtk_print_operation_cancel;
13128 alias c_gtk_print_operation_draw_page_finish gtk_print_operation_draw_page_finish;
13129 alias c_gtk_print_operation_get_default_page_setup gtk_print_operation_get_default_page_setup;
13130 alias c_gtk_print_operation_get_embed_page_setup gtk_print_operation_get_embed_page_setup;
13131 alias c_gtk_print_operation_get_error gtk_print_operation_get_error;
13132 alias c_gtk_print_operation_get_has_selection gtk_print_operation_get_has_selection;
13133 alias c_gtk_print_operation_get_n_pages_to_print gtk_print_operation_get_n_pages_to_print;
13134 alias c_gtk_print_operation_get_print_settings gtk_print_operation_get_print_settings;
13135 alias c_gtk_print_operation_get_status gtk_print_operation_get_status;
13136 alias c_gtk_print_operation_get_status_string gtk_print_operation_get_status_string;
13137 alias c_gtk_print_operation_get_support_selection gtk_print_operation_get_support_selection;
13138 alias c_gtk_print_operation_is_finished gtk_print_operation_is_finished;
13139 alias c_gtk_print_operation_run gtk_print_operation_run;
13140 alias c_gtk_print_operation_set_allow_async gtk_print_operation_set_allow_async;
13141 alias c_gtk_print_operation_set_current_page gtk_print_operation_set_current_page;
13142 alias c_gtk_print_operation_set_custom_tab_label gtk_print_operation_set_custom_tab_label;
13143 alias c_gtk_print_operation_set_default_page_setup gtk_print_operation_set_default_page_setup;
13144 alias c_gtk_print_operation_set_defer_drawing gtk_print_operation_set_defer_drawing;
13145 alias c_gtk_print_operation_set_embed_page_setup gtk_print_operation_set_embed_page_setup;
13146 alias c_gtk_print_operation_set_export_filename gtk_print_operation_set_export_filename;
13147 alias c_gtk_print_operation_set_has_selection gtk_print_operation_set_has_selection;
13148 alias c_gtk_print_operation_set_job_name gtk_print_operation_set_job_name;
13149 alias c_gtk_print_operation_set_n_pages gtk_print_operation_set_n_pages;
13150 alias c_gtk_print_operation_set_print_settings gtk_print_operation_set_print_settings;
13151 alias c_gtk_print_operation_set_show_progress gtk_print_operation_set_show_progress;
13152 alias c_gtk_print_operation_set_support_selection gtk_print_operation_set_support_selection;
13153 alias c_gtk_print_operation_set_track_print_status gtk_print_operation_set_track_print_status;
13154 alias c_gtk_print_operation_set_unit gtk_print_operation_set_unit;
13155 alias c_gtk_print_operation_set_use_full_page gtk_print_operation_set_use_full_page;
13156 alias c_gtk_print_run_page_setup_dialog gtk_print_run_page_setup_dialog;
13157 alias c_gtk_print_run_page_setup_dialog_async gtk_print_run_page_setup_dialog_async;
13158 
13159 // gtk.PrintOperationPreview
13160 
13161 alias c_gtk_print_operation_preview_get_type gtk_print_operation_preview_get_type;
13162 alias c_gtk_print_operation_preview_end_preview gtk_print_operation_preview_end_preview;
13163 alias c_gtk_print_operation_preview_is_selected gtk_print_operation_preview_is_selected;
13164 alias c_gtk_print_operation_preview_render_page gtk_print_operation_preview_render_page;
13165 
13166 // gtk.PrintSettings
13167 
13168 alias c_gtk_print_settings_get_type gtk_print_settings_get_type;
13169 alias c_gtk_print_settings_new gtk_print_settings_new;
13170 alias c_gtk_print_settings_new_from_file gtk_print_settings_new_from_file;
13171 alias c_gtk_print_settings_new_from_gvariant gtk_print_settings_new_from_gvariant;
13172 alias c_gtk_print_settings_new_from_key_file gtk_print_settings_new_from_key_file;
13173 alias c_gtk_print_settings_copy gtk_print_settings_copy;
13174 alias c_gtk_print_settings_foreach gtk_print_settings_foreach;
13175 alias c_gtk_print_settings_get gtk_print_settings_get;
13176 alias c_gtk_print_settings_get_bool gtk_print_settings_get_bool;
13177 alias c_gtk_print_settings_get_collate gtk_print_settings_get_collate;
13178 alias c_gtk_print_settings_get_default_source gtk_print_settings_get_default_source;
13179 alias c_gtk_print_settings_get_dither gtk_print_settings_get_dither;
13180 alias c_gtk_print_settings_get_double gtk_print_settings_get_double;
13181 alias c_gtk_print_settings_get_double_with_default gtk_print_settings_get_double_with_default;
13182 alias c_gtk_print_settings_get_duplex gtk_print_settings_get_duplex;
13183 alias c_gtk_print_settings_get_finishings gtk_print_settings_get_finishings;
13184 alias c_gtk_print_settings_get_int gtk_print_settings_get_int;
13185 alias c_gtk_print_settings_get_int_with_default gtk_print_settings_get_int_with_default;
13186 alias c_gtk_print_settings_get_length gtk_print_settings_get_length;
13187 alias c_gtk_print_settings_get_media_type gtk_print_settings_get_media_type;
13188 alias c_gtk_print_settings_get_n_copies gtk_print_settings_get_n_copies;
13189 alias c_gtk_print_settings_get_number_up gtk_print_settings_get_number_up;
13190 alias c_gtk_print_settings_get_number_up_layout gtk_print_settings_get_number_up_layout;
13191 alias c_gtk_print_settings_get_orientation gtk_print_settings_get_orientation;
13192 alias c_gtk_print_settings_get_output_bin gtk_print_settings_get_output_bin;
13193 alias c_gtk_print_settings_get_page_ranges gtk_print_settings_get_page_ranges;
13194 alias c_gtk_print_settings_get_page_set gtk_print_settings_get_page_set;
13195 alias c_gtk_print_settings_get_paper_height gtk_print_settings_get_paper_height;
13196 alias c_gtk_print_settings_get_paper_size gtk_print_settings_get_paper_size;
13197 alias c_gtk_print_settings_get_paper_width gtk_print_settings_get_paper_width;
13198 alias c_gtk_print_settings_get_print_pages gtk_print_settings_get_print_pages;
13199 alias c_gtk_print_settings_get_printer gtk_print_settings_get_printer;
13200 alias c_gtk_print_settings_get_printer_lpi gtk_print_settings_get_printer_lpi;
13201 alias c_gtk_print_settings_get_quality gtk_print_settings_get_quality;
13202 alias c_gtk_print_settings_get_resolution gtk_print_settings_get_resolution;
13203 alias c_gtk_print_settings_get_resolution_x gtk_print_settings_get_resolution_x;
13204 alias c_gtk_print_settings_get_resolution_y gtk_print_settings_get_resolution_y;
13205 alias c_gtk_print_settings_get_reverse gtk_print_settings_get_reverse;
13206 alias c_gtk_print_settings_get_scale gtk_print_settings_get_scale;
13207 alias c_gtk_print_settings_get_use_color gtk_print_settings_get_use_color;
13208 alias c_gtk_print_settings_has_key gtk_print_settings_has_key;
13209 alias c_gtk_print_settings_load_file gtk_print_settings_load_file;
13210 alias c_gtk_print_settings_load_key_file gtk_print_settings_load_key_file;
13211 alias c_gtk_print_settings_set gtk_print_settings_set;
13212 alias c_gtk_print_settings_set_bool gtk_print_settings_set_bool;
13213 alias c_gtk_print_settings_set_collate gtk_print_settings_set_collate;
13214 alias c_gtk_print_settings_set_default_source gtk_print_settings_set_default_source;
13215 alias c_gtk_print_settings_set_dither gtk_print_settings_set_dither;
13216 alias c_gtk_print_settings_set_double gtk_print_settings_set_double;
13217 alias c_gtk_print_settings_set_duplex gtk_print_settings_set_duplex;
13218 alias c_gtk_print_settings_set_finishings gtk_print_settings_set_finishings;
13219 alias c_gtk_print_settings_set_int gtk_print_settings_set_int;
13220 alias c_gtk_print_settings_set_length gtk_print_settings_set_length;
13221 alias c_gtk_print_settings_set_media_type gtk_print_settings_set_media_type;
13222 alias c_gtk_print_settings_set_n_copies gtk_print_settings_set_n_copies;
13223 alias c_gtk_print_settings_set_number_up gtk_print_settings_set_number_up;
13224 alias c_gtk_print_settings_set_number_up_layout gtk_print_settings_set_number_up_layout;
13225 alias c_gtk_print_settings_set_orientation gtk_print_settings_set_orientation;
13226 alias c_gtk_print_settings_set_output_bin gtk_print_settings_set_output_bin;
13227 alias c_gtk_print_settings_set_page_ranges gtk_print_settings_set_page_ranges;
13228 alias c_gtk_print_settings_set_page_set gtk_print_settings_set_page_set;
13229 alias c_gtk_print_settings_set_paper_height gtk_print_settings_set_paper_height;
13230 alias c_gtk_print_settings_set_paper_size gtk_print_settings_set_paper_size;
13231 alias c_gtk_print_settings_set_paper_width gtk_print_settings_set_paper_width;
13232 alias c_gtk_print_settings_set_print_pages gtk_print_settings_set_print_pages;
13233 alias c_gtk_print_settings_set_printer gtk_print_settings_set_printer;
13234 alias c_gtk_print_settings_set_printer_lpi gtk_print_settings_set_printer_lpi;
13235 alias c_gtk_print_settings_set_quality gtk_print_settings_set_quality;
13236 alias c_gtk_print_settings_set_resolution gtk_print_settings_set_resolution;
13237 alias c_gtk_print_settings_set_resolution_xy gtk_print_settings_set_resolution_xy;
13238 alias c_gtk_print_settings_set_reverse gtk_print_settings_set_reverse;
13239 alias c_gtk_print_settings_set_scale gtk_print_settings_set_scale;
13240 alias c_gtk_print_settings_set_use_color gtk_print_settings_set_use_color;
13241 alias c_gtk_print_settings_to_file gtk_print_settings_to_file;
13242 alias c_gtk_print_settings_to_gvariant gtk_print_settings_to_gvariant;
13243 alias c_gtk_print_settings_to_key_file gtk_print_settings_to_key_file;
13244 alias c_gtk_print_settings_unset gtk_print_settings_unset;
13245 
13246 // gtk.ProgressBar
13247 
13248 alias c_gtk_progress_bar_get_type gtk_progress_bar_get_type;
13249 alias c_gtk_progress_bar_new gtk_progress_bar_new;
13250 alias c_gtk_progress_bar_get_ellipsize gtk_progress_bar_get_ellipsize;
13251 alias c_gtk_progress_bar_get_fraction gtk_progress_bar_get_fraction;
13252 alias c_gtk_progress_bar_get_inverted gtk_progress_bar_get_inverted;
13253 alias c_gtk_progress_bar_get_pulse_step gtk_progress_bar_get_pulse_step;
13254 alias c_gtk_progress_bar_get_show_text gtk_progress_bar_get_show_text;
13255 alias c_gtk_progress_bar_get_text gtk_progress_bar_get_text;
13256 alias c_gtk_progress_bar_pulse gtk_progress_bar_pulse;
13257 alias c_gtk_progress_bar_set_ellipsize gtk_progress_bar_set_ellipsize;
13258 alias c_gtk_progress_bar_set_fraction gtk_progress_bar_set_fraction;
13259 alias c_gtk_progress_bar_set_inverted gtk_progress_bar_set_inverted;
13260 alias c_gtk_progress_bar_set_pulse_step gtk_progress_bar_set_pulse_step;
13261 alias c_gtk_progress_bar_set_show_text gtk_progress_bar_set_show_text;
13262 alias c_gtk_progress_bar_set_text gtk_progress_bar_set_text;
13263 
13264 // gtk.ProgressBarAccessible
13265 
13266 alias c_gtk_progress_bar_accessible_get_type gtk_progress_bar_accessible_get_type;
13267 
13268 // gtk.RadioAction
13269 
13270 alias c_gtk_radio_action_get_type gtk_radio_action_get_type;
13271 alias c_gtk_radio_action_new gtk_radio_action_new;
13272 alias c_gtk_radio_action_get_current_value gtk_radio_action_get_current_value;
13273 alias c_gtk_radio_action_get_group gtk_radio_action_get_group;
13274 alias c_gtk_radio_action_join_group gtk_radio_action_join_group;
13275 alias c_gtk_radio_action_set_current_value gtk_radio_action_set_current_value;
13276 alias c_gtk_radio_action_set_group gtk_radio_action_set_group;
13277 
13278 // gtk.RadioButton
13279 
13280 alias c_gtk_radio_button_get_type gtk_radio_button_get_type;
13281 alias c_gtk_radio_button_new gtk_radio_button_new;
13282 alias c_gtk_radio_button_new_from_widget gtk_radio_button_new_from_widget;
13283 alias c_gtk_radio_button_new_with_label gtk_radio_button_new_with_label;
13284 alias c_gtk_radio_button_new_with_label_from_widget gtk_radio_button_new_with_label_from_widget;
13285 alias c_gtk_radio_button_new_with_mnemonic gtk_radio_button_new_with_mnemonic;
13286 alias c_gtk_radio_button_new_with_mnemonic_from_widget gtk_radio_button_new_with_mnemonic_from_widget;
13287 alias c_gtk_radio_button_get_group gtk_radio_button_get_group;
13288 alias c_gtk_radio_button_join_group gtk_radio_button_join_group;
13289 alias c_gtk_radio_button_set_group gtk_radio_button_set_group;
13290 
13291 // gtk.RadioButtonAccessible
13292 
13293 alias c_gtk_radio_button_accessible_get_type gtk_radio_button_accessible_get_type;
13294 
13295 // gtk.RadioMenuItem
13296 
13297 alias c_gtk_radio_menu_item_get_type gtk_radio_menu_item_get_type;
13298 alias c_gtk_radio_menu_item_new gtk_radio_menu_item_new;
13299 alias c_gtk_radio_menu_item_new_from_widget gtk_radio_menu_item_new_from_widget;
13300 alias c_gtk_radio_menu_item_new_with_label gtk_radio_menu_item_new_with_label;
13301 alias c_gtk_radio_menu_item_new_with_label_from_widget gtk_radio_menu_item_new_with_label_from_widget;
13302 alias c_gtk_radio_menu_item_new_with_mnemonic gtk_radio_menu_item_new_with_mnemonic;
13303 alias c_gtk_radio_menu_item_new_with_mnemonic_from_widget gtk_radio_menu_item_new_with_mnemonic_from_widget;
13304 alias c_gtk_radio_menu_item_get_group gtk_radio_menu_item_get_group;
13305 alias c_gtk_radio_menu_item_join_group gtk_radio_menu_item_join_group;
13306 alias c_gtk_radio_menu_item_set_group gtk_radio_menu_item_set_group;
13307 
13308 // gtk.RadioMenuItemAccessible
13309 
13310 alias c_gtk_radio_menu_item_accessible_get_type gtk_radio_menu_item_accessible_get_type;
13311 
13312 // gtk.RadioToolButton
13313 
13314 alias c_gtk_radio_tool_button_get_type gtk_radio_tool_button_get_type;
13315 alias c_gtk_radio_tool_button_new gtk_radio_tool_button_new;
13316 alias c_gtk_radio_tool_button_new_from_stock gtk_radio_tool_button_new_from_stock;
13317 alias c_gtk_radio_tool_button_new_from_widget gtk_radio_tool_button_new_from_widget;
13318 alias c_gtk_radio_tool_button_new_with_stock_from_widget gtk_radio_tool_button_new_with_stock_from_widget;
13319 alias c_gtk_radio_tool_button_get_group gtk_radio_tool_button_get_group;
13320 alias c_gtk_radio_tool_button_set_group gtk_radio_tool_button_set_group;
13321 
13322 // gtk.Range
13323 
13324 alias c_gtk_range_get_type gtk_range_get_type;
13325 alias c_gtk_range_get_adjustment gtk_range_get_adjustment;
13326 alias c_gtk_range_get_fill_level gtk_range_get_fill_level;
13327 alias c_gtk_range_get_flippable gtk_range_get_flippable;
13328 alias c_gtk_range_get_inverted gtk_range_get_inverted;
13329 alias c_gtk_range_get_lower_stepper_sensitivity gtk_range_get_lower_stepper_sensitivity;
13330 alias c_gtk_range_get_min_slider_size gtk_range_get_min_slider_size;
13331 alias c_gtk_range_get_range_rect gtk_range_get_range_rect;
13332 alias c_gtk_range_get_restrict_to_fill_level gtk_range_get_restrict_to_fill_level;
13333 alias c_gtk_range_get_round_digits gtk_range_get_round_digits;
13334 alias c_gtk_range_get_show_fill_level gtk_range_get_show_fill_level;
13335 alias c_gtk_range_get_slider_range gtk_range_get_slider_range;
13336 alias c_gtk_range_get_slider_size_fixed gtk_range_get_slider_size_fixed;
13337 alias c_gtk_range_get_upper_stepper_sensitivity gtk_range_get_upper_stepper_sensitivity;
13338 alias c_gtk_range_get_value gtk_range_get_value;
13339 alias c_gtk_range_set_adjustment gtk_range_set_adjustment;
13340 alias c_gtk_range_set_fill_level gtk_range_set_fill_level;
13341 alias c_gtk_range_set_flippable gtk_range_set_flippable;
13342 alias c_gtk_range_set_increments gtk_range_set_increments;
13343 alias c_gtk_range_set_inverted gtk_range_set_inverted;
13344 alias c_gtk_range_set_lower_stepper_sensitivity gtk_range_set_lower_stepper_sensitivity;
13345 alias c_gtk_range_set_min_slider_size gtk_range_set_min_slider_size;
13346 alias c_gtk_range_set_range gtk_range_set_range;
13347 alias c_gtk_range_set_restrict_to_fill_level gtk_range_set_restrict_to_fill_level;
13348 alias c_gtk_range_set_round_digits gtk_range_set_round_digits;
13349 alias c_gtk_range_set_show_fill_level gtk_range_set_show_fill_level;
13350 alias c_gtk_range_set_slider_size_fixed gtk_range_set_slider_size_fixed;
13351 alias c_gtk_range_set_upper_stepper_sensitivity gtk_range_set_upper_stepper_sensitivity;
13352 alias c_gtk_range_set_value gtk_range_set_value;
13353 
13354 // gtk.RangeAccessible
13355 
13356 alias c_gtk_range_accessible_get_type gtk_range_accessible_get_type;
13357 
13358 // gtk.RcProperty
13359 
13360 alias c_gtk_rc_property_parse_border gtk_rc_property_parse_border;
13361 alias c_gtk_rc_property_parse_color gtk_rc_property_parse_color;
13362 alias c_gtk_rc_property_parse_enum gtk_rc_property_parse_enum;
13363 alias c_gtk_rc_property_parse_flags gtk_rc_property_parse_flags;
13364 alias c_gtk_rc_property_parse_requisition gtk_rc_property_parse_requisition;
13365 
13366 // gtk.RcStyle
13367 
13368 alias c_gtk_rc_style_get_type gtk_rc_style_get_type;
13369 alias c_gtk_rc_style_new gtk_rc_style_new;
13370 alias c_gtk_rc_style_copy gtk_rc_style_copy;
13371 alias c_gtk_rc_add_default_file gtk_rc_add_default_file;
13372 alias c_gtk_rc_find_module_in_path gtk_rc_find_module_in_path;
13373 alias c_gtk_rc_find_pixmap_in_path gtk_rc_find_pixmap_in_path;
13374 alias c_gtk_rc_get_default_files gtk_rc_get_default_files;
13375 alias c_gtk_rc_get_im_module_file gtk_rc_get_im_module_file;
13376 alias c_gtk_rc_get_im_module_path gtk_rc_get_im_module_path;
13377 alias c_gtk_rc_get_module_dir gtk_rc_get_module_dir;
13378 alias c_gtk_rc_get_style gtk_rc_get_style;
13379 alias c_gtk_rc_get_style_by_paths gtk_rc_get_style_by_paths;
13380 alias c_gtk_rc_get_theme_dir gtk_rc_get_theme_dir;
13381 alias c_gtk_rc_parse gtk_rc_parse;
13382 alias c_gtk_rc_parse_color gtk_rc_parse_color;
13383 alias c_gtk_rc_parse_color_full gtk_rc_parse_color_full;
13384 alias c_gtk_rc_parse_priority gtk_rc_parse_priority;
13385 alias c_gtk_rc_parse_state gtk_rc_parse_state;
13386 alias c_gtk_rc_parse_string gtk_rc_parse_string;
13387 alias c_gtk_rc_reparse_all gtk_rc_reparse_all;
13388 alias c_gtk_rc_reparse_all_for_settings gtk_rc_reparse_all_for_settings;
13389 alias c_gtk_rc_reset_styles gtk_rc_reset_styles;
13390 alias c_gtk_rc_scanner_new gtk_rc_scanner_new;
13391 alias c_gtk_rc_set_default_files gtk_rc_set_default_files;
13392 
13393 // gtk.RecentAction
13394 
13395 alias c_gtk_recent_action_get_type gtk_recent_action_get_type;
13396 alias c_gtk_recent_action_new gtk_recent_action_new;
13397 alias c_gtk_recent_action_new_for_manager gtk_recent_action_new_for_manager;
13398 alias c_gtk_recent_action_get_show_numbers gtk_recent_action_get_show_numbers;
13399 alias c_gtk_recent_action_set_show_numbers gtk_recent_action_set_show_numbers;
13400 
13401 // gtk.RecentChooser
13402 
13403 alias c_gtk_recent_chooser_get_type gtk_recent_chooser_get_type;
13404 alias c_gtk_recent_chooser_add_filter gtk_recent_chooser_add_filter;
13405 alias c_gtk_recent_chooser_get_current_item gtk_recent_chooser_get_current_item;
13406 alias c_gtk_recent_chooser_get_current_uri gtk_recent_chooser_get_current_uri;
13407 alias c_gtk_recent_chooser_get_filter gtk_recent_chooser_get_filter;
13408 alias c_gtk_recent_chooser_get_items gtk_recent_chooser_get_items;
13409 alias c_gtk_recent_chooser_get_limit gtk_recent_chooser_get_limit;
13410 alias c_gtk_recent_chooser_get_local_only gtk_recent_chooser_get_local_only;
13411 alias c_gtk_recent_chooser_get_select_multiple gtk_recent_chooser_get_select_multiple;
13412 alias c_gtk_recent_chooser_get_show_icons gtk_recent_chooser_get_show_icons;
13413 alias c_gtk_recent_chooser_get_show_not_found gtk_recent_chooser_get_show_not_found;
13414 alias c_gtk_recent_chooser_get_show_private gtk_recent_chooser_get_show_private;
13415 alias c_gtk_recent_chooser_get_show_tips gtk_recent_chooser_get_show_tips;
13416 alias c_gtk_recent_chooser_get_sort_type gtk_recent_chooser_get_sort_type;
13417 alias c_gtk_recent_chooser_get_uris gtk_recent_chooser_get_uris;
13418 alias c_gtk_recent_chooser_list_filters gtk_recent_chooser_list_filters;
13419 alias c_gtk_recent_chooser_remove_filter gtk_recent_chooser_remove_filter;
13420 alias c_gtk_recent_chooser_select_all gtk_recent_chooser_select_all;
13421 alias c_gtk_recent_chooser_select_uri gtk_recent_chooser_select_uri;
13422 alias c_gtk_recent_chooser_set_current_uri gtk_recent_chooser_set_current_uri;
13423 alias c_gtk_recent_chooser_set_filter gtk_recent_chooser_set_filter;
13424 alias c_gtk_recent_chooser_set_limit gtk_recent_chooser_set_limit;
13425 alias c_gtk_recent_chooser_set_local_only gtk_recent_chooser_set_local_only;
13426 alias c_gtk_recent_chooser_set_select_multiple gtk_recent_chooser_set_select_multiple;
13427 alias c_gtk_recent_chooser_set_show_icons gtk_recent_chooser_set_show_icons;
13428 alias c_gtk_recent_chooser_set_show_not_found gtk_recent_chooser_set_show_not_found;
13429 alias c_gtk_recent_chooser_set_show_private gtk_recent_chooser_set_show_private;
13430 alias c_gtk_recent_chooser_set_show_tips gtk_recent_chooser_set_show_tips;
13431 alias c_gtk_recent_chooser_set_sort_func gtk_recent_chooser_set_sort_func;
13432 alias c_gtk_recent_chooser_set_sort_type gtk_recent_chooser_set_sort_type;
13433 alias c_gtk_recent_chooser_unselect_all gtk_recent_chooser_unselect_all;
13434 alias c_gtk_recent_chooser_unselect_uri gtk_recent_chooser_unselect_uri;
13435 
13436 // gtk.RecentChooserDialog
13437 
13438 alias c_gtk_recent_chooser_dialog_get_type gtk_recent_chooser_dialog_get_type;
13439 alias c_gtk_recent_chooser_dialog_new gtk_recent_chooser_dialog_new;
13440 alias c_gtk_recent_chooser_dialog_new_for_manager gtk_recent_chooser_dialog_new_for_manager;
13441 
13442 // gtk.RecentChooserMenu
13443 
13444 alias c_gtk_recent_chooser_menu_get_type gtk_recent_chooser_menu_get_type;
13445 alias c_gtk_recent_chooser_menu_new gtk_recent_chooser_menu_new;
13446 alias c_gtk_recent_chooser_menu_new_for_manager gtk_recent_chooser_menu_new_for_manager;
13447 alias c_gtk_recent_chooser_menu_get_show_numbers gtk_recent_chooser_menu_get_show_numbers;
13448 alias c_gtk_recent_chooser_menu_set_show_numbers gtk_recent_chooser_menu_set_show_numbers;
13449 
13450 // gtk.RecentChooserWidget
13451 
13452 alias c_gtk_recent_chooser_widget_get_type gtk_recent_chooser_widget_get_type;
13453 alias c_gtk_recent_chooser_widget_new gtk_recent_chooser_widget_new;
13454 alias c_gtk_recent_chooser_widget_new_for_manager gtk_recent_chooser_widget_new_for_manager;
13455 
13456 // gtk.RecentFilter
13457 
13458 alias c_gtk_recent_filter_get_type gtk_recent_filter_get_type;
13459 alias c_gtk_recent_filter_new gtk_recent_filter_new;
13460 alias c_gtk_recent_filter_add_age gtk_recent_filter_add_age;
13461 alias c_gtk_recent_filter_add_application gtk_recent_filter_add_application;
13462 alias c_gtk_recent_filter_add_custom gtk_recent_filter_add_custom;
13463 alias c_gtk_recent_filter_add_group gtk_recent_filter_add_group;
13464 alias c_gtk_recent_filter_add_mime_type gtk_recent_filter_add_mime_type;
13465 alias c_gtk_recent_filter_add_pattern gtk_recent_filter_add_pattern;
13466 alias c_gtk_recent_filter_add_pixbuf_formats gtk_recent_filter_add_pixbuf_formats;
13467 alias c_gtk_recent_filter_filter gtk_recent_filter_filter;
13468 alias c_gtk_recent_filter_get_name gtk_recent_filter_get_name;
13469 alias c_gtk_recent_filter_get_needed gtk_recent_filter_get_needed;
13470 alias c_gtk_recent_filter_set_name gtk_recent_filter_set_name;
13471 
13472 // gtk.RecentInfo
13473 
13474 alias c_gtk_recent_info_get_type gtk_recent_info_get_type;
13475 alias c_gtk_recent_info_create_app_info gtk_recent_info_create_app_info;
13476 alias c_gtk_recent_info_exists gtk_recent_info_exists;
13477 alias c_gtk_recent_info_get_added gtk_recent_info_get_added;
13478 alias c_gtk_recent_info_get_age gtk_recent_info_get_age;
13479 alias c_gtk_recent_info_get_application_info gtk_recent_info_get_application_info;
13480 alias c_gtk_recent_info_get_applications gtk_recent_info_get_applications;
13481 alias c_gtk_recent_info_get_description gtk_recent_info_get_description;
13482 alias c_gtk_recent_info_get_display_name gtk_recent_info_get_display_name;
13483 alias c_gtk_recent_info_get_gicon gtk_recent_info_get_gicon;
13484 alias c_gtk_recent_info_get_groups gtk_recent_info_get_groups;
13485 alias c_gtk_recent_info_get_icon gtk_recent_info_get_icon;
13486 alias c_gtk_recent_info_get_mime_type gtk_recent_info_get_mime_type;
13487 alias c_gtk_recent_info_get_modified gtk_recent_info_get_modified;
13488 alias c_gtk_recent_info_get_private_hint gtk_recent_info_get_private_hint;
13489 alias c_gtk_recent_info_get_short_name gtk_recent_info_get_short_name;
13490 alias c_gtk_recent_info_get_uri gtk_recent_info_get_uri;
13491 alias c_gtk_recent_info_get_uri_display gtk_recent_info_get_uri_display;
13492 alias c_gtk_recent_info_get_visited gtk_recent_info_get_visited;
13493 alias c_gtk_recent_info_has_application gtk_recent_info_has_application;
13494 alias c_gtk_recent_info_has_group gtk_recent_info_has_group;
13495 alias c_gtk_recent_info_is_local gtk_recent_info_is_local;
13496 alias c_gtk_recent_info_last_application gtk_recent_info_last_application;
13497 alias c_gtk_recent_info_match gtk_recent_info_match;
13498 alias c_gtk_recent_info_ref gtk_recent_info_ref;
13499 alias c_gtk_recent_info_unref gtk_recent_info_unref;
13500 
13501 // gtk.RecentManager
13502 
13503 alias c_gtk_recent_manager_get_type gtk_recent_manager_get_type;
13504 alias c_gtk_recent_manager_new gtk_recent_manager_new;
13505 alias c_gtk_recent_manager_get_default gtk_recent_manager_get_default;
13506 alias c_gtk_recent_manager_add_full gtk_recent_manager_add_full;
13507 alias c_gtk_recent_manager_add_item gtk_recent_manager_add_item;
13508 alias c_gtk_recent_manager_get_items gtk_recent_manager_get_items;
13509 alias c_gtk_recent_manager_has_item gtk_recent_manager_has_item;
13510 alias c_gtk_recent_manager_lookup_item gtk_recent_manager_lookup_item;
13511 alias c_gtk_recent_manager_move_item gtk_recent_manager_move_item;
13512 alias c_gtk_recent_manager_purge_items gtk_recent_manager_purge_items;
13513 alias c_gtk_recent_manager_remove_item gtk_recent_manager_remove_item;
13514 
13515 // gtk.RendererCellAccessible
13516 
13517 alias c_gtk_renderer_cell_accessible_get_type gtk_renderer_cell_accessible_get_type;
13518 alias c_gtk_renderer_cell_accessible_new gtk_renderer_cell_accessible_new;
13519 
13520 // gtk.Requisition
13521 
13522 alias c_gtk_requisition_get_type gtk_requisition_get_type;
13523 alias c_gtk_requisition_new gtk_requisition_new;
13524 alias c_gtk_requisition_copy gtk_requisition_copy;
13525 alias c_gtk_requisition_free gtk_requisition_free;
13526 
13527 // gtk.Revealer
13528 
13529 alias c_gtk_revealer_get_type gtk_revealer_get_type;
13530 alias c_gtk_revealer_new gtk_revealer_new;
13531 alias c_gtk_revealer_get_child_revealed gtk_revealer_get_child_revealed;
13532 alias c_gtk_revealer_get_reveal_child gtk_revealer_get_reveal_child;
13533 alias c_gtk_revealer_get_transition_duration gtk_revealer_get_transition_duration;
13534 alias c_gtk_revealer_get_transition_type gtk_revealer_get_transition_type;
13535 alias c_gtk_revealer_set_reveal_child gtk_revealer_set_reveal_child;
13536 alias c_gtk_revealer_set_transition_duration gtk_revealer_set_transition_duration;
13537 alias c_gtk_revealer_set_transition_type gtk_revealer_set_transition_type;
13538 
13539 // gtk.Scale
13540 
13541 alias c_gtk_scale_get_type gtk_scale_get_type;
13542 alias c_gtk_scale_new gtk_scale_new;
13543 alias c_gtk_scale_new_with_range gtk_scale_new_with_range;
13544 alias c_gtk_scale_add_mark gtk_scale_add_mark;
13545 alias c_gtk_scale_clear_marks gtk_scale_clear_marks;
13546 alias c_gtk_scale_get_digits gtk_scale_get_digits;
13547 alias c_gtk_scale_get_draw_value gtk_scale_get_draw_value;
13548 alias c_gtk_scale_get_has_origin gtk_scale_get_has_origin;
13549 alias c_gtk_scale_get_layout gtk_scale_get_layout;
13550 alias c_gtk_scale_get_layout_offsets gtk_scale_get_layout_offsets;
13551 alias c_gtk_scale_get_value_pos gtk_scale_get_value_pos;
13552 alias c_gtk_scale_set_digits gtk_scale_set_digits;
13553 alias c_gtk_scale_set_draw_value gtk_scale_set_draw_value;
13554 alias c_gtk_scale_set_has_origin gtk_scale_set_has_origin;
13555 alias c_gtk_scale_set_value_pos gtk_scale_set_value_pos;
13556 
13557 // gtk.ScaleAccessible
13558 
13559 alias c_gtk_scale_accessible_get_type gtk_scale_accessible_get_type;
13560 
13561 // gtk.ScaleButton
13562 
13563 alias c_gtk_scale_button_get_type gtk_scale_button_get_type;
13564 alias c_gtk_scale_button_new gtk_scale_button_new;
13565 alias c_gtk_scale_button_get_adjustment gtk_scale_button_get_adjustment;
13566 alias c_gtk_scale_button_get_minus_button gtk_scale_button_get_minus_button;
13567 alias c_gtk_scale_button_get_plus_button gtk_scale_button_get_plus_button;
13568 alias c_gtk_scale_button_get_popup gtk_scale_button_get_popup;
13569 alias c_gtk_scale_button_get_value gtk_scale_button_get_value;
13570 alias c_gtk_scale_button_set_adjustment gtk_scale_button_set_adjustment;
13571 alias c_gtk_scale_button_set_icons gtk_scale_button_set_icons;
13572 alias c_gtk_scale_button_set_value gtk_scale_button_set_value;
13573 
13574 // gtk.ScaleButtonAccessible
13575 
13576 alias c_gtk_scale_button_accessible_get_type gtk_scale_button_accessible_get_type;
13577 
13578 // gtk.Scrollable
13579 
13580 alias c_gtk_scrollable_get_type gtk_scrollable_get_type;
13581 alias c_gtk_scrollable_get_border gtk_scrollable_get_border;
13582 alias c_gtk_scrollable_get_hadjustment gtk_scrollable_get_hadjustment;
13583 alias c_gtk_scrollable_get_hscroll_policy gtk_scrollable_get_hscroll_policy;
13584 alias c_gtk_scrollable_get_vadjustment gtk_scrollable_get_vadjustment;
13585 alias c_gtk_scrollable_get_vscroll_policy gtk_scrollable_get_vscroll_policy;
13586 alias c_gtk_scrollable_set_hadjustment gtk_scrollable_set_hadjustment;
13587 alias c_gtk_scrollable_set_hscroll_policy gtk_scrollable_set_hscroll_policy;
13588 alias c_gtk_scrollable_set_vadjustment gtk_scrollable_set_vadjustment;
13589 alias c_gtk_scrollable_set_vscroll_policy gtk_scrollable_set_vscroll_policy;
13590 
13591 // gtk.Scrollbar
13592 
13593 alias c_gtk_scrollbar_get_type gtk_scrollbar_get_type;
13594 alias c_gtk_scrollbar_new gtk_scrollbar_new;
13595 
13596 // gtk.ScrolledWindow
13597 
13598 alias c_gtk_scrolled_window_get_type gtk_scrolled_window_get_type;
13599 alias c_gtk_scrolled_window_new gtk_scrolled_window_new;
13600 alias c_gtk_scrolled_window_add_with_viewport gtk_scrolled_window_add_with_viewport;
13601 alias c_gtk_scrolled_window_get_capture_button_press gtk_scrolled_window_get_capture_button_press;
13602 alias c_gtk_scrolled_window_get_hadjustment gtk_scrolled_window_get_hadjustment;
13603 alias c_gtk_scrolled_window_get_hscrollbar gtk_scrolled_window_get_hscrollbar;
13604 alias c_gtk_scrolled_window_get_kinetic_scrolling gtk_scrolled_window_get_kinetic_scrolling;
13605 alias c_gtk_scrolled_window_get_max_content_height gtk_scrolled_window_get_max_content_height;
13606 alias c_gtk_scrolled_window_get_max_content_width gtk_scrolled_window_get_max_content_width;
13607 alias c_gtk_scrolled_window_get_min_content_height gtk_scrolled_window_get_min_content_height;
13608 alias c_gtk_scrolled_window_get_min_content_width gtk_scrolled_window_get_min_content_width;
13609 alias c_gtk_scrolled_window_get_overlay_scrolling gtk_scrolled_window_get_overlay_scrolling;
13610 alias c_gtk_scrolled_window_get_placement gtk_scrolled_window_get_placement;
13611 alias c_gtk_scrolled_window_get_policy gtk_scrolled_window_get_policy;
13612 alias c_gtk_scrolled_window_get_propagate_natural_height gtk_scrolled_window_get_propagate_natural_height;
13613 alias c_gtk_scrolled_window_get_propagate_natural_width gtk_scrolled_window_get_propagate_natural_width;
13614 alias c_gtk_scrolled_window_get_shadow_type gtk_scrolled_window_get_shadow_type;
13615 alias c_gtk_scrolled_window_get_vadjustment gtk_scrolled_window_get_vadjustment;
13616 alias c_gtk_scrolled_window_get_vscrollbar gtk_scrolled_window_get_vscrollbar;
13617 alias c_gtk_scrolled_window_set_capture_button_press gtk_scrolled_window_set_capture_button_press;
13618 alias c_gtk_scrolled_window_set_hadjustment gtk_scrolled_window_set_hadjustment;
13619 alias c_gtk_scrolled_window_set_kinetic_scrolling gtk_scrolled_window_set_kinetic_scrolling;
13620 alias c_gtk_scrolled_window_set_max_content_height gtk_scrolled_window_set_max_content_height;
13621 alias c_gtk_scrolled_window_set_max_content_width gtk_scrolled_window_set_max_content_width;
13622 alias c_gtk_scrolled_window_set_min_content_height gtk_scrolled_window_set_min_content_height;
13623 alias c_gtk_scrolled_window_set_min_content_width gtk_scrolled_window_set_min_content_width;
13624 alias c_gtk_scrolled_window_set_overlay_scrolling gtk_scrolled_window_set_overlay_scrolling;
13625 alias c_gtk_scrolled_window_set_placement gtk_scrolled_window_set_placement;
13626 alias c_gtk_scrolled_window_set_policy gtk_scrolled_window_set_policy;
13627 alias c_gtk_scrolled_window_set_propagate_natural_height gtk_scrolled_window_set_propagate_natural_height;
13628 alias c_gtk_scrolled_window_set_propagate_natural_width gtk_scrolled_window_set_propagate_natural_width;
13629 alias c_gtk_scrolled_window_set_shadow_type gtk_scrolled_window_set_shadow_type;
13630 alias c_gtk_scrolled_window_set_vadjustment gtk_scrolled_window_set_vadjustment;
13631 alias c_gtk_scrolled_window_unset_placement gtk_scrolled_window_unset_placement;
13632 
13633 // gtk.ScrolledWindowAccessible
13634 
13635 alias c_gtk_scrolled_window_accessible_get_type gtk_scrolled_window_accessible_get_type;
13636 
13637 // gtk.SearchBar
13638 
13639 alias c_gtk_search_bar_get_type gtk_search_bar_get_type;
13640 alias c_gtk_search_bar_new gtk_search_bar_new;
13641 alias c_gtk_search_bar_connect_entry gtk_search_bar_connect_entry;
13642 alias c_gtk_search_bar_get_search_mode gtk_search_bar_get_search_mode;
13643 alias c_gtk_search_bar_get_show_close_button gtk_search_bar_get_show_close_button;
13644 alias c_gtk_search_bar_handle_event gtk_search_bar_handle_event;
13645 alias c_gtk_search_bar_set_search_mode gtk_search_bar_set_search_mode;
13646 alias c_gtk_search_bar_set_show_close_button gtk_search_bar_set_show_close_button;
13647 
13648 // gtk.SearchEntry
13649 
13650 alias c_gtk_search_entry_get_type gtk_search_entry_get_type;
13651 alias c_gtk_search_entry_new gtk_search_entry_new;
13652 alias c_gtk_search_entry_handle_event gtk_search_entry_handle_event;
13653 
13654 // gtk.SelectionData
13655 
13656 alias c_gtk_selection_data_get_type gtk_selection_data_get_type;
13657 alias c_gtk_selection_data_copy gtk_selection_data_copy;
13658 alias c_gtk_selection_data_free gtk_selection_data_free;
13659 alias c_gtk_selection_data_get_data gtk_selection_data_get_data;
13660 alias c_gtk_selection_data_get_data_type gtk_selection_data_get_data_type;
13661 alias c_gtk_selection_data_get_data_with_length gtk_selection_data_get_data_with_length;
13662 alias c_gtk_selection_data_get_display gtk_selection_data_get_display;
13663 alias c_gtk_selection_data_get_format gtk_selection_data_get_format;
13664 alias c_gtk_selection_data_get_length gtk_selection_data_get_length;
13665 alias c_gtk_selection_data_get_pixbuf gtk_selection_data_get_pixbuf;
13666 alias c_gtk_selection_data_get_selection gtk_selection_data_get_selection;
13667 alias c_gtk_selection_data_get_target gtk_selection_data_get_target;
13668 alias c_gtk_selection_data_get_targets gtk_selection_data_get_targets;
13669 alias c_gtk_selection_data_get_text gtk_selection_data_get_text;
13670 alias c_gtk_selection_data_get_uris gtk_selection_data_get_uris;
13671 alias c_gtk_selection_data_set gtk_selection_data_set;
13672 alias c_gtk_selection_data_set_pixbuf gtk_selection_data_set_pixbuf;
13673 alias c_gtk_selection_data_set_text gtk_selection_data_set_text;
13674 alias c_gtk_selection_data_set_uris gtk_selection_data_set_uris;
13675 alias c_gtk_selection_data_targets_include_image gtk_selection_data_targets_include_image;
13676 alias c_gtk_selection_data_targets_include_rich_text gtk_selection_data_targets_include_rich_text;
13677 alias c_gtk_selection_data_targets_include_text gtk_selection_data_targets_include_text;
13678 alias c_gtk_selection_data_targets_include_uri gtk_selection_data_targets_include_uri;
13679 alias c_gtk_selection_add_target gtk_selection_add_target;
13680 alias c_gtk_selection_add_targets gtk_selection_add_targets;
13681 alias c_gtk_selection_clear_targets gtk_selection_clear_targets;
13682 alias c_gtk_selection_convert gtk_selection_convert;
13683 alias c_gtk_selection_owner_set gtk_selection_owner_set;
13684 alias c_gtk_selection_owner_set_for_display gtk_selection_owner_set_for_display;
13685 alias c_gtk_selection_remove_all gtk_selection_remove_all;
13686 
13687 // gtk.Separator
13688 
13689 alias c_gtk_separator_get_type gtk_separator_get_type;
13690 alias c_gtk_separator_new gtk_separator_new;
13691 
13692 // gtk.SeparatorMenuItem
13693 
13694 alias c_gtk_separator_menu_item_get_type gtk_separator_menu_item_get_type;
13695 alias c_gtk_separator_menu_item_new gtk_separator_menu_item_new;
13696 
13697 // gtk.SeparatorToolItem
13698 
13699 alias c_gtk_separator_tool_item_get_type gtk_separator_tool_item_get_type;
13700 alias c_gtk_separator_tool_item_new gtk_separator_tool_item_new;
13701 alias c_gtk_separator_tool_item_get_draw gtk_separator_tool_item_get_draw;
13702 alias c_gtk_separator_tool_item_set_draw gtk_separator_tool_item_set_draw;
13703 
13704 // gtk.Settings
13705 
13706 alias c_gtk_settings_get_type gtk_settings_get_type;
13707 alias c_gtk_settings_get_default gtk_settings_get_default;
13708 alias c_gtk_settings_get_for_screen gtk_settings_get_for_screen;
13709 alias c_gtk_settings_install_property gtk_settings_install_property;
13710 alias c_gtk_settings_install_property_parser gtk_settings_install_property_parser;
13711 alias c_gtk_settings_reset_property gtk_settings_reset_property;
13712 alias c_gtk_settings_set_double_property gtk_settings_set_double_property;
13713 alias c_gtk_settings_set_long_property gtk_settings_set_long_property;
13714 alias c_gtk_settings_set_property_value gtk_settings_set_property_value;
13715 alias c_gtk_settings_set_string_property gtk_settings_set_string_property;
13716 
13717 // gtk.ShortcutLabel
13718 
13719 alias c_gtk_shortcut_label_get_type gtk_shortcut_label_get_type;
13720 alias c_gtk_shortcut_label_new gtk_shortcut_label_new;
13721 alias c_gtk_shortcut_label_get_accelerator gtk_shortcut_label_get_accelerator;
13722 alias c_gtk_shortcut_label_get_disabled_text gtk_shortcut_label_get_disabled_text;
13723 alias c_gtk_shortcut_label_set_accelerator gtk_shortcut_label_set_accelerator;
13724 alias c_gtk_shortcut_label_set_disabled_text gtk_shortcut_label_set_disabled_text;
13725 
13726 // gtk.ShortcutsGroup
13727 
13728 alias c_gtk_shortcuts_group_get_type gtk_shortcuts_group_get_type;
13729 
13730 // gtk.ShortcutsSection
13731 
13732 alias c_gtk_shortcuts_section_get_type gtk_shortcuts_section_get_type;
13733 
13734 // gtk.ShortcutsShortcut
13735 
13736 alias c_gtk_shortcuts_shortcut_get_type gtk_shortcuts_shortcut_get_type;
13737 
13738 // gtk.ShortcutsWindow
13739 
13740 alias c_gtk_shortcuts_window_get_type gtk_shortcuts_window_get_type;
13741 
13742 // gtk.SizeGroup
13743 
13744 alias c_gtk_size_group_get_type gtk_size_group_get_type;
13745 alias c_gtk_size_group_new gtk_size_group_new;
13746 alias c_gtk_size_group_add_widget gtk_size_group_add_widget;
13747 alias c_gtk_size_group_get_ignore_hidden gtk_size_group_get_ignore_hidden;
13748 alias c_gtk_size_group_get_mode gtk_size_group_get_mode;
13749 alias c_gtk_size_group_get_widgets gtk_size_group_get_widgets;
13750 alias c_gtk_size_group_remove_widget gtk_size_group_remove_widget;
13751 alias c_gtk_size_group_set_ignore_hidden gtk_size_group_set_ignore_hidden;
13752 alias c_gtk_size_group_set_mode gtk_size_group_set_mode;
13753 
13754 // gtk.Socket
13755 
13756 alias c_gtk_socket_get_type gtk_socket_get_type;
13757 alias c_gtk_socket_new gtk_socket_new;
13758 alias c_gtk_socket_add_id gtk_socket_add_id;
13759 alias c_gtk_socket_get_id gtk_socket_get_id;
13760 alias c_gtk_socket_get_plug_window gtk_socket_get_plug_window;
13761 
13762 // gtk.SpinButton
13763 
13764 alias c_gtk_spin_button_get_type gtk_spin_button_get_type;
13765 alias c_gtk_spin_button_new gtk_spin_button_new;
13766 alias c_gtk_spin_button_new_with_range gtk_spin_button_new_with_range;
13767 alias c_gtk_spin_button_configure gtk_spin_button_configure;
13768 alias c_gtk_spin_button_get_adjustment gtk_spin_button_get_adjustment;
13769 alias c_gtk_spin_button_get_digits gtk_spin_button_get_digits;
13770 alias c_gtk_spin_button_get_increments gtk_spin_button_get_increments;
13771 alias c_gtk_spin_button_get_numeric gtk_spin_button_get_numeric;
13772 alias c_gtk_spin_button_get_range gtk_spin_button_get_range;
13773 alias c_gtk_spin_button_get_snap_to_ticks gtk_spin_button_get_snap_to_ticks;
13774 alias c_gtk_spin_button_get_update_policy gtk_spin_button_get_update_policy;
13775 alias c_gtk_spin_button_get_value gtk_spin_button_get_value;
13776 alias c_gtk_spin_button_get_value_as_int gtk_spin_button_get_value_as_int;
13777 alias c_gtk_spin_button_get_wrap gtk_spin_button_get_wrap;
13778 alias c_gtk_spin_button_set_adjustment gtk_spin_button_set_adjustment;
13779 alias c_gtk_spin_button_set_digits gtk_spin_button_set_digits;
13780 alias c_gtk_spin_button_set_increments gtk_spin_button_set_increments;
13781 alias c_gtk_spin_button_set_numeric gtk_spin_button_set_numeric;
13782 alias c_gtk_spin_button_set_range gtk_spin_button_set_range;
13783 alias c_gtk_spin_button_set_snap_to_ticks gtk_spin_button_set_snap_to_ticks;
13784 alias c_gtk_spin_button_set_update_policy gtk_spin_button_set_update_policy;
13785 alias c_gtk_spin_button_set_value gtk_spin_button_set_value;
13786 alias c_gtk_spin_button_set_wrap gtk_spin_button_set_wrap;
13787 alias c_gtk_spin_button_spin gtk_spin_button_spin;
13788 alias c_gtk_spin_button_update gtk_spin_button_update;
13789 
13790 // gtk.SpinButtonAccessible
13791 
13792 alias c_gtk_spin_button_accessible_get_type gtk_spin_button_accessible_get_type;
13793 
13794 // gtk.Spinner
13795 
13796 alias c_gtk_spinner_get_type gtk_spinner_get_type;
13797 alias c_gtk_spinner_new gtk_spinner_new;
13798 alias c_gtk_spinner_start gtk_spinner_start;
13799 alias c_gtk_spinner_stop gtk_spinner_stop;
13800 
13801 // gtk.SpinnerAccessible
13802 
13803 alias c_gtk_spinner_accessible_get_type gtk_spinner_accessible_get_type;
13804 
13805 // gtk.Stack
13806 
13807 alias c_gtk_stack_get_type gtk_stack_get_type;
13808 alias c_gtk_stack_new gtk_stack_new;
13809 alias c_gtk_stack_add_named gtk_stack_add_named;
13810 alias c_gtk_stack_add_titled gtk_stack_add_titled;
13811 alias c_gtk_stack_get_child_by_name gtk_stack_get_child_by_name;
13812 alias c_gtk_stack_get_hhomogeneous gtk_stack_get_hhomogeneous;
13813 alias c_gtk_stack_get_homogeneous gtk_stack_get_homogeneous;
13814 alias c_gtk_stack_get_interpolate_size gtk_stack_get_interpolate_size;
13815 alias c_gtk_stack_get_transition_duration gtk_stack_get_transition_duration;
13816 alias c_gtk_stack_get_transition_running gtk_stack_get_transition_running;
13817 alias c_gtk_stack_get_transition_type gtk_stack_get_transition_type;
13818 alias c_gtk_stack_get_vhomogeneous gtk_stack_get_vhomogeneous;
13819 alias c_gtk_stack_get_visible_child gtk_stack_get_visible_child;
13820 alias c_gtk_stack_get_visible_child_name gtk_stack_get_visible_child_name;
13821 alias c_gtk_stack_set_hhomogeneous gtk_stack_set_hhomogeneous;
13822 alias c_gtk_stack_set_homogeneous gtk_stack_set_homogeneous;
13823 alias c_gtk_stack_set_interpolate_size gtk_stack_set_interpolate_size;
13824 alias c_gtk_stack_set_transition_duration gtk_stack_set_transition_duration;
13825 alias c_gtk_stack_set_transition_type gtk_stack_set_transition_type;
13826 alias c_gtk_stack_set_vhomogeneous gtk_stack_set_vhomogeneous;
13827 alias c_gtk_stack_set_visible_child gtk_stack_set_visible_child;
13828 alias c_gtk_stack_set_visible_child_full gtk_stack_set_visible_child_full;
13829 alias c_gtk_stack_set_visible_child_name gtk_stack_set_visible_child_name;
13830 
13831 // gtk.StackAccessible
13832 
13833 alias c_gtk_stack_accessible_get_type gtk_stack_accessible_get_type;
13834 
13835 // gtk.StackSidebar
13836 
13837 alias c_gtk_stack_sidebar_get_type gtk_stack_sidebar_get_type;
13838 alias c_gtk_stack_sidebar_new gtk_stack_sidebar_new;
13839 alias c_gtk_stack_sidebar_get_stack gtk_stack_sidebar_get_stack;
13840 alias c_gtk_stack_sidebar_set_stack gtk_stack_sidebar_set_stack;
13841 
13842 // gtk.StackSwitcher
13843 
13844 alias c_gtk_stack_switcher_get_type gtk_stack_switcher_get_type;
13845 alias c_gtk_stack_switcher_new gtk_stack_switcher_new;
13846 alias c_gtk_stack_switcher_get_stack gtk_stack_switcher_get_stack;
13847 alias c_gtk_stack_switcher_set_stack gtk_stack_switcher_set_stack;
13848 
13849 // gtk.StatusIcon
13850 
13851 alias c_gtk_status_icon_get_type gtk_status_icon_get_type;
13852 alias c_gtk_status_icon_new gtk_status_icon_new;
13853 alias c_gtk_status_icon_new_from_file gtk_status_icon_new_from_file;
13854 alias c_gtk_status_icon_new_from_gicon gtk_status_icon_new_from_gicon;
13855 alias c_gtk_status_icon_new_from_icon_name gtk_status_icon_new_from_icon_name;
13856 alias c_gtk_status_icon_new_from_pixbuf gtk_status_icon_new_from_pixbuf;
13857 alias c_gtk_status_icon_new_from_stock gtk_status_icon_new_from_stock;
13858 alias c_gtk_status_icon_position_menu gtk_status_icon_position_menu;
13859 alias c_gtk_status_icon_get_geometry gtk_status_icon_get_geometry;
13860 alias c_gtk_status_icon_get_gicon gtk_status_icon_get_gicon;
13861 alias c_gtk_status_icon_get_has_tooltip gtk_status_icon_get_has_tooltip;
13862 alias c_gtk_status_icon_get_icon_name gtk_status_icon_get_icon_name;
13863 alias c_gtk_status_icon_get_pixbuf gtk_status_icon_get_pixbuf;
13864 alias c_gtk_status_icon_get_screen gtk_status_icon_get_screen;
13865 alias c_gtk_status_icon_get_size gtk_status_icon_get_size;
13866 alias c_gtk_status_icon_get_stock gtk_status_icon_get_stock;
13867 alias c_gtk_status_icon_get_storage_type gtk_status_icon_get_storage_type;
13868 alias c_gtk_status_icon_get_title gtk_status_icon_get_title;
13869 alias c_gtk_status_icon_get_tooltip_markup gtk_status_icon_get_tooltip_markup;
13870 alias c_gtk_status_icon_get_tooltip_text gtk_status_icon_get_tooltip_text;
13871 alias c_gtk_status_icon_get_visible gtk_status_icon_get_visible;
13872 alias c_gtk_status_icon_get_x11_window_id gtk_status_icon_get_x11_window_id;
13873 alias c_gtk_status_icon_is_embedded gtk_status_icon_is_embedded;
13874 alias c_gtk_status_icon_set_from_file gtk_status_icon_set_from_file;
13875 alias c_gtk_status_icon_set_from_gicon gtk_status_icon_set_from_gicon;
13876 alias c_gtk_status_icon_set_from_icon_name gtk_status_icon_set_from_icon_name;
13877 alias c_gtk_status_icon_set_from_pixbuf gtk_status_icon_set_from_pixbuf;
13878 alias c_gtk_status_icon_set_from_stock gtk_status_icon_set_from_stock;
13879 alias c_gtk_status_icon_set_has_tooltip gtk_status_icon_set_has_tooltip;
13880 alias c_gtk_status_icon_set_name gtk_status_icon_set_name;
13881 alias c_gtk_status_icon_set_screen gtk_status_icon_set_screen;
13882 alias c_gtk_status_icon_set_title gtk_status_icon_set_title;
13883 alias c_gtk_status_icon_set_tooltip_markup gtk_status_icon_set_tooltip_markup;
13884 alias c_gtk_status_icon_set_tooltip_text gtk_status_icon_set_tooltip_text;
13885 alias c_gtk_status_icon_set_visible gtk_status_icon_set_visible;
13886 
13887 // gtk.Statusbar
13888 
13889 alias c_gtk_statusbar_get_type gtk_statusbar_get_type;
13890 alias c_gtk_statusbar_new gtk_statusbar_new;
13891 alias c_gtk_statusbar_get_context_id gtk_statusbar_get_context_id;
13892 alias c_gtk_statusbar_get_message_area gtk_statusbar_get_message_area;
13893 alias c_gtk_statusbar_pop gtk_statusbar_pop;
13894 alias c_gtk_statusbar_push gtk_statusbar_push;
13895 alias c_gtk_statusbar_remove gtk_statusbar_remove;
13896 alias c_gtk_statusbar_remove_all gtk_statusbar_remove_all;
13897 
13898 // gtk.StatusbarAccessible
13899 
13900 alias c_gtk_statusbar_accessible_get_type gtk_statusbar_accessible_get_type;
13901 
13902 // gtk.StockItem
13903 
13904 alias c_gtk_stock_item_copy gtk_stock_item_copy;
13905 alias c_gtk_stock_item_free gtk_stock_item_free;
13906 alias c_gtk_stock_add gtk_stock_add;
13907 alias c_gtk_stock_add_static gtk_stock_add_static;
13908 alias c_gtk_stock_list_ids gtk_stock_list_ids;
13909 alias c_gtk_stock_lookup gtk_stock_lookup;
13910 alias c_gtk_stock_set_translate_func gtk_stock_set_translate_func;
13911 
13912 // gtk.Style
13913 
13914 alias c_gtk_style_get_type gtk_style_get_type;
13915 alias c_gtk_style_new gtk_style_new;
13916 alias c_gtk_style_apply_default_background gtk_style_apply_default_background;
13917 alias c_gtk_style_attach gtk_style_attach;
13918 alias c_gtk_style_copy gtk_style_copy;
13919 alias c_gtk_style_detach gtk_style_detach;
13920 alias c_gtk_style_get gtk_style_get;
13921 alias c_gtk_style_get_style_property gtk_style_get_style_property;
13922 alias c_gtk_style_get_valist gtk_style_get_valist;
13923 alias c_gtk_style_has_context gtk_style_has_context;
13924 alias c_gtk_style_lookup_color gtk_style_lookup_color;
13925 alias c_gtk_style_lookup_icon_set gtk_style_lookup_icon_set;
13926 alias c_gtk_style_render_icon gtk_style_render_icon;
13927 alias c_gtk_style_set_background gtk_style_set_background;
13928 alias c_gtk_paint_arrow gtk_paint_arrow;
13929 alias c_gtk_paint_box gtk_paint_box;
13930 alias c_gtk_paint_box_gap gtk_paint_box_gap;
13931 alias c_gtk_paint_check gtk_paint_check;
13932 alias c_gtk_paint_diamond gtk_paint_diamond;
13933 alias c_gtk_paint_expander gtk_paint_expander;
13934 alias c_gtk_paint_extension gtk_paint_extension;
13935 alias c_gtk_paint_flat_box gtk_paint_flat_box;
13936 alias c_gtk_paint_focus gtk_paint_focus;
13937 alias c_gtk_paint_handle gtk_paint_handle;
13938 alias c_gtk_paint_hline gtk_paint_hline;
13939 alias c_gtk_paint_layout gtk_paint_layout;
13940 alias c_gtk_paint_option gtk_paint_option;
13941 alias c_gtk_paint_resize_grip gtk_paint_resize_grip;
13942 alias c_gtk_paint_shadow gtk_paint_shadow;
13943 alias c_gtk_paint_shadow_gap gtk_paint_shadow_gap;
13944 alias c_gtk_paint_slider gtk_paint_slider;
13945 alias c_gtk_paint_spinner gtk_paint_spinner;
13946 alias c_gtk_paint_tab gtk_paint_tab;
13947 alias c_gtk_paint_vline gtk_paint_vline;
13948 
13949 // gtk.StyleContext
13950 
13951 alias c_gtk_style_context_get_type gtk_style_context_get_type;
13952 alias c_gtk_style_context_new gtk_style_context_new;
13953 alias c_gtk_style_context_add_provider_for_screen gtk_style_context_add_provider_for_screen;
13954 alias c_gtk_style_context_remove_provider_for_screen gtk_style_context_remove_provider_for_screen;
13955 alias c_gtk_style_context_reset_widgets gtk_style_context_reset_widgets;
13956 alias c_gtk_style_context_add_class gtk_style_context_add_class;
13957 alias c_gtk_style_context_add_provider gtk_style_context_add_provider;
13958 alias c_gtk_style_context_add_region gtk_style_context_add_region;
13959 alias c_gtk_style_context_cancel_animations gtk_style_context_cancel_animations;
13960 alias c_gtk_style_context_get gtk_style_context_get;
13961 alias c_gtk_style_context_get_background_color gtk_style_context_get_background_color;
13962 alias c_gtk_style_context_get_border gtk_style_context_get_border;
13963 alias c_gtk_style_context_get_border_color gtk_style_context_get_border_color;
13964 alias c_gtk_style_context_get_color gtk_style_context_get_color;
13965 alias c_gtk_style_context_get_direction gtk_style_context_get_direction;
13966 alias c_gtk_style_context_get_font gtk_style_context_get_font;
13967 alias c_gtk_style_context_get_frame_clock gtk_style_context_get_frame_clock;
13968 alias c_gtk_style_context_get_junction_sides gtk_style_context_get_junction_sides;
13969 alias c_gtk_style_context_get_margin gtk_style_context_get_margin;
13970 alias c_gtk_style_context_get_padding gtk_style_context_get_padding;
13971 alias c_gtk_style_context_get_parent gtk_style_context_get_parent;
13972 alias c_gtk_style_context_get_path gtk_style_context_get_path;
13973 alias c_gtk_style_context_get_property gtk_style_context_get_property;
13974 alias c_gtk_style_context_get_scale gtk_style_context_get_scale;
13975 alias c_gtk_style_context_get_screen gtk_style_context_get_screen;
13976 alias c_gtk_style_context_get_section gtk_style_context_get_section;
13977 alias c_gtk_style_context_get_state gtk_style_context_get_state;
13978 alias c_gtk_style_context_get_style gtk_style_context_get_style;
13979 alias c_gtk_style_context_get_style_property gtk_style_context_get_style_property;
13980 alias c_gtk_style_context_get_style_valist gtk_style_context_get_style_valist;
13981 alias c_gtk_style_context_get_valist gtk_style_context_get_valist;
13982 alias c_gtk_style_context_has_class gtk_style_context_has_class;
13983 alias c_gtk_style_context_has_region gtk_style_context_has_region;
13984 alias c_gtk_style_context_invalidate gtk_style_context_invalidate;
13985 alias c_gtk_style_context_list_classes gtk_style_context_list_classes;
13986 alias c_gtk_style_context_list_regions gtk_style_context_list_regions;
13987 alias c_gtk_style_context_lookup_color gtk_style_context_lookup_color;
13988 alias c_gtk_style_context_lookup_icon_set gtk_style_context_lookup_icon_set;
13989 alias c_gtk_style_context_notify_state_change gtk_style_context_notify_state_change;
13990 alias c_gtk_style_context_pop_animatable_region gtk_style_context_pop_animatable_region;
13991 alias c_gtk_style_context_push_animatable_region gtk_style_context_push_animatable_region;
13992 alias c_gtk_style_context_remove_class gtk_style_context_remove_class;
13993 alias c_gtk_style_context_remove_provider gtk_style_context_remove_provider;
13994 alias c_gtk_style_context_remove_region gtk_style_context_remove_region;
13995 alias c_gtk_style_context_restore gtk_style_context_restore;
13996 alias c_gtk_style_context_save gtk_style_context_save;
13997 alias c_gtk_style_context_scroll_animations gtk_style_context_scroll_animations;
13998 alias c_gtk_style_context_set_background gtk_style_context_set_background;
13999 alias c_gtk_style_context_set_direction gtk_style_context_set_direction;
14000 alias c_gtk_style_context_set_frame_clock gtk_style_context_set_frame_clock;
14001 alias c_gtk_style_context_set_junction_sides gtk_style_context_set_junction_sides;
14002 alias c_gtk_style_context_set_parent gtk_style_context_set_parent;
14003 alias c_gtk_style_context_set_path gtk_style_context_set_path;
14004 alias c_gtk_style_context_set_scale gtk_style_context_set_scale;
14005 alias c_gtk_style_context_set_screen gtk_style_context_set_screen;
14006 alias c_gtk_style_context_set_state gtk_style_context_set_state;
14007 alias c_gtk_style_context_state_is_running gtk_style_context_state_is_running;
14008 alias c_gtk_style_context_to_string gtk_style_context_to_string;
14009 alias c_gtk_render_activity gtk_render_activity;
14010 alias c_gtk_render_arrow gtk_render_arrow;
14011 alias c_gtk_render_background gtk_render_background;
14012 alias c_gtk_render_background_get_clip gtk_render_background_get_clip;
14013 alias c_gtk_render_check gtk_render_check;
14014 alias c_gtk_render_expander gtk_render_expander;
14015 alias c_gtk_render_extension gtk_render_extension;
14016 alias c_gtk_render_focus gtk_render_focus;
14017 alias c_gtk_render_frame gtk_render_frame;
14018 alias c_gtk_render_frame_gap gtk_render_frame_gap;
14019 alias c_gtk_render_handle gtk_render_handle;
14020 alias c_gtk_render_icon gtk_render_icon;
14021 alias c_gtk_render_icon_pixbuf gtk_render_icon_pixbuf;
14022 alias c_gtk_render_icon_surface gtk_render_icon_surface;
14023 alias c_gtk_render_insertion_cursor gtk_render_insertion_cursor;
14024 alias c_gtk_render_layout gtk_render_layout;
14025 alias c_gtk_render_line gtk_render_line;
14026 alias c_gtk_render_option gtk_render_option;
14027 alias c_gtk_render_slider gtk_render_slider;
14028 
14029 // gtk.StyleProperties
14030 
14031 alias c_gtk_style_properties_get_type gtk_style_properties_get_type;
14032 alias c_gtk_style_properties_new gtk_style_properties_new;
14033 alias c_gtk_style_properties_lookup_property gtk_style_properties_lookup_property;
14034 alias c_gtk_style_properties_register_property gtk_style_properties_register_property;
14035 alias c_gtk_style_properties_clear gtk_style_properties_clear;
14036 alias c_gtk_style_properties_get gtk_style_properties_get;
14037 alias c_gtk_style_properties_get_property gtk_style_properties_get_property;
14038 alias c_gtk_style_properties_get_valist gtk_style_properties_get_valist;
14039 alias c_gtk_style_properties_lookup_color gtk_style_properties_lookup_color;
14040 alias c_gtk_style_properties_map_color gtk_style_properties_map_color;
14041 alias c_gtk_style_properties_merge gtk_style_properties_merge;
14042 alias c_gtk_style_properties_set gtk_style_properties_set;
14043 alias c_gtk_style_properties_set_property gtk_style_properties_set_property;
14044 alias c_gtk_style_properties_set_valist gtk_style_properties_set_valist;
14045 alias c_gtk_style_properties_unset_property gtk_style_properties_unset_property;
14046 
14047 // gtk.StyleProvider
14048 
14049 alias c_gtk_style_provider_get_type gtk_style_provider_get_type;
14050 alias c_gtk_style_provider_get_icon_factory gtk_style_provider_get_icon_factory;
14051 alias c_gtk_style_provider_get_style gtk_style_provider_get_style;
14052 alias c_gtk_style_provider_get_style_property gtk_style_provider_get_style_property;
14053 
14054 // gtk.Switch
14055 
14056 alias c_gtk_switch_get_type gtk_switch_get_type;
14057 alias c_gtk_switch_new gtk_switch_new;
14058 alias c_gtk_switch_get_active gtk_switch_get_active;
14059 alias c_gtk_switch_get_state gtk_switch_get_state;
14060 alias c_gtk_switch_set_active gtk_switch_set_active;
14061 alias c_gtk_switch_set_state gtk_switch_set_state;
14062 
14063 // gtk.SwitchAccessible
14064 
14065 alias c_gtk_switch_accessible_get_type gtk_switch_accessible_get_type;
14066 
14067 // gtk.SymbolicColor
14068 
14069 alias c_gtk_symbolic_color_get_type gtk_symbolic_color_get_type;
14070 alias c_gtk_symbolic_color_new_alpha gtk_symbolic_color_new_alpha;
14071 alias c_gtk_symbolic_color_new_literal gtk_symbolic_color_new_literal;
14072 alias c_gtk_symbolic_color_new_mix gtk_symbolic_color_new_mix;
14073 alias c_gtk_symbolic_color_new_name gtk_symbolic_color_new_name;
14074 alias c_gtk_symbolic_color_new_shade gtk_symbolic_color_new_shade;
14075 alias c_gtk_symbolic_color_new_win32 gtk_symbolic_color_new_win32;
14076 alias c_gtk_symbolic_color_ref gtk_symbolic_color_ref;
14077 alias c_gtk_symbolic_color_resolve gtk_symbolic_color_resolve;
14078 alias c_gtk_symbolic_color_to_string gtk_symbolic_color_to_string;
14079 alias c_gtk_symbolic_color_unref gtk_symbolic_color_unref;
14080 
14081 // gtk.Table
14082 
14083 alias c_gtk_table_get_type gtk_table_get_type;
14084 alias c_gtk_table_new gtk_table_new;
14085 alias c_gtk_table_attach gtk_table_attach;
14086 alias c_gtk_table_attach_defaults gtk_table_attach_defaults;
14087 alias c_gtk_table_get_col_spacing gtk_table_get_col_spacing;
14088 alias c_gtk_table_get_default_col_spacing gtk_table_get_default_col_spacing;
14089 alias c_gtk_table_get_default_row_spacing gtk_table_get_default_row_spacing;
14090 alias c_gtk_table_get_homogeneous gtk_table_get_homogeneous;
14091 alias c_gtk_table_get_row_spacing gtk_table_get_row_spacing;
14092 alias c_gtk_table_get_size gtk_table_get_size;
14093 alias c_gtk_table_resize gtk_table_resize;
14094 alias c_gtk_table_set_col_spacing gtk_table_set_col_spacing;
14095 alias c_gtk_table_set_col_spacings gtk_table_set_col_spacings;
14096 alias c_gtk_table_set_homogeneous gtk_table_set_homogeneous;
14097 alias c_gtk_table_set_row_spacing gtk_table_set_row_spacing;
14098 alias c_gtk_table_set_row_spacings gtk_table_set_row_spacings;
14099 
14100 // gtk.TargetEntry
14101 
14102 alias c_gtk_target_entry_get_type gtk_target_entry_get_type;
14103 alias c_gtk_target_entry_new gtk_target_entry_new;
14104 alias c_gtk_target_entry_copy gtk_target_entry_copy;
14105 alias c_gtk_target_entry_free gtk_target_entry_free;
14106 
14107 // gtk.TargetList
14108 
14109 alias c_gtk_target_list_get_type gtk_target_list_get_type;
14110 alias c_gtk_target_list_new gtk_target_list_new;
14111 alias c_gtk_target_list_add gtk_target_list_add;
14112 alias c_gtk_target_list_add_image_targets gtk_target_list_add_image_targets;
14113 alias c_gtk_target_list_add_rich_text_targets gtk_target_list_add_rich_text_targets;
14114 alias c_gtk_target_list_add_table gtk_target_list_add_table;
14115 alias c_gtk_target_list_add_text_targets gtk_target_list_add_text_targets;
14116 alias c_gtk_target_list_add_uri_targets gtk_target_list_add_uri_targets;
14117 alias c_gtk_target_list_find gtk_target_list_find;
14118 alias c_gtk_target_list_ref gtk_target_list_ref;
14119 alias c_gtk_target_list_remove gtk_target_list_remove;
14120 alias c_gtk_target_list_unref gtk_target_list_unref;
14121 alias c_gtk_target_table_free gtk_target_table_free;
14122 alias c_gtk_target_table_new_from_list gtk_target_table_new_from_list;
14123 alias c_gtk_targets_include_image gtk_targets_include_image;
14124 alias c_gtk_targets_include_rich_text gtk_targets_include_rich_text;
14125 alias c_gtk_targets_include_text gtk_targets_include_text;
14126 alias c_gtk_targets_include_uri gtk_targets_include_uri;
14127 
14128 // gtk.TearoffMenuItem
14129 
14130 alias c_gtk_tearoff_menu_item_get_type gtk_tearoff_menu_item_get_type;
14131 alias c_gtk_tearoff_menu_item_new gtk_tearoff_menu_item_new;
14132 
14133 // gtk.TextAttributes
14134 
14135 alias c_gtk_text_attributes_get_type gtk_text_attributes_get_type;
14136 alias c_gtk_text_attributes_new gtk_text_attributes_new;
14137 alias c_gtk_text_attributes_copy gtk_text_attributes_copy;
14138 alias c_gtk_text_attributes_copy_values gtk_text_attributes_copy_values;
14139 alias c_gtk_text_attributes_ref gtk_text_attributes_ref;
14140 alias c_gtk_text_attributes_unref gtk_text_attributes_unref;
14141 
14142 // gtk.TextBuffer
14143 
14144 alias c_gtk_text_buffer_get_type gtk_text_buffer_get_type;
14145 alias c_gtk_text_buffer_new gtk_text_buffer_new;
14146 alias c_gtk_text_buffer_add_mark gtk_text_buffer_add_mark;
14147 alias c_gtk_text_buffer_add_selection_clipboard gtk_text_buffer_add_selection_clipboard;
14148 alias c_gtk_text_buffer_apply_tag gtk_text_buffer_apply_tag;
14149 alias c_gtk_text_buffer_apply_tag_by_name gtk_text_buffer_apply_tag_by_name;
14150 alias c_gtk_text_buffer_backspace gtk_text_buffer_backspace;
14151 alias c_gtk_text_buffer_begin_user_action gtk_text_buffer_begin_user_action;
14152 alias c_gtk_text_buffer_copy_clipboard gtk_text_buffer_copy_clipboard;
14153 alias c_gtk_text_buffer_create_child_anchor gtk_text_buffer_create_child_anchor;
14154 alias c_gtk_text_buffer_create_mark gtk_text_buffer_create_mark;
14155 alias c_gtk_text_buffer_create_tag gtk_text_buffer_create_tag;
14156 alias c_gtk_text_buffer_cut_clipboard gtk_text_buffer_cut_clipboard;
14157 alias c_gtk_text_buffer_delete gtk_text_buffer_delete;
14158 alias c_gtk_text_buffer_delete_interactive gtk_text_buffer_delete_interactive;
14159 alias c_gtk_text_buffer_delete_mark gtk_text_buffer_delete_mark;
14160 alias c_gtk_text_buffer_delete_mark_by_name gtk_text_buffer_delete_mark_by_name;
14161 alias c_gtk_text_buffer_delete_selection gtk_text_buffer_delete_selection;
14162 alias c_gtk_text_buffer_deserialize gtk_text_buffer_deserialize;
14163 alias c_gtk_text_buffer_deserialize_get_can_create_tags gtk_text_buffer_deserialize_get_can_create_tags;
14164 alias c_gtk_text_buffer_deserialize_set_can_create_tags gtk_text_buffer_deserialize_set_can_create_tags;
14165 alias c_gtk_text_buffer_end_user_action gtk_text_buffer_end_user_action;
14166 alias c_gtk_text_buffer_get_bounds gtk_text_buffer_get_bounds;
14167 alias c_gtk_text_buffer_get_char_count gtk_text_buffer_get_char_count;
14168 alias c_gtk_text_buffer_get_copy_target_list gtk_text_buffer_get_copy_target_list;
14169 alias c_gtk_text_buffer_get_deserialize_formats gtk_text_buffer_get_deserialize_formats;
14170 alias c_gtk_text_buffer_get_end_iter gtk_text_buffer_get_end_iter;
14171 alias c_gtk_text_buffer_get_has_selection gtk_text_buffer_get_has_selection;
14172 alias c_gtk_text_buffer_get_insert gtk_text_buffer_get_insert;
14173 alias c_gtk_text_buffer_get_iter_at_child_anchor gtk_text_buffer_get_iter_at_child_anchor;
14174 alias c_gtk_text_buffer_get_iter_at_line gtk_text_buffer_get_iter_at_line;
14175 alias c_gtk_text_buffer_get_iter_at_line_index gtk_text_buffer_get_iter_at_line_index;
14176 alias c_gtk_text_buffer_get_iter_at_line_offset gtk_text_buffer_get_iter_at_line_offset;
14177 alias c_gtk_text_buffer_get_iter_at_mark gtk_text_buffer_get_iter_at_mark;
14178 alias c_gtk_text_buffer_get_iter_at_offset gtk_text_buffer_get_iter_at_offset;
14179 alias c_gtk_text_buffer_get_line_count gtk_text_buffer_get_line_count;
14180 alias c_gtk_text_buffer_get_mark gtk_text_buffer_get_mark;
14181 alias c_gtk_text_buffer_get_modified gtk_text_buffer_get_modified;
14182 alias c_gtk_text_buffer_get_paste_target_list gtk_text_buffer_get_paste_target_list;
14183 alias c_gtk_text_buffer_get_selection_bound gtk_text_buffer_get_selection_bound;
14184 alias c_gtk_text_buffer_get_selection_bounds gtk_text_buffer_get_selection_bounds;
14185 alias c_gtk_text_buffer_get_serialize_formats gtk_text_buffer_get_serialize_formats;
14186 alias c_gtk_text_buffer_get_slice gtk_text_buffer_get_slice;
14187 alias c_gtk_text_buffer_get_start_iter gtk_text_buffer_get_start_iter;
14188 alias c_gtk_text_buffer_get_tag_table gtk_text_buffer_get_tag_table;
14189 alias c_gtk_text_buffer_get_text gtk_text_buffer_get_text;
14190 alias c_gtk_text_buffer_insert gtk_text_buffer_insert;
14191 alias c_gtk_text_buffer_insert_at_cursor gtk_text_buffer_insert_at_cursor;
14192 alias c_gtk_text_buffer_insert_child_anchor gtk_text_buffer_insert_child_anchor;
14193 alias c_gtk_text_buffer_insert_interactive gtk_text_buffer_insert_interactive;
14194 alias c_gtk_text_buffer_insert_interactive_at_cursor gtk_text_buffer_insert_interactive_at_cursor;
14195 alias c_gtk_text_buffer_insert_markup gtk_text_buffer_insert_markup;
14196 alias c_gtk_text_buffer_insert_pixbuf gtk_text_buffer_insert_pixbuf;
14197 alias c_gtk_text_buffer_insert_range gtk_text_buffer_insert_range;
14198 alias c_gtk_text_buffer_insert_range_interactive gtk_text_buffer_insert_range_interactive;
14199 alias c_gtk_text_buffer_insert_with_tags gtk_text_buffer_insert_with_tags;
14200 alias c_gtk_text_buffer_insert_with_tags_by_name gtk_text_buffer_insert_with_tags_by_name;
14201 alias c_gtk_text_buffer_move_mark gtk_text_buffer_move_mark;
14202 alias c_gtk_text_buffer_move_mark_by_name gtk_text_buffer_move_mark_by_name;
14203 alias c_gtk_text_buffer_paste_clipboard gtk_text_buffer_paste_clipboard;
14204 alias c_gtk_text_buffer_place_cursor gtk_text_buffer_place_cursor;
14205 alias c_gtk_text_buffer_register_deserialize_format gtk_text_buffer_register_deserialize_format;
14206 alias c_gtk_text_buffer_register_deserialize_tagset gtk_text_buffer_register_deserialize_tagset;
14207 alias c_gtk_text_buffer_register_serialize_format gtk_text_buffer_register_serialize_format;
14208 alias c_gtk_text_buffer_register_serialize_tagset gtk_text_buffer_register_serialize_tagset;
14209 alias c_gtk_text_buffer_remove_all_tags gtk_text_buffer_remove_all_tags;
14210 alias c_gtk_text_buffer_remove_selection_clipboard gtk_text_buffer_remove_selection_clipboard;
14211 alias c_gtk_text_buffer_remove_tag gtk_text_buffer_remove_tag;
14212 alias c_gtk_text_buffer_remove_tag_by_name gtk_text_buffer_remove_tag_by_name;
14213 alias c_gtk_text_buffer_select_range gtk_text_buffer_select_range;
14214 alias c_gtk_text_buffer_serialize gtk_text_buffer_serialize;
14215 alias c_gtk_text_buffer_set_modified gtk_text_buffer_set_modified;
14216 alias c_gtk_text_buffer_set_text gtk_text_buffer_set_text;
14217 alias c_gtk_text_buffer_unregister_deserialize_format gtk_text_buffer_unregister_deserialize_format;
14218 alias c_gtk_text_buffer_unregister_serialize_format gtk_text_buffer_unregister_serialize_format;
14219 
14220 // gtk.TextCellAccessible
14221 
14222 alias c_gtk_text_cell_accessible_get_type gtk_text_cell_accessible_get_type;
14223 
14224 // gtk.TextChildAnchor
14225 
14226 alias c_gtk_text_child_anchor_get_type gtk_text_child_anchor_get_type;
14227 alias c_gtk_text_child_anchor_new gtk_text_child_anchor_new;
14228 alias c_gtk_text_child_anchor_get_deleted gtk_text_child_anchor_get_deleted;
14229 alias c_gtk_text_child_anchor_get_widgets gtk_text_child_anchor_get_widgets;
14230 
14231 // gtk.TextIter
14232 
14233 alias c_gtk_text_iter_get_type gtk_text_iter_get_type;
14234 alias c_gtk_text_iter_assign gtk_text_iter_assign;
14235 alias c_gtk_text_iter_backward_char gtk_text_iter_backward_char;
14236 alias c_gtk_text_iter_backward_chars gtk_text_iter_backward_chars;
14237 alias c_gtk_text_iter_backward_cursor_position gtk_text_iter_backward_cursor_position;
14238 alias c_gtk_text_iter_backward_cursor_positions gtk_text_iter_backward_cursor_positions;
14239 alias c_gtk_text_iter_backward_find_char gtk_text_iter_backward_find_char;
14240 alias c_gtk_text_iter_backward_line gtk_text_iter_backward_line;
14241 alias c_gtk_text_iter_backward_lines gtk_text_iter_backward_lines;
14242 alias c_gtk_text_iter_backward_search gtk_text_iter_backward_search;
14243 alias c_gtk_text_iter_backward_sentence_start gtk_text_iter_backward_sentence_start;
14244 alias c_gtk_text_iter_backward_sentence_starts gtk_text_iter_backward_sentence_starts;
14245 alias c_gtk_text_iter_backward_to_tag_toggle gtk_text_iter_backward_to_tag_toggle;
14246 alias c_gtk_text_iter_backward_visible_cursor_position gtk_text_iter_backward_visible_cursor_position;
14247 alias c_gtk_text_iter_backward_visible_cursor_positions gtk_text_iter_backward_visible_cursor_positions;
14248 alias c_gtk_text_iter_backward_visible_line gtk_text_iter_backward_visible_line;
14249 alias c_gtk_text_iter_backward_visible_lines gtk_text_iter_backward_visible_lines;
14250 alias c_gtk_text_iter_backward_visible_word_start gtk_text_iter_backward_visible_word_start;
14251 alias c_gtk_text_iter_backward_visible_word_starts gtk_text_iter_backward_visible_word_starts;
14252 alias c_gtk_text_iter_backward_word_start gtk_text_iter_backward_word_start;
14253 alias c_gtk_text_iter_backward_word_starts gtk_text_iter_backward_word_starts;
14254 alias c_gtk_text_iter_begins_tag gtk_text_iter_begins_tag;
14255 alias c_gtk_text_iter_can_insert gtk_text_iter_can_insert;
14256 alias c_gtk_text_iter_compare gtk_text_iter_compare;
14257 alias c_gtk_text_iter_copy gtk_text_iter_copy;
14258 alias c_gtk_text_iter_editable gtk_text_iter_editable;
14259 alias c_gtk_text_iter_ends_line gtk_text_iter_ends_line;
14260 alias c_gtk_text_iter_ends_sentence gtk_text_iter_ends_sentence;
14261 alias c_gtk_text_iter_ends_tag gtk_text_iter_ends_tag;
14262 alias c_gtk_text_iter_ends_word gtk_text_iter_ends_word;
14263 alias c_gtk_text_iter_equal gtk_text_iter_equal;
14264 alias c_gtk_text_iter_forward_char gtk_text_iter_forward_char;
14265 alias c_gtk_text_iter_forward_chars gtk_text_iter_forward_chars;
14266 alias c_gtk_text_iter_forward_cursor_position gtk_text_iter_forward_cursor_position;
14267 alias c_gtk_text_iter_forward_cursor_positions gtk_text_iter_forward_cursor_positions;
14268 alias c_gtk_text_iter_forward_find_char gtk_text_iter_forward_find_char;
14269 alias c_gtk_text_iter_forward_line gtk_text_iter_forward_line;
14270 alias c_gtk_text_iter_forward_lines gtk_text_iter_forward_lines;
14271 alias c_gtk_text_iter_forward_search gtk_text_iter_forward_search;
14272 alias c_gtk_text_iter_forward_sentence_end gtk_text_iter_forward_sentence_end;
14273 alias c_gtk_text_iter_forward_sentence_ends gtk_text_iter_forward_sentence_ends;
14274 alias c_gtk_text_iter_forward_to_end gtk_text_iter_forward_to_end;
14275 alias c_gtk_text_iter_forward_to_line_end gtk_text_iter_forward_to_line_end;
14276 alias c_gtk_text_iter_forward_to_tag_toggle gtk_text_iter_forward_to_tag_toggle;
14277 alias c_gtk_text_iter_forward_visible_cursor_position gtk_text_iter_forward_visible_cursor_position;
14278 alias c_gtk_text_iter_forward_visible_cursor_positions gtk_text_iter_forward_visible_cursor_positions;
14279 alias c_gtk_text_iter_forward_visible_line gtk_text_iter_forward_visible_line;
14280 alias c_gtk_text_iter_forward_visible_lines gtk_text_iter_forward_visible_lines;
14281 alias c_gtk_text_iter_forward_visible_word_end gtk_text_iter_forward_visible_word_end;
14282 alias c_gtk_text_iter_forward_visible_word_ends gtk_text_iter_forward_visible_word_ends;
14283 alias c_gtk_text_iter_forward_word_end gtk_text_iter_forward_word_end;
14284 alias c_gtk_text_iter_forward_word_ends gtk_text_iter_forward_word_ends;
14285 alias c_gtk_text_iter_free gtk_text_iter_free;
14286 alias c_gtk_text_iter_get_attributes gtk_text_iter_get_attributes;
14287 alias c_gtk_text_iter_get_buffer gtk_text_iter_get_buffer;
14288 alias c_gtk_text_iter_get_bytes_in_line gtk_text_iter_get_bytes_in_line;
14289 alias c_gtk_text_iter_get_char gtk_text_iter_get_char;
14290 alias c_gtk_text_iter_get_chars_in_line gtk_text_iter_get_chars_in_line;
14291 alias c_gtk_text_iter_get_child_anchor gtk_text_iter_get_child_anchor;
14292 alias c_gtk_text_iter_get_language gtk_text_iter_get_language;
14293 alias c_gtk_text_iter_get_line gtk_text_iter_get_line;
14294 alias c_gtk_text_iter_get_line_index gtk_text_iter_get_line_index;
14295 alias c_gtk_text_iter_get_line_offset gtk_text_iter_get_line_offset;
14296 alias c_gtk_text_iter_get_marks gtk_text_iter_get_marks;
14297 alias c_gtk_text_iter_get_offset gtk_text_iter_get_offset;
14298 alias c_gtk_text_iter_get_pixbuf gtk_text_iter_get_pixbuf;
14299 alias c_gtk_text_iter_get_slice gtk_text_iter_get_slice;
14300 alias c_gtk_text_iter_get_tags gtk_text_iter_get_tags;
14301 alias c_gtk_text_iter_get_text gtk_text_iter_get_text;
14302 alias c_gtk_text_iter_get_toggled_tags gtk_text_iter_get_toggled_tags;
14303 alias c_gtk_text_iter_get_visible_line_index gtk_text_iter_get_visible_line_index;
14304 alias c_gtk_text_iter_get_visible_line_offset gtk_text_iter_get_visible_line_offset;
14305 alias c_gtk_text_iter_get_visible_slice gtk_text_iter_get_visible_slice;
14306 alias c_gtk_text_iter_get_visible_text gtk_text_iter_get_visible_text;
14307 alias c_gtk_text_iter_has_tag gtk_text_iter_has_tag;
14308 alias c_gtk_text_iter_in_range gtk_text_iter_in_range;
14309 alias c_gtk_text_iter_inside_sentence gtk_text_iter_inside_sentence;
14310 alias c_gtk_text_iter_inside_word gtk_text_iter_inside_word;
14311 alias c_gtk_text_iter_is_cursor_position gtk_text_iter_is_cursor_position;
14312 alias c_gtk_text_iter_is_end gtk_text_iter_is_end;
14313 alias c_gtk_text_iter_is_start gtk_text_iter_is_start;
14314 alias c_gtk_text_iter_order gtk_text_iter_order;
14315 alias c_gtk_text_iter_set_line gtk_text_iter_set_line;
14316 alias c_gtk_text_iter_set_line_index gtk_text_iter_set_line_index;
14317 alias c_gtk_text_iter_set_line_offset gtk_text_iter_set_line_offset;
14318 alias c_gtk_text_iter_set_offset gtk_text_iter_set_offset;
14319 alias c_gtk_text_iter_set_visible_line_index gtk_text_iter_set_visible_line_index;
14320 alias c_gtk_text_iter_set_visible_line_offset gtk_text_iter_set_visible_line_offset;
14321 alias c_gtk_text_iter_starts_line gtk_text_iter_starts_line;
14322 alias c_gtk_text_iter_starts_sentence gtk_text_iter_starts_sentence;
14323 alias c_gtk_text_iter_starts_tag gtk_text_iter_starts_tag;
14324 alias c_gtk_text_iter_starts_word gtk_text_iter_starts_word;
14325 alias c_gtk_text_iter_toggles_tag gtk_text_iter_toggles_tag;
14326 
14327 // gtk.TextMark
14328 
14329 alias c_gtk_text_mark_get_type gtk_text_mark_get_type;
14330 alias c_gtk_text_mark_new gtk_text_mark_new;
14331 alias c_gtk_text_mark_get_buffer gtk_text_mark_get_buffer;
14332 alias c_gtk_text_mark_get_deleted gtk_text_mark_get_deleted;
14333 alias c_gtk_text_mark_get_left_gravity gtk_text_mark_get_left_gravity;
14334 alias c_gtk_text_mark_get_name gtk_text_mark_get_name;
14335 alias c_gtk_text_mark_get_visible gtk_text_mark_get_visible;
14336 alias c_gtk_text_mark_set_visible gtk_text_mark_set_visible;
14337 
14338 // gtk.TextTag
14339 
14340 alias c_gtk_text_tag_get_type gtk_text_tag_get_type;
14341 alias c_gtk_text_tag_new gtk_text_tag_new;
14342 alias c_gtk_text_tag_changed gtk_text_tag_changed;
14343 alias c_gtk_text_tag_event gtk_text_tag_event;
14344 alias c_gtk_text_tag_get_priority gtk_text_tag_get_priority;
14345 alias c_gtk_text_tag_set_priority gtk_text_tag_set_priority;
14346 
14347 // gtk.TextTagTable
14348 
14349 alias c_gtk_text_tag_table_get_type gtk_text_tag_table_get_type;
14350 alias c_gtk_text_tag_table_new gtk_text_tag_table_new;
14351 alias c_gtk_text_tag_table_add gtk_text_tag_table_add;
14352 alias c_gtk_text_tag_table_foreach gtk_text_tag_table_foreach;
14353 alias c_gtk_text_tag_table_get_size gtk_text_tag_table_get_size;
14354 alias c_gtk_text_tag_table_lookup gtk_text_tag_table_lookup;
14355 alias c_gtk_text_tag_table_remove gtk_text_tag_table_remove;
14356 
14357 // gtk.TextView
14358 
14359 alias c_gtk_text_view_get_type gtk_text_view_get_type;
14360 alias c_gtk_text_view_new gtk_text_view_new;
14361 alias c_gtk_text_view_new_with_buffer gtk_text_view_new_with_buffer;
14362 alias c_gtk_text_view_add_child_at_anchor gtk_text_view_add_child_at_anchor;
14363 alias c_gtk_text_view_add_child_in_window gtk_text_view_add_child_in_window;
14364 alias c_gtk_text_view_backward_display_line gtk_text_view_backward_display_line;
14365 alias c_gtk_text_view_backward_display_line_start gtk_text_view_backward_display_line_start;
14366 alias c_gtk_text_view_buffer_to_window_coords gtk_text_view_buffer_to_window_coords;
14367 alias c_gtk_text_view_forward_display_line gtk_text_view_forward_display_line;
14368 alias c_gtk_text_view_forward_display_line_end gtk_text_view_forward_display_line_end;
14369 alias c_gtk_text_view_get_accepts_tab gtk_text_view_get_accepts_tab;
14370 alias c_gtk_text_view_get_border_window_size gtk_text_view_get_border_window_size;
14371 alias c_gtk_text_view_get_bottom_margin gtk_text_view_get_bottom_margin;
14372 alias c_gtk_text_view_get_buffer gtk_text_view_get_buffer;
14373 alias c_gtk_text_view_get_cursor_locations gtk_text_view_get_cursor_locations;
14374 alias c_gtk_text_view_get_cursor_visible gtk_text_view_get_cursor_visible;
14375 alias c_gtk_text_view_get_default_attributes gtk_text_view_get_default_attributes;
14376 alias c_gtk_text_view_get_editable gtk_text_view_get_editable;
14377 alias c_gtk_text_view_get_hadjustment gtk_text_view_get_hadjustment;
14378 alias c_gtk_text_view_get_indent gtk_text_view_get_indent;
14379 alias c_gtk_text_view_get_input_hints gtk_text_view_get_input_hints;
14380 alias c_gtk_text_view_get_input_purpose gtk_text_view_get_input_purpose;
14381 alias c_gtk_text_view_get_iter_at_location gtk_text_view_get_iter_at_location;
14382 alias c_gtk_text_view_get_iter_at_position gtk_text_view_get_iter_at_position;
14383 alias c_gtk_text_view_get_iter_location gtk_text_view_get_iter_location;
14384 alias c_gtk_text_view_get_justification gtk_text_view_get_justification;
14385 alias c_gtk_text_view_get_left_margin gtk_text_view_get_left_margin;
14386 alias c_gtk_text_view_get_line_at_y gtk_text_view_get_line_at_y;
14387 alias c_gtk_text_view_get_line_yrange gtk_text_view_get_line_yrange;
14388 alias c_gtk_text_view_get_monospace gtk_text_view_get_monospace;
14389 alias c_gtk_text_view_get_overwrite gtk_text_view_get_overwrite;
14390 alias c_gtk_text_view_get_pixels_above_lines gtk_text_view_get_pixels_above_lines;
14391 alias c_gtk_text_view_get_pixels_below_lines gtk_text_view_get_pixels_below_lines;
14392 alias c_gtk_text_view_get_pixels_inside_wrap gtk_text_view_get_pixels_inside_wrap;
14393 alias c_gtk_text_view_get_right_margin gtk_text_view_get_right_margin;
14394 alias c_gtk_text_view_get_tabs gtk_text_view_get_tabs;
14395 alias c_gtk_text_view_get_top_margin gtk_text_view_get_top_margin;
14396 alias c_gtk_text_view_get_vadjustment gtk_text_view_get_vadjustment;
14397 alias c_gtk_text_view_get_visible_rect gtk_text_view_get_visible_rect;
14398 alias c_gtk_text_view_get_window gtk_text_view_get_window;
14399 alias c_gtk_text_view_get_window_type gtk_text_view_get_window_type;
14400 alias c_gtk_text_view_get_wrap_mode gtk_text_view_get_wrap_mode;
14401 alias c_gtk_text_view_im_context_filter_keypress gtk_text_view_im_context_filter_keypress;
14402 alias c_gtk_text_view_move_child gtk_text_view_move_child;
14403 alias c_gtk_text_view_move_mark_onscreen gtk_text_view_move_mark_onscreen;
14404 alias c_gtk_text_view_move_visually gtk_text_view_move_visually;
14405 alias c_gtk_text_view_place_cursor_onscreen gtk_text_view_place_cursor_onscreen;
14406 alias c_gtk_text_view_reset_cursor_blink gtk_text_view_reset_cursor_blink;
14407 alias c_gtk_text_view_reset_im_context gtk_text_view_reset_im_context;
14408 alias c_gtk_text_view_scroll_mark_onscreen gtk_text_view_scroll_mark_onscreen;
14409 alias c_gtk_text_view_scroll_to_iter gtk_text_view_scroll_to_iter;
14410 alias c_gtk_text_view_scroll_to_mark gtk_text_view_scroll_to_mark;
14411 alias c_gtk_text_view_set_accepts_tab gtk_text_view_set_accepts_tab;
14412 alias c_gtk_text_view_set_border_window_size gtk_text_view_set_border_window_size;
14413 alias c_gtk_text_view_set_bottom_margin gtk_text_view_set_bottom_margin;
14414 alias c_gtk_text_view_set_buffer gtk_text_view_set_buffer;
14415 alias c_gtk_text_view_set_cursor_visible gtk_text_view_set_cursor_visible;
14416 alias c_gtk_text_view_set_editable gtk_text_view_set_editable;
14417 alias c_gtk_text_view_set_indent gtk_text_view_set_indent;
14418 alias c_gtk_text_view_set_input_hints gtk_text_view_set_input_hints;
14419 alias c_gtk_text_view_set_input_purpose gtk_text_view_set_input_purpose;
14420 alias c_gtk_text_view_set_justification gtk_text_view_set_justification;
14421 alias c_gtk_text_view_set_left_margin gtk_text_view_set_left_margin;
14422 alias c_gtk_text_view_set_monospace gtk_text_view_set_monospace;
14423 alias c_gtk_text_view_set_overwrite gtk_text_view_set_overwrite;
14424 alias c_gtk_text_view_set_pixels_above_lines gtk_text_view_set_pixels_above_lines;
14425 alias c_gtk_text_view_set_pixels_below_lines gtk_text_view_set_pixels_below_lines;
14426 alias c_gtk_text_view_set_pixels_inside_wrap gtk_text_view_set_pixels_inside_wrap;
14427 alias c_gtk_text_view_set_right_margin gtk_text_view_set_right_margin;
14428 alias c_gtk_text_view_set_tabs gtk_text_view_set_tabs;
14429 alias c_gtk_text_view_set_top_margin gtk_text_view_set_top_margin;
14430 alias c_gtk_text_view_set_wrap_mode gtk_text_view_set_wrap_mode;
14431 alias c_gtk_text_view_starts_display_line gtk_text_view_starts_display_line;
14432 alias c_gtk_text_view_window_to_buffer_coords gtk_text_view_window_to_buffer_coords;
14433 
14434 // gtk.TextViewAccessible
14435 
14436 alias c_gtk_text_view_accessible_get_type gtk_text_view_accessible_get_type;
14437 
14438 // gtk.ThemingEngine
14439 
14440 alias c_gtk_theming_engine_get_type gtk_theming_engine_get_type;
14441 alias c_gtk_theming_engine_load gtk_theming_engine_load;
14442 alias c_gtk_theming_engine_register_property gtk_theming_engine_register_property;
14443 alias c_gtk_theming_engine_get gtk_theming_engine_get;
14444 alias c_gtk_theming_engine_get_background_color gtk_theming_engine_get_background_color;
14445 alias c_gtk_theming_engine_get_border gtk_theming_engine_get_border;
14446 alias c_gtk_theming_engine_get_border_color gtk_theming_engine_get_border_color;
14447 alias c_gtk_theming_engine_get_color gtk_theming_engine_get_color;
14448 alias c_gtk_theming_engine_get_direction gtk_theming_engine_get_direction;
14449 alias c_gtk_theming_engine_get_font gtk_theming_engine_get_font;
14450 alias c_gtk_theming_engine_get_junction_sides gtk_theming_engine_get_junction_sides;
14451 alias c_gtk_theming_engine_get_margin gtk_theming_engine_get_margin;
14452 alias c_gtk_theming_engine_get_padding gtk_theming_engine_get_padding;
14453 alias c_gtk_theming_engine_get_path gtk_theming_engine_get_path;
14454 alias c_gtk_theming_engine_get_property gtk_theming_engine_get_property;
14455 alias c_gtk_theming_engine_get_screen gtk_theming_engine_get_screen;
14456 alias c_gtk_theming_engine_get_state gtk_theming_engine_get_state;
14457 alias c_gtk_theming_engine_get_style gtk_theming_engine_get_style;
14458 alias c_gtk_theming_engine_get_style_property gtk_theming_engine_get_style_property;
14459 alias c_gtk_theming_engine_get_style_valist gtk_theming_engine_get_style_valist;
14460 alias c_gtk_theming_engine_get_valist gtk_theming_engine_get_valist;
14461 alias c_gtk_theming_engine_has_class gtk_theming_engine_has_class;
14462 alias c_gtk_theming_engine_has_region gtk_theming_engine_has_region;
14463 alias c_gtk_theming_engine_lookup_color gtk_theming_engine_lookup_color;
14464 alias c_gtk_theming_engine_state_is_running gtk_theming_engine_state_is_running;
14465 
14466 // gtk.ToggleAction
14467 
14468 alias c_gtk_toggle_action_get_type gtk_toggle_action_get_type;
14469 alias c_gtk_toggle_action_new gtk_toggle_action_new;
14470 alias c_gtk_toggle_action_get_active gtk_toggle_action_get_active;
14471 alias c_gtk_toggle_action_get_draw_as_radio gtk_toggle_action_get_draw_as_radio;
14472 alias c_gtk_toggle_action_set_active gtk_toggle_action_set_active;
14473 alias c_gtk_toggle_action_set_draw_as_radio gtk_toggle_action_set_draw_as_radio;
14474 alias c_gtk_toggle_action_toggled gtk_toggle_action_toggled;
14475 
14476 // gtk.ToggleButton
14477 
14478 alias c_gtk_toggle_button_get_type gtk_toggle_button_get_type;
14479 alias c_gtk_toggle_button_new gtk_toggle_button_new;
14480 alias c_gtk_toggle_button_new_with_label gtk_toggle_button_new_with_label;
14481 alias c_gtk_toggle_button_new_with_mnemonic gtk_toggle_button_new_with_mnemonic;
14482 alias c_gtk_toggle_button_get_active gtk_toggle_button_get_active;
14483 alias c_gtk_toggle_button_get_inconsistent gtk_toggle_button_get_inconsistent;
14484 alias c_gtk_toggle_button_get_mode gtk_toggle_button_get_mode;
14485 alias c_gtk_toggle_button_set_active gtk_toggle_button_set_active;
14486 alias c_gtk_toggle_button_set_inconsistent gtk_toggle_button_set_inconsistent;
14487 alias c_gtk_toggle_button_set_mode gtk_toggle_button_set_mode;
14488 alias c_gtk_toggle_button_toggled gtk_toggle_button_toggled;
14489 
14490 // gtk.ToggleButtonAccessible
14491 
14492 alias c_gtk_toggle_button_accessible_get_type gtk_toggle_button_accessible_get_type;
14493 
14494 // gtk.ToggleToolButton
14495 
14496 alias c_gtk_toggle_tool_button_get_type gtk_toggle_tool_button_get_type;
14497 alias c_gtk_toggle_tool_button_new gtk_toggle_tool_button_new;
14498 alias c_gtk_toggle_tool_button_new_from_stock gtk_toggle_tool_button_new_from_stock;
14499 alias c_gtk_toggle_tool_button_get_active gtk_toggle_tool_button_get_active;
14500 alias c_gtk_toggle_tool_button_set_active gtk_toggle_tool_button_set_active;
14501 
14502 // gtk.ToolButton
14503 
14504 alias c_gtk_tool_button_get_type gtk_tool_button_get_type;
14505 alias c_gtk_tool_button_new gtk_tool_button_new;
14506 alias c_gtk_tool_button_new_from_stock gtk_tool_button_new_from_stock;
14507 alias c_gtk_tool_button_get_icon_name gtk_tool_button_get_icon_name;
14508 alias c_gtk_tool_button_get_icon_widget gtk_tool_button_get_icon_widget;
14509 alias c_gtk_tool_button_get_label gtk_tool_button_get_label;
14510 alias c_gtk_tool_button_get_label_widget gtk_tool_button_get_label_widget;
14511 alias c_gtk_tool_button_get_stock_id gtk_tool_button_get_stock_id;
14512 alias c_gtk_tool_button_get_use_underline gtk_tool_button_get_use_underline;
14513 alias c_gtk_tool_button_set_icon_name gtk_tool_button_set_icon_name;
14514 alias c_gtk_tool_button_set_icon_widget gtk_tool_button_set_icon_widget;
14515 alias c_gtk_tool_button_set_label gtk_tool_button_set_label;
14516 alias c_gtk_tool_button_set_label_widget gtk_tool_button_set_label_widget;
14517 alias c_gtk_tool_button_set_stock_id gtk_tool_button_set_stock_id;
14518 alias c_gtk_tool_button_set_use_underline gtk_tool_button_set_use_underline;
14519 
14520 // gtk.ToolItem
14521 
14522 alias c_gtk_tool_item_get_type gtk_tool_item_get_type;
14523 alias c_gtk_tool_item_new gtk_tool_item_new;
14524 alias c_gtk_tool_item_get_ellipsize_mode gtk_tool_item_get_ellipsize_mode;
14525 alias c_gtk_tool_item_get_expand gtk_tool_item_get_expand;
14526 alias c_gtk_tool_item_get_homogeneous gtk_tool_item_get_homogeneous;
14527 alias c_gtk_tool_item_get_icon_size gtk_tool_item_get_icon_size;
14528 alias c_gtk_tool_item_get_is_important gtk_tool_item_get_is_important;
14529 alias c_gtk_tool_item_get_orientation gtk_tool_item_get_orientation;
14530 alias c_gtk_tool_item_get_proxy_menu_item gtk_tool_item_get_proxy_menu_item;
14531 alias c_gtk_tool_item_get_relief_style gtk_tool_item_get_relief_style;
14532 alias c_gtk_tool_item_get_text_alignment gtk_tool_item_get_text_alignment;
14533 alias c_gtk_tool_item_get_text_orientation gtk_tool_item_get_text_orientation;
14534 alias c_gtk_tool_item_get_text_size_group gtk_tool_item_get_text_size_group;
14535 alias c_gtk_tool_item_get_toolbar_style gtk_tool_item_get_toolbar_style;
14536 alias c_gtk_tool_item_get_use_drag_window gtk_tool_item_get_use_drag_window;
14537 alias c_gtk_tool_item_get_visible_horizontal gtk_tool_item_get_visible_horizontal;
14538 alias c_gtk_tool_item_get_visible_vertical gtk_tool_item_get_visible_vertical;
14539 alias c_gtk_tool_item_rebuild_menu gtk_tool_item_rebuild_menu;
14540 alias c_gtk_tool_item_retrieve_proxy_menu_item gtk_tool_item_retrieve_proxy_menu_item;
14541 alias c_gtk_tool_item_set_expand gtk_tool_item_set_expand;
14542 alias c_gtk_tool_item_set_homogeneous gtk_tool_item_set_homogeneous;
14543 alias c_gtk_tool_item_set_is_important gtk_tool_item_set_is_important;
14544 alias c_gtk_tool_item_set_proxy_menu_item gtk_tool_item_set_proxy_menu_item;
14545 alias c_gtk_tool_item_set_tooltip_markup gtk_tool_item_set_tooltip_markup;
14546 alias c_gtk_tool_item_set_tooltip_text gtk_tool_item_set_tooltip_text;
14547 alias c_gtk_tool_item_set_use_drag_window gtk_tool_item_set_use_drag_window;
14548 alias c_gtk_tool_item_set_visible_horizontal gtk_tool_item_set_visible_horizontal;
14549 alias c_gtk_tool_item_set_visible_vertical gtk_tool_item_set_visible_vertical;
14550 alias c_gtk_tool_item_toolbar_reconfigured gtk_tool_item_toolbar_reconfigured;
14551 
14552 // gtk.ToolItemGroup
14553 
14554 alias c_gtk_tool_item_group_get_type gtk_tool_item_group_get_type;
14555 alias c_gtk_tool_item_group_new gtk_tool_item_group_new;
14556 alias c_gtk_tool_item_group_get_collapsed gtk_tool_item_group_get_collapsed;
14557 alias c_gtk_tool_item_group_get_drop_item gtk_tool_item_group_get_drop_item;
14558 alias c_gtk_tool_item_group_get_ellipsize gtk_tool_item_group_get_ellipsize;
14559 alias c_gtk_tool_item_group_get_header_relief gtk_tool_item_group_get_header_relief;
14560 alias c_gtk_tool_item_group_get_item_position gtk_tool_item_group_get_item_position;
14561 alias c_gtk_tool_item_group_get_label gtk_tool_item_group_get_label;
14562 alias c_gtk_tool_item_group_get_label_widget gtk_tool_item_group_get_label_widget;
14563 alias c_gtk_tool_item_group_get_n_items gtk_tool_item_group_get_n_items;
14564 alias c_gtk_tool_item_group_get_nth_item gtk_tool_item_group_get_nth_item;
14565 alias c_gtk_tool_item_group_insert gtk_tool_item_group_insert;
14566 alias c_gtk_tool_item_group_set_collapsed gtk_tool_item_group_set_collapsed;
14567 alias c_gtk_tool_item_group_set_ellipsize gtk_tool_item_group_set_ellipsize;
14568 alias c_gtk_tool_item_group_set_header_relief gtk_tool_item_group_set_header_relief;
14569 alias c_gtk_tool_item_group_set_item_position gtk_tool_item_group_set_item_position;
14570 alias c_gtk_tool_item_group_set_label gtk_tool_item_group_set_label;
14571 alias c_gtk_tool_item_group_set_label_widget gtk_tool_item_group_set_label_widget;
14572 
14573 // gtk.ToolPalette
14574 
14575 alias c_gtk_tool_palette_get_type gtk_tool_palette_get_type;
14576 alias c_gtk_tool_palette_new gtk_tool_palette_new;
14577 alias c_gtk_tool_palette_get_drag_target_group gtk_tool_palette_get_drag_target_group;
14578 alias c_gtk_tool_palette_get_drag_target_item gtk_tool_palette_get_drag_target_item;
14579 alias c_gtk_tool_palette_add_drag_dest gtk_tool_palette_add_drag_dest;
14580 alias c_gtk_tool_palette_get_drag_item gtk_tool_palette_get_drag_item;
14581 alias c_gtk_tool_palette_get_drop_group gtk_tool_palette_get_drop_group;
14582 alias c_gtk_tool_palette_get_drop_item gtk_tool_palette_get_drop_item;
14583 alias c_gtk_tool_palette_get_exclusive gtk_tool_palette_get_exclusive;
14584 alias c_gtk_tool_palette_get_expand gtk_tool_palette_get_expand;
14585 alias c_gtk_tool_palette_get_group_position gtk_tool_palette_get_group_position;
14586 alias c_gtk_tool_palette_get_hadjustment gtk_tool_palette_get_hadjustment;
14587 alias c_gtk_tool_palette_get_icon_size gtk_tool_palette_get_icon_size;
14588 alias c_gtk_tool_palette_get_style gtk_tool_palette_get_style;
14589 alias c_gtk_tool_palette_get_vadjustment gtk_tool_palette_get_vadjustment;
14590 alias c_gtk_tool_palette_set_drag_source gtk_tool_palette_set_drag_source;
14591 alias c_gtk_tool_palette_set_exclusive gtk_tool_palette_set_exclusive;
14592 alias c_gtk_tool_palette_set_expand gtk_tool_palette_set_expand;
14593 alias c_gtk_tool_palette_set_group_position gtk_tool_palette_set_group_position;
14594 alias c_gtk_tool_palette_set_icon_size gtk_tool_palette_set_icon_size;
14595 alias c_gtk_tool_palette_set_style gtk_tool_palette_set_style;
14596 alias c_gtk_tool_palette_unset_icon_size gtk_tool_palette_unset_icon_size;
14597 alias c_gtk_tool_palette_unset_style gtk_tool_palette_unset_style;
14598 
14599 // gtk.ToolShell
14600 
14601 alias c_gtk_tool_shell_get_type gtk_tool_shell_get_type;
14602 alias c_gtk_tool_shell_get_ellipsize_mode gtk_tool_shell_get_ellipsize_mode;
14603 alias c_gtk_tool_shell_get_icon_size gtk_tool_shell_get_icon_size;
14604 alias c_gtk_tool_shell_get_orientation gtk_tool_shell_get_orientation;
14605 alias c_gtk_tool_shell_get_relief_style gtk_tool_shell_get_relief_style;
14606 alias c_gtk_tool_shell_get_style gtk_tool_shell_get_style;
14607 alias c_gtk_tool_shell_get_text_alignment gtk_tool_shell_get_text_alignment;
14608 alias c_gtk_tool_shell_get_text_orientation gtk_tool_shell_get_text_orientation;
14609 alias c_gtk_tool_shell_get_text_size_group gtk_tool_shell_get_text_size_group;
14610 alias c_gtk_tool_shell_rebuild_menu gtk_tool_shell_rebuild_menu;
14611 
14612 // gtk.Toolbar
14613 
14614 alias c_gtk_toolbar_get_type gtk_toolbar_get_type;
14615 alias c_gtk_toolbar_new gtk_toolbar_new;
14616 alias c_gtk_toolbar_get_drop_index gtk_toolbar_get_drop_index;
14617 alias c_gtk_toolbar_get_icon_size gtk_toolbar_get_icon_size;
14618 alias c_gtk_toolbar_get_item_index gtk_toolbar_get_item_index;
14619 alias c_gtk_toolbar_get_n_items gtk_toolbar_get_n_items;
14620 alias c_gtk_toolbar_get_nth_item gtk_toolbar_get_nth_item;
14621 alias c_gtk_toolbar_get_relief_style gtk_toolbar_get_relief_style;
14622 alias c_gtk_toolbar_get_show_arrow gtk_toolbar_get_show_arrow;
14623 alias c_gtk_toolbar_get_style gtk_toolbar_get_style;
14624 alias c_gtk_toolbar_insert gtk_toolbar_insert;
14625 alias c_gtk_toolbar_set_drop_highlight_item gtk_toolbar_set_drop_highlight_item;
14626 alias c_gtk_toolbar_set_icon_size gtk_toolbar_set_icon_size;
14627 alias c_gtk_toolbar_set_show_arrow gtk_toolbar_set_show_arrow;
14628 alias c_gtk_toolbar_set_style gtk_toolbar_set_style;
14629 alias c_gtk_toolbar_unset_icon_size gtk_toolbar_unset_icon_size;
14630 alias c_gtk_toolbar_unset_style gtk_toolbar_unset_style;
14631 
14632 // gtk.Tooltip
14633 
14634 alias c_gtk_tooltip_get_type gtk_tooltip_get_type;
14635 alias c_gtk_tooltip_trigger_tooltip_query gtk_tooltip_trigger_tooltip_query;
14636 alias c_gtk_tooltip_set_custom gtk_tooltip_set_custom;
14637 alias c_gtk_tooltip_set_icon gtk_tooltip_set_icon;
14638 alias c_gtk_tooltip_set_icon_from_gicon gtk_tooltip_set_icon_from_gicon;
14639 alias c_gtk_tooltip_set_icon_from_icon_name gtk_tooltip_set_icon_from_icon_name;
14640 alias c_gtk_tooltip_set_icon_from_stock gtk_tooltip_set_icon_from_stock;
14641 alias c_gtk_tooltip_set_markup gtk_tooltip_set_markup;
14642 alias c_gtk_tooltip_set_text gtk_tooltip_set_text;
14643 alias c_gtk_tooltip_set_tip_area gtk_tooltip_set_tip_area;
14644 
14645 // gtk.ToplevelAccessible
14646 
14647 alias c_gtk_toplevel_accessible_get_type gtk_toplevel_accessible_get_type;
14648 alias c_gtk_toplevel_accessible_get_children gtk_toplevel_accessible_get_children;
14649 
14650 // gtk.TreeDragDest
14651 
14652 alias c_gtk_tree_drag_dest_get_type gtk_tree_drag_dest_get_type;
14653 alias c_gtk_tree_drag_dest_drag_data_received gtk_tree_drag_dest_drag_data_received;
14654 alias c_gtk_tree_drag_dest_row_drop_possible gtk_tree_drag_dest_row_drop_possible;
14655 
14656 // gtk.TreeDragSource
14657 
14658 alias c_gtk_tree_drag_source_get_type gtk_tree_drag_source_get_type;
14659 alias c_gtk_tree_drag_source_drag_data_delete gtk_tree_drag_source_drag_data_delete;
14660 alias c_gtk_tree_drag_source_drag_data_get gtk_tree_drag_source_drag_data_get;
14661 alias c_gtk_tree_drag_source_row_draggable gtk_tree_drag_source_row_draggable;
14662 alias c_gtk_tree_get_row_drag_data gtk_tree_get_row_drag_data;
14663 alias c_gtk_tree_set_row_drag_data gtk_tree_set_row_drag_data;
14664 
14665 // gtk.TreeIter
14666 
14667 alias c_gtk_tree_iter_get_type gtk_tree_iter_get_type;
14668 alias c_gtk_tree_iter_copy gtk_tree_iter_copy;
14669 alias c_gtk_tree_iter_free gtk_tree_iter_free;
14670 
14671 // gtk.TreeModel
14672 
14673 alias c_gtk_tree_model_get_type gtk_tree_model_get_type;
14674 alias c_gtk_tree_model_foreach gtk_tree_model_foreach;
14675 alias c_gtk_tree_model_get gtk_tree_model_get;
14676 alias c_gtk_tree_model_get_column_type gtk_tree_model_get_column_type;
14677 alias c_gtk_tree_model_get_flags gtk_tree_model_get_flags;
14678 alias c_gtk_tree_model_get_iter gtk_tree_model_get_iter;
14679 alias c_gtk_tree_model_get_iter_first gtk_tree_model_get_iter_first;
14680 alias c_gtk_tree_model_get_iter_from_string gtk_tree_model_get_iter_from_string;
14681 alias c_gtk_tree_model_get_n_columns gtk_tree_model_get_n_columns;
14682 alias c_gtk_tree_model_get_path gtk_tree_model_get_path;
14683 alias c_gtk_tree_model_get_string_from_iter gtk_tree_model_get_string_from_iter;
14684 alias c_gtk_tree_model_get_valist gtk_tree_model_get_valist;
14685 alias c_gtk_tree_model_get_value gtk_tree_model_get_value;
14686 alias c_gtk_tree_model_iter_children gtk_tree_model_iter_children;
14687 alias c_gtk_tree_model_iter_has_child gtk_tree_model_iter_has_child;
14688 alias c_gtk_tree_model_iter_n_children gtk_tree_model_iter_n_children;
14689 alias c_gtk_tree_model_iter_next gtk_tree_model_iter_next;
14690 alias c_gtk_tree_model_iter_nth_child gtk_tree_model_iter_nth_child;
14691 alias c_gtk_tree_model_iter_parent gtk_tree_model_iter_parent;
14692 alias c_gtk_tree_model_iter_previous gtk_tree_model_iter_previous;
14693 alias c_gtk_tree_model_ref_node gtk_tree_model_ref_node;
14694 alias c_gtk_tree_model_row_changed gtk_tree_model_row_changed;
14695 alias c_gtk_tree_model_row_deleted gtk_tree_model_row_deleted;
14696 alias c_gtk_tree_model_row_has_child_toggled gtk_tree_model_row_has_child_toggled;
14697 alias c_gtk_tree_model_row_inserted gtk_tree_model_row_inserted;
14698 alias c_gtk_tree_model_rows_reordered gtk_tree_model_rows_reordered;
14699 alias c_gtk_tree_model_rows_reordered_with_length gtk_tree_model_rows_reordered_with_length;
14700 alias c_gtk_tree_model_unref_node gtk_tree_model_unref_node;
14701 
14702 // gtk.TreeModelFilter
14703 
14704 alias c_gtk_tree_model_filter_get_type gtk_tree_model_filter_get_type;
14705 alias c_gtk_tree_model_filter_clear_cache gtk_tree_model_filter_clear_cache;
14706 alias c_gtk_tree_model_filter_convert_child_iter_to_iter gtk_tree_model_filter_convert_child_iter_to_iter;
14707 alias c_gtk_tree_model_filter_convert_child_path_to_path gtk_tree_model_filter_convert_child_path_to_path;
14708 alias c_gtk_tree_model_filter_convert_iter_to_child_iter gtk_tree_model_filter_convert_iter_to_child_iter;
14709 alias c_gtk_tree_model_filter_convert_path_to_child_path gtk_tree_model_filter_convert_path_to_child_path;
14710 alias c_gtk_tree_model_filter_get_model gtk_tree_model_filter_get_model;
14711 alias c_gtk_tree_model_filter_refilter gtk_tree_model_filter_refilter;
14712 alias c_gtk_tree_model_filter_set_modify_func gtk_tree_model_filter_set_modify_func;
14713 alias c_gtk_tree_model_filter_set_visible_column gtk_tree_model_filter_set_visible_column;
14714 alias c_gtk_tree_model_filter_set_visible_func gtk_tree_model_filter_set_visible_func;
14715 alias c_gtk_tree_model_filter_new gtk_tree_model_filter_new;
14716 
14717 // gtk.TreeModelSort
14718 
14719 alias c_gtk_tree_model_sort_get_type gtk_tree_model_sort_get_type;
14720 alias c_gtk_tree_model_sort_clear_cache gtk_tree_model_sort_clear_cache;
14721 alias c_gtk_tree_model_sort_convert_child_iter_to_iter gtk_tree_model_sort_convert_child_iter_to_iter;
14722 alias c_gtk_tree_model_sort_convert_child_path_to_path gtk_tree_model_sort_convert_child_path_to_path;
14723 alias c_gtk_tree_model_sort_convert_iter_to_child_iter gtk_tree_model_sort_convert_iter_to_child_iter;
14724 alias c_gtk_tree_model_sort_convert_path_to_child_path gtk_tree_model_sort_convert_path_to_child_path;
14725 alias c_gtk_tree_model_sort_get_model gtk_tree_model_sort_get_model;
14726 alias c_gtk_tree_model_sort_iter_is_valid gtk_tree_model_sort_iter_is_valid;
14727 alias c_gtk_tree_model_sort_reset_default_sort_func gtk_tree_model_sort_reset_default_sort_func;
14728 alias c_gtk_tree_model_sort_new_with_model gtk_tree_model_sort_new_with_model;
14729 
14730 // gtk.TreePath
14731 
14732 alias c_gtk_tree_path_get_type gtk_tree_path_get_type;
14733 alias c_gtk_tree_path_new gtk_tree_path_new;
14734 alias c_gtk_tree_path_new_first gtk_tree_path_new_first;
14735 alias c_gtk_tree_path_new_from_indices gtk_tree_path_new_from_indices;
14736 alias c_gtk_tree_path_new_from_indicesv gtk_tree_path_new_from_indicesv;
14737 alias c_gtk_tree_path_new_from_string gtk_tree_path_new_from_string;
14738 alias c_gtk_tree_path_append_index gtk_tree_path_append_index;
14739 alias c_gtk_tree_path_compare gtk_tree_path_compare;
14740 alias c_gtk_tree_path_copy gtk_tree_path_copy;
14741 alias c_gtk_tree_path_down gtk_tree_path_down;
14742 alias c_gtk_tree_path_free gtk_tree_path_free;
14743 alias c_gtk_tree_path_get_depth gtk_tree_path_get_depth;
14744 alias c_gtk_tree_path_get_indices gtk_tree_path_get_indices;
14745 alias c_gtk_tree_path_get_indices_with_depth gtk_tree_path_get_indices_with_depth;
14746 alias c_gtk_tree_path_is_ancestor gtk_tree_path_is_ancestor;
14747 alias c_gtk_tree_path_is_descendant gtk_tree_path_is_descendant;
14748 alias c_gtk_tree_path_next gtk_tree_path_next;
14749 alias c_gtk_tree_path_prepend_index gtk_tree_path_prepend_index;
14750 alias c_gtk_tree_path_prev gtk_tree_path_prev;
14751 alias c_gtk_tree_path_to_string gtk_tree_path_to_string;
14752 alias c_gtk_tree_path_up gtk_tree_path_up;
14753 
14754 // gtk.TreeRowReference
14755 
14756 alias c_gtk_tree_row_reference_get_type gtk_tree_row_reference_get_type;
14757 alias c_gtk_tree_row_reference_new gtk_tree_row_reference_new;
14758 alias c_gtk_tree_row_reference_new_proxy gtk_tree_row_reference_new_proxy;
14759 alias c_gtk_tree_row_reference_copy gtk_tree_row_reference_copy;
14760 alias c_gtk_tree_row_reference_free gtk_tree_row_reference_free;
14761 alias c_gtk_tree_row_reference_get_model gtk_tree_row_reference_get_model;
14762 alias c_gtk_tree_row_reference_get_path gtk_tree_row_reference_get_path;
14763 alias c_gtk_tree_row_reference_valid gtk_tree_row_reference_valid;
14764 alias c_gtk_tree_row_reference_deleted gtk_tree_row_reference_deleted;
14765 alias c_gtk_tree_row_reference_inserted gtk_tree_row_reference_inserted;
14766 alias c_gtk_tree_row_reference_reordered gtk_tree_row_reference_reordered;
14767 
14768 // gtk.TreeSelection
14769 
14770 alias c_gtk_tree_selection_get_type gtk_tree_selection_get_type;
14771 alias c_gtk_tree_selection_count_selected_rows gtk_tree_selection_count_selected_rows;
14772 alias c_gtk_tree_selection_get_mode gtk_tree_selection_get_mode;
14773 alias c_gtk_tree_selection_get_select_function gtk_tree_selection_get_select_function;
14774 alias c_gtk_tree_selection_get_selected gtk_tree_selection_get_selected;
14775 alias c_gtk_tree_selection_get_selected_rows gtk_tree_selection_get_selected_rows;
14776 alias c_gtk_tree_selection_get_tree_view gtk_tree_selection_get_tree_view;
14777 alias c_gtk_tree_selection_get_user_data gtk_tree_selection_get_user_data;
14778 alias c_gtk_tree_selection_iter_is_selected gtk_tree_selection_iter_is_selected;
14779 alias c_gtk_tree_selection_path_is_selected gtk_tree_selection_path_is_selected;
14780 alias c_gtk_tree_selection_select_all gtk_tree_selection_select_all;
14781 alias c_gtk_tree_selection_select_iter gtk_tree_selection_select_iter;
14782 alias c_gtk_tree_selection_select_path gtk_tree_selection_select_path;
14783 alias c_gtk_tree_selection_select_range gtk_tree_selection_select_range;
14784 alias c_gtk_tree_selection_selected_foreach gtk_tree_selection_selected_foreach;
14785 alias c_gtk_tree_selection_set_mode gtk_tree_selection_set_mode;
14786 alias c_gtk_tree_selection_set_select_function gtk_tree_selection_set_select_function;
14787 alias c_gtk_tree_selection_unselect_all gtk_tree_selection_unselect_all;
14788 alias c_gtk_tree_selection_unselect_iter gtk_tree_selection_unselect_iter;
14789 alias c_gtk_tree_selection_unselect_path gtk_tree_selection_unselect_path;
14790 alias c_gtk_tree_selection_unselect_range gtk_tree_selection_unselect_range;
14791 
14792 // gtk.TreeSortable
14793 
14794 alias c_gtk_tree_sortable_get_type gtk_tree_sortable_get_type;
14795 alias c_gtk_tree_sortable_get_sort_column_id gtk_tree_sortable_get_sort_column_id;
14796 alias c_gtk_tree_sortable_has_default_sort_func gtk_tree_sortable_has_default_sort_func;
14797 alias c_gtk_tree_sortable_set_default_sort_func gtk_tree_sortable_set_default_sort_func;
14798 alias c_gtk_tree_sortable_set_sort_column_id gtk_tree_sortable_set_sort_column_id;
14799 alias c_gtk_tree_sortable_set_sort_func gtk_tree_sortable_set_sort_func;
14800 alias c_gtk_tree_sortable_sort_column_changed gtk_tree_sortable_sort_column_changed;
14801 
14802 // gtk.TreeStore
14803 
14804 alias c_gtk_tree_store_get_type gtk_tree_store_get_type;
14805 alias c_gtk_tree_store_new gtk_tree_store_new;
14806 alias c_gtk_tree_store_newv gtk_tree_store_newv;
14807 alias c_gtk_tree_store_append gtk_tree_store_append;
14808 alias c_gtk_tree_store_clear gtk_tree_store_clear;
14809 alias c_gtk_tree_store_insert gtk_tree_store_insert;
14810 alias c_gtk_tree_store_insert_after gtk_tree_store_insert_after;
14811 alias c_gtk_tree_store_insert_before gtk_tree_store_insert_before;
14812 alias c_gtk_tree_store_insert_with_values gtk_tree_store_insert_with_values;
14813 alias c_gtk_tree_store_insert_with_valuesv gtk_tree_store_insert_with_valuesv;
14814 alias c_gtk_tree_store_is_ancestor gtk_tree_store_is_ancestor;
14815 alias c_gtk_tree_store_iter_depth gtk_tree_store_iter_depth;
14816 alias c_gtk_tree_store_iter_is_valid gtk_tree_store_iter_is_valid;
14817 alias c_gtk_tree_store_move_after gtk_tree_store_move_after;
14818 alias c_gtk_tree_store_move_before gtk_tree_store_move_before;
14819 alias c_gtk_tree_store_prepend gtk_tree_store_prepend;
14820 alias c_gtk_tree_store_remove gtk_tree_store_remove;
14821 alias c_gtk_tree_store_reorder gtk_tree_store_reorder;
14822 alias c_gtk_tree_store_set gtk_tree_store_set;
14823 alias c_gtk_tree_store_set_column_types gtk_tree_store_set_column_types;
14824 alias c_gtk_tree_store_set_valist gtk_tree_store_set_valist;
14825 alias c_gtk_tree_store_set_value gtk_tree_store_set_value;
14826 alias c_gtk_tree_store_set_valuesv gtk_tree_store_set_valuesv;
14827 alias c_gtk_tree_store_swap gtk_tree_store_swap;
14828 
14829 // gtk.TreeView
14830 
14831 alias c_gtk_tree_view_get_type gtk_tree_view_get_type;
14832 alias c_gtk_tree_view_new gtk_tree_view_new;
14833 alias c_gtk_tree_view_new_with_model gtk_tree_view_new_with_model;
14834 alias c_gtk_tree_view_append_column gtk_tree_view_append_column;
14835 alias c_gtk_tree_view_collapse_all gtk_tree_view_collapse_all;
14836 alias c_gtk_tree_view_collapse_row gtk_tree_view_collapse_row;
14837 alias c_gtk_tree_view_columns_autosize gtk_tree_view_columns_autosize;
14838 alias c_gtk_tree_view_convert_bin_window_to_tree_coords gtk_tree_view_convert_bin_window_to_tree_coords;
14839 alias c_gtk_tree_view_convert_bin_window_to_widget_coords gtk_tree_view_convert_bin_window_to_widget_coords;
14840 alias c_gtk_tree_view_convert_tree_to_bin_window_coords gtk_tree_view_convert_tree_to_bin_window_coords;
14841 alias c_gtk_tree_view_convert_tree_to_widget_coords gtk_tree_view_convert_tree_to_widget_coords;
14842 alias c_gtk_tree_view_convert_widget_to_bin_window_coords gtk_tree_view_convert_widget_to_bin_window_coords;
14843 alias c_gtk_tree_view_convert_widget_to_tree_coords gtk_tree_view_convert_widget_to_tree_coords;
14844 alias c_gtk_tree_view_create_row_drag_icon gtk_tree_view_create_row_drag_icon;
14845 alias c_gtk_tree_view_enable_model_drag_dest gtk_tree_view_enable_model_drag_dest;
14846 alias c_gtk_tree_view_enable_model_drag_source gtk_tree_view_enable_model_drag_source;
14847 alias c_gtk_tree_view_expand_all gtk_tree_view_expand_all;
14848 alias c_gtk_tree_view_expand_row gtk_tree_view_expand_row;
14849 alias c_gtk_tree_view_expand_to_path gtk_tree_view_expand_to_path;
14850 alias c_gtk_tree_view_get_activate_on_single_click gtk_tree_view_get_activate_on_single_click;
14851 alias c_gtk_tree_view_get_background_area gtk_tree_view_get_background_area;
14852 alias c_gtk_tree_view_get_bin_window gtk_tree_view_get_bin_window;
14853 alias c_gtk_tree_view_get_cell_area gtk_tree_view_get_cell_area;
14854 alias c_gtk_tree_view_get_column gtk_tree_view_get_column;
14855 alias c_gtk_tree_view_get_columns gtk_tree_view_get_columns;
14856 alias c_gtk_tree_view_get_cursor gtk_tree_view_get_cursor;
14857 alias c_gtk_tree_view_get_dest_row_at_pos gtk_tree_view_get_dest_row_at_pos;
14858 alias c_gtk_tree_view_get_drag_dest_row gtk_tree_view_get_drag_dest_row;
14859 alias c_gtk_tree_view_get_enable_search gtk_tree_view_get_enable_search;
14860 alias c_gtk_tree_view_get_enable_tree_lines gtk_tree_view_get_enable_tree_lines;
14861 alias c_gtk_tree_view_get_expander_column gtk_tree_view_get_expander_column;
14862 alias c_gtk_tree_view_get_fixed_height_mode gtk_tree_view_get_fixed_height_mode;
14863 alias c_gtk_tree_view_get_grid_lines gtk_tree_view_get_grid_lines;
14864 alias c_gtk_tree_view_get_hadjustment gtk_tree_view_get_hadjustment;
14865 alias c_gtk_tree_view_get_headers_clickable gtk_tree_view_get_headers_clickable;
14866 alias c_gtk_tree_view_get_headers_visible gtk_tree_view_get_headers_visible;
14867 alias c_gtk_tree_view_get_hover_expand gtk_tree_view_get_hover_expand;
14868 alias c_gtk_tree_view_get_hover_selection gtk_tree_view_get_hover_selection;
14869 alias c_gtk_tree_view_get_level_indentation gtk_tree_view_get_level_indentation;
14870 alias c_gtk_tree_view_get_model gtk_tree_view_get_model;
14871 alias c_gtk_tree_view_get_n_columns gtk_tree_view_get_n_columns;
14872 alias c_gtk_tree_view_get_path_at_pos gtk_tree_view_get_path_at_pos;
14873 alias c_gtk_tree_view_get_reorderable gtk_tree_view_get_reorderable;
14874 alias c_gtk_tree_view_get_row_separator_func gtk_tree_view_get_row_separator_func;
14875 alias c_gtk_tree_view_get_rubber_banding gtk_tree_view_get_rubber_banding;
14876 alias c_gtk_tree_view_get_rules_hint gtk_tree_view_get_rules_hint;
14877 alias c_gtk_tree_view_get_search_column gtk_tree_view_get_search_column;
14878 alias c_gtk_tree_view_get_search_entry gtk_tree_view_get_search_entry;
14879 alias c_gtk_tree_view_get_search_equal_func gtk_tree_view_get_search_equal_func;
14880 alias c_gtk_tree_view_get_search_position_func gtk_tree_view_get_search_position_func;
14881 alias c_gtk_tree_view_get_selection gtk_tree_view_get_selection;
14882 alias c_gtk_tree_view_get_show_expanders gtk_tree_view_get_show_expanders;
14883 alias c_gtk_tree_view_get_tooltip_column gtk_tree_view_get_tooltip_column;
14884 alias c_gtk_tree_view_get_tooltip_context gtk_tree_view_get_tooltip_context;
14885 alias c_gtk_tree_view_get_vadjustment gtk_tree_view_get_vadjustment;
14886 alias c_gtk_tree_view_get_visible_range gtk_tree_view_get_visible_range;
14887 alias c_gtk_tree_view_get_visible_rect gtk_tree_view_get_visible_rect;
14888 alias c_gtk_tree_view_insert_column gtk_tree_view_insert_column;
14889 alias c_gtk_tree_view_insert_column_with_attributes gtk_tree_view_insert_column_with_attributes;
14890 alias c_gtk_tree_view_insert_column_with_data_func gtk_tree_view_insert_column_with_data_func;
14891 alias c_gtk_tree_view_is_blank_at_pos gtk_tree_view_is_blank_at_pos;
14892 alias c_gtk_tree_view_is_rubber_banding_active gtk_tree_view_is_rubber_banding_active;
14893 alias c_gtk_tree_view_map_expanded_rows gtk_tree_view_map_expanded_rows;
14894 alias c_gtk_tree_view_move_column_after gtk_tree_view_move_column_after;
14895 alias c_gtk_tree_view_remove_column gtk_tree_view_remove_column;
14896 alias c_gtk_tree_view_row_activated gtk_tree_view_row_activated;
14897 alias c_gtk_tree_view_row_expanded gtk_tree_view_row_expanded;
14898 alias c_gtk_tree_view_scroll_to_cell gtk_tree_view_scroll_to_cell;
14899 alias c_gtk_tree_view_scroll_to_point gtk_tree_view_scroll_to_point;
14900 alias c_gtk_tree_view_set_activate_on_single_click gtk_tree_view_set_activate_on_single_click;
14901 alias c_gtk_tree_view_set_column_drag_function gtk_tree_view_set_column_drag_function;
14902 alias c_gtk_tree_view_set_cursor gtk_tree_view_set_cursor;
14903 alias c_gtk_tree_view_set_cursor_on_cell gtk_tree_view_set_cursor_on_cell;
14904 alias c_gtk_tree_view_set_destroy_count_func gtk_tree_view_set_destroy_count_func;
14905 alias c_gtk_tree_view_set_drag_dest_row gtk_tree_view_set_drag_dest_row;
14906 alias c_gtk_tree_view_set_enable_search gtk_tree_view_set_enable_search;
14907 alias c_gtk_tree_view_set_enable_tree_lines gtk_tree_view_set_enable_tree_lines;
14908 alias c_gtk_tree_view_set_expander_column gtk_tree_view_set_expander_column;
14909 alias c_gtk_tree_view_set_fixed_height_mode gtk_tree_view_set_fixed_height_mode;
14910 alias c_gtk_tree_view_set_grid_lines gtk_tree_view_set_grid_lines;
14911 alias c_gtk_tree_view_set_hadjustment gtk_tree_view_set_hadjustment;
14912 alias c_gtk_tree_view_set_headers_clickable gtk_tree_view_set_headers_clickable;
14913 alias c_gtk_tree_view_set_headers_visible gtk_tree_view_set_headers_visible;
14914 alias c_gtk_tree_view_set_hover_expand gtk_tree_view_set_hover_expand;
14915 alias c_gtk_tree_view_set_hover_selection gtk_tree_view_set_hover_selection;
14916 alias c_gtk_tree_view_set_level_indentation gtk_tree_view_set_level_indentation;
14917 alias c_gtk_tree_view_set_model gtk_tree_view_set_model;
14918 alias c_gtk_tree_view_set_reorderable gtk_tree_view_set_reorderable;
14919 alias c_gtk_tree_view_set_row_separator_func gtk_tree_view_set_row_separator_func;
14920 alias c_gtk_tree_view_set_rubber_banding gtk_tree_view_set_rubber_banding;
14921 alias c_gtk_tree_view_set_rules_hint gtk_tree_view_set_rules_hint;
14922 alias c_gtk_tree_view_set_search_column gtk_tree_view_set_search_column;
14923 alias c_gtk_tree_view_set_search_entry gtk_tree_view_set_search_entry;
14924 alias c_gtk_tree_view_set_search_equal_func gtk_tree_view_set_search_equal_func;
14925 alias c_gtk_tree_view_set_search_position_func gtk_tree_view_set_search_position_func;
14926 alias c_gtk_tree_view_set_show_expanders gtk_tree_view_set_show_expanders;
14927 alias c_gtk_tree_view_set_tooltip_cell gtk_tree_view_set_tooltip_cell;
14928 alias c_gtk_tree_view_set_tooltip_column gtk_tree_view_set_tooltip_column;
14929 alias c_gtk_tree_view_set_tooltip_row gtk_tree_view_set_tooltip_row;
14930 alias c_gtk_tree_view_set_vadjustment gtk_tree_view_set_vadjustment;
14931 alias c_gtk_tree_view_unset_rows_drag_dest gtk_tree_view_unset_rows_drag_dest;
14932 alias c_gtk_tree_view_unset_rows_drag_source gtk_tree_view_unset_rows_drag_source;
14933 
14934 // gtk.TreeViewAccessible
14935 
14936 alias c_gtk_tree_view_accessible_get_type gtk_tree_view_accessible_get_type;
14937 
14938 // gtk.TreeViewColumn
14939 
14940 alias c_gtk_tree_view_column_get_type gtk_tree_view_column_get_type;
14941 alias c_gtk_tree_view_column_new gtk_tree_view_column_new;
14942 alias c_gtk_tree_view_column_new_with_area gtk_tree_view_column_new_with_area;
14943 alias c_gtk_tree_view_column_new_with_attributes gtk_tree_view_column_new_with_attributes;
14944 alias c_gtk_tree_view_column_add_attribute gtk_tree_view_column_add_attribute;
14945 alias c_gtk_tree_view_column_cell_get_position gtk_tree_view_column_cell_get_position;
14946 alias c_gtk_tree_view_column_cell_get_size gtk_tree_view_column_cell_get_size;
14947 alias c_gtk_tree_view_column_cell_is_visible gtk_tree_view_column_cell_is_visible;
14948 alias c_gtk_tree_view_column_cell_set_cell_data gtk_tree_view_column_cell_set_cell_data;
14949 alias c_gtk_tree_view_column_clear gtk_tree_view_column_clear;
14950 alias c_gtk_tree_view_column_clear_attributes gtk_tree_view_column_clear_attributes;
14951 alias c_gtk_tree_view_column_clicked gtk_tree_view_column_clicked;
14952 alias c_gtk_tree_view_column_focus_cell gtk_tree_view_column_focus_cell;
14953 alias c_gtk_tree_view_column_get_alignment gtk_tree_view_column_get_alignment;
14954 alias c_gtk_tree_view_column_get_button gtk_tree_view_column_get_button;
14955 alias c_gtk_tree_view_column_get_clickable gtk_tree_view_column_get_clickable;
14956 alias c_gtk_tree_view_column_get_expand gtk_tree_view_column_get_expand;
14957 alias c_gtk_tree_view_column_get_fixed_width gtk_tree_view_column_get_fixed_width;
14958 alias c_gtk_tree_view_column_get_max_width gtk_tree_view_column_get_max_width;
14959 alias c_gtk_tree_view_column_get_min_width gtk_tree_view_column_get_min_width;
14960 alias c_gtk_tree_view_column_get_reorderable gtk_tree_view_column_get_reorderable;
14961 alias c_gtk_tree_view_column_get_resizable gtk_tree_view_column_get_resizable;
14962 alias c_gtk_tree_view_column_get_sizing gtk_tree_view_column_get_sizing;
14963 alias c_gtk_tree_view_column_get_sort_column_id gtk_tree_view_column_get_sort_column_id;
14964 alias c_gtk_tree_view_column_get_sort_indicator gtk_tree_view_column_get_sort_indicator;
14965 alias c_gtk_tree_view_column_get_sort_order gtk_tree_view_column_get_sort_order;
14966 alias c_gtk_tree_view_column_get_spacing gtk_tree_view_column_get_spacing;
14967 alias c_gtk_tree_view_column_get_title gtk_tree_view_column_get_title;
14968 alias c_gtk_tree_view_column_get_tree_view gtk_tree_view_column_get_tree_view;
14969 alias c_gtk_tree_view_column_get_visible gtk_tree_view_column_get_visible;
14970 alias c_gtk_tree_view_column_get_widget gtk_tree_view_column_get_widget;
14971 alias c_gtk_tree_view_column_get_width gtk_tree_view_column_get_width;
14972 alias c_gtk_tree_view_column_get_x_offset gtk_tree_view_column_get_x_offset;
14973 alias c_gtk_tree_view_column_pack_end gtk_tree_view_column_pack_end;
14974 alias c_gtk_tree_view_column_pack_start gtk_tree_view_column_pack_start;
14975 alias c_gtk_tree_view_column_queue_resize gtk_tree_view_column_queue_resize;
14976 alias c_gtk_tree_view_column_set_alignment gtk_tree_view_column_set_alignment;
14977 alias c_gtk_tree_view_column_set_attributes gtk_tree_view_column_set_attributes;
14978 alias c_gtk_tree_view_column_set_cell_data_func gtk_tree_view_column_set_cell_data_func;
14979 alias c_gtk_tree_view_column_set_clickable gtk_tree_view_column_set_clickable;
14980 alias c_gtk_tree_view_column_set_expand gtk_tree_view_column_set_expand;
14981 alias c_gtk_tree_view_column_set_fixed_width gtk_tree_view_column_set_fixed_width;
14982 alias c_gtk_tree_view_column_set_max_width gtk_tree_view_column_set_max_width;
14983 alias c_gtk_tree_view_column_set_min_width gtk_tree_view_column_set_min_width;
14984 alias c_gtk_tree_view_column_set_reorderable gtk_tree_view_column_set_reorderable;
14985 alias c_gtk_tree_view_column_set_resizable gtk_tree_view_column_set_resizable;
14986 alias c_gtk_tree_view_column_set_sizing gtk_tree_view_column_set_sizing;
14987 alias c_gtk_tree_view_column_set_sort_column_id gtk_tree_view_column_set_sort_column_id;
14988 alias c_gtk_tree_view_column_set_sort_indicator gtk_tree_view_column_set_sort_indicator;
14989 alias c_gtk_tree_view_column_set_sort_order gtk_tree_view_column_set_sort_order;
14990 alias c_gtk_tree_view_column_set_spacing gtk_tree_view_column_set_spacing;
14991 alias c_gtk_tree_view_column_set_title gtk_tree_view_column_set_title;
14992 alias c_gtk_tree_view_column_set_visible gtk_tree_view_column_set_visible;
14993 alias c_gtk_tree_view_column_set_widget gtk_tree_view_column_set_widget;
14994 
14995 // gtk.UIManager
14996 
14997 alias c_gtk_ui_manager_get_type gtk_ui_manager_get_type;
14998 alias c_gtk_ui_manager_new gtk_ui_manager_new;
14999 alias c_gtk_ui_manager_add_ui gtk_ui_manager_add_ui;
15000 alias c_gtk_ui_manager_add_ui_from_file gtk_ui_manager_add_ui_from_file;
15001 alias c_gtk_ui_manager_add_ui_from_resource gtk_ui_manager_add_ui_from_resource;
15002 alias c_gtk_ui_manager_add_ui_from_string gtk_ui_manager_add_ui_from_string;
15003 alias c_gtk_ui_manager_ensure_update gtk_ui_manager_ensure_update;
15004 alias c_gtk_ui_manager_get_accel_group gtk_ui_manager_get_accel_group;
15005 alias c_gtk_ui_manager_get_action gtk_ui_manager_get_action;
15006 alias c_gtk_ui_manager_get_action_groups gtk_ui_manager_get_action_groups;
15007 alias c_gtk_ui_manager_get_add_tearoffs gtk_ui_manager_get_add_tearoffs;
15008 alias c_gtk_ui_manager_get_toplevels gtk_ui_manager_get_toplevels;
15009 alias c_gtk_ui_manager_get_ui gtk_ui_manager_get_ui;
15010 alias c_gtk_ui_manager_get_widget gtk_ui_manager_get_widget;
15011 alias c_gtk_ui_manager_insert_action_group gtk_ui_manager_insert_action_group;
15012 alias c_gtk_ui_manager_new_merge_id gtk_ui_manager_new_merge_id;
15013 alias c_gtk_ui_manager_remove_action_group gtk_ui_manager_remove_action_group;
15014 alias c_gtk_ui_manager_remove_ui gtk_ui_manager_remove_ui;
15015 alias c_gtk_ui_manager_set_add_tearoffs gtk_ui_manager_set_add_tearoffs;
15016 
15017 // gtk.VBox
15018 
15019 alias c_gtk_vbox_get_type gtk_vbox_get_type;
15020 alias c_gtk_vbox_new gtk_vbox_new;
15021 
15022 // gtk.VButtonBox
15023 
15024 alias c_gtk_vbutton_box_get_type gtk_vbutton_box_get_type;
15025 alias c_gtk_vbutton_box_new gtk_vbutton_box_new;
15026 
15027 // gtk.VPaned
15028 
15029 alias c_gtk_vpaned_get_type gtk_vpaned_get_type;
15030 alias c_gtk_vpaned_new gtk_vpaned_new;
15031 
15032 // gtk.VScale
15033 
15034 alias c_gtk_vscale_get_type gtk_vscale_get_type;
15035 alias c_gtk_vscale_new gtk_vscale_new;
15036 alias c_gtk_vscale_new_with_range gtk_vscale_new_with_range;
15037 
15038 // gtk.VScrollbar
15039 
15040 alias c_gtk_vscrollbar_get_type gtk_vscrollbar_get_type;
15041 alias c_gtk_vscrollbar_new gtk_vscrollbar_new;
15042 
15043 // gtk.VSeparator
15044 
15045 alias c_gtk_vseparator_get_type gtk_vseparator_get_type;
15046 alias c_gtk_vseparator_new gtk_vseparator_new;
15047 
15048 // gtk.Viewport
15049 
15050 alias c_gtk_viewport_get_type gtk_viewport_get_type;
15051 alias c_gtk_viewport_new gtk_viewport_new;
15052 alias c_gtk_viewport_get_bin_window gtk_viewport_get_bin_window;
15053 alias c_gtk_viewport_get_hadjustment gtk_viewport_get_hadjustment;
15054 alias c_gtk_viewport_get_shadow_type gtk_viewport_get_shadow_type;
15055 alias c_gtk_viewport_get_vadjustment gtk_viewport_get_vadjustment;
15056 alias c_gtk_viewport_get_view_window gtk_viewport_get_view_window;
15057 alias c_gtk_viewport_set_hadjustment gtk_viewport_set_hadjustment;
15058 alias c_gtk_viewport_set_shadow_type gtk_viewport_set_shadow_type;
15059 alias c_gtk_viewport_set_vadjustment gtk_viewport_set_vadjustment;
15060 
15061 // gtk.VolumeButton
15062 
15063 alias c_gtk_volume_button_get_type gtk_volume_button_get_type;
15064 alias c_gtk_volume_button_new gtk_volume_button_new;
15065 
15066 // gtk.Widget
15067 
15068 alias c_gtk_widget_get_type gtk_widget_get_type;
15069 alias c_gtk_widget_new gtk_widget_new;
15070 alias c_gtk_widget_get_default_direction gtk_widget_get_default_direction;
15071 alias c_gtk_widget_get_default_style gtk_widget_get_default_style;
15072 alias c_gtk_widget_pop_composite_child gtk_widget_pop_composite_child;
15073 alias c_gtk_widget_push_composite_child gtk_widget_push_composite_child;
15074 alias c_gtk_widget_set_default_direction gtk_widget_set_default_direction;
15075 alias c_gtk_widget_activate gtk_widget_activate;
15076 alias c_gtk_widget_add_accelerator gtk_widget_add_accelerator;
15077 alias c_gtk_widget_add_device_events gtk_widget_add_device_events;
15078 alias c_gtk_widget_add_events gtk_widget_add_events;
15079 alias c_gtk_widget_add_mnemonic_label gtk_widget_add_mnemonic_label;
15080 alias c_gtk_widget_add_tick_callback gtk_widget_add_tick_callback;
15081 alias c_gtk_widget_can_activate_accel gtk_widget_can_activate_accel;
15082 alias c_gtk_widget_child_focus gtk_widget_child_focus;
15083 alias c_gtk_widget_child_notify gtk_widget_child_notify;
15084 alias c_gtk_widget_class_path gtk_widget_class_path;
15085 alias c_gtk_widget_compute_expand gtk_widget_compute_expand;
15086 alias c_gtk_widget_create_pango_context gtk_widget_create_pango_context;
15087 alias c_gtk_widget_create_pango_layout gtk_widget_create_pango_layout;
15088 alias c_gtk_widget_destroy gtk_widget_destroy;
15089 alias c_gtk_widget_destroyed gtk_widget_destroyed;
15090 alias c_gtk_widget_device_is_shadowed gtk_widget_device_is_shadowed;
15091 alias c_gtk_drag_begin gtk_drag_begin;
15092 alias c_gtk_drag_begin_with_coordinates gtk_drag_begin_with_coordinates;
15093 alias c_gtk_drag_check_threshold gtk_drag_check_threshold;
15094 alias c_gtk_drag_dest_add_image_targets gtk_drag_dest_add_image_targets;
15095 alias c_gtk_drag_dest_add_text_targets gtk_drag_dest_add_text_targets;
15096 alias c_gtk_drag_dest_add_uri_targets gtk_drag_dest_add_uri_targets;
15097 alias c_gtk_drag_dest_find_target gtk_drag_dest_find_target;
15098 alias c_gtk_drag_dest_get_target_list gtk_drag_dest_get_target_list;
15099 alias c_gtk_drag_dest_get_track_motion gtk_drag_dest_get_track_motion;
15100 alias c_gtk_drag_dest_set gtk_drag_dest_set;
15101 alias c_gtk_drag_dest_set_proxy gtk_drag_dest_set_proxy;
15102 alias c_gtk_drag_dest_set_target_list gtk_drag_dest_set_target_list;
15103 alias c_gtk_drag_dest_set_track_motion gtk_drag_dest_set_track_motion;
15104 alias c_gtk_drag_dest_unset gtk_drag_dest_unset;
15105 alias c_gtk_drag_get_data gtk_drag_get_data;
15106 alias c_gtk_drag_highlight gtk_drag_highlight;
15107 alias c_gtk_drag_source_add_image_targets gtk_drag_source_add_image_targets;
15108 alias c_gtk_drag_source_add_text_targets gtk_drag_source_add_text_targets;
15109 alias c_gtk_drag_source_add_uri_targets gtk_drag_source_add_uri_targets;
15110 alias c_gtk_drag_source_get_target_list gtk_drag_source_get_target_list;
15111 alias c_gtk_drag_source_set gtk_drag_source_set;
15112 alias c_gtk_drag_source_set_icon_gicon gtk_drag_source_set_icon_gicon;
15113 alias c_gtk_drag_source_set_icon_name gtk_drag_source_set_icon_name;
15114 alias c_gtk_drag_source_set_icon_pixbuf gtk_drag_source_set_icon_pixbuf;
15115 alias c_gtk_drag_source_set_icon_stock gtk_drag_source_set_icon_stock;
15116 alias c_gtk_drag_source_set_target_list gtk_drag_source_set_target_list;
15117 alias c_gtk_drag_source_unset gtk_drag_source_unset;
15118 alias c_gtk_drag_unhighlight gtk_drag_unhighlight;
15119 alias c_gtk_widget_draw gtk_widget_draw;
15120 alias c_gtk_widget_ensure_style gtk_widget_ensure_style;
15121 alias c_gtk_widget_error_bell gtk_widget_error_bell;
15122 alias c_gtk_widget_event gtk_widget_event;
15123 alias c_gtk_widget_freeze_child_notify gtk_widget_freeze_child_notify;
15124 alias c_gtk_widget_get_accessible gtk_widget_get_accessible;
15125 alias c_gtk_widget_get_action_group gtk_widget_get_action_group;
15126 alias c_gtk_widget_get_allocated_baseline gtk_widget_get_allocated_baseline;
15127 alias c_gtk_widget_get_allocated_height gtk_widget_get_allocated_height;
15128 alias c_gtk_widget_get_allocated_size gtk_widget_get_allocated_size;
15129 alias c_gtk_widget_get_allocated_width gtk_widget_get_allocated_width;
15130 alias c_gtk_widget_get_allocation gtk_widget_get_allocation;
15131 alias c_gtk_widget_get_ancestor gtk_widget_get_ancestor;
15132 alias c_gtk_widget_get_app_paintable gtk_widget_get_app_paintable;
15133 alias c_gtk_widget_get_can_default gtk_widget_get_can_default;
15134 alias c_gtk_widget_get_can_focus gtk_widget_get_can_focus;
15135 alias c_gtk_widget_get_child_requisition gtk_widget_get_child_requisition;
15136 alias c_gtk_widget_get_child_visible gtk_widget_get_child_visible;
15137 alias c_gtk_widget_get_clip gtk_widget_get_clip;
15138 alias c_gtk_widget_get_clipboard gtk_widget_get_clipboard;
15139 alias c_gtk_widget_get_composite_name gtk_widget_get_composite_name;
15140 alias c_gtk_widget_get_device_enabled gtk_widget_get_device_enabled;
15141 alias c_gtk_widget_get_device_events gtk_widget_get_device_events;
15142 alias c_gtk_widget_get_direction gtk_widget_get_direction;
15143 alias c_gtk_widget_get_display gtk_widget_get_display;
15144 alias c_gtk_widget_get_double_buffered gtk_widget_get_double_buffered;
15145 alias c_gtk_widget_get_events gtk_widget_get_events;
15146 alias c_gtk_widget_get_focus_on_click gtk_widget_get_focus_on_click;
15147 alias c_gtk_widget_get_font_map gtk_widget_get_font_map;
15148 alias c_gtk_widget_get_font_options gtk_widget_get_font_options;
15149 alias c_gtk_widget_get_frame_clock gtk_widget_get_frame_clock;
15150 alias c_gtk_widget_get_halign gtk_widget_get_halign;
15151 alias c_gtk_widget_get_has_tooltip gtk_widget_get_has_tooltip;
15152 alias c_gtk_widget_get_has_window gtk_widget_get_has_window;
15153 alias c_gtk_widget_get_hexpand gtk_widget_get_hexpand;
15154 alias c_gtk_widget_get_hexpand_set gtk_widget_get_hexpand_set;
15155 alias c_gtk_widget_get_mapped gtk_widget_get_mapped;
15156 alias c_gtk_widget_get_margin_bottom gtk_widget_get_margin_bottom;
15157 alias c_gtk_widget_get_margin_end gtk_widget_get_margin_end;
15158 alias c_gtk_widget_get_margin_left gtk_widget_get_margin_left;
15159 alias c_gtk_widget_get_margin_right gtk_widget_get_margin_right;
15160 alias c_gtk_widget_get_margin_start gtk_widget_get_margin_start;
15161 alias c_gtk_widget_get_margin_top gtk_widget_get_margin_top;
15162 alias c_gtk_widget_get_modifier_mask gtk_widget_get_modifier_mask;
15163 alias c_gtk_widget_get_modifier_style gtk_widget_get_modifier_style;
15164 alias c_gtk_widget_get_name gtk_widget_get_name;
15165 alias c_gtk_widget_get_no_show_all gtk_widget_get_no_show_all;
15166 alias c_gtk_widget_get_opacity gtk_widget_get_opacity;
15167 alias c_gtk_widget_get_pango_context gtk_widget_get_pango_context;
15168 alias c_gtk_widget_get_parent gtk_widget_get_parent;
15169 alias c_gtk_widget_get_parent_window gtk_widget_get_parent_window;
15170 alias c_gtk_widget_get_path gtk_widget_get_path;
15171 alias c_gtk_widget_get_pointer gtk_widget_get_pointer;
15172 alias c_gtk_widget_get_preferred_height gtk_widget_get_preferred_height;
15173 alias c_gtk_widget_get_preferred_height_and_baseline_for_width gtk_widget_get_preferred_height_and_baseline_for_width;
15174 alias c_gtk_widget_get_preferred_height_for_width gtk_widget_get_preferred_height_for_width;
15175 alias c_gtk_widget_get_preferred_size gtk_widget_get_preferred_size;
15176 alias c_gtk_widget_get_preferred_width gtk_widget_get_preferred_width;
15177 alias c_gtk_widget_get_preferred_width_for_height gtk_widget_get_preferred_width_for_height;
15178 alias c_gtk_widget_get_realized gtk_widget_get_realized;
15179 alias c_gtk_widget_get_receives_default gtk_widget_get_receives_default;
15180 alias c_gtk_widget_get_request_mode gtk_widget_get_request_mode;
15181 alias c_gtk_widget_get_requisition gtk_widget_get_requisition;
15182 alias c_gtk_widget_get_root_window gtk_widget_get_root_window;
15183 alias c_gtk_widget_get_scale_factor gtk_widget_get_scale_factor;
15184 alias c_gtk_widget_get_screen gtk_widget_get_screen;
15185 alias c_gtk_widget_get_sensitive gtk_widget_get_sensitive;
15186 alias c_gtk_widget_get_settings gtk_widget_get_settings;
15187 alias c_gtk_widget_get_size_request gtk_widget_get_size_request;
15188 alias c_gtk_widget_get_state gtk_widget_get_state;
15189 alias c_gtk_widget_get_state_flags gtk_widget_get_state_flags;
15190 alias c_gtk_widget_get_style gtk_widget_get_style;
15191 alias c_gtk_widget_get_style_context gtk_widget_get_style_context;
15192 alias c_gtk_widget_get_support_multidevice gtk_widget_get_support_multidevice;
15193 alias c_gtk_widget_get_template_child gtk_widget_get_template_child;
15194 alias c_gtk_widget_get_tooltip_markup gtk_widget_get_tooltip_markup;
15195 alias c_gtk_widget_get_tooltip_text gtk_widget_get_tooltip_text;
15196 alias c_gtk_widget_get_tooltip_window gtk_widget_get_tooltip_window;
15197 alias c_gtk_widget_get_toplevel gtk_widget_get_toplevel;
15198 alias c_gtk_widget_get_valign gtk_widget_get_valign;
15199 alias c_gtk_widget_get_valign_with_baseline gtk_widget_get_valign_with_baseline;
15200 alias c_gtk_widget_get_vexpand gtk_widget_get_vexpand;
15201 alias c_gtk_widget_get_vexpand_set gtk_widget_get_vexpand_set;
15202 alias c_gtk_widget_get_visible gtk_widget_get_visible;
15203 alias c_gtk_widget_get_visual gtk_widget_get_visual;
15204 alias c_gtk_widget_get_window gtk_widget_get_window;
15205 alias c_gtk_grab_add gtk_grab_add;
15206 alias c_gtk_widget_grab_default gtk_widget_grab_default;
15207 alias c_gtk_widget_grab_focus gtk_widget_grab_focus;
15208 alias c_gtk_grab_remove gtk_grab_remove;
15209 alias c_gtk_widget_has_default gtk_widget_has_default;
15210 alias c_gtk_widget_has_focus gtk_widget_has_focus;
15211 alias c_gtk_widget_has_grab gtk_widget_has_grab;
15212 alias c_gtk_widget_has_rc_style gtk_widget_has_rc_style;
15213 alias c_gtk_widget_has_screen gtk_widget_has_screen;
15214 alias c_gtk_widget_has_visible_focus gtk_widget_has_visible_focus;
15215 alias c_gtk_widget_hide gtk_widget_hide;
15216 alias c_gtk_widget_hide_on_delete gtk_widget_hide_on_delete;
15217 alias c_gtk_widget_in_destruction gtk_widget_in_destruction;
15218 alias c_gtk_widget_init_template gtk_widget_init_template;
15219 alias c_gtk_widget_input_shape_combine_region gtk_widget_input_shape_combine_region;
15220 alias c_gtk_widget_insert_action_group gtk_widget_insert_action_group;
15221 alias c_gtk_widget_intersect gtk_widget_intersect;
15222 alias c_gtk_widget_is_ancestor gtk_widget_is_ancestor;
15223 alias c_gtk_widget_is_composited gtk_widget_is_composited;
15224 alias c_gtk_widget_is_drawable gtk_widget_is_drawable;
15225 alias c_gtk_widget_is_focus gtk_widget_is_focus;
15226 alias c_gtk_widget_is_sensitive gtk_widget_is_sensitive;
15227 alias c_gtk_widget_is_toplevel gtk_widget_is_toplevel;
15228 alias c_gtk_widget_is_visible gtk_widget_is_visible;
15229 alias c_gtk_widget_keynav_failed gtk_widget_keynav_failed;
15230 alias c_gtk_widget_list_accel_closures gtk_widget_list_accel_closures;
15231 alias c_gtk_widget_list_action_prefixes gtk_widget_list_action_prefixes;
15232 alias c_gtk_widget_list_mnemonic_labels gtk_widget_list_mnemonic_labels;
15233 alias c_gtk_widget_map gtk_widget_map;
15234 alias c_gtk_widget_mnemonic_activate gtk_widget_mnemonic_activate;
15235 alias c_gtk_widget_modify_base gtk_widget_modify_base;
15236 alias c_gtk_widget_modify_bg gtk_widget_modify_bg;
15237 alias c_gtk_widget_modify_cursor gtk_widget_modify_cursor;
15238 alias c_gtk_widget_modify_fg gtk_widget_modify_fg;
15239 alias c_gtk_widget_modify_font gtk_widget_modify_font;
15240 alias c_gtk_widget_modify_style gtk_widget_modify_style;
15241 alias c_gtk_widget_modify_text gtk_widget_modify_text;
15242 alias c_gtk_widget_override_background_color gtk_widget_override_background_color;
15243 alias c_gtk_widget_override_color gtk_widget_override_color;
15244 alias c_gtk_widget_override_cursor gtk_widget_override_cursor;
15245 alias c_gtk_widget_override_font gtk_widget_override_font;
15246 alias c_gtk_widget_override_symbolic_color gtk_widget_override_symbolic_color;
15247 alias c_gtk_widget_path gtk_widget_path;
15248 alias c_gtk_widget_queue_allocate gtk_widget_queue_allocate;
15249 alias c_gtk_widget_queue_compute_expand gtk_widget_queue_compute_expand;
15250 alias c_gtk_widget_queue_draw gtk_widget_queue_draw;
15251 alias c_gtk_widget_queue_draw_area gtk_widget_queue_draw_area;
15252 alias c_gtk_widget_queue_draw_region gtk_widget_queue_draw_region;
15253 alias c_gtk_widget_queue_resize gtk_widget_queue_resize;
15254 alias c_gtk_widget_queue_resize_no_redraw gtk_widget_queue_resize_no_redraw;
15255 alias c_gtk_widget_realize gtk_widget_realize;
15256 alias c_gtk_widget_region_intersect gtk_widget_region_intersect;
15257 alias c_gtk_widget_register_window gtk_widget_register_window;
15258 alias c_gtk_widget_remove_accelerator gtk_widget_remove_accelerator;
15259 alias c_gtk_widget_remove_mnemonic_label gtk_widget_remove_mnemonic_label;
15260 alias c_gtk_widget_remove_tick_callback gtk_widget_remove_tick_callback;
15261 alias c_gtk_widget_render_icon gtk_widget_render_icon;
15262 alias c_gtk_widget_render_icon_pixbuf gtk_widget_render_icon_pixbuf;
15263 alias c_gtk_widget_reparent gtk_widget_reparent;
15264 alias c_gtk_widget_reset_rc_styles gtk_widget_reset_rc_styles;
15265 alias c_gtk_widget_reset_style gtk_widget_reset_style;
15266 alias c_gtk_widget_send_expose gtk_widget_send_expose;
15267 alias c_gtk_widget_send_focus_change gtk_widget_send_focus_change;
15268 alias c_gtk_widget_set_accel_path gtk_widget_set_accel_path;
15269 alias c_gtk_widget_set_allocation gtk_widget_set_allocation;
15270 alias c_gtk_widget_set_app_paintable gtk_widget_set_app_paintable;
15271 alias c_gtk_widget_set_can_default gtk_widget_set_can_default;
15272 alias c_gtk_widget_set_can_focus gtk_widget_set_can_focus;
15273 alias c_gtk_widget_set_child_visible gtk_widget_set_child_visible;
15274 alias c_gtk_widget_set_clip gtk_widget_set_clip;
15275 alias c_gtk_widget_set_composite_name gtk_widget_set_composite_name;
15276 alias c_gtk_widget_set_device_enabled gtk_widget_set_device_enabled;
15277 alias c_gtk_widget_set_device_events gtk_widget_set_device_events;
15278 alias c_gtk_widget_set_direction gtk_widget_set_direction;
15279 alias c_gtk_widget_set_double_buffered gtk_widget_set_double_buffered;
15280 alias c_gtk_widget_set_events gtk_widget_set_events;
15281 alias c_gtk_widget_set_focus_on_click gtk_widget_set_focus_on_click;
15282 alias c_gtk_widget_set_font_map gtk_widget_set_font_map;
15283 alias c_gtk_widget_set_font_options gtk_widget_set_font_options;
15284 alias c_gtk_widget_set_halign gtk_widget_set_halign;
15285 alias c_gtk_widget_set_has_tooltip gtk_widget_set_has_tooltip;
15286 alias c_gtk_widget_set_has_window gtk_widget_set_has_window;
15287 alias c_gtk_widget_set_hexpand gtk_widget_set_hexpand;
15288 alias c_gtk_widget_set_hexpand_set gtk_widget_set_hexpand_set;
15289 alias c_gtk_widget_set_mapped gtk_widget_set_mapped;
15290 alias c_gtk_widget_set_margin_bottom gtk_widget_set_margin_bottom;
15291 alias c_gtk_widget_set_margin_end gtk_widget_set_margin_end;
15292 alias c_gtk_widget_set_margin_left gtk_widget_set_margin_left;
15293 alias c_gtk_widget_set_margin_right gtk_widget_set_margin_right;
15294 alias c_gtk_widget_set_margin_start gtk_widget_set_margin_start;
15295 alias c_gtk_widget_set_margin_top gtk_widget_set_margin_top;
15296 alias c_gtk_widget_set_name gtk_widget_set_name;
15297 alias c_gtk_widget_set_no_show_all gtk_widget_set_no_show_all;
15298 alias c_gtk_widget_set_opacity gtk_widget_set_opacity;
15299 alias c_gtk_widget_set_parent gtk_widget_set_parent;
15300 alias c_gtk_widget_set_parent_window gtk_widget_set_parent_window;
15301 alias c_gtk_widget_set_realized gtk_widget_set_realized;
15302 alias c_gtk_widget_set_receives_default gtk_widget_set_receives_default;
15303 alias c_gtk_widget_set_redraw_on_allocate gtk_widget_set_redraw_on_allocate;
15304 alias c_gtk_widget_set_sensitive gtk_widget_set_sensitive;
15305 alias c_gtk_widget_set_size_request gtk_widget_set_size_request;
15306 alias c_gtk_widget_set_state gtk_widget_set_state;
15307 alias c_gtk_widget_set_state_flags gtk_widget_set_state_flags;
15308 alias c_gtk_widget_set_style gtk_widget_set_style;
15309 alias c_gtk_widget_set_support_multidevice gtk_widget_set_support_multidevice;
15310 alias c_gtk_widget_set_tooltip_markup gtk_widget_set_tooltip_markup;
15311 alias c_gtk_widget_set_tooltip_text gtk_widget_set_tooltip_text;
15312 alias c_gtk_widget_set_tooltip_window gtk_widget_set_tooltip_window;
15313 alias c_gtk_widget_set_valign gtk_widget_set_valign;
15314 alias c_gtk_widget_set_vexpand gtk_widget_set_vexpand;
15315 alias c_gtk_widget_set_vexpand_set gtk_widget_set_vexpand_set;
15316 alias c_gtk_widget_set_visible gtk_widget_set_visible;
15317 alias c_gtk_widget_set_visual gtk_widget_set_visual;
15318 alias c_gtk_widget_set_window gtk_widget_set_window;
15319 alias c_gtk_widget_shape_combine_region gtk_widget_shape_combine_region;
15320 alias c_gtk_widget_show gtk_widget_show;
15321 alias c_gtk_widget_show_all gtk_widget_show_all;
15322 alias c_gtk_widget_show_now gtk_widget_show_now;
15323 alias c_gtk_widget_size_allocate gtk_widget_size_allocate;
15324 alias c_gtk_widget_size_allocate_with_baseline gtk_widget_size_allocate_with_baseline;
15325 alias c_gtk_widget_size_request gtk_widget_size_request;
15326 alias c_gtk_widget_style_attach gtk_widget_style_attach;
15327 alias c_gtk_widget_style_get gtk_widget_style_get;
15328 alias c_gtk_widget_style_get_property gtk_widget_style_get_property;
15329 alias c_gtk_widget_style_get_valist gtk_widget_style_get_valist;
15330 alias c_gtk_widget_thaw_child_notify gtk_widget_thaw_child_notify;
15331 alias c_gtk_widget_translate_coordinates gtk_widget_translate_coordinates;
15332 alias c_gtk_widget_trigger_tooltip_query gtk_widget_trigger_tooltip_query;
15333 alias c_gtk_widget_unmap gtk_widget_unmap;
15334 alias c_gtk_widget_unparent gtk_widget_unparent;
15335 alias c_gtk_widget_unrealize gtk_widget_unrealize;
15336 alias c_gtk_widget_unregister_window gtk_widget_unregister_window;
15337 alias c_gtk_widget_unset_state_flags gtk_widget_unset_state_flags;
15338 alias c_gtk_cairo_should_draw_window gtk_cairo_should_draw_window;
15339 alias c_gtk_cairo_transform_to_window gtk_cairo_transform_to_window;
15340 alias c_gtk_distribute_natural_allocation gtk_distribute_natural_allocation;
15341 
15342 // gtk.WidgetAccessible
15343 
15344 alias c_gtk_widget_accessible_get_type gtk_widget_accessible_get_type;
15345 
15346 // gtk.WidgetClass
15347 
15348 alias c_gtk_widget_class_bind_template_callback_full gtk_widget_class_bind_template_callback_full;
15349 alias c_gtk_widget_class_bind_template_child_full gtk_widget_class_bind_template_child_full;
15350 alias c_gtk_widget_class_find_style_property gtk_widget_class_find_style_property;
15351 alias c_gtk_widget_class_get_css_name gtk_widget_class_get_css_name;
15352 alias c_gtk_widget_class_install_style_property gtk_widget_class_install_style_property;
15353 alias c_gtk_widget_class_install_style_property_parser gtk_widget_class_install_style_property_parser;
15354 alias c_gtk_widget_class_list_style_properties gtk_widget_class_list_style_properties;
15355 alias c_gtk_widget_class_set_accessible_role gtk_widget_class_set_accessible_role;
15356 alias c_gtk_widget_class_set_accessible_type gtk_widget_class_set_accessible_type;
15357 alias c_gtk_widget_class_set_connect_func gtk_widget_class_set_connect_func;
15358 alias c_gtk_widget_class_set_css_name gtk_widget_class_set_css_name;
15359 alias c_gtk_widget_class_set_template gtk_widget_class_set_template;
15360 alias c_gtk_widget_class_set_template_from_resource gtk_widget_class_set_template_from_resource;
15361 
15362 // gtk.WidgetPath
15363 
15364 alias c_gtk_widget_path_get_type gtk_widget_path_get_type;
15365 alias c_gtk_widget_path_new gtk_widget_path_new;
15366 alias c_gtk_widget_path_append_for_widget gtk_widget_path_append_for_widget;
15367 alias c_gtk_widget_path_append_type gtk_widget_path_append_type;
15368 alias c_gtk_widget_path_append_with_siblings gtk_widget_path_append_with_siblings;
15369 alias c_gtk_widget_path_copy gtk_widget_path_copy;
15370 alias c_gtk_widget_path_free gtk_widget_path_free;
15371 alias c_gtk_widget_path_get_object_type gtk_widget_path_get_object_type;
15372 alias c_gtk_widget_path_has_parent gtk_widget_path_has_parent;
15373 alias c_gtk_widget_path_is_type gtk_widget_path_is_type;
15374 alias c_gtk_widget_path_iter_add_class gtk_widget_path_iter_add_class;
15375 alias c_gtk_widget_path_iter_add_region gtk_widget_path_iter_add_region;
15376 alias c_gtk_widget_path_iter_clear_classes gtk_widget_path_iter_clear_classes;
15377 alias c_gtk_widget_path_iter_clear_regions gtk_widget_path_iter_clear_regions;
15378 alias c_gtk_widget_path_iter_get_name gtk_widget_path_iter_get_name;
15379 alias c_gtk_widget_path_iter_get_object_name gtk_widget_path_iter_get_object_name;
15380 alias c_gtk_widget_path_iter_get_object_type gtk_widget_path_iter_get_object_type;
15381 alias c_gtk_widget_path_iter_get_sibling_index gtk_widget_path_iter_get_sibling_index;
15382 alias c_gtk_widget_path_iter_get_siblings gtk_widget_path_iter_get_siblings;
15383 alias c_gtk_widget_path_iter_get_state gtk_widget_path_iter_get_state;
15384 alias c_gtk_widget_path_iter_has_class gtk_widget_path_iter_has_class;
15385 alias c_gtk_widget_path_iter_has_name gtk_widget_path_iter_has_name;
15386 alias c_gtk_widget_path_iter_has_qclass gtk_widget_path_iter_has_qclass;
15387 alias c_gtk_widget_path_iter_has_qname gtk_widget_path_iter_has_qname;
15388 alias c_gtk_widget_path_iter_has_qregion gtk_widget_path_iter_has_qregion;
15389 alias c_gtk_widget_path_iter_has_region gtk_widget_path_iter_has_region;
15390 alias c_gtk_widget_path_iter_list_classes gtk_widget_path_iter_list_classes;
15391 alias c_gtk_widget_path_iter_list_regions gtk_widget_path_iter_list_regions;
15392 alias c_gtk_widget_path_iter_remove_class gtk_widget_path_iter_remove_class;
15393 alias c_gtk_widget_path_iter_remove_region gtk_widget_path_iter_remove_region;
15394 alias c_gtk_widget_path_iter_set_name gtk_widget_path_iter_set_name;
15395 alias c_gtk_widget_path_iter_set_object_name gtk_widget_path_iter_set_object_name;
15396 alias c_gtk_widget_path_iter_set_object_type gtk_widget_path_iter_set_object_type;
15397 alias c_gtk_widget_path_iter_set_state gtk_widget_path_iter_set_state;
15398 alias c_gtk_widget_path_length gtk_widget_path_length;
15399 alias c_gtk_widget_path_prepend_type gtk_widget_path_prepend_type;
15400 alias c_gtk_widget_path_ref gtk_widget_path_ref;
15401 alias c_gtk_widget_path_to_string gtk_widget_path_to_string;
15402 alias c_gtk_widget_path_unref gtk_widget_path_unref;
15403 
15404 // gtk.Window
15405 
15406 alias c_gtk_window_get_type gtk_window_get_type;
15407 alias c_gtk_window_new gtk_window_new;
15408 alias c_gtk_window_get_default_icon_list gtk_window_get_default_icon_list;
15409 alias c_gtk_window_get_default_icon_name gtk_window_get_default_icon_name;
15410 alias c_gtk_window_list_toplevels gtk_window_list_toplevels;
15411 alias c_gtk_window_set_auto_startup_notification gtk_window_set_auto_startup_notification;
15412 alias c_gtk_window_set_default_icon gtk_window_set_default_icon;
15413 alias c_gtk_window_set_default_icon_from_file gtk_window_set_default_icon_from_file;
15414 alias c_gtk_window_set_default_icon_list gtk_window_set_default_icon_list;
15415 alias c_gtk_window_set_default_icon_name gtk_window_set_default_icon_name;
15416 alias c_gtk_window_set_interactive_debugging gtk_window_set_interactive_debugging;
15417 alias c_gtk_window_activate_default gtk_window_activate_default;
15418 alias c_gtk_window_activate_focus gtk_window_activate_focus;
15419 alias c_gtk_window_activate_key gtk_window_activate_key;
15420 alias c_gtk_window_add_accel_group gtk_window_add_accel_group;
15421 alias c_gtk_window_add_mnemonic gtk_window_add_mnemonic;
15422 alias c_gtk_window_begin_move_drag gtk_window_begin_move_drag;
15423 alias c_gtk_window_begin_resize_drag gtk_window_begin_resize_drag;
15424 alias c_gtk_window_close gtk_window_close;
15425 alias c_gtk_window_deiconify gtk_window_deiconify;
15426 alias c_gtk_window_fullscreen gtk_window_fullscreen;
15427 alias c_gtk_window_fullscreen_on_monitor gtk_window_fullscreen_on_monitor;
15428 alias c_gtk_window_get_accept_focus gtk_window_get_accept_focus;
15429 alias c_gtk_window_get_application gtk_window_get_application;
15430 alias c_gtk_window_get_attached_to gtk_window_get_attached_to;
15431 alias c_gtk_window_get_decorated gtk_window_get_decorated;
15432 alias c_gtk_window_get_default_size gtk_window_get_default_size;
15433 alias c_gtk_window_get_default_widget gtk_window_get_default_widget;
15434 alias c_gtk_window_get_deletable gtk_window_get_deletable;
15435 alias c_gtk_window_get_destroy_with_parent gtk_window_get_destroy_with_parent;
15436 alias c_gtk_window_get_focus gtk_window_get_focus;
15437 alias c_gtk_window_get_focus_on_map gtk_window_get_focus_on_map;
15438 alias c_gtk_window_get_focus_visible gtk_window_get_focus_visible;
15439 alias c_gtk_window_get_gravity gtk_window_get_gravity;
15440 alias c_gtk_window_get_group gtk_window_get_group;
15441 alias c_gtk_window_get_has_resize_grip gtk_window_get_has_resize_grip;
15442 alias c_gtk_window_get_hide_titlebar_when_maximized gtk_window_get_hide_titlebar_when_maximized;
15443 alias c_gtk_window_get_icon gtk_window_get_icon;
15444 alias c_gtk_window_get_icon_list gtk_window_get_icon_list;
15445 alias c_gtk_window_get_icon_name gtk_window_get_icon_name;
15446 alias c_gtk_window_get_mnemonic_modifier gtk_window_get_mnemonic_modifier;
15447 alias c_gtk_window_get_mnemonics_visible gtk_window_get_mnemonics_visible;
15448 alias c_gtk_window_get_modal gtk_window_get_modal;
15449 alias c_gtk_window_get_opacity gtk_window_get_opacity;
15450 alias c_gtk_window_get_position gtk_window_get_position;
15451 alias c_gtk_window_get_resizable gtk_window_get_resizable;
15452 alias c_gtk_window_get_resize_grip_area gtk_window_get_resize_grip_area;
15453 alias c_gtk_window_get_role gtk_window_get_role;
15454 alias c_gtk_window_get_screen gtk_window_get_screen;
15455 alias c_gtk_window_get_size gtk_window_get_size;
15456 alias c_gtk_window_get_skip_pager_hint gtk_window_get_skip_pager_hint;
15457 alias c_gtk_window_get_skip_taskbar_hint gtk_window_get_skip_taskbar_hint;
15458 alias c_gtk_window_get_title gtk_window_get_title;
15459 alias c_gtk_window_get_titlebar gtk_window_get_titlebar;
15460 alias c_gtk_window_get_transient_for gtk_window_get_transient_for;
15461 alias c_gtk_window_get_type_hint gtk_window_get_type_hint;
15462 alias c_gtk_window_get_urgency_hint gtk_window_get_urgency_hint;
15463 alias c_gtk_window_get_window_type gtk_window_get_window_type;
15464 alias c_gtk_window_has_group gtk_window_has_group;
15465 alias c_gtk_window_has_toplevel_focus gtk_window_has_toplevel_focus;
15466 alias c_gtk_window_iconify gtk_window_iconify;
15467 alias c_gtk_window_is_active gtk_window_is_active;
15468 alias c_gtk_window_is_maximized gtk_window_is_maximized;
15469 alias c_gtk_window_maximize gtk_window_maximize;
15470 alias c_gtk_window_mnemonic_activate gtk_window_mnemonic_activate;
15471 alias c_gtk_window_move gtk_window_move;
15472 alias c_gtk_window_parse_geometry gtk_window_parse_geometry;
15473 alias c_gtk_window_present gtk_window_present;
15474 alias c_gtk_window_present_with_time gtk_window_present_with_time;
15475 alias c_gtk_window_propagate_key_event gtk_window_propagate_key_event;
15476 alias c_gtk_window_remove_accel_group gtk_window_remove_accel_group;
15477 alias c_gtk_window_remove_mnemonic gtk_window_remove_mnemonic;
15478 alias c_gtk_window_reshow_with_initial_size gtk_window_reshow_with_initial_size;
15479 alias c_gtk_window_resize gtk_window_resize;
15480 alias c_gtk_window_resize_grip_is_visible gtk_window_resize_grip_is_visible;
15481 alias c_gtk_window_resize_to_geometry gtk_window_resize_to_geometry;
15482 alias c_gtk_window_set_accept_focus gtk_window_set_accept_focus;
15483 alias c_gtk_window_set_application gtk_window_set_application;
15484 alias c_gtk_window_set_attached_to gtk_window_set_attached_to;
15485 alias c_gtk_window_set_decorated gtk_window_set_decorated;
15486 alias c_gtk_window_set_default gtk_window_set_default;
15487 alias c_gtk_window_set_default_geometry gtk_window_set_default_geometry;
15488 alias c_gtk_window_set_default_size gtk_window_set_default_size;
15489 alias c_gtk_window_set_deletable gtk_window_set_deletable;
15490 alias c_gtk_window_set_destroy_with_parent gtk_window_set_destroy_with_parent;
15491 alias c_gtk_window_set_focus gtk_window_set_focus;
15492 alias c_gtk_window_set_focus_on_map gtk_window_set_focus_on_map;
15493 alias c_gtk_window_set_focus_visible gtk_window_set_focus_visible;
15494 alias c_gtk_window_set_geometry_hints gtk_window_set_geometry_hints;
15495 alias c_gtk_window_set_gravity gtk_window_set_gravity;
15496 alias c_gtk_window_set_has_resize_grip gtk_window_set_has_resize_grip;
15497 alias c_gtk_window_set_has_user_ref_count gtk_window_set_has_user_ref_count;
15498 alias c_gtk_window_set_hide_titlebar_when_maximized gtk_window_set_hide_titlebar_when_maximized;
15499 alias c_gtk_window_set_icon gtk_window_set_icon;
15500 alias c_gtk_window_set_icon_from_file gtk_window_set_icon_from_file;
15501 alias c_gtk_window_set_icon_list gtk_window_set_icon_list;
15502 alias c_gtk_window_set_icon_name gtk_window_set_icon_name;
15503 alias c_gtk_window_set_keep_above gtk_window_set_keep_above;
15504 alias c_gtk_window_set_keep_below gtk_window_set_keep_below;
15505 alias c_gtk_window_set_mnemonic_modifier gtk_window_set_mnemonic_modifier;
15506 alias c_gtk_window_set_mnemonics_visible gtk_window_set_mnemonics_visible;
15507 alias c_gtk_window_set_modal gtk_window_set_modal;
15508 alias c_gtk_window_set_opacity gtk_window_set_opacity;
15509 alias c_gtk_window_set_position gtk_window_set_position;
15510 alias c_gtk_window_set_resizable gtk_window_set_resizable;
15511 alias c_gtk_window_set_role gtk_window_set_role;
15512 alias c_gtk_window_set_screen gtk_window_set_screen;
15513 alias c_gtk_window_set_skip_pager_hint gtk_window_set_skip_pager_hint;
15514 alias c_gtk_window_set_skip_taskbar_hint gtk_window_set_skip_taskbar_hint;
15515 alias c_gtk_window_set_startup_id gtk_window_set_startup_id;
15516 alias c_gtk_window_set_title gtk_window_set_title;
15517 alias c_gtk_window_set_titlebar gtk_window_set_titlebar;
15518 alias c_gtk_window_set_transient_for gtk_window_set_transient_for;
15519 alias c_gtk_window_set_type_hint gtk_window_set_type_hint;
15520 alias c_gtk_window_set_urgency_hint gtk_window_set_urgency_hint;
15521 alias c_gtk_window_set_wmclass gtk_window_set_wmclass;
15522 alias c_gtk_window_stick gtk_window_stick;
15523 alias c_gtk_window_unfullscreen gtk_window_unfullscreen;
15524 alias c_gtk_window_unmaximize gtk_window_unmaximize;
15525 alias c_gtk_window_unstick gtk_window_unstick;
15526 alias c_gtk_show_uri_on_window gtk_show_uri_on_window;
15527 
15528 // gtk.WindowAccessible
15529 
15530 alias c_gtk_window_accessible_get_type gtk_window_accessible_get_type;
15531 
15532 // gtk.WindowGroup
15533 
15534 alias c_gtk_window_group_get_type gtk_window_group_get_type;
15535 alias c_gtk_window_group_new gtk_window_group_new;
15536 alias c_gtk_window_group_add_window gtk_window_group_add_window;
15537 alias c_gtk_window_group_get_current_device_grab gtk_window_group_get_current_device_grab;
15538 alias c_gtk_window_group_get_current_grab gtk_window_group_get_current_grab;
15539 alias c_gtk_window_group_list_windows gtk_window_group_list_windows;
15540 alias c_gtk_window_group_remove_window gtk_window_group_remove_window;
15541 
15542 // gtk.Main
15543 
15544 alias c_gtk_device_grab_add gtk_device_grab_add;
15545 alias c_gtk_device_grab_remove gtk_device_grab_remove;
15546 alias c_gtk_disable_setlocale gtk_disable_setlocale;
15547 alias c_gtk_events_pending gtk_events_pending;
15548 alias c_gtk_get_current_event gtk_get_current_event;
15549 alias c_gtk_get_current_event_device gtk_get_current_event_device;
15550 alias c_gtk_get_current_event_state gtk_get_current_event_state;
15551 alias c_gtk_get_current_event_time gtk_get_current_event_time;
15552 alias c_gtk_get_debug_flags gtk_get_debug_flags;
15553 alias c_gtk_get_default_language gtk_get_default_language;
15554 alias c_gtk_get_event_widget gtk_get_event_widget;
15555 alias c_gtk_get_locale_direction gtk_get_locale_direction;
15556 alias c_gtk_get_option_group gtk_get_option_group;
15557 alias c_gtk_grab_get_current gtk_grab_get_current;
15558 alias c_gtk_init gtk_init;
15559 alias c_gtk_init_check gtk_init_check;
15560 alias c_gtk_init_with_args gtk_init_with_args;
15561 alias c_gtk_key_snooper_install gtk_key_snooper_install;
15562 alias c_gtk_key_snooper_remove gtk_key_snooper_remove;
15563 alias c_gtk_main gtk_main;
15564 alias c_gtk_main_do_event gtk_main_do_event;
15565 alias c_gtk_main_iteration gtk_main_iteration;
15566 alias c_gtk_main_iteration_do gtk_main_iteration_do;
15567 alias c_gtk_main_level gtk_main_level;
15568 alias c_gtk_main_quit gtk_main_quit;
15569 alias c_gtk_parse_args gtk_parse_args;
15570 alias c_gtk_propagate_event gtk_propagate_event;
15571 alias c_gtk_set_debug_flags gtk_set_debug_flags;
15572 
15573 // gtk.Testing
15574 
15575 alias c_gtk_test_create_simple_window gtk_test_create_simple_window;
15576 alias c_gtk_test_create_widget gtk_test_create_widget;
15577 alias c_gtk_test_display_button_window gtk_test_display_button_window;
15578 alias c_gtk_test_find_label gtk_test_find_label;
15579 alias c_gtk_test_find_sibling gtk_test_find_sibling;
15580 alias c_gtk_test_find_widget gtk_test_find_widget;
15581 alias c_gtk_test_init gtk_test_init;
15582 alias c_gtk_test_list_all_types gtk_test_list_all_types;
15583 alias c_gtk_test_register_all_types gtk_test_register_all_types;
15584 alias c_gtk_test_slider_get_value gtk_test_slider_get_value;
15585 alias c_gtk_test_slider_set_perc gtk_test_slider_set_perc;
15586 alias c_gtk_test_spin_button_click gtk_test_spin_button_click;
15587 alias c_gtk_test_text_get gtk_test_text_get;
15588 alias c_gtk_test_text_set gtk_test_text_set;
15589 alias c_gtk_test_widget_click gtk_test_widget_click;
15590 alias c_gtk_test_widget_send_key gtk_test_widget_send_key;
15591 alias c_gtk_test_widget_wait_for_draw gtk_test_widget_wait_for_draw;
15592 
15593 // gtk.DragAndDrop
15594 
15595 alias c_gtk_drag_cancel gtk_drag_cancel;
15596 alias c_gtk_drag_finish gtk_drag_finish;
15597 alias c_gtk_drag_get_source_widget gtk_drag_get_source_widget;
15598 alias c_gtk_drag_set_icon_default gtk_drag_set_icon_default;
15599 alias c_gtk_drag_set_icon_gicon gtk_drag_set_icon_gicon;
15600 alias c_gtk_drag_set_icon_name gtk_drag_set_icon_name;
15601 alias c_gtk_drag_set_icon_pixbuf gtk_drag_set_icon_pixbuf;
15602 alias c_gtk_drag_set_icon_stock gtk_drag_set_icon_stock;
15603 alias c_gtk_drag_set_icon_surface gtk_drag_set_icon_surface;
15604 alias c_gtk_drag_set_icon_widget gtk_drag_set_icon_widget;
15605 alias c_gtk_draw_insertion_cursor gtk_draw_insertion_cursor;
15606 
15607 // gtk.IconSize
15608 
15609 alias c_gtk_icon_size_from_name gtk_icon_size_from_name;
15610 alias c_gtk_icon_size_get_name gtk_icon_size_get_name;
15611 alias c_gtk_icon_size_lookup gtk_icon_size_lookup;
15612 alias c_gtk_icon_size_lookup_for_settings gtk_icon_size_lookup_for_settings;
15613 alias c_gtk_icon_size_register gtk_icon_size_register;
15614 alias c_gtk_icon_size_register_alias gtk_icon_size_register_alias;
15615 
15616 // gtk.Version
15617 
15618 alias c_gtk_check_version gtk_check_version;
15619 alias c_gtk_get_binary_age gtk_get_binary_age;
15620 alias c_gtk_get_interface_age gtk_get_interface_age;
15621 alias c_gtk_get_major_version gtk_get_major_version;
15622 alias c_gtk_get_micro_version gtk_get_micro_version;
15623 alias c_gtk_get_minor_version gtk_get_minor_version;