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 atk.c.functions;
26 
27 import std.stdio;
28 import atk.c.types;
29 import gtkd.Loader;
30 
31 version (Windows)
32 	static immutable LIBRARY_ATK = ["libatk-1.0-0.dll;atk-1.0-0.dll;atk-1.dll"];
33 else version (OSX)
34 	static immutable LIBRARY_ATK = ["libatk-1.0.0.dylib"];
35 else
36 	static immutable LIBRARY_ATK = ["libatk-1.0.so.0"];
37 
38 shared static this()
39 {
40 	// atk.Action
41 
42 	Linker.link(atk_action_get_type, "atk_action_get_type", LIBRARY_ATK);
43 	Linker.link(atk_action_do_action, "atk_action_do_action", LIBRARY_ATK);
44 	Linker.link(atk_action_get_description, "atk_action_get_description", LIBRARY_ATK);
45 	Linker.link(atk_action_get_keybinding, "atk_action_get_keybinding", LIBRARY_ATK);
46 	Linker.link(atk_action_get_localized_name, "atk_action_get_localized_name", LIBRARY_ATK);
47 	Linker.link(atk_action_get_n_actions, "atk_action_get_n_actions", LIBRARY_ATK);
48 	Linker.link(atk_action_get_name, "atk_action_get_name", LIBRARY_ATK);
49 	Linker.link(atk_action_set_description, "atk_action_set_description", LIBRARY_ATK);
50 
51 	// atk.Component
52 
53 	Linker.link(atk_component_get_type, "atk_component_get_type", LIBRARY_ATK);
54 	Linker.link(atk_component_add_focus_handler, "atk_component_add_focus_handler", LIBRARY_ATK);
55 	Linker.link(atk_component_contains, "atk_component_contains", LIBRARY_ATK);
56 	Linker.link(atk_component_get_alpha, "atk_component_get_alpha", LIBRARY_ATK);
57 	Linker.link(atk_component_get_extents, "atk_component_get_extents", LIBRARY_ATK);
58 	Linker.link(atk_component_get_layer, "atk_component_get_layer", LIBRARY_ATK);
59 	Linker.link(atk_component_get_mdi_zorder, "atk_component_get_mdi_zorder", LIBRARY_ATK);
60 	Linker.link(atk_component_get_position, "atk_component_get_position", LIBRARY_ATK);
61 	Linker.link(atk_component_get_size, "atk_component_get_size", LIBRARY_ATK);
62 	Linker.link(atk_component_grab_focus, "atk_component_grab_focus", LIBRARY_ATK);
63 	Linker.link(atk_component_ref_accessible_at_point, "atk_component_ref_accessible_at_point", LIBRARY_ATK);
64 	Linker.link(atk_component_remove_focus_handler, "atk_component_remove_focus_handler", LIBRARY_ATK);
65 	Linker.link(atk_component_scroll_to, "atk_component_scroll_to", LIBRARY_ATK);
66 	Linker.link(atk_component_scroll_to_point, "atk_component_scroll_to_point", LIBRARY_ATK);
67 	Linker.link(atk_component_set_extents, "atk_component_set_extents", LIBRARY_ATK);
68 	Linker.link(atk_component_set_position, "atk_component_set_position", LIBRARY_ATK);
69 	Linker.link(atk_component_set_size, "atk_component_set_size", LIBRARY_ATK);
70 
71 	// atk.Document
72 
73 	Linker.link(atk_document_get_type, "atk_document_get_type", LIBRARY_ATK);
74 	Linker.link(atk_document_get_attribute_value, "atk_document_get_attribute_value", LIBRARY_ATK);
75 	Linker.link(atk_document_get_attributes, "atk_document_get_attributes", LIBRARY_ATK);
76 	Linker.link(atk_document_get_current_page_number, "atk_document_get_current_page_number", LIBRARY_ATK);
77 	Linker.link(atk_document_get_document, "atk_document_get_document", LIBRARY_ATK);
78 	Linker.link(atk_document_get_document_type, "atk_document_get_document_type", LIBRARY_ATK);
79 	Linker.link(atk_document_get_locale, "atk_document_get_locale", LIBRARY_ATK);
80 	Linker.link(atk_document_get_page_count, "atk_document_get_page_count", LIBRARY_ATK);
81 	Linker.link(atk_document_set_attribute_value, "atk_document_set_attribute_value", LIBRARY_ATK);
82 
83 	// atk.EditableText
84 
85 	Linker.link(atk_editable_text_get_type, "atk_editable_text_get_type", LIBRARY_ATK);
86 	Linker.link(atk_editable_text_copy_text, "atk_editable_text_copy_text", LIBRARY_ATK);
87 	Linker.link(atk_editable_text_cut_text, "atk_editable_text_cut_text", LIBRARY_ATK);
88 	Linker.link(atk_editable_text_delete_text, "atk_editable_text_delete_text", LIBRARY_ATK);
89 	Linker.link(atk_editable_text_insert_text, "atk_editable_text_insert_text", LIBRARY_ATK);
90 	Linker.link(atk_editable_text_paste_text, "atk_editable_text_paste_text", LIBRARY_ATK);
91 	Linker.link(atk_editable_text_set_run_attributes, "atk_editable_text_set_run_attributes", LIBRARY_ATK);
92 	Linker.link(atk_editable_text_set_text_contents, "atk_editable_text_set_text_contents", LIBRARY_ATK);
93 
94 	// atk.GObjectAccessible
95 
96 	Linker.link(atk_gobject_accessible_get_type, "atk_gobject_accessible_get_type", LIBRARY_ATK);
97 	Linker.link(atk_gobject_accessible_for_object, "atk_gobject_accessible_for_object", LIBRARY_ATK);
98 	Linker.link(atk_gobject_accessible_get_object, "atk_gobject_accessible_get_object", LIBRARY_ATK);
99 
100 	// atk.Hyperlink
101 
102 	Linker.link(atk_hyperlink_get_type, "atk_hyperlink_get_type", LIBRARY_ATK);
103 	Linker.link(atk_hyperlink_get_end_index, "atk_hyperlink_get_end_index", LIBRARY_ATK);
104 	Linker.link(atk_hyperlink_get_n_anchors, "atk_hyperlink_get_n_anchors", LIBRARY_ATK);
105 	Linker.link(atk_hyperlink_get_object, "atk_hyperlink_get_object", LIBRARY_ATK);
106 	Linker.link(atk_hyperlink_get_start_index, "atk_hyperlink_get_start_index", LIBRARY_ATK);
107 	Linker.link(atk_hyperlink_get_uri, "atk_hyperlink_get_uri", LIBRARY_ATK);
108 	Linker.link(atk_hyperlink_is_inline, "atk_hyperlink_is_inline", LIBRARY_ATK);
109 	Linker.link(atk_hyperlink_is_selected_link, "atk_hyperlink_is_selected_link", LIBRARY_ATK);
110 	Linker.link(atk_hyperlink_is_valid, "atk_hyperlink_is_valid", LIBRARY_ATK);
111 
112 	// atk.HyperlinkImpl
113 
114 	Linker.link(atk_hyperlink_impl_get_type, "atk_hyperlink_impl_get_type", LIBRARY_ATK);
115 	Linker.link(atk_hyperlink_impl_get_hyperlink, "atk_hyperlink_impl_get_hyperlink", LIBRARY_ATK);
116 
117 	// atk.Hypertext
118 
119 	Linker.link(atk_hypertext_get_type, "atk_hypertext_get_type", LIBRARY_ATK);
120 	Linker.link(atk_hypertext_get_link, "atk_hypertext_get_link", LIBRARY_ATK);
121 	Linker.link(atk_hypertext_get_link_index, "atk_hypertext_get_link_index", LIBRARY_ATK);
122 	Linker.link(atk_hypertext_get_n_links, "atk_hypertext_get_n_links", LIBRARY_ATK);
123 
124 	// atk.Image
125 
126 	Linker.link(atk_image_get_type, "atk_image_get_type", LIBRARY_ATK);
127 	Linker.link(atk_image_get_image_description, "atk_image_get_image_description", LIBRARY_ATK);
128 	Linker.link(atk_image_get_image_locale, "atk_image_get_image_locale", LIBRARY_ATK);
129 	Linker.link(atk_image_get_image_position, "atk_image_get_image_position", LIBRARY_ATK);
130 	Linker.link(atk_image_get_image_size, "atk_image_get_image_size", LIBRARY_ATK);
131 	Linker.link(atk_image_set_image_description, "atk_image_set_image_description", LIBRARY_ATK);
132 
133 	// atk.Implementor
134 
135 	Linker.link(atk_implementor_ref_accessible, "atk_implementor_ref_accessible", LIBRARY_ATK);
136 	Linker.link(atk_implementor_get_type, "atk_implementor_get_type", LIBRARY_ATK);
137 
138 	// atk.Misc
139 
140 	Linker.link(atk_misc_get_type, "atk_misc_get_type", LIBRARY_ATK);
141 	Linker.link(atk_misc_get_instance, "atk_misc_get_instance", LIBRARY_ATK);
142 	Linker.link(atk_misc_threads_enter, "atk_misc_threads_enter", LIBRARY_ATK);
143 	Linker.link(atk_misc_threads_leave, "atk_misc_threads_leave", LIBRARY_ATK);
144 
145 	// atk.NoOpObject
146 
147 	Linker.link(atk_no_op_object_get_type, "atk_no_op_object_get_type", LIBRARY_ATK);
148 	Linker.link(atk_no_op_object_new, "atk_no_op_object_new", LIBRARY_ATK);
149 
150 	// atk.NoOpObjectFactory
151 
152 	Linker.link(atk_no_op_object_factory_get_type, "atk_no_op_object_factory_get_type", LIBRARY_ATK);
153 	Linker.link(atk_no_op_object_factory_new, "atk_no_op_object_factory_new", LIBRARY_ATK);
154 
155 	// atk.ObjectAtk
156 
157 	Linker.link(atk_object_get_type, "atk_object_get_type", LIBRARY_ATK);
158 	Linker.link(atk_object_add_relationship, "atk_object_add_relationship", LIBRARY_ATK);
159 	Linker.link(atk_object_connect_property_change_handler, "atk_object_connect_property_change_handler", LIBRARY_ATK);
160 	Linker.link(atk_object_get_accessible_id, "atk_object_get_accessible_id", LIBRARY_ATK);
161 	Linker.link(atk_object_get_attributes, "atk_object_get_attributes", LIBRARY_ATK);
162 	Linker.link(atk_object_get_description, "atk_object_get_description", LIBRARY_ATK);
163 	Linker.link(atk_object_get_index_in_parent, "atk_object_get_index_in_parent", LIBRARY_ATK);
164 	Linker.link(atk_object_get_layer, "atk_object_get_layer", LIBRARY_ATK);
165 	Linker.link(atk_object_get_mdi_zorder, "atk_object_get_mdi_zorder", LIBRARY_ATK);
166 	Linker.link(atk_object_get_n_accessible_children, "atk_object_get_n_accessible_children", LIBRARY_ATK);
167 	Linker.link(atk_object_get_name, "atk_object_get_name", LIBRARY_ATK);
168 	Linker.link(atk_object_get_object_locale, "atk_object_get_object_locale", LIBRARY_ATK);
169 	Linker.link(atk_object_get_parent, "atk_object_get_parent", LIBRARY_ATK);
170 	Linker.link(atk_object_get_role, "atk_object_get_role", LIBRARY_ATK);
171 	Linker.link(atk_object_initialize, "atk_object_initialize", LIBRARY_ATK);
172 	Linker.link(atk_object_notify_state_change, "atk_object_notify_state_change", LIBRARY_ATK);
173 	Linker.link(atk_object_peek_parent, "atk_object_peek_parent", LIBRARY_ATK);
174 	Linker.link(atk_object_ref_accessible_child, "atk_object_ref_accessible_child", LIBRARY_ATK);
175 	Linker.link(atk_object_ref_relation_set, "atk_object_ref_relation_set", LIBRARY_ATK);
176 	Linker.link(atk_object_ref_state_set, "atk_object_ref_state_set", LIBRARY_ATK);
177 	Linker.link(atk_object_remove_property_change_handler, "atk_object_remove_property_change_handler", LIBRARY_ATK);
178 	Linker.link(atk_object_remove_relationship, "atk_object_remove_relationship", LIBRARY_ATK);
179 	Linker.link(atk_object_set_accessible_id, "atk_object_set_accessible_id", LIBRARY_ATK);
180 	Linker.link(atk_object_set_description, "atk_object_set_description", LIBRARY_ATK);
181 	Linker.link(atk_object_set_name, "atk_object_set_name", LIBRARY_ATK);
182 	Linker.link(atk_object_set_parent, "atk_object_set_parent", LIBRARY_ATK);
183 	Linker.link(atk_object_set_role, "atk_object_set_role", LIBRARY_ATK);
184 	Linker.link(atk_role_for_name, "atk_role_for_name", LIBRARY_ATK);
185 	Linker.link(atk_role_get_localized_name, "atk_role_get_localized_name", LIBRARY_ATK);
186 	Linker.link(atk_role_get_name, "atk_role_get_name", LIBRARY_ATK);
187 	Linker.link(atk_role_register, "atk_role_register", LIBRARY_ATK);
188 
189 	// atk.ObjectFactory
190 
191 	Linker.link(atk_object_factory_get_type, "atk_object_factory_get_type", LIBRARY_ATK);
192 	Linker.link(atk_object_factory_create_accessible, "atk_object_factory_create_accessible", LIBRARY_ATK);
193 	Linker.link(atk_object_factory_get_accessible_type, "atk_object_factory_get_accessible_type", LIBRARY_ATK);
194 	Linker.link(atk_object_factory_invalidate, "atk_object_factory_invalidate", LIBRARY_ATK);
195 
196 	// atk.Plug
197 
198 	Linker.link(atk_plug_get_type, "atk_plug_get_type", LIBRARY_ATK);
199 	Linker.link(atk_plug_new, "atk_plug_new", LIBRARY_ATK);
200 	Linker.link(atk_plug_get_id, "atk_plug_get_id", LIBRARY_ATK);
201 
202 	// atk.Range
203 
204 	Linker.link(atk_range_get_type, "atk_range_get_type", LIBRARY_ATK);
205 	Linker.link(atk_range_new, "atk_range_new", LIBRARY_ATK);
206 	Linker.link(atk_range_copy, "atk_range_copy", LIBRARY_ATK);
207 	Linker.link(atk_range_free, "atk_range_free", LIBRARY_ATK);
208 	Linker.link(atk_range_get_description, "atk_range_get_description", LIBRARY_ATK);
209 	Linker.link(atk_range_get_lower_limit, "atk_range_get_lower_limit", LIBRARY_ATK);
210 	Linker.link(atk_range_get_upper_limit, "atk_range_get_upper_limit", LIBRARY_ATK);
211 
212 	// atk.Rectangle
213 
214 	Linker.link(atk_rectangle_get_type, "atk_rectangle_get_type", LIBRARY_ATK);
215 
216 	// atk.Registry
217 
218 	Linker.link(atk_registry_get_type, "atk_registry_get_type", LIBRARY_ATK);
219 	Linker.link(atk_registry_get_factory, "atk_registry_get_factory", LIBRARY_ATK);
220 	Linker.link(atk_registry_get_factory_type, "atk_registry_get_factory_type", LIBRARY_ATK);
221 	Linker.link(atk_registry_set_factory_type, "atk_registry_set_factory_type", LIBRARY_ATK);
222 	Linker.link(atk_get_default_registry, "atk_get_default_registry", LIBRARY_ATK);
223 
224 	// atk.Relation
225 
226 	Linker.link(atk_relation_get_type, "atk_relation_get_type", LIBRARY_ATK);
227 	Linker.link(atk_relation_new, "atk_relation_new", LIBRARY_ATK);
228 	Linker.link(atk_relation_add_target, "atk_relation_add_target", LIBRARY_ATK);
229 	Linker.link(atk_relation_get_relation_type, "atk_relation_get_relation_type", LIBRARY_ATK);
230 	Linker.link(atk_relation_get_target, "atk_relation_get_target", LIBRARY_ATK);
231 	Linker.link(atk_relation_remove_target, "atk_relation_remove_target", LIBRARY_ATK);
232 	Linker.link(atk_relation_type_for_name, "atk_relation_type_for_name", LIBRARY_ATK);
233 	Linker.link(atk_relation_type_get_name, "atk_relation_type_get_name", LIBRARY_ATK);
234 	Linker.link(atk_relation_type_register, "atk_relation_type_register", LIBRARY_ATK);
235 
236 	// atk.RelationSet
237 
238 	Linker.link(atk_relation_set_get_type, "atk_relation_set_get_type", LIBRARY_ATK);
239 	Linker.link(atk_relation_set_new, "atk_relation_set_new", LIBRARY_ATK);
240 	Linker.link(atk_relation_set_add, "atk_relation_set_add", LIBRARY_ATK);
241 	Linker.link(atk_relation_set_add_relation_by_type, "atk_relation_set_add_relation_by_type", LIBRARY_ATK);
242 	Linker.link(atk_relation_set_contains, "atk_relation_set_contains", LIBRARY_ATK);
243 	Linker.link(atk_relation_set_contains_target, "atk_relation_set_contains_target", LIBRARY_ATK);
244 	Linker.link(atk_relation_set_get_n_relations, "atk_relation_set_get_n_relations", LIBRARY_ATK);
245 	Linker.link(atk_relation_set_get_relation, "atk_relation_set_get_relation", LIBRARY_ATK);
246 	Linker.link(atk_relation_set_get_relation_by_type, "atk_relation_set_get_relation_by_type", LIBRARY_ATK);
247 	Linker.link(atk_relation_set_remove, "atk_relation_set_remove", LIBRARY_ATK);
248 
249 	// atk.Selection
250 
251 	Linker.link(atk_selection_get_type, "atk_selection_get_type", LIBRARY_ATK);
252 	Linker.link(atk_selection_add_selection, "atk_selection_add_selection", LIBRARY_ATK);
253 	Linker.link(atk_selection_clear_selection, "atk_selection_clear_selection", LIBRARY_ATK);
254 	Linker.link(atk_selection_get_selection_count, "atk_selection_get_selection_count", LIBRARY_ATK);
255 	Linker.link(atk_selection_is_child_selected, "atk_selection_is_child_selected", LIBRARY_ATK);
256 	Linker.link(atk_selection_ref_selection, "atk_selection_ref_selection", LIBRARY_ATK);
257 	Linker.link(atk_selection_remove_selection, "atk_selection_remove_selection", LIBRARY_ATK);
258 	Linker.link(atk_selection_select_all_selection, "atk_selection_select_all_selection", LIBRARY_ATK);
259 
260 	// atk.Socket
261 
262 	Linker.link(atk_socket_get_type, "atk_socket_get_type", LIBRARY_ATK);
263 	Linker.link(atk_socket_new, "atk_socket_new", LIBRARY_ATK);
264 	Linker.link(atk_socket_embed, "atk_socket_embed", LIBRARY_ATK);
265 	Linker.link(atk_socket_is_occupied, "atk_socket_is_occupied", LIBRARY_ATK);
266 
267 	// atk.StateSet
268 
269 	Linker.link(atk_state_set_get_type, "atk_state_set_get_type", LIBRARY_ATK);
270 	Linker.link(atk_state_set_new, "atk_state_set_new", LIBRARY_ATK);
271 	Linker.link(atk_state_set_add_state, "atk_state_set_add_state", LIBRARY_ATK);
272 	Linker.link(atk_state_set_add_states, "atk_state_set_add_states", LIBRARY_ATK);
273 	Linker.link(atk_state_set_and_sets, "atk_state_set_and_sets", LIBRARY_ATK);
274 	Linker.link(atk_state_set_clear_states, "atk_state_set_clear_states", LIBRARY_ATK);
275 	Linker.link(atk_state_set_contains_state, "atk_state_set_contains_state", LIBRARY_ATK);
276 	Linker.link(atk_state_set_contains_states, "atk_state_set_contains_states", LIBRARY_ATK);
277 	Linker.link(atk_state_set_is_empty, "atk_state_set_is_empty", LIBRARY_ATK);
278 	Linker.link(atk_state_set_or_sets, "atk_state_set_or_sets", LIBRARY_ATK);
279 	Linker.link(atk_state_set_remove_state, "atk_state_set_remove_state", LIBRARY_ATK);
280 	Linker.link(atk_state_set_xor_sets, "atk_state_set_xor_sets", LIBRARY_ATK);
281 
282 	// atk.StreamableContent
283 
284 	Linker.link(atk_streamable_content_get_type, "atk_streamable_content_get_type", LIBRARY_ATK);
285 	Linker.link(atk_streamable_content_get_mime_type, "atk_streamable_content_get_mime_type", LIBRARY_ATK);
286 	Linker.link(atk_streamable_content_get_n_mime_types, "atk_streamable_content_get_n_mime_types", LIBRARY_ATK);
287 	Linker.link(atk_streamable_content_get_stream, "atk_streamable_content_get_stream", LIBRARY_ATK);
288 	Linker.link(atk_streamable_content_get_uri, "atk_streamable_content_get_uri", LIBRARY_ATK);
289 
290 	// atk.Table
291 
292 	Linker.link(atk_table_get_type, "atk_table_get_type", LIBRARY_ATK);
293 	Linker.link(atk_table_add_column_selection, "atk_table_add_column_selection", LIBRARY_ATK);
294 	Linker.link(atk_table_add_row_selection, "atk_table_add_row_selection", LIBRARY_ATK);
295 	Linker.link(atk_table_get_caption, "atk_table_get_caption", LIBRARY_ATK);
296 	Linker.link(atk_table_get_column_at_index, "atk_table_get_column_at_index", LIBRARY_ATK);
297 	Linker.link(atk_table_get_column_description, "atk_table_get_column_description", LIBRARY_ATK);
298 	Linker.link(atk_table_get_column_extent_at, "atk_table_get_column_extent_at", LIBRARY_ATK);
299 	Linker.link(atk_table_get_column_header, "atk_table_get_column_header", LIBRARY_ATK);
300 	Linker.link(atk_table_get_index_at, "atk_table_get_index_at", LIBRARY_ATK);
301 	Linker.link(atk_table_get_n_columns, "atk_table_get_n_columns", LIBRARY_ATK);
302 	Linker.link(atk_table_get_n_rows, "atk_table_get_n_rows", LIBRARY_ATK);
303 	Linker.link(atk_table_get_row_at_index, "atk_table_get_row_at_index", LIBRARY_ATK);
304 	Linker.link(atk_table_get_row_description, "atk_table_get_row_description", LIBRARY_ATK);
305 	Linker.link(atk_table_get_row_extent_at, "atk_table_get_row_extent_at", LIBRARY_ATK);
306 	Linker.link(atk_table_get_row_header, "atk_table_get_row_header", LIBRARY_ATK);
307 	Linker.link(atk_table_get_selected_columns, "atk_table_get_selected_columns", LIBRARY_ATK);
308 	Linker.link(atk_table_get_selected_rows, "atk_table_get_selected_rows", LIBRARY_ATK);
309 	Linker.link(atk_table_get_summary, "atk_table_get_summary", LIBRARY_ATK);
310 	Linker.link(atk_table_is_column_selected, "atk_table_is_column_selected", LIBRARY_ATK);
311 	Linker.link(atk_table_is_row_selected, "atk_table_is_row_selected", LIBRARY_ATK);
312 	Linker.link(atk_table_is_selected, "atk_table_is_selected", LIBRARY_ATK);
313 	Linker.link(atk_table_ref_at, "atk_table_ref_at", LIBRARY_ATK);
314 	Linker.link(atk_table_remove_column_selection, "atk_table_remove_column_selection", LIBRARY_ATK);
315 	Linker.link(atk_table_remove_row_selection, "atk_table_remove_row_selection", LIBRARY_ATK);
316 	Linker.link(atk_table_set_caption, "atk_table_set_caption", LIBRARY_ATK);
317 	Linker.link(atk_table_set_column_description, "atk_table_set_column_description", LIBRARY_ATK);
318 	Linker.link(atk_table_set_column_header, "atk_table_set_column_header", LIBRARY_ATK);
319 	Linker.link(atk_table_set_row_description, "atk_table_set_row_description", LIBRARY_ATK);
320 	Linker.link(atk_table_set_row_header, "atk_table_set_row_header", LIBRARY_ATK);
321 	Linker.link(atk_table_set_summary, "atk_table_set_summary", LIBRARY_ATK);
322 
323 	// atk.TableCell
324 
325 	Linker.link(atk_table_cell_get_type, "atk_table_cell_get_type", LIBRARY_ATK);
326 	Linker.link(atk_table_cell_get_column_header_cells, "atk_table_cell_get_column_header_cells", LIBRARY_ATK);
327 	Linker.link(atk_table_cell_get_column_span, "atk_table_cell_get_column_span", LIBRARY_ATK);
328 	Linker.link(atk_table_cell_get_position, "atk_table_cell_get_position", LIBRARY_ATK);
329 	Linker.link(atk_table_cell_get_row_column_span, "atk_table_cell_get_row_column_span", LIBRARY_ATK);
330 	Linker.link(atk_table_cell_get_row_header_cells, "atk_table_cell_get_row_header_cells", LIBRARY_ATK);
331 	Linker.link(atk_table_cell_get_row_span, "atk_table_cell_get_row_span", LIBRARY_ATK);
332 	Linker.link(atk_table_cell_get_table, "atk_table_cell_get_table", LIBRARY_ATK);
333 
334 	// atk.Text
335 
336 	Linker.link(atk_text_get_type, "atk_text_get_type", LIBRARY_ATK);
337 	Linker.link(atk_text_free_ranges, "atk_text_free_ranges", LIBRARY_ATK);
338 	Linker.link(atk_text_add_selection, "atk_text_add_selection", LIBRARY_ATK);
339 	Linker.link(atk_text_get_bounded_ranges, "atk_text_get_bounded_ranges", LIBRARY_ATK);
340 	Linker.link(atk_text_get_caret_offset, "atk_text_get_caret_offset", LIBRARY_ATK);
341 	Linker.link(atk_text_get_character_at_offset, "atk_text_get_character_at_offset", LIBRARY_ATK);
342 	Linker.link(atk_text_get_character_count, "atk_text_get_character_count", LIBRARY_ATK);
343 	Linker.link(atk_text_get_character_extents, "atk_text_get_character_extents", LIBRARY_ATK);
344 	Linker.link(atk_text_get_default_attributes, "atk_text_get_default_attributes", LIBRARY_ATK);
345 	Linker.link(atk_text_get_n_selections, "atk_text_get_n_selections", LIBRARY_ATK);
346 	Linker.link(atk_text_get_offset_at_point, "atk_text_get_offset_at_point", LIBRARY_ATK);
347 	Linker.link(atk_text_get_range_extents, "atk_text_get_range_extents", LIBRARY_ATK);
348 	Linker.link(atk_text_get_run_attributes, "atk_text_get_run_attributes", LIBRARY_ATK);
349 	Linker.link(atk_text_get_selection, "atk_text_get_selection", LIBRARY_ATK);
350 	Linker.link(atk_text_get_string_at_offset, "atk_text_get_string_at_offset", LIBRARY_ATK);
351 	Linker.link(atk_text_get_text, "atk_text_get_text", LIBRARY_ATK);
352 	Linker.link(atk_text_get_text_after_offset, "atk_text_get_text_after_offset", LIBRARY_ATK);
353 	Linker.link(atk_text_get_text_at_offset, "atk_text_get_text_at_offset", LIBRARY_ATK);
354 	Linker.link(atk_text_get_text_before_offset, "atk_text_get_text_before_offset", LIBRARY_ATK);
355 	Linker.link(atk_text_remove_selection, "atk_text_remove_selection", LIBRARY_ATK);
356 	Linker.link(atk_text_scroll_substring_to, "atk_text_scroll_substring_to", LIBRARY_ATK);
357 	Linker.link(atk_text_scroll_substring_to_point, "atk_text_scroll_substring_to_point", LIBRARY_ATK);
358 	Linker.link(atk_text_set_caret_offset, "atk_text_set_caret_offset", LIBRARY_ATK);
359 	Linker.link(atk_text_set_selection, "atk_text_set_selection", LIBRARY_ATK);
360 	Linker.link(atk_attribute_set_free, "atk_attribute_set_free", LIBRARY_ATK);
361 	Linker.link(atk_text_attribute_for_name, "atk_text_attribute_for_name", LIBRARY_ATK);
362 	Linker.link(atk_text_attribute_get_name, "atk_text_attribute_get_name", LIBRARY_ATK);
363 	Linker.link(atk_text_attribute_get_value, "atk_text_attribute_get_value", LIBRARY_ATK);
364 	Linker.link(atk_text_attribute_register, "atk_text_attribute_register", LIBRARY_ATK);
365 
366 	// atk.TextRange
367 
368 	Linker.link(atk_text_range_get_type, "atk_text_range_get_type", LIBRARY_ATK);
369 
370 	// atk.Util
371 
372 	Linker.link(atk_util_get_type, "atk_util_get_type", LIBRARY_ATK);
373 	Linker.link(atk_add_focus_tracker, "atk_add_focus_tracker", LIBRARY_ATK);
374 	Linker.link(atk_add_global_event_listener, "atk_add_global_event_listener", LIBRARY_ATK);
375 	Linker.link(atk_add_key_event_listener, "atk_add_key_event_listener", LIBRARY_ATK);
376 	Linker.link(atk_focus_tracker_init, "atk_focus_tracker_init", LIBRARY_ATK);
377 	Linker.link(atk_focus_tracker_notify, "atk_focus_tracker_notify", LIBRARY_ATK);
378 	Linker.link(atk_get_focus_object, "atk_get_focus_object", LIBRARY_ATK);
379 	Linker.link(atk_get_root, "atk_get_root", LIBRARY_ATK);
380 	Linker.link(atk_get_toolkit_name, "atk_get_toolkit_name", LIBRARY_ATK);
381 	Linker.link(atk_remove_focus_tracker, "atk_remove_focus_tracker", LIBRARY_ATK);
382 	Linker.link(atk_remove_global_event_listener, "atk_remove_global_event_listener", LIBRARY_ATK);
383 	Linker.link(atk_remove_key_event_listener, "atk_remove_key_event_listener", LIBRARY_ATK);
384 
385 	// atk.Value
386 
387 	Linker.link(atk_value_get_type, "atk_value_get_type", LIBRARY_ATK);
388 	Linker.link(atk_value_get_current_value, "atk_value_get_current_value", LIBRARY_ATK);
389 	Linker.link(atk_value_get_increment, "atk_value_get_increment", LIBRARY_ATK);
390 	Linker.link(atk_value_get_maximum_value, "atk_value_get_maximum_value", LIBRARY_ATK);
391 	Linker.link(atk_value_get_minimum_increment, "atk_value_get_minimum_increment", LIBRARY_ATK);
392 	Linker.link(atk_value_get_minimum_value, "atk_value_get_minimum_value", LIBRARY_ATK);
393 	Linker.link(atk_value_get_range, "atk_value_get_range", LIBRARY_ATK);
394 	Linker.link(atk_value_get_sub_ranges, "atk_value_get_sub_ranges", LIBRARY_ATK);
395 	Linker.link(atk_value_get_value_and_text, "atk_value_get_value_and_text", LIBRARY_ATK);
396 	Linker.link(atk_value_set_current_value, "atk_value_set_current_value", LIBRARY_ATK);
397 	Linker.link(atk_value_set_value, "atk_value_set_value", LIBRARY_ATK);
398 
399 	// atk.Window
400 
401 	Linker.link(atk_window_get_type, "atk_window_get_type", LIBRARY_ATK);
402 
403 	// atk.Version
404 
405 	Linker.link(atk_get_binary_age, "atk_get_binary_age", LIBRARY_ATK);
406 	Linker.link(atk_get_interface_age, "atk_get_interface_age", LIBRARY_ATK);
407 	Linker.link(atk_get_major_version, "atk_get_major_version", LIBRARY_ATK);
408 	Linker.link(atk_get_micro_version, "atk_get_micro_version", LIBRARY_ATK);
409 	Linker.link(atk_get_minor_version, "atk_get_minor_version", LIBRARY_ATK);
410 	Linker.link(atk_get_toolkit_version, "atk_get_toolkit_version", LIBRARY_ATK);
411 	Linker.link(atk_get_version, "atk_get_version", LIBRARY_ATK);
412 
413 	// atk.State
414 
415 	Linker.link(atk_state_type_for_name, "atk_state_type_for_name", LIBRARY_ATK);
416 	Linker.link(atk_state_type_get_name, "atk_state_type_get_name", LIBRARY_ATK);
417 	Linker.link(atk_state_type_register, "atk_state_type_register", LIBRARY_ATK);
418 }
419 
420 __gshared extern(C)
421 {
422 
423 	// atk.Action
424 
425 	GType function() c_atk_action_get_type;
426 	int function(AtkAction* action, int i) c_atk_action_do_action;
427 	const(char)* function(AtkAction* action, int i) c_atk_action_get_description;
428 	const(char)* function(AtkAction* action, int i) c_atk_action_get_keybinding;
429 	const(char)* function(AtkAction* action, int i) c_atk_action_get_localized_name;
430 	int function(AtkAction* action) c_atk_action_get_n_actions;
431 	const(char)* function(AtkAction* action, int i) c_atk_action_get_name;
432 	int function(AtkAction* action, int i, const(char)* desc) c_atk_action_set_description;
433 
434 	// atk.Component
435 
436 	GType function() c_atk_component_get_type;
437 	uint function(AtkComponent* component, AtkFocusHandler handler) c_atk_component_add_focus_handler;
438 	int function(AtkComponent* component, int x, int y, AtkCoordType coordType) c_atk_component_contains;
439 	double function(AtkComponent* component) c_atk_component_get_alpha;
440 	void function(AtkComponent* component, int* x, int* y, int* width, int* height, AtkCoordType coordType) c_atk_component_get_extents;
441 	AtkLayer function(AtkComponent* component) c_atk_component_get_layer;
442 	int function(AtkComponent* component) c_atk_component_get_mdi_zorder;
443 	void function(AtkComponent* component, int* x, int* y, AtkCoordType coordType) c_atk_component_get_position;
444 	void function(AtkComponent* component, int* width, int* height) c_atk_component_get_size;
445 	int function(AtkComponent* component) c_atk_component_grab_focus;
446 	AtkObject* function(AtkComponent* component, int x, int y, AtkCoordType coordType) c_atk_component_ref_accessible_at_point;
447 	void function(AtkComponent* component, uint handlerId) c_atk_component_remove_focus_handler;
448 	int function(AtkComponent* component, AtkScrollType type) c_atk_component_scroll_to;
449 	int function(AtkComponent* component, AtkCoordType coords, int x, int y) c_atk_component_scroll_to_point;
450 	int function(AtkComponent* component, int x, int y, int width, int height, AtkCoordType coordType) c_atk_component_set_extents;
451 	int function(AtkComponent* component, int x, int y, AtkCoordType coordType) c_atk_component_set_position;
452 	int function(AtkComponent* component, int width, int height) c_atk_component_set_size;
453 
454 	// atk.Document
455 
456 	GType function() c_atk_document_get_type;
457 	const(char)* function(AtkDocument* document, const(char)* attributeName) c_atk_document_get_attribute_value;
458 	AtkAttributeSet* function(AtkDocument* document) c_atk_document_get_attributes;
459 	int function(AtkDocument* document) c_atk_document_get_current_page_number;
460 	void* function(AtkDocument* document) c_atk_document_get_document;
461 	const(char)* function(AtkDocument* document) c_atk_document_get_document_type;
462 	const(char)* function(AtkDocument* document) c_atk_document_get_locale;
463 	int function(AtkDocument* document) c_atk_document_get_page_count;
464 	int function(AtkDocument* document, const(char)* attributeName, const(char)* attributeValue) c_atk_document_set_attribute_value;
465 
466 	// atk.EditableText
467 
468 	GType function() c_atk_editable_text_get_type;
469 	void function(AtkEditableText* text, int startPos, int endPos) c_atk_editable_text_copy_text;
470 	void function(AtkEditableText* text, int startPos, int endPos) c_atk_editable_text_cut_text;
471 	void function(AtkEditableText* text, int startPos, int endPos) c_atk_editable_text_delete_text;
472 	void function(AtkEditableText* text, const(char)* string_, int length, int* position) c_atk_editable_text_insert_text;
473 	void function(AtkEditableText* text, int position) c_atk_editable_text_paste_text;
474 	int function(AtkEditableText* text, AtkAttributeSet* attribSet, int startOffset, int endOffset) c_atk_editable_text_set_run_attributes;
475 	void function(AtkEditableText* text, const(char)* string_) c_atk_editable_text_set_text_contents;
476 
477 	// atk.GObjectAccessible
478 
479 	GType function() c_atk_gobject_accessible_get_type;
480 	AtkObject* function(GObject* obj) c_atk_gobject_accessible_for_object;
481 	GObject* function(AtkGObjectAccessible* obj) c_atk_gobject_accessible_get_object;
482 
483 	// atk.Hyperlink
484 
485 	GType function() c_atk_hyperlink_get_type;
486 	int function(AtkHyperlink* link) c_atk_hyperlink_get_end_index;
487 	int function(AtkHyperlink* link) c_atk_hyperlink_get_n_anchors;
488 	AtkObject* function(AtkHyperlink* link, int i) c_atk_hyperlink_get_object;
489 	int function(AtkHyperlink* link) c_atk_hyperlink_get_start_index;
490 	char* function(AtkHyperlink* link, int i) c_atk_hyperlink_get_uri;
491 	int function(AtkHyperlink* link) c_atk_hyperlink_is_inline;
492 	int function(AtkHyperlink* link) c_atk_hyperlink_is_selected_link;
493 	int function(AtkHyperlink* link) c_atk_hyperlink_is_valid;
494 
495 	// atk.HyperlinkImpl
496 
497 	GType function() c_atk_hyperlink_impl_get_type;
498 	AtkHyperlink* function(AtkHyperlinkImpl* impl) c_atk_hyperlink_impl_get_hyperlink;
499 
500 	// atk.Hypertext
501 
502 	GType function() c_atk_hypertext_get_type;
503 	AtkHyperlink* function(AtkHypertext* hypertext, int linkIndex) c_atk_hypertext_get_link;
504 	int function(AtkHypertext* hypertext, int charIndex) c_atk_hypertext_get_link_index;
505 	int function(AtkHypertext* hypertext) c_atk_hypertext_get_n_links;
506 
507 	// atk.Image
508 
509 	GType function() c_atk_image_get_type;
510 	const(char)* function(AtkImage* image) c_atk_image_get_image_description;
511 	const(char)* function(AtkImage* image) c_atk_image_get_image_locale;
512 	void function(AtkImage* image, int* x, int* y, AtkCoordType coordType) c_atk_image_get_image_position;
513 	void function(AtkImage* image, int* width, int* height) c_atk_image_get_image_size;
514 	int function(AtkImage* image, const(char)* description) c_atk_image_set_image_description;
515 
516 	// atk.Implementor
517 
518 	AtkObject* function(AtkImplementor* implementor) c_atk_implementor_ref_accessible;
519 	GType function() c_atk_implementor_get_type;
520 
521 	// atk.Misc
522 
523 	GType function() c_atk_misc_get_type;
524 	AtkMisc* function() c_atk_misc_get_instance;
525 	void function(AtkMisc* misc) c_atk_misc_threads_enter;
526 	void function(AtkMisc* misc) c_atk_misc_threads_leave;
527 
528 	// atk.NoOpObject
529 
530 	GType function() c_atk_no_op_object_get_type;
531 	AtkObject* function(GObject* obj) c_atk_no_op_object_new;
532 
533 	// atk.NoOpObjectFactory
534 
535 	GType function() c_atk_no_op_object_factory_get_type;
536 	AtkObjectFactory* function() c_atk_no_op_object_factory_new;
537 
538 	// atk.ObjectAtk
539 
540 	GType function() c_atk_object_get_type;
541 	int function(AtkObject* object, AtkRelationType relationship, AtkObject* target) c_atk_object_add_relationship;
542 	uint function(AtkObject* accessible, AtkPropertyChangeHandler* handler) c_atk_object_connect_property_change_handler;
543 	const(char)* function(AtkObject* accessible) c_atk_object_get_accessible_id;
544 	AtkAttributeSet* function(AtkObject* accessible) c_atk_object_get_attributes;
545 	const(char)* function(AtkObject* accessible) c_atk_object_get_description;
546 	int function(AtkObject* accessible) c_atk_object_get_index_in_parent;
547 	AtkLayer function(AtkObject* accessible) c_atk_object_get_layer;
548 	int function(AtkObject* accessible) c_atk_object_get_mdi_zorder;
549 	int function(AtkObject* accessible) c_atk_object_get_n_accessible_children;
550 	const(char)* function(AtkObject* accessible) c_atk_object_get_name;
551 	const(char)* function(AtkObject* accessible) c_atk_object_get_object_locale;
552 	AtkObject* function(AtkObject* accessible) c_atk_object_get_parent;
553 	AtkRole function(AtkObject* accessible) c_atk_object_get_role;
554 	void function(AtkObject* accessible, void* data) c_atk_object_initialize;
555 	void function(AtkObject* accessible, AtkState state, int value) c_atk_object_notify_state_change;
556 	AtkObject* function(AtkObject* accessible) c_atk_object_peek_parent;
557 	AtkObject* function(AtkObject* accessible, int i) c_atk_object_ref_accessible_child;
558 	AtkRelationSet* function(AtkObject* accessible) c_atk_object_ref_relation_set;
559 	AtkStateSet* function(AtkObject* accessible) c_atk_object_ref_state_set;
560 	void function(AtkObject* accessible, uint handlerId) c_atk_object_remove_property_change_handler;
561 	int function(AtkObject* object, AtkRelationType relationship, AtkObject* target) c_atk_object_remove_relationship;
562 	void function(AtkObject* accessible, const(char)* name) c_atk_object_set_accessible_id;
563 	void function(AtkObject* accessible, const(char)* description) c_atk_object_set_description;
564 	void function(AtkObject* accessible, const(char)* name) c_atk_object_set_name;
565 	void function(AtkObject* accessible, AtkObject* parent) c_atk_object_set_parent;
566 	void function(AtkObject* accessible, AtkRole role) c_atk_object_set_role;
567 	AtkRole function(const(char)* name) c_atk_role_for_name;
568 	const(char)* function(AtkRole role) c_atk_role_get_localized_name;
569 	const(char)* function(AtkRole role) c_atk_role_get_name;
570 	AtkRole function(const(char)* name) c_atk_role_register;
571 
572 	// atk.ObjectFactory
573 
574 	GType function() c_atk_object_factory_get_type;
575 	AtkObject* function(AtkObjectFactory* factory, GObject* obj) c_atk_object_factory_create_accessible;
576 	GType function(AtkObjectFactory* factory) c_atk_object_factory_get_accessible_type;
577 	void function(AtkObjectFactory* factory) c_atk_object_factory_invalidate;
578 
579 	// atk.Plug
580 
581 	GType function() c_atk_plug_get_type;
582 	AtkObject* function() c_atk_plug_new;
583 	char* function(AtkPlug* plug) c_atk_plug_get_id;
584 
585 	// atk.Range
586 
587 	GType function() c_atk_range_get_type;
588 	AtkRange* function(double lowerLimit, double upperLimit, const(char)* description) c_atk_range_new;
589 	AtkRange* function(AtkRange* src) c_atk_range_copy;
590 	void function(AtkRange* range) c_atk_range_free;
591 	const(char)* function(AtkRange* range) c_atk_range_get_description;
592 	double function(AtkRange* range) c_atk_range_get_lower_limit;
593 	double function(AtkRange* range) c_atk_range_get_upper_limit;
594 
595 	// atk.Rectangle
596 
597 	GType function() c_atk_rectangle_get_type;
598 
599 	// atk.Registry
600 
601 	GType function() c_atk_registry_get_type;
602 	AtkObjectFactory* function(AtkRegistry* registry, GType type) c_atk_registry_get_factory;
603 	GType function(AtkRegistry* registry, GType type) c_atk_registry_get_factory_type;
604 	void function(AtkRegistry* registry, GType type, GType factoryType) c_atk_registry_set_factory_type;
605 	AtkRegistry* function() c_atk_get_default_registry;
606 
607 	// atk.Relation
608 
609 	GType function() c_atk_relation_get_type;
610 	AtkRelation* function(AtkObject** targets, int nTargets, AtkRelationType relationship) c_atk_relation_new;
611 	void function(AtkRelation* relation, AtkObject* target) c_atk_relation_add_target;
612 	AtkRelationType function(AtkRelation* relation) c_atk_relation_get_relation_type;
613 	GPtrArray* function(AtkRelation* relation) c_atk_relation_get_target;
614 	int function(AtkRelation* relation, AtkObject* target) c_atk_relation_remove_target;
615 	AtkRelationType function(const(char)* name) c_atk_relation_type_for_name;
616 	const(char)* function(AtkRelationType type) c_atk_relation_type_get_name;
617 	AtkRelationType function(const(char)* name) c_atk_relation_type_register;
618 
619 	// atk.RelationSet
620 
621 	GType function() c_atk_relation_set_get_type;
622 	AtkRelationSet* function() c_atk_relation_set_new;
623 	void function(AtkRelationSet* set, AtkRelation* relation) c_atk_relation_set_add;
624 	void function(AtkRelationSet* set, AtkRelationType relationship, AtkObject* target) c_atk_relation_set_add_relation_by_type;
625 	int function(AtkRelationSet* set, AtkRelationType relationship) c_atk_relation_set_contains;
626 	int function(AtkRelationSet* set, AtkRelationType relationship, AtkObject* target) c_atk_relation_set_contains_target;
627 	int function(AtkRelationSet* set) c_atk_relation_set_get_n_relations;
628 	AtkRelation* function(AtkRelationSet* set, int i) c_atk_relation_set_get_relation;
629 	AtkRelation* function(AtkRelationSet* set, AtkRelationType relationship) c_atk_relation_set_get_relation_by_type;
630 	void function(AtkRelationSet* set, AtkRelation* relation) c_atk_relation_set_remove;
631 
632 	// atk.Selection
633 
634 	GType function() c_atk_selection_get_type;
635 	int function(AtkSelection* selection, int i) c_atk_selection_add_selection;
636 	int function(AtkSelection* selection) c_atk_selection_clear_selection;
637 	int function(AtkSelection* selection) c_atk_selection_get_selection_count;
638 	int function(AtkSelection* selection, int i) c_atk_selection_is_child_selected;
639 	AtkObject* function(AtkSelection* selection, int i) c_atk_selection_ref_selection;
640 	int function(AtkSelection* selection, int i) c_atk_selection_remove_selection;
641 	int function(AtkSelection* selection) c_atk_selection_select_all_selection;
642 
643 	// atk.Socket
644 
645 	GType function() c_atk_socket_get_type;
646 	AtkObject* function() c_atk_socket_new;
647 	void function(AtkSocket* obj, char* plugId) c_atk_socket_embed;
648 	int function(AtkSocket* obj) c_atk_socket_is_occupied;
649 
650 	// atk.StateSet
651 
652 	GType function() c_atk_state_set_get_type;
653 	AtkStateSet* function() c_atk_state_set_new;
654 	int function(AtkStateSet* set, AtkStateType type) c_atk_state_set_add_state;
655 	void function(AtkStateSet* set, AtkStateType* types, int nTypes) c_atk_state_set_add_states;
656 	AtkStateSet* function(AtkStateSet* set, AtkStateSet* compareSet) c_atk_state_set_and_sets;
657 	void function(AtkStateSet* set) c_atk_state_set_clear_states;
658 	int function(AtkStateSet* set, AtkStateType type) c_atk_state_set_contains_state;
659 	int function(AtkStateSet* set, AtkStateType* types, int nTypes) c_atk_state_set_contains_states;
660 	int function(AtkStateSet* set) c_atk_state_set_is_empty;
661 	AtkStateSet* function(AtkStateSet* set, AtkStateSet* compareSet) c_atk_state_set_or_sets;
662 	int function(AtkStateSet* set, AtkStateType type) c_atk_state_set_remove_state;
663 	AtkStateSet* function(AtkStateSet* set, AtkStateSet* compareSet) c_atk_state_set_xor_sets;
664 
665 	// atk.StreamableContent
666 
667 	GType function() c_atk_streamable_content_get_type;
668 	const(char)* function(AtkStreamableContent* streamable, int i) c_atk_streamable_content_get_mime_type;
669 	int function(AtkStreamableContent* streamable) c_atk_streamable_content_get_n_mime_types;
670 	GIOChannel* function(AtkStreamableContent* streamable, const(char)* mimeType) c_atk_streamable_content_get_stream;
671 	const(char)* function(AtkStreamableContent* streamable, const(char)* mimeType) c_atk_streamable_content_get_uri;
672 
673 	// atk.Table
674 
675 	GType function() c_atk_table_get_type;
676 	int function(AtkTable* table, int column) c_atk_table_add_column_selection;
677 	int function(AtkTable* table, int row) c_atk_table_add_row_selection;
678 	AtkObject* function(AtkTable* table) c_atk_table_get_caption;
679 	int function(AtkTable* table, int index) c_atk_table_get_column_at_index;
680 	const(char)* function(AtkTable* table, int column) c_atk_table_get_column_description;
681 	int function(AtkTable* table, int row, int column) c_atk_table_get_column_extent_at;
682 	AtkObject* function(AtkTable* table, int column) c_atk_table_get_column_header;
683 	int function(AtkTable* table, int row, int column) c_atk_table_get_index_at;
684 	int function(AtkTable* table) c_atk_table_get_n_columns;
685 	int function(AtkTable* table) c_atk_table_get_n_rows;
686 	int function(AtkTable* table, int index) c_atk_table_get_row_at_index;
687 	const(char)* function(AtkTable* table, int row) c_atk_table_get_row_description;
688 	int function(AtkTable* table, int row, int column) c_atk_table_get_row_extent_at;
689 	AtkObject* function(AtkTable* table, int row) c_atk_table_get_row_header;
690 	int function(AtkTable* table, int** selected) c_atk_table_get_selected_columns;
691 	int function(AtkTable* table, int** selected) c_atk_table_get_selected_rows;
692 	AtkObject* function(AtkTable* table) c_atk_table_get_summary;
693 	int function(AtkTable* table, int column) c_atk_table_is_column_selected;
694 	int function(AtkTable* table, int row) c_atk_table_is_row_selected;
695 	int function(AtkTable* table, int row, int column) c_atk_table_is_selected;
696 	AtkObject* function(AtkTable* table, int row, int column) c_atk_table_ref_at;
697 	int function(AtkTable* table, int column) c_atk_table_remove_column_selection;
698 	int function(AtkTable* table, int row) c_atk_table_remove_row_selection;
699 	void function(AtkTable* table, AtkObject* caption) c_atk_table_set_caption;
700 	void function(AtkTable* table, int column, const(char)* description) c_atk_table_set_column_description;
701 	void function(AtkTable* table, int column, AtkObject* header) c_atk_table_set_column_header;
702 	void function(AtkTable* table, int row, const(char)* description) c_atk_table_set_row_description;
703 	void function(AtkTable* table, int row, AtkObject* header) c_atk_table_set_row_header;
704 	void function(AtkTable* table, AtkObject* accessible) c_atk_table_set_summary;
705 
706 	// atk.TableCell
707 
708 	GType function() c_atk_table_cell_get_type;
709 	GPtrArray* function(AtkTableCell* cell) c_atk_table_cell_get_column_header_cells;
710 	int function(AtkTableCell* cell) c_atk_table_cell_get_column_span;
711 	int function(AtkTableCell* cell, int* row, int* column) c_atk_table_cell_get_position;
712 	int function(AtkTableCell* cell, int* row, int* column, int* rowSpan, int* columnSpan) c_atk_table_cell_get_row_column_span;
713 	GPtrArray* function(AtkTableCell* cell) c_atk_table_cell_get_row_header_cells;
714 	int function(AtkTableCell* cell) c_atk_table_cell_get_row_span;
715 	AtkObject* function(AtkTableCell* cell) c_atk_table_cell_get_table;
716 
717 	// atk.Text
718 
719 	GType function() c_atk_text_get_type;
720 	void function(AtkTextRange** ranges) c_atk_text_free_ranges;
721 	int function(AtkText* text, int startOffset, int endOffset) c_atk_text_add_selection;
722 	AtkTextRange** function(AtkText* text, AtkTextRectangle* rect, AtkCoordType coordType, AtkTextClipType xClipType, AtkTextClipType yClipType) c_atk_text_get_bounded_ranges;
723 	int function(AtkText* text) c_atk_text_get_caret_offset;
724 	dchar function(AtkText* text, int offset) c_atk_text_get_character_at_offset;
725 	int function(AtkText* text) c_atk_text_get_character_count;
726 	void function(AtkText* text, int offset, int* x, int* y, int* width, int* height, AtkCoordType coords) c_atk_text_get_character_extents;
727 	AtkAttributeSet* function(AtkText* text) c_atk_text_get_default_attributes;
728 	int function(AtkText* text) c_atk_text_get_n_selections;
729 	int function(AtkText* text, int x, int y, AtkCoordType coords) c_atk_text_get_offset_at_point;
730 	void function(AtkText* text, int startOffset, int endOffset, AtkCoordType coordType, AtkTextRectangle* rect) c_atk_text_get_range_extents;
731 	AtkAttributeSet* function(AtkText* text, int offset, int* startOffset, int* endOffset) c_atk_text_get_run_attributes;
732 	char* function(AtkText* text, int selectionNum, int* startOffset, int* endOffset) c_atk_text_get_selection;
733 	char* function(AtkText* text, int offset, AtkTextGranularity granularity, int* startOffset, int* endOffset) c_atk_text_get_string_at_offset;
734 	char* function(AtkText* text, int startOffset, int endOffset) c_atk_text_get_text;
735 	char* function(AtkText* text, int offset, AtkTextBoundary boundaryType, int* startOffset, int* endOffset) c_atk_text_get_text_after_offset;
736 	char* function(AtkText* text, int offset, AtkTextBoundary boundaryType, int* startOffset, int* endOffset) c_atk_text_get_text_at_offset;
737 	char* function(AtkText* text, int offset, AtkTextBoundary boundaryType, int* startOffset, int* endOffset) c_atk_text_get_text_before_offset;
738 	int function(AtkText* text, int selectionNum) c_atk_text_remove_selection;
739 	int function(AtkText* text, int startOffset, int endOffset, AtkScrollType type) c_atk_text_scroll_substring_to;
740 	int function(AtkText* text, int startOffset, int endOffset, AtkCoordType coords, int x, int y) c_atk_text_scroll_substring_to_point;
741 	int function(AtkText* text, int offset) c_atk_text_set_caret_offset;
742 	int function(AtkText* text, int selectionNum, int startOffset, int endOffset) c_atk_text_set_selection;
743 	void function(AtkAttributeSet* attribSet) c_atk_attribute_set_free;
744 	AtkTextAttribute function(const(char)* name) c_atk_text_attribute_for_name;
745 	const(char)* function(AtkTextAttribute attr) c_atk_text_attribute_get_name;
746 	const(char)* function(AtkTextAttribute attr, int index) c_atk_text_attribute_get_value;
747 	AtkTextAttribute function(const(char)* name) c_atk_text_attribute_register;
748 
749 	// atk.TextRange
750 
751 	GType function() c_atk_text_range_get_type;
752 
753 	// atk.Util
754 
755 	GType function() c_atk_util_get_type;
756 	uint function(AtkEventListener focusTracker) c_atk_add_focus_tracker;
757 	uint function(GSignalEmissionHook listener, const(char)* eventType) c_atk_add_global_event_listener;
758 	uint function(AtkKeySnoopFunc listener, void* data) c_atk_add_key_event_listener;
759 	void function(AtkEventListenerInit init) c_atk_focus_tracker_init;
760 	void function(AtkObject* object) c_atk_focus_tracker_notify;
761 	AtkObject* function() c_atk_get_focus_object;
762 	AtkObject* function() c_atk_get_root;
763 	const(char)* function() c_atk_get_toolkit_name;
764 	void function(uint trackerId) c_atk_remove_focus_tracker;
765 	void function(uint listenerId) c_atk_remove_global_event_listener;
766 	void function(uint listenerId) c_atk_remove_key_event_listener;
767 
768 	// atk.Value
769 
770 	GType function() c_atk_value_get_type;
771 	void function(AtkValue* obj, GValue* value) c_atk_value_get_current_value;
772 	double function(AtkValue* obj) c_atk_value_get_increment;
773 	void function(AtkValue* obj, GValue* value) c_atk_value_get_maximum_value;
774 	void function(AtkValue* obj, GValue* value) c_atk_value_get_minimum_increment;
775 	void function(AtkValue* obj, GValue* value) c_atk_value_get_minimum_value;
776 	AtkRange* function(AtkValue* obj) c_atk_value_get_range;
777 	GSList* function(AtkValue* obj) c_atk_value_get_sub_ranges;
778 	void function(AtkValue* obj, double* value, char** text) c_atk_value_get_value_and_text;
779 	int function(AtkValue* obj, GValue* value) c_atk_value_set_current_value;
780 	void function(AtkValue* obj, double newValue) c_atk_value_set_value;
781 
782 	// atk.Window
783 
784 	GType function() c_atk_window_get_type;
785 
786 	// atk.Version
787 
788 	uint function() c_atk_get_binary_age;
789 	uint function() c_atk_get_interface_age;
790 	uint function() c_atk_get_major_version;
791 	uint function() c_atk_get_micro_version;
792 	uint function() c_atk_get_minor_version;
793 	const(char)* function() c_atk_get_toolkit_version;
794 	const(char)* function() c_atk_get_version;
795 
796 	// atk.State
797 
798 	AtkStateType function(const(char)* name) c_atk_state_type_for_name;
799 	const(char)* function(AtkStateType type) c_atk_state_type_get_name;
800 	AtkStateType function(const(char)* name) c_atk_state_type_register;
801 }
802 
803 
804 // atk.Action
805 
806 alias c_atk_action_get_type atk_action_get_type;
807 alias c_atk_action_do_action atk_action_do_action;
808 alias c_atk_action_get_description atk_action_get_description;
809 alias c_atk_action_get_keybinding atk_action_get_keybinding;
810 alias c_atk_action_get_localized_name atk_action_get_localized_name;
811 alias c_atk_action_get_n_actions atk_action_get_n_actions;
812 alias c_atk_action_get_name atk_action_get_name;
813 alias c_atk_action_set_description atk_action_set_description;
814 
815 // atk.Component
816 
817 alias c_atk_component_get_type atk_component_get_type;
818 alias c_atk_component_add_focus_handler atk_component_add_focus_handler;
819 alias c_atk_component_contains atk_component_contains;
820 alias c_atk_component_get_alpha atk_component_get_alpha;
821 alias c_atk_component_get_extents atk_component_get_extents;
822 alias c_atk_component_get_layer atk_component_get_layer;
823 alias c_atk_component_get_mdi_zorder atk_component_get_mdi_zorder;
824 alias c_atk_component_get_position atk_component_get_position;
825 alias c_atk_component_get_size atk_component_get_size;
826 alias c_atk_component_grab_focus atk_component_grab_focus;
827 alias c_atk_component_ref_accessible_at_point atk_component_ref_accessible_at_point;
828 alias c_atk_component_remove_focus_handler atk_component_remove_focus_handler;
829 alias c_atk_component_scroll_to atk_component_scroll_to;
830 alias c_atk_component_scroll_to_point atk_component_scroll_to_point;
831 alias c_atk_component_set_extents atk_component_set_extents;
832 alias c_atk_component_set_position atk_component_set_position;
833 alias c_atk_component_set_size atk_component_set_size;
834 
835 // atk.Document
836 
837 alias c_atk_document_get_type atk_document_get_type;
838 alias c_atk_document_get_attribute_value atk_document_get_attribute_value;
839 alias c_atk_document_get_attributes atk_document_get_attributes;
840 alias c_atk_document_get_current_page_number atk_document_get_current_page_number;
841 alias c_atk_document_get_document atk_document_get_document;
842 alias c_atk_document_get_document_type atk_document_get_document_type;
843 alias c_atk_document_get_locale atk_document_get_locale;
844 alias c_atk_document_get_page_count atk_document_get_page_count;
845 alias c_atk_document_set_attribute_value atk_document_set_attribute_value;
846 
847 // atk.EditableText
848 
849 alias c_atk_editable_text_get_type atk_editable_text_get_type;
850 alias c_atk_editable_text_copy_text atk_editable_text_copy_text;
851 alias c_atk_editable_text_cut_text atk_editable_text_cut_text;
852 alias c_atk_editable_text_delete_text atk_editable_text_delete_text;
853 alias c_atk_editable_text_insert_text atk_editable_text_insert_text;
854 alias c_atk_editable_text_paste_text atk_editable_text_paste_text;
855 alias c_atk_editable_text_set_run_attributes atk_editable_text_set_run_attributes;
856 alias c_atk_editable_text_set_text_contents atk_editable_text_set_text_contents;
857 
858 // atk.GObjectAccessible
859 
860 alias c_atk_gobject_accessible_get_type atk_gobject_accessible_get_type;
861 alias c_atk_gobject_accessible_for_object atk_gobject_accessible_for_object;
862 alias c_atk_gobject_accessible_get_object atk_gobject_accessible_get_object;
863 
864 // atk.Hyperlink
865 
866 alias c_atk_hyperlink_get_type atk_hyperlink_get_type;
867 alias c_atk_hyperlink_get_end_index atk_hyperlink_get_end_index;
868 alias c_atk_hyperlink_get_n_anchors atk_hyperlink_get_n_anchors;
869 alias c_atk_hyperlink_get_object atk_hyperlink_get_object;
870 alias c_atk_hyperlink_get_start_index atk_hyperlink_get_start_index;
871 alias c_atk_hyperlink_get_uri atk_hyperlink_get_uri;
872 alias c_atk_hyperlink_is_inline atk_hyperlink_is_inline;
873 alias c_atk_hyperlink_is_selected_link atk_hyperlink_is_selected_link;
874 alias c_atk_hyperlink_is_valid atk_hyperlink_is_valid;
875 
876 // atk.HyperlinkImpl
877 
878 alias c_atk_hyperlink_impl_get_type atk_hyperlink_impl_get_type;
879 alias c_atk_hyperlink_impl_get_hyperlink atk_hyperlink_impl_get_hyperlink;
880 
881 // atk.Hypertext
882 
883 alias c_atk_hypertext_get_type atk_hypertext_get_type;
884 alias c_atk_hypertext_get_link atk_hypertext_get_link;
885 alias c_atk_hypertext_get_link_index atk_hypertext_get_link_index;
886 alias c_atk_hypertext_get_n_links atk_hypertext_get_n_links;
887 
888 // atk.Image
889 
890 alias c_atk_image_get_type atk_image_get_type;
891 alias c_atk_image_get_image_description atk_image_get_image_description;
892 alias c_atk_image_get_image_locale atk_image_get_image_locale;
893 alias c_atk_image_get_image_position atk_image_get_image_position;
894 alias c_atk_image_get_image_size atk_image_get_image_size;
895 alias c_atk_image_set_image_description atk_image_set_image_description;
896 
897 // atk.Implementor
898 
899 alias c_atk_implementor_ref_accessible atk_implementor_ref_accessible;
900 alias c_atk_implementor_get_type atk_implementor_get_type;
901 
902 // atk.Misc
903 
904 alias c_atk_misc_get_type atk_misc_get_type;
905 alias c_atk_misc_get_instance atk_misc_get_instance;
906 alias c_atk_misc_threads_enter atk_misc_threads_enter;
907 alias c_atk_misc_threads_leave atk_misc_threads_leave;
908 
909 // atk.NoOpObject
910 
911 alias c_atk_no_op_object_get_type atk_no_op_object_get_type;
912 alias c_atk_no_op_object_new atk_no_op_object_new;
913 
914 // atk.NoOpObjectFactory
915 
916 alias c_atk_no_op_object_factory_get_type atk_no_op_object_factory_get_type;
917 alias c_atk_no_op_object_factory_new atk_no_op_object_factory_new;
918 
919 // atk.ObjectAtk
920 
921 alias c_atk_object_get_type atk_object_get_type;
922 alias c_atk_object_add_relationship atk_object_add_relationship;
923 alias c_atk_object_connect_property_change_handler atk_object_connect_property_change_handler;
924 alias c_atk_object_get_accessible_id atk_object_get_accessible_id;
925 alias c_atk_object_get_attributes atk_object_get_attributes;
926 alias c_atk_object_get_description atk_object_get_description;
927 alias c_atk_object_get_index_in_parent atk_object_get_index_in_parent;
928 alias c_atk_object_get_layer atk_object_get_layer;
929 alias c_atk_object_get_mdi_zorder atk_object_get_mdi_zorder;
930 alias c_atk_object_get_n_accessible_children atk_object_get_n_accessible_children;
931 alias c_atk_object_get_name atk_object_get_name;
932 alias c_atk_object_get_object_locale atk_object_get_object_locale;
933 alias c_atk_object_get_parent atk_object_get_parent;
934 alias c_atk_object_get_role atk_object_get_role;
935 alias c_atk_object_initialize atk_object_initialize;
936 alias c_atk_object_notify_state_change atk_object_notify_state_change;
937 alias c_atk_object_peek_parent atk_object_peek_parent;
938 alias c_atk_object_ref_accessible_child atk_object_ref_accessible_child;
939 alias c_atk_object_ref_relation_set atk_object_ref_relation_set;
940 alias c_atk_object_ref_state_set atk_object_ref_state_set;
941 alias c_atk_object_remove_property_change_handler atk_object_remove_property_change_handler;
942 alias c_atk_object_remove_relationship atk_object_remove_relationship;
943 alias c_atk_object_set_accessible_id atk_object_set_accessible_id;
944 alias c_atk_object_set_description atk_object_set_description;
945 alias c_atk_object_set_name atk_object_set_name;
946 alias c_atk_object_set_parent atk_object_set_parent;
947 alias c_atk_object_set_role atk_object_set_role;
948 alias c_atk_role_for_name atk_role_for_name;
949 alias c_atk_role_get_localized_name atk_role_get_localized_name;
950 alias c_atk_role_get_name atk_role_get_name;
951 alias c_atk_role_register atk_role_register;
952 
953 // atk.ObjectFactory
954 
955 alias c_atk_object_factory_get_type atk_object_factory_get_type;
956 alias c_atk_object_factory_create_accessible atk_object_factory_create_accessible;
957 alias c_atk_object_factory_get_accessible_type atk_object_factory_get_accessible_type;
958 alias c_atk_object_factory_invalidate atk_object_factory_invalidate;
959 
960 // atk.Plug
961 
962 alias c_atk_plug_get_type atk_plug_get_type;
963 alias c_atk_plug_new atk_plug_new;
964 alias c_atk_plug_get_id atk_plug_get_id;
965 
966 // atk.Range
967 
968 alias c_atk_range_get_type atk_range_get_type;
969 alias c_atk_range_new atk_range_new;
970 alias c_atk_range_copy atk_range_copy;
971 alias c_atk_range_free atk_range_free;
972 alias c_atk_range_get_description atk_range_get_description;
973 alias c_atk_range_get_lower_limit atk_range_get_lower_limit;
974 alias c_atk_range_get_upper_limit atk_range_get_upper_limit;
975 
976 // atk.Rectangle
977 
978 alias c_atk_rectangle_get_type atk_rectangle_get_type;
979 
980 // atk.Registry
981 
982 alias c_atk_registry_get_type atk_registry_get_type;
983 alias c_atk_registry_get_factory atk_registry_get_factory;
984 alias c_atk_registry_get_factory_type atk_registry_get_factory_type;
985 alias c_atk_registry_set_factory_type atk_registry_set_factory_type;
986 alias c_atk_get_default_registry atk_get_default_registry;
987 
988 // atk.Relation
989 
990 alias c_atk_relation_get_type atk_relation_get_type;
991 alias c_atk_relation_new atk_relation_new;
992 alias c_atk_relation_add_target atk_relation_add_target;
993 alias c_atk_relation_get_relation_type atk_relation_get_relation_type;
994 alias c_atk_relation_get_target atk_relation_get_target;
995 alias c_atk_relation_remove_target atk_relation_remove_target;
996 alias c_atk_relation_type_for_name atk_relation_type_for_name;
997 alias c_atk_relation_type_get_name atk_relation_type_get_name;
998 alias c_atk_relation_type_register atk_relation_type_register;
999 
1000 // atk.RelationSet
1001 
1002 alias c_atk_relation_set_get_type atk_relation_set_get_type;
1003 alias c_atk_relation_set_new atk_relation_set_new;
1004 alias c_atk_relation_set_add atk_relation_set_add;
1005 alias c_atk_relation_set_add_relation_by_type atk_relation_set_add_relation_by_type;
1006 alias c_atk_relation_set_contains atk_relation_set_contains;
1007 alias c_atk_relation_set_contains_target atk_relation_set_contains_target;
1008 alias c_atk_relation_set_get_n_relations atk_relation_set_get_n_relations;
1009 alias c_atk_relation_set_get_relation atk_relation_set_get_relation;
1010 alias c_atk_relation_set_get_relation_by_type atk_relation_set_get_relation_by_type;
1011 alias c_atk_relation_set_remove atk_relation_set_remove;
1012 
1013 // atk.Selection
1014 
1015 alias c_atk_selection_get_type atk_selection_get_type;
1016 alias c_atk_selection_add_selection atk_selection_add_selection;
1017 alias c_atk_selection_clear_selection atk_selection_clear_selection;
1018 alias c_atk_selection_get_selection_count atk_selection_get_selection_count;
1019 alias c_atk_selection_is_child_selected atk_selection_is_child_selected;
1020 alias c_atk_selection_ref_selection atk_selection_ref_selection;
1021 alias c_atk_selection_remove_selection atk_selection_remove_selection;
1022 alias c_atk_selection_select_all_selection atk_selection_select_all_selection;
1023 
1024 // atk.Socket
1025 
1026 alias c_atk_socket_get_type atk_socket_get_type;
1027 alias c_atk_socket_new atk_socket_new;
1028 alias c_atk_socket_embed atk_socket_embed;
1029 alias c_atk_socket_is_occupied atk_socket_is_occupied;
1030 
1031 // atk.StateSet
1032 
1033 alias c_atk_state_set_get_type atk_state_set_get_type;
1034 alias c_atk_state_set_new atk_state_set_new;
1035 alias c_atk_state_set_add_state atk_state_set_add_state;
1036 alias c_atk_state_set_add_states atk_state_set_add_states;
1037 alias c_atk_state_set_and_sets atk_state_set_and_sets;
1038 alias c_atk_state_set_clear_states atk_state_set_clear_states;
1039 alias c_atk_state_set_contains_state atk_state_set_contains_state;
1040 alias c_atk_state_set_contains_states atk_state_set_contains_states;
1041 alias c_atk_state_set_is_empty atk_state_set_is_empty;
1042 alias c_atk_state_set_or_sets atk_state_set_or_sets;
1043 alias c_atk_state_set_remove_state atk_state_set_remove_state;
1044 alias c_atk_state_set_xor_sets atk_state_set_xor_sets;
1045 
1046 // atk.StreamableContent
1047 
1048 alias c_atk_streamable_content_get_type atk_streamable_content_get_type;
1049 alias c_atk_streamable_content_get_mime_type atk_streamable_content_get_mime_type;
1050 alias c_atk_streamable_content_get_n_mime_types atk_streamable_content_get_n_mime_types;
1051 alias c_atk_streamable_content_get_stream atk_streamable_content_get_stream;
1052 alias c_atk_streamable_content_get_uri atk_streamable_content_get_uri;
1053 
1054 // atk.Table
1055 
1056 alias c_atk_table_get_type atk_table_get_type;
1057 alias c_atk_table_add_column_selection atk_table_add_column_selection;
1058 alias c_atk_table_add_row_selection atk_table_add_row_selection;
1059 alias c_atk_table_get_caption atk_table_get_caption;
1060 alias c_atk_table_get_column_at_index atk_table_get_column_at_index;
1061 alias c_atk_table_get_column_description atk_table_get_column_description;
1062 alias c_atk_table_get_column_extent_at atk_table_get_column_extent_at;
1063 alias c_atk_table_get_column_header atk_table_get_column_header;
1064 alias c_atk_table_get_index_at atk_table_get_index_at;
1065 alias c_atk_table_get_n_columns atk_table_get_n_columns;
1066 alias c_atk_table_get_n_rows atk_table_get_n_rows;
1067 alias c_atk_table_get_row_at_index atk_table_get_row_at_index;
1068 alias c_atk_table_get_row_description atk_table_get_row_description;
1069 alias c_atk_table_get_row_extent_at atk_table_get_row_extent_at;
1070 alias c_atk_table_get_row_header atk_table_get_row_header;
1071 alias c_atk_table_get_selected_columns atk_table_get_selected_columns;
1072 alias c_atk_table_get_selected_rows atk_table_get_selected_rows;
1073 alias c_atk_table_get_summary atk_table_get_summary;
1074 alias c_atk_table_is_column_selected atk_table_is_column_selected;
1075 alias c_atk_table_is_row_selected atk_table_is_row_selected;
1076 alias c_atk_table_is_selected atk_table_is_selected;
1077 alias c_atk_table_ref_at atk_table_ref_at;
1078 alias c_atk_table_remove_column_selection atk_table_remove_column_selection;
1079 alias c_atk_table_remove_row_selection atk_table_remove_row_selection;
1080 alias c_atk_table_set_caption atk_table_set_caption;
1081 alias c_atk_table_set_column_description atk_table_set_column_description;
1082 alias c_atk_table_set_column_header atk_table_set_column_header;
1083 alias c_atk_table_set_row_description atk_table_set_row_description;
1084 alias c_atk_table_set_row_header atk_table_set_row_header;
1085 alias c_atk_table_set_summary atk_table_set_summary;
1086 
1087 // atk.TableCell
1088 
1089 alias c_atk_table_cell_get_type atk_table_cell_get_type;
1090 alias c_atk_table_cell_get_column_header_cells atk_table_cell_get_column_header_cells;
1091 alias c_atk_table_cell_get_column_span atk_table_cell_get_column_span;
1092 alias c_atk_table_cell_get_position atk_table_cell_get_position;
1093 alias c_atk_table_cell_get_row_column_span atk_table_cell_get_row_column_span;
1094 alias c_atk_table_cell_get_row_header_cells atk_table_cell_get_row_header_cells;
1095 alias c_atk_table_cell_get_row_span atk_table_cell_get_row_span;
1096 alias c_atk_table_cell_get_table atk_table_cell_get_table;
1097 
1098 // atk.Text
1099 
1100 alias c_atk_text_get_type atk_text_get_type;
1101 alias c_atk_text_free_ranges atk_text_free_ranges;
1102 alias c_atk_text_add_selection atk_text_add_selection;
1103 alias c_atk_text_get_bounded_ranges atk_text_get_bounded_ranges;
1104 alias c_atk_text_get_caret_offset atk_text_get_caret_offset;
1105 alias c_atk_text_get_character_at_offset atk_text_get_character_at_offset;
1106 alias c_atk_text_get_character_count atk_text_get_character_count;
1107 alias c_atk_text_get_character_extents atk_text_get_character_extents;
1108 alias c_atk_text_get_default_attributes atk_text_get_default_attributes;
1109 alias c_atk_text_get_n_selections atk_text_get_n_selections;
1110 alias c_atk_text_get_offset_at_point atk_text_get_offset_at_point;
1111 alias c_atk_text_get_range_extents atk_text_get_range_extents;
1112 alias c_atk_text_get_run_attributes atk_text_get_run_attributes;
1113 alias c_atk_text_get_selection atk_text_get_selection;
1114 alias c_atk_text_get_string_at_offset atk_text_get_string_at_offset;
1115 alias c_atk_text_get_text atk_text_get_text;
1116 alias c_atk_text_get_text_after_offset atk_text_get_text_after_offset;
1117 alias c_atk_text_get_text_at_offset atk_text_get_text_at_offset;
1118 alias c_atk_text_get_text_before_offset atk_text_get_text_before_offset;
1119 alias c_atk_text_remove_selection atk_text_remove_selection;
1120 alias c_atk_text_scroll_substring_to atk_text_scroll_substring_to;
1121 alias c_atk_text_scroll_substring_to_point atk_text_scroll_substring_to_point;
1122 alias c_atk_text_set_caret_offset atk_text_set_caret_offset;
1123 alias c_atk_text_set_selection atk_text_set_selection;
1124 alias c_atk_attribute_set_free atk_attribute_set_free;
1125 alias c_atk_text_attribute_for_name atk_text_attribute_for_name;
1126 alias c_atk_text_attribute_get_name atk_text_attribute_get_name;
1127 alias c_atk_text_attribute_get_value atk_text_attribute_get_value;
1128 alias c_atk_text_attribute_register atk_text_attribute_register;
1129 
1130 // atk.TextRange
1131 
1132 alias c_atk_text_range_get_type atk_text_range_get_type;
1133 
1134 // atk.Util
1135 
1136 alias c_atk_util_get_type atk_util_get_type;
1137 alias c_atk_add_focus_tracker atk_add_focus_tracker;
1138 alias c_atk_add_global_event_listener atk_add_global_event_listener;
1139 alias c_atk_add_key_event_listener atk_add_key_event_listener;
1140 alias c_atk_focus_tracker_init atk_focus_tracker_init;
1141 alias c_atk_focus_tracker_notify atk_focus_tracker_notify;
1142 alias c_atk_get_focus_object atk_get_focus_object;
1143 alias c_atk_get_root atk_get_root;
1144 alias c_atk_get_toolkit_name atk_get_toolkit_name;
1145 alias c_atk_remove_focus_tracker atk_remove_focus_tracker;
1146 alias c_atk_remove_global_event_listener atk_remove_global_event_listener;
1147 alias c_atk_remove_key_event_listener atk_remove_key_event_listener;
1148 
1149 // atk.Value
1150 
1151 alias c_atk_value_get_type atk_value_get_type;
1152 alias c_atk_value_get_current_value atk_value_get_current_value;
1153 alias c_atk_value_get_increment atk_value_get_increment;
1154 alias c_atk_value_get_maximum_value atk_value_get_maximum_value;
1155 alias c_atk_value_get_minimum_increment atk_value_get_minimum_increment;
1156 alias c_atk_value_get_minimum_value atk_value_get_minimum_value;
1157 alias c_atk_value_get_range atk_value_get_range;
1158 alias c_atk_value_get_sub_ranges atk_value_get_sub_ranges;
1159 alias c_atk_value_get_value_and_text atk_value_get_value_and_text;
1160 alias c_atk_value_set_current_value atk_value_set_current_value;
1161 alias c_atk_value_set_value atk_value_set_value;
1162 
1163 // atk.Window
1164 
1165 alias c_atk_window_get_type atk_window_get_type;
1166 
1167 // atk.Version
1168 
1169 alias c_atk_get_binary_age atk_get_binary_age;
1170 alias c_atk_get_interface_age atk_get_interface_age;
1171 alias c_atk_get_major_version atk_get_major_version;
1172 alias c_atk_get_micro_version atk_get_micro_version;
1173 alias c_atk_get_minor_version atk_get_minor_version;
1174 alias c_atk_get_toolkit_version atk_get_toolkit_version;
1175 alias c_atk_get_version atk_get_version;
1176 
1177 // atk.State
1178 
1179 alias c_atk_state_type_for_name atk_state_type_for_name;
1180 alias c_atk_state_type_get_name atk_state_type_get_name;
1181 alias c_atk_state_type_register atk_state_type_register;