1#![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)]
6#![allow(
7 clippy::approx_constant,
8 clippy::type_complexity,
9 clippy::unreadable_literal,
10 clippy::upper_case_acronyms
11)]
12#![cfg_attr(docsrs, feature(doc_cfg))]
13
14#[allow(unused_imports)]
15use libc::{
16 c_char, c_double, c_float, c_int, c_long, c_short, c_uchar, c_uint, c_ulong, c_ushort, c_void,
17 intptr_t, size_t, ssize_t, uintptr_t, FILE,
18};
19
20#[allow(unused_imports)]
21use glib::{gboolean, gconstpointer, gpointer, GType};
22
23pub type AtkAttributeSet = glib::GSList;
25pub type AtkState = u64;
26
27pub type AtkCoordType = c_int;
29pub const ATK_XY_SCREEN: AtkCoordType = 0;
30pub const ATK_XY_WINDOW: AtkCoordType = 1;
31pub const ATK_XY_PARENT: AtkCoordType = 2;
32
33pub type AtkKeyEventType = c_int;
34pub const ATK_KEY_EVENT_PRESS: AtkKeyEventType = 0;
35pub const ATK_KEY_EVENT_RELEASE: AtkKeyEventType = 1;
36pub const ATK_KEY_EVENT_LAST_DEFINED: AtkKeyEventType = 2;
37
38pub type AtkLayer = c_int;
39pub const ATK_LAYER_INVALID: AtkLayer = 0;
40pub const ATK_LAYER_BACKGROUND: AtkLayer = 1;
41pub const ATK_LAYER_CANVAS: AtkLayer = 2;
42pub const ATK_LAYER_WIDGET: AtkLayer = 3;
43pub const ATK_LAYER_MDI: AtkLayer = 4;
44pub const ATK_LAYER_POPUP: AtkLayer = 5;
45pub const ATK_LAYER_OVERLAY: AtkLayer = 6;
46pub const ATK_LAYER_WINDOW: AtkLayer = 7;
47
48pub type AtkLive = c_int;
49pub const ATK_LIVE_NONE: AtkLive = 0;
50pub const ATK_LIVE_POLITE: AtkLive = 1;
51pub const ATK_LIVE_ASSERTIVE: AtkLive = 2;
52
53pub type AtkRelationType = c_int;
54pub const ATK_RELATION_NULL: AtkRelationType = 0;
55pub const ATK_RELATION_CONTROLLED_BY: AtkRelationType = 1;
56pub const ATK_RELATION_CONTROLLER_FOR: AtkRelationType = 2;
57pub const ATK_RELATION_LABEL_FOR: AtkRelationType = 3;
58pub const ATK_RELATION_LABELLED_BY: AtkRelationType = 4;
59pub const ATK_RELATION_MEMBER_OF: AtkRelationType = 5;
60pub const ATK_RELATION_NODE_CHILD_OF: AtkRelationType = 6;
61pub const ATK_RELATION_FLOWS_TO: AtkRelationType = 7;
62pub const ATK_RELATION_FLOWS_FROM: AtkRelationType = 8;
63pub const ATK_RELATION_SUBWINDOW_OF: AtkRelationType = 9;
64pub const ATK_RELATION_EMBEDS: AtkRelationType = 10;
65pub const ATK_RELATION_EMBEDDED_BY: AtkRelationType = 11;
66pub const ATK_RELATION_POPUP_FOR: AtkRelationType = 12;
67pub const ATK_RELATION_PARENT_WINDOW_OF: AtkRelationType = 13;
68pub const ATK_RELATION_DESCRIBED_BY: AtkRelationType = 14;
69pub const ATK_RELATION_DESCRIPTION_FOR: AtkRelationType = 15;
70pub const ATK_RELATION_NODE_PARENT_OF: AtkRelationType = 16;
71pub const ATK_RELATION_DETAILS: AtkRelationType = 17;
72pub const ATK_RELATION_DETAILS_FOR: AtkRelationType = 18;
73pub const ATK_RELATION_ERROR_MESSAGE: AtkRelationType = 19;
74pub const ATK_RELATION_ERROR_FOR: AtkRelationType = 20;
75pub const ATK_RELATION_LAST_DEFINED: AtkRelationType = 21;
76
77pub type AtkRole = c_int;
78pub const ATK_ROLE_INVALID: AtkRole = 0;
79pub const ATK_ROLE_ACCEL_LABEL: AtkRole = 1;
80pub const ATK_ROLE_ALERT: AtkRole = 2;
81pub const ATK_ROLE_ANIMATION: AtkRole = 3;
82pub const ATK_ROLE_ARROW: AtkRole = 4;
83pub const ATK_ROLE_CALENDAR: AtkRole = 5;
84pub const ATK_ROLE_CANVAS: AtkRole = 6;
85pub const ATK_ROLE_CHECK_BOX: AtkRole = 7;
86pub const ATK_ROLE_CHECK_MENU_ITEM: AtkRole = 8;
87pub const ATK_ROLE_COLOR_CHOOSER: AtkRole = 9;
88pub const ATK_ROLE_COLUMN_HEADER: AtkRole = 10;
89pub const ATK_ROLE_COMBO_BOX: AtkRole = 11;
90pub const ATK_ROLE_DATE_EDITOR: AtkRole = 12;
91pub const ATK_ROLE_DESKTOP_ICON: AtkRole = 13;
92pub const ATK_ROLE_DESKTOP_FRAME: AtkRole = 14;
93pub const ATK_ROLE_DIAL: AtkRole = 15;
94pub const ATK_ROLE_DIALOG: AtkRole = 16;
95pub const ATK_ROLE_DIRECTORY_PANE: AtkRole = 17;
96pub const ATK_ROLE_DRAWING_AREA: AtkRole = 18;
97pub const ATK_ROLE_FILE_CHOOSER: AtkRole = 19;
98pub const ATK_ROLE_FILLER: AtkRole = 20;
99pub const ATK_ROLE_FONT_CHOOSER: AtkRole = 21;
100pub const ATK_ROLE_FRAME: AtkRole = 22;
101pub const ATK_ROLE_GLASS_PANE: AtkRole = 23;
102pub const ATK_ROLE_HTML_CONTAINER: AtkRole = 24;
103pub const ATK_ROLE_ICON: AtkRole = 25;
104pub const ATK_ROLE_IMAGE: AtkRole = 26;
105pub const ATK_ROLE_INTERNAL_FRAME: AtkRole = 27;
106pub const ATK_ROLE_LABEL: AtkRole = 28;
107pub const ATK_ROLE_LAYERED_PANE: AtkRole = 29;
108pub const ATK_ROLE_LIST: AtkRole = 30;
109pub const ATK_ROLE_LIST_ITEM: AtkRole = 31;
110pub const ATK_ROLE_MENU: AtkRole = 32;
111pub const ATK_ROLE_MENU_BAR: AtkRole = 33;
112pub const ATK_ROLE_MENU_ITEM: AtkRole = 34;
113pub const ATK_ROLE_OPTION_PANE: AtkRole = 35;
114pub const ATK_ROLE_PAGE_TAB: AtkRole = 36;
115pub const ATK_ROLE_PAGE_TAB_LIST: AtkRole = 37;
116pub const ATK_ROLE_PANEL: AtkRole = 38;
117pub const ATK_ROLE_PASSWORD_TEXT: AtkRole = 39;
118pub const ATK_ROLE_POPUP_MENU: AtkRole = 40;
119pub const ATK_ROLE_PROGRESS_BAR: AtkRole = 41;
120pub const ATK_ROLE_PUSH_BUTTON: AtkRole = 42;
121pub const ATK_ROLE_RADIO_BUTTON: AtkRole = 43;
122pub const ATK_ROLE_RADIO_MENU_ITEM: AtkRole = 44;
123pub const ATK_ROLE_ROOT_PANE: AtkRole = 45;
124pub const ATK_ROLE_ROW_HEADER: AtkRole = 46;
125pub const ATK_ROLE_SCROLL_BAR: AtkRole = 47;
126pub const ATK_ROLE_SCROLL_PANE: AtkRole = 48;
127pub const ATK_ROLE_SEPARATOR: AtkRole = 49;
128pub const ATK_ROLE_SLIDER: AtkRole = 50;
129pub const ATK_ROLE_SPLIT_PANE: AtkRole = 51;
130pub const ATK_ROLE_SPIN_BUTTON: AtkRole = 52;
131pub const ATK_ROLE_STATUSBAR: AtkRole = 53;
132pub const ATK_ROLE_TABLE: AtkRole = 54;
133pub const ATK_ROLE_TABLE_CELL: AtkRole = 55;
134pub const ATK_ROLE_TABLE_COLUMN_HEADER: AtkRole = 56;
135pub const ATK_ROLE_TABLE_ROW_HEADER: AtkRole = 57;
136pub const ATK_ROLE_TEAR_OFF_MENU_ITEM: AtkRole = 58;
137pub const ATK_ROLE_TERMINAL: AtkRole = 59;
138pub const ATK_ROLE_TEXT: AtkRole = 60;
139pub const ATK_ROLE_TOGGLE_BUTTON: AtkRole = 61;
140pub const ATK_ROLE_TOOL_BAR: AtkRole = 62;
141pub const ATK_ROLE_TOOL_TIP: AtkRole = 63;
142pub const ATK_ROLE_TREE: AtkRole = 64;
143pub const ATK_ROLE_TREE_TABLE: AtkRole = 65;
144pub const ATK_ROLE_UNKNOWN: AtkRole = 66;
145pub const ATK_ROLE_VIEWPORT: AtkRole = 67;
146pub const ATK_ROLE_WINDOW: AtkRole = 68;
147pub const ATK_ROLE_HEADER: AtkRole = 69;
148pub const ATK_ROLE_FOOTER: AtkRole = 70;
149pub const ATK_ROLE_PARAGRAPH: AtkRole = 71;
150pub const ATK_ROLE_RULER: AtkRole = 72;
151pub const ATK_ROLE_APPLICATION: AtkRole = 73;
152pub const ATK_ROLE_AUTOCOMPLETE: AtkRole = 74;
153pub const ATK_ROLE_EDITBAR: AtkRole = 75;
154pub const ATK_ROLE_EMBEDDED: AtkRole = 76;
155pub const ATK_ROLE_ENTRY: AtkRole = 77;
156pub const ATK_ROLE_CHART: AtkRole = 78;
157pub const ATK_ROLE_CAPTION: AtkRole = 79;
158pub const ATK_ROLE_DOCUMENT_FRAME: AtkRole = 80;
159pub const ATK_ROLE_HEADING: AtkRole = 81;
160pub const ATK_ROLE_PAGE: AtkRole = 82;
161pub const ATK_ROLE_SECTION: AtkRole = 83;
162pub const ATK_ROLE_REDUNDANT_OBJECT: AtkRole = 84;
163pub const ATK_ROLE_FORM: AtkRole = 85;
164pub const ATK_ROLE_LINK: AtkRole = 86;
165pub const ATK_ROLE_INPUT_METHOD_WINDOW: AtkRole = 87;
166pub const ATK_ROLE_TABLE_ROW: AtkRole = 88;
167pub const ATK_ROLE_TREE_ITEM: AtkRole = 89;
168pub const ATK_ROLE_DOCUMENT_SPREADSHEET: AtkRole = 90;
169pub const ATK_ROLE_DOCUMENT_PRESENTATION: AtkRole = 91;
170pub const ATK_ROLE_DOCUMENT_TEXT: AtkRole = 92;
171pub const ATK_ROLE_DOCUMENT_WEB: AtkRole = 93;
172pub const ATK_ROLE_DOCUMENT_EMAIL: AtkRole = 94;
173pub const ATK_ROLE_COMMENT: AtkRole = 95;
174pub const ATK_ROLE_LIST_BOX: AtkRole = 96;
175pub const ATK_ROLE_GROUPING: AtkRole = 97;
176pub const ATK_ROLE_IMAGE_MAP: AtkRole = 98;
177pub const ATK_ROLE_NOTIFICATION: AtkRole = 99;
178pub const ATK_ROLE_INFO_BAR: AtkRole = 100;
179pub const ATK_ROLE_LEVEL_BAR: AtkRole = 101;
180pub const ATK_ROLE_TITLE_BAR: AtkRole = 102;
181pub const ATK_ROLE_BLOCK_QUOTE: AtkRole = 103;
182pub const ATK_ROLE_AUDIO: AtkRole = 104;
183pub const ATK_ROLE_VIDEO: AtkRole = 105;
184pub const ATK_ROLE_DEFINITION: AtkRole = 106;
185pub const ATK_ROLE_ARTICLE: AtkRole = 107;
186pub const ATK_ROLE_LANDMARK: AtkRole = 108;
187pub const ATK_ROLE_LOG: AtkRole = 109;
188pub const ATK_ROLE_MARQUEE: AtkRole = 110;
189pub const ATK_ROLE_MATH: AtkRole = 111;
190pub const ATK_ROLE_RATING: AtkRole = 112;
191pub const ATK_ROLE_TIMER: AtkRole = 113;
192pub const ATK_ROLE_DESCRIPTION_LIST: AtkRole = 114;
193pub const ATK_ROLE_DESCRIPTION_TERM: AtkRole = 115;
194pub const ATK_ROLE_DESCRIPTION_VALUE: AtkRole = 116;
195pub const ATK_ROLE_STATIC: AtkRole = 117;
196pub const ATK_ROLE_MATH_FRACTION: AtkRole = 118;
197pub const ATK_ROLE_MATH_ROOT: AtkRole = 119;
198pub const ATK_ROLE_SUBSCRIPT: AtkRole = 120;
199pub const ATK_ROLE_SUPERSCRIPT: AtkRole = 121;
200pub const ATK_ROLE_FOOTNOTE: AtkRole = 122;
201pub const ATK_ROLE_CONTENT_DELETION: AtkRole = 123;
202pub const ATK_ROLE_CONTENT_INSERTION: AtkRole = 124;
203pub const ATK_ROLE_MARK: AtkRole = 125;
204pub const ATK_ROLE_SUGGESTION: AtkRole = 126;
205pub const ATK_ROLE_PUSH_BUTTON_MENU: AtkRole = 127;
206pub const ATK_ROLE_LAST_DEFINED: AtkRole = 128;
207
208pub type AtkScrollType = c_int;
209pub const ATK_SCROLL_TOP_LEFT: AtkScrollType = 0;
210pub const ATK_SCROLL_BOTTOM_RIGHT: AtkScrollType = 1;
211pub const ATK_SCROLL_TOP_EDGE: AtkScrollType = 2;
212pub const ATK_SCROLL_BOTTOM_EDGE: AtkScrollType = 3;
213pub const ATK_SCROLL_LEFT_EDGE: AtkScrollType = 4;
214pub const ATK_SCROLL_RIGHT_EDGE: AtkScrollType = 5;
215pub const ATK_SCROLL_ANYWHERE: AtkScrollType = 6;
216
217pub type AtkStateType = c_int;
218pub const ATK_STATE_INVALID: AtkStateType = 0;
219pub const ATK_STATE_ACTIVE: AtkStateType = 1;
220pub const ATK_STATE_ARMED: AtkStateType = 2;
221pub const ATK_STATE_BUSY: AtkStateType = 3;
222pub const ATK_STATE_CHECKED: AtkStateType = 4;
223pub const ATK_STATE_DEFUNCT: AtkStateType = 5;
224pub const ATK_STATE_EDITABLE: AtkStateType = 6;
225pub const ATK_STATE_ENABLED: AtkStateType = 7;
226pub const ATK_STATE_EXPANDABLE: AtkStateType = 8;
227pub const ATK_STATE_EXPANDED: AtkStateType = 9;
228pub const ATK_STATE_FOCUSABLE: AtkStateType = 10;
229pub const ATK_STATE_FOCUSED: AtkStateType = 11;
230pub const ATK_STATE_HORIZONTAL: AtkStateType = 12;
231pub const ATK_STATE_ICONIFIED: AtkStateType = 13;
232pub const ATK_STATE_MODAL: AtkStateType = 14;
233pub const ATK_STATE_MULTI_LINE: AtkStateType = 15;
234pub const ATK_STATE_MULTISELECTABLE: AtkStateType = 16;
235pub const ATK_STATE_OPAQUE: AtkStateType = 17;
236pub const ATK_STATE_PRESSED: AtkStateType = 18;
237pub const ATK_STATE_RESIZABLE: AtkStateType = 19;
238pub const ATK_STATE_SELECTABLE: AtkStateType = 20;
239pub const ATK_STATE_SELECTED: AtkStateType = 21;
240pub const ATK_STATE_SENSITIVE: AtkStateType = 22;
241pub const ATK_STATE_SHOWING: AtkStateType = 23;
242pub const ATK_STATE_SINGLE_LINE: AtkStateType = 24;
243pub const ATK_STATE_STALE: AtkStateType = 25;
244pub const ATK_STATE_TRANSIENT: AtkStateType = 26;
245pub const ATK_STATE_VERTICAL: AtkStateType = 27;
246pub const ATK_STATE_VISIBLE: AtkStateType = 28;
247pub const ATK_STATE_MANAGES_DESCENDANTS: AtkStateType = 29;
248pub const ATK_STATE_INDETERMINATE: AtkStateType = 30;
249pub const ATK_STATE_TRUNCATED: AtkStateType = 31;
250pub const ATK_STATE_REQUIRED: AtkStateType = 32;
251pub const ATK_STATE_INVALID_ENTRY: AtkStateType = 33;
252pub const ATK_STATE_SUPPORTS_AUTOCOMPLETION: AtkStateType = 34;
253pub const ATK_STATE_SELECTABLE_TEXT: AtkStateType = 35;
254pub const ATK_STATE_DEFAULT: AtkStateType = 36;
255pub const ATK_STATE_ANIMATED: AtkStateType = 37;
256pub const ATK_STATE_VISITED: AtkStateType = 38;
257pub const ATK_STATE_CHECKABLE: AtkStateType = 39;
258pub const ATK_STATE_HAS_POPUP: AtkStateType = 40;
259pub const ATK_STATE_HAS_TOOLTIP: AtkStateType = 41;
260pub const ATK_STATE_READ_ONLY: AtkStateType = 42;
261#[cfg(feature = "v2_38")]
262#[cfg_attr(docsrs, doc(cfg(feature = "v2_38")))]
263pub const ATK_STATE_COLLAPSED: AtkStateType = 43;
264
265pub type AtkTextAttribute = c_int;
266pub const ATK_TEXT_ATTR_INVALID: AtkTextAttribute = 0;
267pub const ATK_TEXT_ATTR_LEFT_MARGIN: AtkTextAttribute = 1;
268pub const ATK_TEXT_ATTR_RIGHT_MARGIN: AtkTextAttribute = 2;
269pub const ATK_TEXT_ATTR_INDENT: AtkTextAttribute = 3;
270pub const ATK_TEXT_ATTR_INVISIBLE: AtkTextAttribute = 4;
271pub const ATK_TEXT_ATTR_EDITABLE: AtkTextAttribute = 5;
272pub const ATK_TEXT_ATTR_PIXELS_ABOVE_LINES: AtkTextAttribute = 6;
273pub const ATK_TEXT_ATTR_PIXELS_BELOW_LINES: AtkTextAttribute = 7;
274pub const ATK_TEXT_ATTR_PIXELS_INSIDE_WRAP: AtkTextAttribute = 8;
275pub const ATK_TEXT_ATTR_BG_FULL_HEIGHT: AtkTextAttribute = 9;
276pub const ATK_TEXT_ATTR_RISE: AtkTextAttribute = 10;
277pub const ATK_TEXT_ATTR_UNDERLINE: AtkTextAttribute = 11;
278pub const ATK_TEXT_ATTR_STRIKETHROUGH: AtkTextAttribute = 12;
279pub const ATK_TEXT_ATTR_SIZE: AtkTextAttribute = 13;
280pub const ATK_TEXT_ATTR_SCALE: AtkTextAttribute = 14;
281pub const ATK_TEXT_ATTR_WEIGHT: AtkTextAttribute = 15;
282pub const ATK_TEXT_ATTR_LANGUAGE: AtkTextAttribute = 16;
283pub const ATK_TEXT_ATTR_FAMILY_NAME: AtkTextAttribute = 17;
284pub const ATK_TEXT_ATTR_BG_COLOR: AtkTextAttribute = 18;
285pub const ATK_TEXT_ATTR_FG_COLOR: AtkTextAttribute = 19;
286pub const ATK_TEXT_ATTR_BG_STIPPLE: AtkTextAttribute = 20;
287pub const ATK_TEXT_ATTR_FG_STIPPLE: AtkTextAttribute = 21;
288pub const ATK_TEXT_ATTR_WRAP_MODE: AtkTextAttribute = 22;
289pub const ATK_TEXT_ATTR_DIRECTION: AtkTextAttribute = 23;
290pub const ATK_TEXT_ATTR_JUSTIFICATION: AtkTextAttribute = 24;
291pub const ATK_TEXT_ATTR_STRETCH: AtkTextAttribute = 25;
292pub const ATK_TEXT_ATTR_VARIANT: AtkTextAttribute = 26;
293pub const ATK_TEXT_ATTR_STYLE: AtkTextAttribute = 27;
294pub const ATK_TEXT_ATTR_TEXT_POSITION: AtkTextAttribute = 28;
295pub const ATK_TEXT_ATTR_LAST_DEFINED: AtkTextAttribute = 29;
296
297pub type AtkTextBoundary = c_int;
298pub const ATK_TEXT_BOUNDARY_CHAR: AtkTextBoundary = 0;
299pub const ATK_TEXT_BOUNDARY_WORD_START: AtkTextBoundary = 1;
300pub const ATK_TEXT_BOUNDARY_WORD_END: AtkTextBoundary = 2;
301pub const ATK_TEXT_BOUNDARY_SENTENCE_START: AtkTextBoundary = 3;
302pub const ATK_TEXT_BOUNDARY_SENTENCE_END: AtkTextBoundary = 4;
303pub const ATK_TEXT_BOUNDARY_LINE_START: AtkTextBoundary = 5;
304pub const ATK_TEXT_BOUNDARY_LINE_END: AtkTextBoundary = 6;
305
306pub type AtkTextClipType = c_int;
307pub const ATK_TEXT_CLIP_NONE: AtkTextClipType = 0;
308pub const ATK_TEXT_CLIP_MIN: AtkTextClipType = 1;
309pub const ATK_TEXT_CLIP_MAX: AtkTextClipType = 2;
310pub const ATK_TEXT_CLIP_BOTH: AtkTextClipType = 3;
311
312pub type AtkTextGranularity = c_int;
313pub const ATK_TEXT_GRANULARITY_CHAR: AtkTextGranularity = 0;
314pub const ATK_TEXT_GRANULARITY_WORD: AtkTextGranularity = 1;
315pub const ATK_TEXT_GRANULARITY_SENTENCE: AtkTextGranularity = 2;
316pub const ATK_TEXT_GRANULARITY_LINE: AtkTextGranularity = 3;
317pub const ATK_TEXT_GRANULARITY_PARAGRAPH: AtkTextGranularity = 4;
318
319pub type AtkValueType = c_int;
320pub const ATK_VALUE_VERY_WEAK: AtkValueType = 0;
321pub const ATK_VALUE_WEAK: AtkValueType = 1;
322pub const ATK_VALUE_ACCEPTABLE: AtkValueType = 2;
323pub const ATK_VALUE_STRONG: AtkValueType = 3;
324pub const ATK_VALUE_VERY_STRONG: AtkValueType = 4;
325pub const ATK_VALUE_VERY_LOW: AtkValueType = 5;
326pub const ATK_VALUE_LOW: AtkValueType = 6;
327pub const ATK_VALUE_MEDIUM: AtkValueType = 7;
328pub const ATK_VALUE_HIGH: AtkValueType = 8;
329pub const ATK_VALUE_VERY_HIGH: AtkValueType = 9;
330pub const ATK_VALUE_VERY_BAD: AtkValueType = 10;
331pub const ATK_VALUE_BAD: AtkValueType = 11;
332pub const ATK_VALUE_GOOD: AtkValueType = 12;
333pub const ATK_VALUE_VERY_GOOD: AtkValueType = 13;
334pub const ATK_VALUE_BEST: AtkValueType = 14;
335pub const ATK_VALUE_LAST_DEFINED: AtkValueType = 15;
336
337pub type AtkHyperlinkStateFlags = c_uint;
341pub const ATK_HYPERLINK_IS_INLINE: AtkHyperlinkStateFlags = 1;
342
343pub type AtkEventListener = Option<unsafe extern "C" fn(*mut AtkObject)>;
345pub type AtkEventListenerInit = Option<unsafe extern "C" fn()>;
346pub type AtkFocusHandler = Option<unsafe extern "C" fn(*mut AtkObject, gboolean)>;
347pub type AtkFunction = Option<unsafe extern "C" fn(gpointer) -> gboolean>;
348pub type AtkKeySnoopFunc = Option<unsafe extern "C" fn(*mut AtkKeyEventStruct, gpointer) -> c_int>;
349pub type AtkPropertyChangeHandler =
350 Option<unsafe extern "C" fn(*mut AtkObject, *mut AtkPropertyValues)>;
351
352#[derive(Copy, Clone)]
354#[repr(C)]
355pub struct AtkActionIface {
356 pub parent: gobject::GTypeInterface,
357 pub do_action: Option<unsafe extern "C" fn(*mut AtkAction, c_int) -> gboolean>,
358 pub get_n_actions: Option<unsafe extern "C" fn(*mut AtkAction) -> c_int>,
359 pub get_description: Option<unsafe extern "C" fn(*mut AtkAction, c_int) -> *const c_char>,
360 pub get_name: Option<unsafe extern "C" fn(*mut AtkAction, c_int) -> *const c_char>,
361 pub get_keybinding: Option<unsafe extern "C" fn(*mut AtkAction, c_int) -> *const c_char>,
362 pub set_description:
363 Option<unsafe extern "C" fn(*mut AtkAction, c_int, *const c_char) -> gboolean>,
364 pub get_localized_name: Option<unsafe extern "C" fn(*mut AtkAction, c_int) -> *const c_char>,
365}
366
367impl ::std::fmt::Debug for AtkActionIface {
368 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
369 f.debug_struct(&format!("AtkActionIface @ {self:p}"))
370 .field("do_action", &self.do_action)
371 .field("get_n_actions", &self.get_n_actions)
372 .field("get_description", &self.get_description)
373 .field("get_name", &self.get_name)
374 .field("get_keybinding", &self.get_keybinding)
375 .field("set_description", &self.set_description)
376 .field("get_localized_name", &self.get_localized_name)
377 .finish()
378 }
379}
380
381#[derive(Copy, Clone)]
382#[repr(C)]
383pub struct AtkAttribute {
384 pub name: *mut c_char,
385 pub value: *mut c_char,
386}
387
388impl ::std::fmt::Debug for AtkAttribute {
389 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
390 f.debug_struct(&format!("AtkAttribute @ {self:p}"))
391 .field("name", &self.name)
392 .field("value", &self.value)
393 .finish()
394 }
395}
396
397#[derive(Copy, Clone)]
398#[repr(C)]
399pub struct AtkComponentIface {
400 pub parent: gobject::GTypeInterface,
401 pub add_focus_handler:
402 Option<unsafe extern "C" fn(*mut AtkComponent, AtkFocusHandler) -> c_uint>,
403 pub contains:
404 Option<unsafe extern "C" fn(*mut AtkComponent, c_int, c_int, AtkCoordType) -> gboolean>,
405 pub ref_accessible_at_point: Option<
406 unsafe extern "C" fn(*mut AtkComponent, c_int, c_int, AtkCoordType) -> *mut AtkObject,
407 >,
408 pub get_extents: Option<
409 unsafe extern "C" fn(
410 *mut AtkComponent,
411 *mut c_int,
412 *mut c_int,
413 *mut c_int,
414 *mut c_int,
415 AtkCoordType,
416 ),
417 >,
418 pub get_position:
419 Option<unsafe extern "C" fn(*mut AtkComponent, *mut c_int, *mut c_int, AtkCoordType)>,
420 pub get_size: Option<unsafe extern "C" fn(*mut AtkComponent, *mut c_int, *mut c_int)>,
421 pub grab_focus: Option<unsafe extern "C" fn(*mut AtkComponent) -> gboolean>,
422 pub remove_focus_handler: Option<unsafe extern "C" fn(*mut AtkComponent, c_uint)>,
423 pub set_extents: Option<
424 unsafe extern "C" fn(
425 *mut AtkComponent,
426 c_int,
427 c_int,
428 c_int,
429 c_int,
430 AtkCoordType,
431 ) -> gboolean,
432 >,
433 pub set_position:
434 Option<unsafe extern "C" fn(*mut AtkComponent, c_int, c_int, AtkCoordType) -> gboolean>,
435 pub set_size: Option<unsafe extern "C" fn(*mut AtkComponent, c_int, c_int) -> gboolean>,
436 pub get_layer: Option<unsafe extern "C" fn(*mut AtkComponent) -> AtkLayer>,
437 pub get_mdi_zorder: Option<unsafe extern "C" fn(*mut AtkComponent) -> c_int>,
438 pub bounds_changed: Option<unsafe extern "C" fn(*mut AtkComponent, *mut AtkRectangle)>,
439 pub get_alpha: Option<unsafe extern "C" fn(*mut AtkComponent) -> c_double>,
440 pub scroll_to: Option<unsafe extern "C" fn(*mut AtkComponent, AtkScrollType) -> gboolean>,
441 pub scroll_to_point:
442 Option<unsafe extern "C" fn(*mut AtkComponent, AtkCoordType, c_int, c_int) -> gboolean>,
443}
444
445impl ::std::fmt::Debug for AtkComponentIface {
446 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
447 f.debug_struct(&format!("AtkComponentIface @ {self:p}"))
448 .field("add_focus_handler", &self.add_focus_handler)
449 .field("contains", &self.contains)
450 .field("ref_accessible_at_point", &self.ref_accessible_at_point)
451 .field("get_extents", &self.get_extents)
452 .field("get_position", &self.get_position)
453 .field("get_size", &self.get_size)
454 .field("grab_focus", &self.grab_focus)
455 .field("remove_focus_handler", &self.remove_focus_handler)
456 .field("set_extents", &self.set_extents)
457 .field("set_position", &self.set_position)
458 .field("set_size", &self.set_size)
459 .field("get_layer", &self.get_layer)
460 .field("get_mdi_zorder", &self.get_mdi_zorder)
461 .field("bounds_changed", &self.bounds_changed)
462 .field("get_alpha", &self.get_alpha)
463 .field("scroll_to", &self.scroll_to)
464 .field("scroll_to_point", &self.scroll_to_point)
465 .finish()
466 }
467}
468
469#[derive(Copy, Clone)]
470#[repr(C)]
471pub struct AtkDocumentIface {
472 pub parent: gobject::GTypeInterface,
473 pub get_document_type: Option<unsafe extern "C" fn(*mut AtkDocument) -> *const c_char>,
474 pub get_document: Option<unsafe extern "C" fn(*mut AtkDocument) -> gpointer>,
475 pub get_document_locale: Option<unsafe extern "C" fn(*mut AtkDocument) -> *const c_char>,
476 pub get_document_attributes:
477 Option<unsafe extern "C" fn(*mut AtkDocument) -> *mut AtkAttributeSet>,
478 pub get_document_attribute_value:
479 Option<unsafe extern "C" fn(*mut AtkDocument, *const c_char) -> *const c_char>,
480 pub set_document_attribute:
481 Option<unsafe extern "C" fn(*mut AtkDocument, *const c_char, *const c_char) -> gboolean>,
482 pub get_current_page_number: Option<unsafe extern "C" fn(*mut AtkDocument) -> c_int>,
483 pub get_page_count: Option<unsafe extern "C" fn(*mut AtkDocument) -> c_int>,
484}
485
486impl ::std::fmt::Debug for AtkDocumentIface {
487 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
488 f.debug_struct(&format!("AtkDocumentIface @ {self:p}"))
489 .field("parent", &self.parent)
490 .field("get_document_type", &self.get_document_type)
491 .field("get_document", &self.get_document)
492 .field("get_document_locale", &self.get_document_locale)
493 .field("get_document_attributes", &self.get_document_attributes)
494 .field(
495 "get_document_attribute_value",
496 &self.get_document_attribute_value,
497 )
498 .field("set_document_attribute", &self.set_document_attribute)
499 .field("get_current_page_number", &self.get_current_page_number)
500 .field("get_page_count", &self.get_page_count)
501 .finish()
502 }
503}
504
505#[derive(Copy, Clone)]
506#[repr(C)]
507pub struct AtkEditableTextIface {
508 pub parent_interface: gobject::GTypeInterface,
509 pub set_run_attributes: Option<
510 unsafe extern "C" fn(*mut AtkEditableText, *mut AtkAttributeSet, c_int, c_int) -> gboolean,
511 >,
512 pub set_text_contents: Option<unsafe extern "C" fn(*mut AtkEditableText, *const c_char)>,
513 pub insert_text:
514 Option<unsafe extern "C" fn(*mut AtkEditableText, *const c_char, c_int, *mut c_int)>,
515 pub copy_text: Option<unsafe extern "C" fn(*mut AtkEditableText, c_int, c_int)>,
516 pub cut_text: Option<unsafe extern "C" fn(*mut AtkEditableText, c_int, c_int)>,
517 pub delete_text: Option<unsafe extern "C" fn(*mut AtkEditableText, c_int, c_int)>,
518 pub paste_text: Option<unsafe extern "C" fn(*mut AtkEditableText, c_int)>,
519}
520
521impl ::std::fmt::Debug for AtkEditableTextIface {
522 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
523 f.debug_struct(&format!("AtkEditableTextIface @ {self:p}"))
524 .field("parent_interface", &self.parent_interface)
525 .field("set_run_attributes", &self.set_run_attributes)
526 .field("set_text_contents", &self.set_text_contents)
527 .field("insert_text", &self.insert_text)
528 .field("copy_text", &self.copy_text)
529 .field("cut_text", &self.cut_text)
530 .field("delete_text", &self.delete_text)
531 .field("paste_text", &self.paste_text)
532 .finish()
533 }
534}
535
536#[derive(Copy, Clone)]
537#[repr(C)]
538pub struct AtkGObjectAccessibleClass {
539 pub parent_class: AtkObjectClass,
540 pub pad1: AtkFunction,
541 pub pad2: AtkFunction,
542}
543
544impl ::std::fmt::Debug for AtkGObjectAccessibleClass {
545 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
546 f.debug_struct(&format!("AtkGObjectAccessibleClass @ {self:p}"))
547 .field("parent_class", &self.parent_class)
548 .field("pad1", &self.pad1)
549 .field("pad2", &self.pad2)
550 .finish()
551 }
552}
553
554#[derive(Copy, Clone)]
555#[repr(C)]
556pub struct AtkHyperlinkClass {
557 pub parent: gobject::GObjectClass,
558 pub get_uri: Option<unsafe extern "C" fn(*mut AtkHyperlink, c_int) -> *mut c_char>,
559 pub get_object: Option<unsafe extern "C" fn(*mut AtkHyperlink, c_int) -> *mut AtkObject>,
560 pub get_end_index: Option<unsafe extern "C" fn(*mut AtkHyperlink) -> c_int>,
561 pub get_start_index: Option<unsafe extern "C" fn(*mut AtkHyperlink) -> c_int>,
562 pub is_valid: Option<unsafe extern "C" fn(*mut AtkHyperlink) -> gboolean>,
563 pub get_n_anchors: Option<unsafe extern "C" fn(*mut AtkHyperlink) -> c_int>,
564 pub link_state: Option<unsafe extern "C" fn(*mut AtkHyperlink) -> c_uint>,
565 pub is_selected_link: Option<unsafe extern "C" fn(*mut AtkHyperlink) -> gboolean>,
566 pub link_activated: Option<unsafe extern "C" fn(*mut AtkHyperlink)>,
567 pub pad1: AtkFunction,
568}
569
570impl ::std::fmt::Debug for AtkHyperlinkClass {
571 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
572 f.debug_struct(&format!("AtkHyperlinkClass @ {self:p}"))
573 .field("parent", &self.parent)
574 .field("get_uri", &self.get_uri)
575 .field("get_object", &self.get_object)
576 .field("get_end_index", &self.get_end_index)
577 .field("get_start_index", &self.get_start_index)
578 .field("is_valid", &self.is_valid)
579 .field("get_n_anchors", &self.get_n_anchors)
580 .field("link_state", &self.link_state)
581 .field("is_selected_link", &self.is_selected_link)
582 .field("link_activated", &self.link_activated)
583 .field("pad1", &self.pad1)
584 .finish()
585 }
586}
587
588#[derive(Copy, Clone)]
589#[repr(C)]
590pub struct AtkHyperlinkImplIface {
591 pub parent: gobject::GTypeInterface,
592 pub get_hyperlink: Option<unsafe extern "C" fn(*mut AtkHyperlinkImpl) -> *mut AtkHyperlink>,
593}
594
595impl ::std::fmt::Debug for AtkHyperlinkImplIface {
596 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
597 f.debug_struct(&format!("AtkHyperlinkImplIface @ {self:p}"))
598 .field("parent", &self.parent)
599 .field("get_hyperlink", &self.get_hyperlink)
600 .finish()
601 }
602}
603
604#[derive(Copy, Clone)]
605#[repr(C)]
606pub struct AtkHypertextIface {
607 pub parent: gobject::GTypeInterface,
608 pub get_link: Option<unsafe extern "C" fn(*mut AtkHypertext, c_int) -> *mut AtkHyperlink>,
609 pub get_n_links: Option<unsafe extern "C" fn(*mut AtkHypertext) -> c_int>,
610 pub get_link_index: Option<unsafe extern "C" fn(*mut AtkHypertext, c_int) -> c_int>,
611 pub link_selected: Option<unsafe extern "C" fn(*mut AtkHypertext, c_int)>,
612}
613
614impl ::std::fmt::Debug for AtkHypertextIface {
615 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
616 f.debug_struct(&format!("AtkHypertextIface @ {self:p}"))
617 .field("parent", &self.parent)
618 .field("get_link", &self.get_link)
619 .field("get_n_links", &self.get_n_links)
620 .field("get_link_index", &self.get_link_index)
621 .field("link_selected", &self.link_selected)
622 .finish()
623 }
624}
625
626#[derive(Copy, Clone)]
627#[repr(C)]
628pub struct AtkImageIface {
629 pub parent: gobject::GTypeInterface,
630 pub get_image_position:
631 Option<unsafe extern "C" fn(*mut AtkImage, *mut c_int, *mut c_int, AtkCoordType)>,
632 pub get_image_description: Option<unsafe extern "C" fn(*mut AtkImage) -> *const c_char>,
633 pub get_image_size: Option<unsafe extern "C" fn(*mut AtkImage, *mut c_int, *mut c_int)>,
634 pub set_image_description:
635 Option<unsafe extern "C" fn(*mut AtkImage, *const c_char) -> gboolean>,
636 pub get_image_locale: Option<unsafe extern "C" fn(*mut AtkImage) -> *const c_char>,
637}
638
639impl ::std::fmt::Debug for AtkImageIface {
640 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
641 f.debug_struct(&format!("AtkImageIface @ {self:p}"))
642 .field("parent", &self.parent)
643 .field("get_image_position", &self.get_image_position)
644 .field("get_image_description", &self.get_image_description)
645 .field("get_image_size", &self.get_image_size)
646 .field("set_image_description", &self.set_image_description)
647 .field("get_image_locale", &self.get_image_locale)
648 .finish()
649 }
650}
651
652#[repr(C)]
653pub struct _AtkImplementor {
654 _data: [u8; 0],
655 _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
656}
657
658pub type AtkImplementor = *mut _AtkImplementor;
659
660#[derive(Copy, Clone)]
661#[repr(C)]
662pub struct AtkKeyEventStruct {
663 pub type_: c_int,
664 pub state: c_uint,
665 pub keyval: c_uint,
666 pub length: c_int,
667 pub string: *mut c_char,
668 pub keycode: u16,
669 pub timestamp: u32,
670}
671
672impl ::std::fmt::Debug for AtkKeyEventStruct {
673 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
674 f.debug_struct(&format!("AtkKeyEventStruct @ {self:p}"))
675 .field("type_", &self.type_)
676 .field("state", &self.state)
677 .field("keyval", &self.keyval)
678 .field("length", &self.length)
679 .field("string", &self.string)
680 .field("keycode", &self.keycode)
681 .field("timestamp", &self.timestamp)
682 .finish()
683 }
684}
685
686#[derive(Copy, Clone)]
687#[repr(C)]
688pub struct AtkMiscClass {
689 pub parent: gobject::GObjectClass,
690 pub threads_enter: Option<unsafe extern "C" fn(*mut AtkMisc)>,
691 pub threads_leave: Option<unsafe extern "C" fn(*mut AtkMisc)>,
692 pub vfuncs: [gpointer; 32],
693}
694
695impl ::std::fmt::Debug for AtkMiscClass {
696 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
697 f.debug_struct(&format!("AtkMiscClass @ {self:p}"))
698 .field("parent", &self.parent)
699 .field("threads_enter", &self.threads_enter)
700 .field("threads_leave", &self.threads_leave)
701 .field("vfuncs", &self.vfuncs)
702 .finish()
703 }
704}
705
706#[derive(Copy, Clone)]
707#[repr(C)]
708pub struct AtkNoOpObjectClass {
709 pub parent_class: AtkObjectClass,
710}
711
712impl ::std::fmt::Debug for AtkNoOpObjectClass {
713 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
714 f.debug_struct(&format!("AtkNoOpObjectClass @ {self:p}"))
715 .field("parent_class", &self.parent_class)
716 .finish()
717 }
718}
719
720#[derive(Copy, Clone)]
721#[repr(C)]
722pub struct AtkNoOpObjectFactoryClass {
723 pub parent_class: AtkObjectFactoryClass,
724}
725
726impl ::std::fmt::Debug for AtkNoOpObjectFactoryClass {
727 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
728 f.debug_struct(&format!("AtkNoOpObjectFactoryClass @ {self:p}"))
729 .field("parent_class", &self.parent_class)
730 .finish()
731 }
732}
733
734#[derive(Copy, Clone)]
735#[repr(C)]
736pub struct AtkObjectClass {
737 pub parent: gobject::GObjectClass,
738 pub get_name: Option<unsafe extern "C" fn(*mut AtkObject) -> *const c_char>,
739 pub get_description: Option<unsafe extern "C" fn(*mut AtkObject) -> *const c_char>,
740 pub get_parent: Option<unsafe extern "C" fn(*mut AtkObject) -> *mut AtkObject>,
741 pub get_n_children: Option<unsafe extern "C" fn(*mut AtkObject) -> c_int>,
742 pub ref_child: Option<unsafe extern "C" fn(*mut AtkObject, c_int) -> *mut AtkObject>,
743 pub get_index_in_parent: Option<unsafe extern "C" fn(*mut AtkObject) -> c_int>,
744 pub ref_relation_set: Option<unsafe extern "C" fn(*mut AtkObject) -> *mut AtkRelationSet>,
745 pub get_role: Option<unsafe extern "C" fn(*mut AtkObject) -> AtkRole>,
746 pub get_layer: Option<unsafe extern "C" fn(*mut AtkObject) -> AtkLayer>,
747 pub get_mdi_zorder: Option<unsafe extern "C" fn(*mut AtkObject) -> c_int>,
748 pub ref_state_set: Option<unsafe extern "C" fn(*mut AtkObject) -> *mut AtkStateSet>,
749 pub set_name: Option<unsafe extern "C" fn(*mut AtkObject, *const c_char)>,
750 pub set_description: Option<unsafe extern "C" fn(*mut AtkObject, *const c_char)>,
751 pub set_parent: Option<unsafe extern "C" fn(*mut AtkObject, *mut AtkObject)>,
752 pub set_role: Option<unsafe extern "C" fn(*mut AtkObject, AtkRole)>,
753 pub connect_property_change_handler:
754 Option<unsafe extern "C" fn(*mut AtkObject, *mut AtkPropertyChangeHandler) -> c_uint>,
755 pub remove_property_change_handler: Option<unsafe extern "C" fn(*mut AtkObject, c_uint)>,
756 pub initialize: Option<unsafe extern "C" fn(*mut AtkObject, *mut gpointer)>,
757 pub children_changed: Option<unsafe extern "C" fn(*mut AtkObject, c_uint, gpointer)>,
758 pub focus_event: Option<unsafe extern "C" fn(*mut AtkObject, gboolean)>,
759 pub property_change: Option<unsafe extern "C" fn(*mut AtkObject, *mut AtkPropertyValues)>,
760 pub state_change: Option<unsafe extern "C" fn(*mut AtkObject, *const c_char, gboolean)>,
761 pub visible_data_changed: Option<unsafe extern "C" fn(*mut AtkObject)>,
762 pub active_descendant_changed: Option<unsafe extern "C" fn(*mut AtkObject, *mut gpointer)>,
763 pub get_attributes: Option<unsafe extern "C" fn(*mut AtkObject) -> *mut AtkAttributeSet>,
764 pub get_object_locale: Option<unsafe extern "C" fn(*mut AtkObject) -> *const c_char>,
765 pub pad1: AtkFunction,
766}
767
768impl ::std::fmt::Debug for AtkObjectClass {
769 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
770 f.debug_struct(&format!("AtkObjectClass @ {self:p}"))
771 .field("parent", &self.parent)
772 .field("get_name", &self.get_name)
773 .field("get_description", &self.get_description)
774 .field("get_parent", &self.get_parent)
775 .field("get_n_children", &self.get_n_children)
776 .field("ref_child", &self.ref_child)
777 .field("get_index_in_parent", &self.get_index_in_parent)
778 .field("ref_relation_set", &self.ref_relation_set)
779 .field("get_role", &self.get_role)
780 .field("get_layer", &self.get_layer)
781 .field("get_mdi_zorder", &self.get_mdi_zorder)
782 .field("ref_state_set", &self.ref_state_set)
783 .field("set_name", &self.set_name)
784 .field("set_description", &self.set_description)
785 .field("set_parent", &self.set_parent)
786 .field("set_role", &self.set_role)
787 .field(
788 "connect_property_change_handler",
789 &self.connect_property_change_handler,
790 )
791 .field(
792 "remove_property_change_handler",
793 &self.remove_property_change_handler,
794 )
795 .field("initialize", &self.initialize)
796 .field("children_changed", &self.children_changed)
797 .field("focus_event", &self.focus_event)
798 .field("property_change", &self.property_change)
799 .field("state_change", &self.state_change)
800 .field("visible_data_changed", &self.visible_data_changed)
801 .field("active_descendant_changed", &self.active_descendant_changed)
802 .field("get_attributes", &self.get_attributes)
803 .field("get_object_locale", &self.get_object_locale)
804 .field("pad1", &self.pad1)
805 .finish()
806 }
807}
808
809#[derive(Copy, Clone)]
810#[repr(C)]
811pub struct AtkObjectFactoryClass {
812 pub parent_class: gobject::GObjectClass,
813 pub create_accessible: Option<unsafe extern "C" fn(*mut gobject::GObject) -> *mut AtkObject>,
814 pub invalidate: Option<unsafe extern "C" fn(*mut AtkObjectFactory)>,
815 pub get_accessible_type: Option<unsafe extern "C" fn() -> GType>,
816 pub pad1: AtkFunction,
817 pub pad2: AtkFunction,
818}
819
820impl ::std::fmt::Debug for AtkObjectFactoryClass {
821 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
822 f.debug_struct(&format!("AtkObjectFactoryClass @ {self:p}"))
823 .field("parent_class", &self.parent_class)
824 .field("create_accessible", &self.create_accessible)
825 .field("invalidate", &self.invalidate)
826 .field("get_accessible_type", &self.get_accessible_type)
827 .field("pad1", &self.pad1)
828 .field("pad2", &self.pad2)
829 .finish()
830 }
831}
832
833#[derive(Copy, Clone)]
834#[repr(C)]
835pub struct AtkPlugClass {
836 pub parent_class: AtkObjectClass,
837 pub get_object_id: Option<unsafe extern "C" fn(*mut AtkPlug) -> *mut c_char>,
838}
839
840impl ::std::fmt::Debug for AtkPlugClass {
841 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
842 f.debug_struct(&format!("AtkPlugClass @ {self:p}"))
843 .field("parent_class", &self.parent_class)
844 .field("get_object_id", &self.get_object_id)
845 .finish()
846 }
847}
848
849#[derive(Copy, Clone)]
850#[repr(C)]
851pub struct AtkPropertyValues {
852 pub property_name: *const c_char,
853 pub old_value: gobject::GValue,
854 pub new_value: gobject::GValue,
855}
856
857impl ::std::fmt::Debug for AtkPropertyValues {
858 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
859 f.debug_struct(&format!("AtkPropertyValues @ {self:p}"))
860 .field("property_name", &self.property_name)
861 .field("old_value", &self.old_value)
862 .field("new_value", &self.new_value)
863 .finish()
864 }
865}
866
867#[repr(C)]
868pub struct AtkRange {
869 _data: [u8; 0],
870 _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
871}
872
873impl ::std::fmt::Debug for AtkRange {
874 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
875 f.debug_struct(&format!("AtkRange @ {self:p}")).finish()
876 }
877}
878
879#[derive(Copy, Clone)]
880#[repr(C)]
881pub struct AtkRectangle {
882 pub x: c_int,
883 pub y: c_int,
884 pub width: c_int,
885 pub height: c_int,
886}
887
888impl ::std::fmt::Debug for AtkRectangle {
889 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
890 f.debug_struct(&format!("AtkRectangle @ {self:p}"))
891 .field("x", &self.x)
892 .field("y", &self.y)
893 .field("width", &self.width)
894 .field("height", &self.height)
895 .finish()
896 }
897}
898
899#[derive(Copy, Clone)]
900#[repr(C)]
901pub struct AtkRegistryClass {
902 pub parent_class: gobject::GObjectClass,
903}
904
905impl ::std::fmt::Debug for AtkRegistryClass {
906 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
907 f.debug_struct(&format!("AtkRegistryClass @ {self:p}"))
908 .field("parent_class", &self.parent_class)
909 .finish()
910 }
911}
912
913#[derive(Copy, Clone)]
914#[repr(C)]
915pub struct AtkRelationClass {
916 pub parent: gobject::GObjectClass,
917}
918
919impl ::std::fmt::Debug for AtkRelationClass {
920 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
921 f.debug_struct(&format!("AtkRelationClass @ {self:p}"))
922 .field("parent", &self.parent)
923 .finish()
924 }
925}
926
927#[derive(Copy, Clone)]
928#[repr(C)]
929pub struct AtkRelationSetClass {
930 pub parent: gobject::GObjectClass,
931 pub pad1: AtkFunction,
932 pub pad2: AtkFunction,
933}
934
935impl ::std::fmt::Debug for AtkRelationSetClass {
936 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
937 f.debug_struct(&format!("AtkRelationSetClass @ {self:p}"))
938 .field("parent", &self.parent)
939 .field("pad1", &self.pad1)
940 .field("pad2", &self.pad2)
941 .finish()
942 }
943}
944
945#[derive(Copy, Clone)]
946#[repr(C)]
947pub struct AtkSelectionIface {
948 pub parent: gobject::GTypeInterface,
949 pub add_selection: Option<unsafe extern "C" fn(*mut AtkSelection, c_int) -> gboolean>,
950 pub clear_selection: Option<unsafe extern "C" fn(*mut AtkSelection) -> gboolean>,
951 pub ref_selection: Option<unsafe extern "C" fn(*mut AtkSelection, c_int) -> *mut AtkObject>,
952 pub get_selection_count: Option<unsafe extern "C" fn(*mut AtkSelection) -> c_int>,
953 pub is_child_selected: Option<unsafe extern "C" fn(*mut AtkSelection, c_int) -> gboolean>,
954 pub remove_selection: Option<unsafe extern "C" fn(*mut AtkSelection, c_int) -> gboolean>,
955 pub select_all_selection: Option<unsafe extern "C" fn(*mut AtkSelection) -> gboolean>,
956 pub selection_changed: Option<unsafe extern "C" fn(*mut AtkSelection)>,
957}
958
959impl ::std::fmt::Debug for AtkSelectionIface {
960 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
961 f.debug_struct(&format!("AtkSelectionIface @ {self:p}"))
962 .field("parent", &self.parent)
963 .field("add_selection", &self.add_selection)
964 .field("clear_selection", &self.clear_selection)
965 .field("ref_selection", &self.ref_selection)
966 .field("get_selection_count", &self.get_selection_count)
967 .field("is_child_selected", &self.is_child_selected)
968 .field("remove_selection", &self.remove_selection)
969 .field("select_all_selection", &self.select_all_selection)
970 .field("selection_changed", &self.selection_changed)
971 .finish()
972 }
973}
974
975#[derive(Copy, Clone)]
976#[repr(C)]
977pub struct AtkSocketClass {
978 pub parent_class: AtkObjectClass,
979 pub embed: Option<unsafe extern "C" fn(*mut AtkSocket, *const c_char)>,
980}
981
982impl ::std::fmt::Debug for AtkSocketClass {
983 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
984 f.debug_struct(&format!("AtkSocketClass @ {self:p}"))
985 .field("parent_class", &self.parent_class)
986 .field("embed", &self.embed)
987 .finish()
988 }
989}
990
991#[derive(Copy, Clone)]
992#[repr(C)]
993pub struct AtkStateSetClass {
994 pub parent: gobject::GObjectClass,
995}
996
997impl ::std::fmt::Debug for AtkStateSetClass {
998 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
999 f.debug_struct(&format!("AtkStateSetClass @ {self:p}"))
1000 .field("parent", &self.parent)
1001 .finish()
1002 }
1003}
1004
1005#[derive(Copy, Clone)]
1006#[repr(C)]
1007pub struct AtkStreamableContentIface {
1008 pub parent: gobject::GTypeInterface,
1009 pub get_n_mime_types: Option<unsafe extern "C" fn(*mut AtkStreamableContent) -> c_int>,
1010 pub get_mime_type:
1011 Option<unsafe extern "C" fn(*mut AtkStreamableContent, c_int) -> *const c_char>,
1012 pub get_stream: Option<
1013 unsafe extern "C" fn(*mut AtkStreamableContent, *const c_char) -> *mut glib::GIOChannel,
1014 >,
1015 pub get_uri:
1016 Option<unsafe extern "C" fn(*mut AtkStreamableContent, *const c_char) -> *const c_char>,
1017 pub pad1: AtkFunction,
1018 pub pad2: AtkFunction,
1019 pub pad3: AtkFunction,
1020}
1021
1022impl ::std::fmt::Debug for AtkStreamableContentIface {
1023 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1024 f.debug_struct(&format!("AtkStreamableContentIface @ {self:p}"))
1025 .field("parent", &self.parent)
1026 .field("get_n_mime_types", &self.get_n_mime_types)
1027 .field("get_mime_type", &self.get_mime_type)
1028 .field("get_stream", &self.get_stream)
1029 .field("get_uri", &self.get_uri)
1030 .field("pad1", &self.pad1)
1031 .field("pad2", &self.pad2)
1032 .field("pad3", &self.pad3)
1033 .finish()
1034 }
1035}
1036
1037#[derive(Copy, Clone)]
1038#[repr(C)]
1039pub struct AtkTableCellIface {
1040 pub parent: gobject::GTypeInterface,
1041 pub get_column_span: Option<unsafe extern "C" fn(*mut AtkTableCell) -> c_int>,
1042 pub get_column_header_cells:
1043 Option<unsafe extern "C" fn(*mut AtkTableCell) -> *mut glib::GPtrArray>,
1044 pub get_position:
1045 Option<unsafe extern "C" fn(*mut AtkTableCell, *mut c_int, *mut c_int) -> gboolean>,
1046 pub get_row_span: Option<unsafe extern "C" fn(*mut AtkTableCell) -> c_int>,
1047 pub get_row_header_cells:
1048 Option<unsafe extern "C" fn(*mut AtkTableCell) -> *mut glib::GPtrArray>,
1049 pub get_row_column_span: Option<
1050 unsafe extern "C" fn(
1051 *mut AtkTableCell,
1052 *mut c_int,
1053 *mut c_int,
1054 *mut c_int,
1055 *mut c_int,
1056 ) -> gboolean,
1057 >,
1058 pub get_table: Option<unsafe extern "C" fn(*mut AtkTableCell) -> *mut AtkObject>,
1059}
1060
1061impl ::std::fmt::Debug for AtkTableCellIface {
1062 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1063 f.debug_struct(&format!("AtkTableCellIface @ {self:p}"))
1064 .field("get_column_span", &self.get_column_span)
1065 .field("get_column_header_cells", &self.get_column_header_cells)
1066 .field("get_position", &self.get_position)
1067 .field("get_row_span", &self.get_row_span)
1068 .field("get_row_header_cells", &self.get_row_header_cells)
1069 .field("get_row_column_span", &self.get_row_column_span)
1070 .field("get_table", &self.get_table)
1071 .finish()
1072 }
1073}
1074
1075#[derive(Copy, Clone)]
1076#[repr(C)]
1077pub struct AtkTableIface {
1078 pub parent: gobject::GTypeInterface,
1079 pub ref_at: Option<unsafe extern "C" fn(*mut AtkTable, c_int, c_int) -> *mut AtkObject>,
1080 pub get_index_at: Option<unsafe extern "C" fn(*mut AtkTable, c_int, c_int) -> c_int>,
1081 pub get_column_at_index: Option<unsafe extern "C" fn(*mut AtkTable, *mut *mut c_int) -> c_int>,
1082 pub get_row_at_index: Option<unsafe extern "C" fn(*mut AtkTable, *mut *mut c_int) -> c_int>,
1083 pub get_n_columns: Option<unsafe extern "C" fn(*mut AtkTable) -> c_int>,
1084 pub get_n_rows: Option<unsafe extern "C" fn(*mut AtkTable) -> c_int>,
1085 pub get_column_extent_at: Option<unsafe extern "C" fn(*mut AtkTable, c_int, c_int) -> c_int>,
1086 pub get_row_extent_at: Option<unsafe extern "C" fn(*mut AtkTable, c_int, c_int) -> c_int>,
1087 pub get_caption: Option<unsafe extern "C" fn(*mut AtkTable) -> *mut AtkObject>,
1088 pub get_column_description: Option<unsafe extern "C" fn(*mut AtkTable, c_int) -> *const c_char>,
1089 pub get_column_header: Option<unsafe extern "C" fn(*mut AtkTable, c_int) -> *mut AtkObject>,
1090 pub get_row_description: Option<unsafe extern "C" fn(*mut AtkTable, c_int) -> *const c_char>,
1091 pub get_row_header: Option<unsafe extern "C" fn(*mut AtkTable, c_int) -> *mut AtkObject>,
1092 pub get_summary: Option<unsafe extern "C" fn(*mut AtkTable) -> *mut AtkObject>,
1093 pub set_caption: Option<unsafe extern "C" fn(*mut AtkTable, *mut AtkObject)>,
1094 pub set_column_description: Option<unsafe extern "C" fn(*mut AtkTable, c_int, *const c_char)>,
1095 pub set_column_header: Option<unsafe extern "C" fn(*mut AtkTable, c_int, *mut AtkObject)>,
1096 pub set_row_description: Option<unsafe extern "C" fn(*mut AtkTable, c_int, *const c_char)>,
1097 pub set_row_header: Option<unsafe extern "C" fn(*mut AtkTable, c_int, *mut AtkObject)>,
1098 pub set_summary: Option<unsafe extern "C" fn(*mut AtkTable, *mut AtkObject)>,
1099 pub get_selected_columns: Option<unsafe extern "C" fn(*mut AtkTable, *mut *mut c_int) -> c_int>,
1100 pub get_selected_rows: Option<unsafe extern "C" fn(*mut AtkTable, *mut *mut c_int) -> c_int>,
1101 pub is_column_selected: Option<unsafe extern "C" fn(*mut AtkTable, c_int) -> gboolean>,
1102 pub is_row_selected: Option<unsafe extern "C" fn(*mut AtkTable, c_int) -> gboolean>,
1103 pub is_selected: Option<unsafe extern "C" fn(*mut AtkTable, c_int, c_int) -> gboolean>,
1104 pub add_row_selection: Option<unsafe extern "C" fn(*mut AtkTable, c_int) -> gboolean>,
1105 pub remove_row_selection: Option<unsafe extern "C" fn(*mut AtkTable, c_int) -> gboolean>,
1106 pub add_column_selection: Option<unsafe extern "C" fn(*mut AtkTable, c_int) -> gboolean>,
1107 pub remove_column_selection: Option<unsafe extern "C" fn(*mut AtkTable, c_int) -> gboolean>,
1108 pub row_inserted: Option<unsafe extern "C" fn(*mut AtkTable, c_int, c_int)>,
1109 pub column_inserted: Option<unsafe extern "C" fn(*mut AtkTable, c_int, c_int)>,
1110 pub row_deleted: Option<unsafe extern "C" fn(*mut AtkTable, c_int, c_int)>,
1111 pub column_deleted: Option<unsafe extern "C" fn(*mut AtkTable, c_int, c_int)>,
1112 pub row_reordered: Option<unsafe extern "C" fn(*mut AtkTable)>,
1113 pub column_reordered: Option<unsafe extern "C" fn(*mut AtkTable)>,
1114 pub model_changed: Option<unsafe extern "C" fn(*mut AtkTable)>,
1115}
1116
1117impl ::std::fmt::Debug for AtkTableIface {
1118 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1119 f.debug_struct(&format!("AtkTableIface @ {self:p}"))
1120 .field("parent", &self.parent)
1121 .field("ref_at", &self.ref_at)
1122 .field("get_index_at", &self.get_index_at)
1123 .field("get_column_at_index", &self.get_column_at_index)
1124 .field("get_row_at_index", &self.get_row_at_index)
1125 .field("get_n_columns", &self.get_n_columns)
1126 .field("get_n_rows", &self.get_n_rows)
1127 .field("get_column_extent_at", &self.get_column_extent_at)
1128 .field("get_row_extent_at", &self.get_row_extent_at)
1129 .field("get_caption", &self.get_caption)
1130 .field("get_column_description", &self.get_column_description)
1131 .field("get_column_header", &self.get_column_header)
1132 .field("get_row_description", &self.get_row_description)
1133 .field("get_row_header", &self.get_row_header)
1134 .field("get_summary", &self.get_summary)
1135 .field("set_caption", &self.set_caption)
1136 .field("set_column_description", &self.set_column_description)
1137 .field("set_column_header", &self.set_column_header)
1138 .field("set_row_description", &self.set_row_description)
1139 .field("set_row_header", &self.set_row_header)
1140 .field("set_summary", &self.set_summary)
1141 .field("get_selected_columns", &self.get_selected_columns)
1142 .field("get_selected_rows", &self.get_selected_rows)
1143 .field("is_column_selected", &self.is_column_selected)
1144 .field("is_row_selected", &self.is_row_selected)
1145 .field("is_selected", &self.is_selected)
1146 .field("add_row_selection", &self.add_row_selection)
1147 .field("remove_row_selection", &self.remove_row_selection)
1148 .field("add_column_selection", &self.add_column_selection)
1149 .field("remove_column_selection", &self.remove_column_selection)
1150 .field("row_inserted", &self.row_inserted)
1151 .field("column_inserted", &self.column_inserted)
1152 .field("row_deleted", &self.row_deleted)
1153 .field("column_deleted", &self.column_deleted)
1154 .field("row_reordered", &self.row_reordered)
1155 .field("column_reordered", &self.column_reordered)
1156 .field("model_changed", &self.model_changed)
1157 .finish()
1158 }
1159}
1160
1161#[derive(Copy, Clone)]
1162#[repr(C)]
1163pub struct AtkTextIface {
1164 pub parent: gobject::GTypeInterface,
1165 pub get_text: Option<unsafe extern "C" fn(*mut AtkText, c_int, c_int) -> *mut c_char>,
1166 pub get_text_after_offset: Option<
1167 unsafe extern "C" fn(
1168 *mut AtkText,
1169 c_int,
1170 AtkTextBoundary,
1171 *mut c_int,
1172 *mut c_int,
1173 ) -> *mut c_char,
1174 >,
1175 pub get_text_at_offset: Option<
1176 unsafe extern "C" fn(
1177 *mut AtkText,
1178 c_int,
1179 AtkTextBoundary,
1180 *mut c_int,
1181 *mut c_int,
1182 ) -> *mut c_char,
1183 >,
1184 pub get_character_at_offset: Option<unsafe extern "C" fn(*mut AtkText, c_int) -> u32>,
1185 pub get_text_before_offset: Option<
1186 unsafe extern "C" fn(
1187 *mut AtkText,
1188 c_int,
1189 AtkTextBoundary,
1190 *mut c_int,
1191 *mut c_int,
1192 ) -> *mut c_char,
1193 >,
1194 pub get_caret_offset: Option<unsafe extern "C" fn(*mut AtkText) -> c_int>,
1195 pub get_run_attributes: Option<
1196 unsafe extern "C" fn(*mut AtkText, c_int, *mut c_int, *mut c_int) -> *mut AtkAttributeSet,
1197 >,
1198 pub get_default_attributes: Option<unsafe extern "C" fn(*mut AtkText) -> *mut AtkAttributeSet>,
1199 pub get_character_extents: Option<
1200 unsafe extern "C" fn(
1201 *mut AtkText,
1202 c_int,
1203 *mut c_int,
1204 *mut c_int,
1205 *mut c_int,
1206 *mut c_int,
1207 AtkCoordType,
1208 ),
1209 >,
1210 pub get_character_count: Option<unsafe extern "C" fn(*mut AtkText) -> c_int>,
1211 pub get_offset_at_point:
1212 Option<unsafe extern "C" fn(*mut AtkText, c_int, c_int, AtkCoordType) -> c_int>,
1213 pub get_n_selections: Option<unsafe extern "C" fn(*mut AtkText) -> c_int>,
1214 pub get_selection:
1215 Option<unsafe extern "C" fn(*mut AtkText, c_int, *mut c_int, *mut c_int) -> *mut c_char>,
1216 pub add_selection: Option<unsafe extern "C" fn(*mut AtkText, c_int, c_int) -> gboolean>,
1217 pub remove_selection: Option<unsafe extern "C" fn(*mut AtkText, c_int) -> gboolean>,
1218 pub set_selection: Option<unsafe extern "C" fn(*mut AtkText, c_int, c_int, c_int) -> gboolean>,
1219 pub set_caret_offset: Option<unsafe extern "C" fn(*mut AtkText, c_int) -> gboolean>,
1220 pub text_changed: Option<unsafe extern "C" fn(*mut AtkText, c_int, c_int)>,
1221 pub text_caret_moved: Option<unsafe extern "C" fn(*mut AtkText, c_int)>,
1222 pub text_selection_changed: Option<unsafe extern "C" fn(*mut AtkText)>,
1223 pub text_attributes_changed: Option<unsafe extern "C" fn(*mut AtkText)>,
1224 pub get_range_extents: Option<
1225 unsafe extern "C" fn(*mut AtkText, c_int, c_int, AtkCoordType, *mut AtkTextRectangle),
1226 >,
1227 pub get_bounded_ranges: Option<
1228 unsafe extern "C" fn(
1229 *mut AtkText,
1230 *mut AtkTextRectangle,
1231 AtkCoordType,
1232 AtkTextClipType,
1233 AtkTextClipType,
1234 ) -> *mut *mut AtkTextRange,
1235 >,
1236 pub get_string_at_offset: Option<
1237 unsafe extern "C" fn(
1238 *mut AtkText,
1239 c_int,
1240 AtkTextGranularity,
1241 *mut c_int,
1242 *mut c_int,
1243 ) -> *mut c_char,
1244 >,
1245 pub scroll_substring_to:
1246 Option<unsafe extern "C" fn(*mut AtkText, c_int, c_int, AtkScrollType) -> gboolean>,
1247 pub scroll_substring_to_point: Option<
1248 unsafe extern "C" fn(*mut AtkText, c_int, c_int, AtkCoordType, c_int, c_int) -> gboolean,
1249 >,
1250}
1251
1252impl ::std::fmt::Debug for AtkTextIface {
1253 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1254 f.debug_struct(&format!("AtkTextIface @ {self:p}"))
1255 .field("parent", &self.parent)
1256 .field("get_text", &self.get_text)
1257 .field("get_text_after_offset", &self.get_text_after_offset)
1258 .field("get_text_at_offset", &self.get_text_at_offset)
1259 .field("get_character_at_offset", &self.get_character_at_offset)
1260 .field("get_text_before_offset", &self.get_text_before_offset)
1261 .field("get_caret_offset", &self.get_caret_offset)
1262 .field("get_run_attributes", &self.get_run_attributes)
1263 .field("get_default_attributes", &self.get_default_attributes)
1264 .field("get_character_extents", &self.get_character_extents)
1265 .field("get_character_count", &self.get_character_count)
1266 .field("get_offset_at_point", &self.get_offset_at_point)
1267 .field("get_n_selections", &self.get_n_selections)
1268 .field("get_selection", &self.get_selection)
1269 .field("add_selection", &self.add_selection)
1270 .field("remove_selection", &self.remove_selection)
1271 .field("set_selection", &self.set_selection)
1272 .field("set_caret_offset", &self.set_caret_offset)
1273 .field("text_changed", &self.text_changed)
1274 .field("text_caret_moved", &self.text_caret_moved)
1275 .field("text_selection_changed", &self.text_selection_changed)
1276 .field("text_attributes_changed", &self.text_attributes_changed)
1277 .field("get_range_extents", &self.get_range_extents)
1278 .field("get_bounded_ranges", &self.get_bounded_ranges)
1279 .field("get_string_at_offset", &self.get_string_at_offset)
1280 .field("scroll_substring_to", &self.scroll_substring_to)
1281 .field("scroll_substring_to_point", &self.scroll_substring_to_point)
1282 .finish()
1283 }
1284}
1285
1286#[derive(Copy, Clone)]
1287#[repr(C)]
1288pub struct AtkTextRange {
1289 pub bounds: AtkTextRectangle,
1290 pub start_offset: c_int,
1291 pub end_offset: c_int,
1292 pub content: *mut c_char,
1293}
1294
1295impl ::std::fmt::Debug for AtkTextRange {
1296 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1297 f.debug_struct(&format!("AtkTextRange @ {self:p}"))
1298 .field("bounds", &self.bounds)
1299 .field("start_offset", &self.start_offset)
1300 .field("end_offset", &self.end_offset)
1301 .field("content", &self.content)
1302 .finish()
1303 }
1304}
1305
1306#[derive(Copy, Clone)]
1307#[repr(C)]
1308pub struct AtkTextRectangle {
1309 pub x: c_int,
1310 pub y: c_int,
1311 pub width: c_int,
1312 pub height: c_int,
1313}
1314
1315impl ::std::fmt::Debug for AtkTextRectangle {
1316 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1317 f.debug_struct(&format!("AtkTextRectangle @ {self:p}"))
1318 .field("x", &self.x)
1319 .field("y", &self.y)
1320 .field("width", &self.width)
1321 .field("height", &self.height)
1322 .finish()
1323 }
1324}
1325
1326#[derive(Copy, Clone)]
1327#[repr(C)]
1328pub struct AtkUtilClass {
1329 pub parent: gobject::GObjectClass,
1330 pub add_global_event_listener:
1331 Option<unsafe extern "C" fn(gobject::GSignalEmissionHook, *const c_char) -> c_uint>,
1332 pub remove_global_event_listener: Option<unsafe extern "C" fn(c_uint)>,
1333 pub add_key_event_listener: Option<unsafe extern "C" fn(AtkKeySnoopFunc, gpointer) -> c_uint>,
1334 pub remove_key_event_listener: Option<unsafe extern "C" fn(c_uint)>,
1335 pub get_root: Option<unsafe extern "C" fn() -> *mut AtkObject>,
1336 pub get_toolkit_name: Option<unsafe extern "C" fn() -> *const c_char>,
1337 pub get_toolkit_version: Option<unsafe extern "C" fn() -> *const c_char>,
1338}
1339
1340impl ::std::fmt::Debug for AtkUtilClass {
1341 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1342 f.debug_struct(&format!("AtkUtilClass @ {self:p}"))
1343 .field("parent", &self.parent)
1344 .field("add_global_event_listener", &self.add_global_event_listener)
1345 .field(
1346 "remove_global_event_listener",
1347 &self.remove_global_event_listener,
1348 )
1349 .field("add_key_event_listener", &self.add_key_event_listener)
1350 .field("remove_key_event_listener", &self.remove_key_event_listener)
1351 .field("get_root", &self.get_root)
1352 .field("get_toolkit_name", &self.get_toolkit_name)
1353 .field("get_toolkit_version", &self.get_toolkit_version)
1354 .finish()
1355 }
1356}
1357
1358#[derive(Copy, Clone)]
1359#[repr(C)]
1360pub struct AtkValueIface {
1361 pub parent: gobject::GTypeInterface,
1362 pub get_current_value: Option<unsafe extern "C" fn(*mut AtkValue, *mut gobject::GValue)>,
1363 pub get_maximum_value: Option<unsafe extern "C" fn(*mut AtkValue, *mut gobject::GValue)>,
1364 pub get_minimum_value: Option<unsafe extern "C" fn(*mut AtkValue, *mut gobject::GValue)>,
1365 pub set_current_value:
1366 Option<unsafe extern "C" fn(*mut AtkValue, *const gobject::GValue) -> gboolean>,
1367 pub get_minimum_increment: Option<unsafe extern "C" fn(*mut AtkValue, *mut gobject::GValue)>,
1368 pub get_value_and_text:
1369 Option<unsafe extern "C" fn(*mut AtkValue, *mut c_double, *mut *mut c_char)>,
1370 pub get_range: Option<unsafe extern "C" fn(*mut AtkValue) -> *mut AtkRange>,
1371 pub get_increment: Option<unsafe extern "C" fn(*mut AtkValue) -> c_double>,
1372 pub get_sub_ranges: Option<unsafe extern "C" fn(*mut AtkValue) -> *mut glib::GSList>,
1373 pub set_value: Option<unsafe extern "C" fn(*mut AtkValue, c_double)>,
1374}
1375
1376impl ::std::fmt::Debug for AtkValueIface {
1377 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1378 f.debug_struct(&format!("AtkValueIface @ {self:p}"))
1379 .field("parent", &self.parent)
1380 .field("get_current_value", &self.get_current_value)
1381 .field("get_maximum_value", &self.get_maximum_value)
1382 .field("get_minimum_value", &self.get_minimum_value)
1383 .field("set_current_value", &self.set_current_value)
1384 .field("get_minimum_increment", &self.get_minimum_increment)
1385 .field("get_value_and_text", &self.get_value_and_text)
1386 .field("get_range", &self.get_range)
1387 .field("get_increment", &self.get_increment)
1388 .field("get_sub_ranges", &self.get_sub_ranges)
1389 .field("set_value", &self.set_value)
1390 .finish()
1391 }
1392}
1393
1394#[derive(Copy, Clone)]
1395#[repr(C)]
1396pub struct AtkWindowIface {
1397 pub parent: gobject::GTypeInterface,
1398}
1399
1400impl ::std::fmt::Debug for AtkWindowIface {
1401 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1402 f.debug_struct(&format!("AtkWindowIface @ {self:p}"))
1403 .field("parent", &self.parent)
1404 .finish()
1405 }
1406}
1407
1408#[derive(Copy, Clone)]
1410#[repr(C)]
1411pub struct AtkGObjectAccessible {
1412 pub parent: AtkObject,
1413}
1414
1415impl ::std::fmt::Debug for AtkGObjectAccessible {
1416 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1417 f.debug_struct(&format!("AtkGObjectAccessible @ {self:p}"))
1418 .field("parent", &self.parent)
1419 .finish()
1420 }
1421}
1422
1423#[derive(Copy, Clone)]
1424#[repr(C)]
1425pub struct AtkHyperlink {
1426 pub parent: gobject::GObject,
1427}
1428
1429impl ::std::fmt::Debug for AtkHyperlink {
1430 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1431 f.debug_struct(&format!("AtkHyperlink @ {self:p}"))
1432 .field("parent", &self.parent)
1433 .finish()
1434 }
1435}
1436
1437#[derive(Copy, Clone)]
1438#[repr(C)]
1439pub struct AtkMisc {
1440 pub parent: gobject::GObject,
1441}
1442
1443impl ::std::fmt::Debug for AtkMisc {
1444 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1445 f.debug_struct(&format!("AtkMisc @ {self:p}"))
1446 .field("parent", &self.parent)
1447 .finish()
1448 }
1449}
1450
1451#[derive(Copy, Clone)]
1452#[repr(C)]
1453pub struct AtkNoOpObject {
1454 pub parent: AtkObject,
1455}
1456
1457impl ::std::fmt::Debug for AtkNoOpObject {
1458 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1459 f.debug_struct(&format!("AtkNoOpObject @ {self:p}"))
1460 .field("parent", &self.parent)
1461 .finish()
1462 }
1463}
1464
1465#[derive(Copy, Clone)]
1466#[repr(C)]
1467pub struct AtkNoOpObjectFactory {
1468 pub parent: AtkObjectFactory,
1469}
1470
1471impl ::std::fmt::Debug for AtkNoOpObjectFactory {
1472 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1473 f.debug_struct(&format!("AtkNoOpObjectFactory @ {self:p}"))
1474 .field("parent", &self.parent)
1475 .finish()
1476 }
1477}
1478
1479#[derive(Copy, Clone)]
1480#[repr(C)]
1481pub struct AtkObject {
1482 pub parent: gobject::GObject,
1483 pub description: *mut c_char,
1484 pub name: *mut c_char,
1485 pub accessible_parent: *mut AtkObject,
1486 pub role: AtkRole,
1487 pub relation_set: *mut AtkRelationSet,
1488 pub layer: AtkLayer,
1489}
1490
1491impl ::std::fmt::Debug for AtkObject {
1492 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1493 f.debug_struct(&format!("AtkObject @ {self:p}"))
1494 .field("parent", &self.parent)
1495 .field("description", &self.description)
1496 .field("name", &self.name)
1497 .field("accessible_parent", &self.accessible_parent)
1498 .field("role", &self.role)
1499 .field("relation_set", &self.relation_set)
1500 .field("layer", &self.layer)
1501 .finish()
1502 }
1503}
1504
1505#[derive(Copy, Clone)]
1506#[repr(C)]
1507pub struct AtkObjectFactory {
1508 pub parent: gobject::GObject,
1509}
1510
1511impl ::std::fmt::Debug for AtkObjectFactory {
1512 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1513 f.debug_struct(&format!("AtkObjectFactory @ {self:p}"))
1514 .field("parent", &self.parent)
1515 .finish()
1516 }
1517}
1518
1519#[derive(Copy, Clone)]
1520#[repr(C)]
1521pub struct AtkPlug {
1522 pub parent: AtkObject,
1523}
1524
1525impl ::std::fmt::Debug for AtkPlug {
1526 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1527 f.debug_struct(&format!("AtkPlug @ {self:p}"))
1528 .field("parent", &self.parent)
1529 .finish()
1530 }
1531}
1532
1533#[derive(Copy, Clone)]
1534#[repr(C)]
1535pub struct AtkRegistry {
1536 pub parent: gobject::GObject,
1537 pub factory_type_registry: *mut glib::GHashTable,
1538 pub factory_singleton_cache: *mut glib::GHashTable,
1539}
1540
1541impl ::std::fmt::Debug for AtkRegistry {
1542 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1543 f.debug_struct(&format!("AtkRegistry @ {self:p}"))
1544 .field("parent", &self.parent)
1545 .field("factory_type_registry", &self.factory_type_registry)
1546 .field("factory_singleton_cache", &self.factory_singleton_cache)
1547 .finish()
1548 }
1549}
1550
1551#[derive(Copy, Clone)]
1552#[repr(C)]
1553pub struct AtkRelation {
1554 pub parent: gobject::GObject,
1555 pub target: *mut glib::GPtrArray,
1556 pub relationship: AtkRelationType,
1557}
1558
1559impl ::std::fmt::Debug for AtkRelation {
1560 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1561 f.debug_struct(&format!("AtkRelation @ {self:p}"))
1562 .field("parent", &self.parent)
1563 .field("target", &self.target)
1564 .field("relationship", &self.relationship)
1565 .finish()
1566 }
1567}
1568
1569#[derive(Copy, Clone)]
1570#[repr(C)]
1571pub struct AtkRelationSet {
1572 pub parent: gobject::GObject,
1573 pub relations: *mut glib::GPtrArray,
1574}
1575
1576impl ::std::fmt::Debug for AtkRelationSet {
1577 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1578 f.debug_struct(&format!("AtkRelationSet @ {self:p}"))
1579 .field("parent", &self.parent)
1580 .field("relations", &self.relations)
1581 .finish()
1582 }
1583}
1584
1585#[derive(Copy, Clone)]
1586#[repr(C)]
1587pub struct AtkSocket {
1588 pub parent: AtkObject,
1589 pub embedded_plug_id: *mut c_char,
1590}
1591
1592impl ::std::fmt::Debug for AtkSocket {
1593 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1594 f.debug_struct(&format!("AtkSocket @ {self:p}"))
1595 .field("parent", &self.parent)
1596 .finish()
1597 }
1598}
1599
1600#[derive(Copy, Clone)]
1601#[repr(C)]
1602pub struct AtkStateSet {
1603 pub parent: gobject::GObject,
1604}
1605
1606impl ::std::fmt::Debug for AtkStateSet {
1607 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1608 f.debug_struct(&format!("AtkStateSet @ {self:p}"))
1609 .field("parent", &self.parent)
1610 .finish()
1611 }
1612}
1613
1614#[derive(Copy, Clone)]
1615#[repr(C)]
1616pub struct AtkUtil {
1617 pub parent: gobject::GObject,
1618}
1619
1620impl ::std::fmt::Debug for AtkUtil {
1621 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1622 f.debug_struct(&format!("AtkUtil @ {self:p}"))
1623 .field("parent", &self.parent)
1624 .finish()
1625 }
1626}
1627
1628#[repr(C)]
1630pub struct AtkAction {
1631 _data: [u8; 0],
1632 _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
1633}
1634
1635impl ::std::fmt::Debug for AtkAction {
1636 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1637 write!(f, "AtkAction @ {self:p}")
1638 }
1639}
1640
1641#[repr(C)]
1642pub struct AtkComponent {
1643 _data: [u8; 0],
1644 _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
1645}
1646
1647impl ::std::fmt::Debug for AtkComponent {
1648 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1649 write!(f, "AtkComponent @ {self:p}")
1650 }
1651}
1652
1653#[repr(C)]
1654pub struct AtkDocument {
1655 _data: [u8; 0],
1656 _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
1657}
1658
1659impl ::std::fmt::Debug for AtkDocument {
1660 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1661 write!(f, "AtkDocument @ {self:p}")
1662 }
1663}
1664
1665#[repr(C)]
1666pub struct AtkEditableText {
1667 _data: [u8; 0],
1668 _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
1669}
1670
1671impl ::std::fmt::Debug for AtkEditableText {
1672 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1673 write!(f, "AtkEditableText @ {self:p}")
1674 }
1675}
1676
1677#[repr(C)]
1678pub struct AtkHyperlinkImpl {
1679 _data: [u8; 0],
1680 _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
1681}
1682
1683impl ::std::fmt::Debug for AtkHyperlinkImpl {
1684 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1685 write!(f, "AtkHyperlinkImpl @ {self:p}")
1686 }
1687}
1688
1689#[repr(C)]
1690pub struct AtkHypertext {
1691 _data: [u8; 0],
1692 _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
1693}
1694
1695impl ::std::fmt::Debug for AtkHypertext {
1696 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1697 write!(f, "AtkHypertext @ {self:p}")
1698 }
1699}
1700
1701#[repr(C)]
1702pub struct AtkImage {
1703 _data: [u8; 0],
1704 _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
1705}
1706
1707impl ::std::fmt::Debug for AtkImage {
1708 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1709 write!(f, "AtkImage @ {self:p}")
1710 }
1711}
1712
1713#[repr(C)]
1714pub struct AtkImplementorIface {
1715 _data: [u8; 0],
1716 _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
1717}
1718
1719impl ::std::fmt::Debug for AtkImplementorIface {
1720 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1721 write!(f, "AtkImplementorIface @ {self:p}")
1722 }
1723}
1724
1725#[repr(C)]
1726pub struct AtkSelection {
1727 _data: [u8; 0],
1728 _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
1729}
1730
1731impl ::std::fmt::Debug for AtkSelection {
1732 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1733 write!(f, "AtkSelection @ {self:p}")
1734 }
1735}
1736
1737#[repr(C)]
1738pub struct AtkStreamableContent {
1739 _data: [u8; 0],
1740 _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
1741}
1742
1743impl ::std::fmt::Debug for AtkStreamableContent {
1744 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1745 write!(f, "AtkStreamableContent @ {self:p}")
1746 }
1747}
1748
1749#[repr(C)]
1750pub struct AtkTable {
1751 _data: [u8; 0],
1752 _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
1753}
1754
1755impl ::std::fmt::Debug for AtkTable {
1756 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1757 write!(f, "AtkTable @ {self:p}")
1758 }
1759}
1760
1761#[repr(C)]
1762pub struct AtkTableCell {
1763 _data: [u8; 0],
1764 _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
1765}
1766
1767impl ::std::fmt::Debug for AtkTableCell {
1768 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1769 write!(f, "AtkTableCell @ {self:p}")
1770 }
1771}
1772
1773#[repr(C)]
1774pub struct AtkText {
1775 _data: [u8; 0],
1776 _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
1777}
1778
1779impl ::std::fmt::Debug for AtkText {
1780 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1781 write!(f, "AtkText @ {self:p}")
1782 }
1783}
1784
1785#[repr(C)]
1786pub struct AtkValue {
1787 _data: [u8; 0],
1788 _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
1789}
1790
1791impl ::std::fmt::Debug for AtkValue {
1792 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1793 write!(f, "AtkValue @ {self:p}")
1794 }
1795}
1796
1797#[repr(C)]
1798pub struct AtkWindow {
1799 _data: [u8; 0],
1800 _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
1801}
1802
1803impl ::std::fmt::Debug for AtkWindow {
1804 fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
1805 write!(f, "AtkWindow @ {self:p}")
1806 }
1807}
1808
1809#[link(name = "atk-1.0")]
1810extern "C" {
1811
1812 pub fn atk_coord_type_get_type() -> GType;
1816
1817 pub fn atk_key_event_type_get_type() -> GType;
1821
1822 pub fn atk_layer_get_type() -> GType;
1826
1827 #[cfg(feature = "v2_50")]
1831 #[cfg_attr(docsrs, doc(cfg(feature = "v2_50")))]
1832 pub fn atk_live_get_type() -> GType;
1833
1834 pub fn atk_relation_type_get_type() -> GType;
1838 pub fn atk_relation_type_for_name(name: *const c_char) -> AtkRelationType;
1839 pub fn atk_relation_type_get_name(type_: AtkRelationType) -> *const c_char;
1840 pub fn atk_relation_type_register(name: *const c_char) -> AtkRelationType;
1841
1842 pub fn atk_role_get_type() -> GType;
1846 pub fn atk_role_for_name(name: *const c_char) -> AtkRole;
1847 pub fn atk_role_get_localized_name(role: AtkRole) -> *const c_char;
1848 pub fn atk_role_get_name(role: AtkRole) -> *const c_char;
1849 pub fn atk_role_register(name: *const c_char) -> AtkRole;
1850
1851 #[cfg(feature = "v2_30")]
1855 #[cfg_attr(docsrs, doc(cfg(feature = "v2_30")))]
1856 pub fn atk_scroll_type_get_type() -> GType;
1857
1858 pub fn atk_state_type_get_type() -> GType;
1862 pub fn atk_state_type_for_name(name: *const c_char) -> AtkStateType;
1863 pub fn atk_state_type_get_name(type_: AtkStateType) -> *const c_char;
1864 pub fn atk_state_type_register(name: *const c_char) -> AtkStateType;
1865
1866 pub fn atk_text_attribute_get_type() -> GType;
1870 pub fn atk_text_attribute_for_name(name: *const c_char) -> AtkTextAttribute;
1871 pub fn atk_text_attribute_get_name(attr: AtkTextAttribute) -> *const c_char;
1872 pub fn atk_text_attribute_get_value(attr: AtkTextAttribute, index_: c_int) -> *const c_char;
1873 pub fn atk_text_attribute_register(name: *const c_char) -> AtkTextAttribute;
1874
1875 pub fn atk_text_boundary_get_type() -> GType;
1879
1880 pub fn atk_text_clip_type_get_type() -> GType;
1884
1885 pub fn atk_text_granularity_get_type() -> GType;
1889
1890 pub fn atk_value_type_get_type() -> GType;
1894 pub fn atk_value_type_get_localized_name(value_type: AtkValueType) -> *const c_char;
1895 pub fn atk_value_type_get_name(value_type: AtkValueType) -> *const c_char;
1896
1897 pub fn atk_hyperlink_state_flags_get_type() -> GType;
1901
1902 pub fn atk_attribute_set_free(attrib_set: *mut AtkAttributeSet);
1906
1907 pub fn atk_implementor_ref_accessible(implementor: *mut AtkImplementor) -> *mut AtkObject;
1911
1912 pub fn atk_range_get_type() -> GType;
1916 pub fn atk_range_new(
1917 lower_limit: c_double,
1918 upper_limit: c_double,
1919 description: *const c_char,
1920 ) -> *mut AtkRange;
1921 pub fn atk_range_copy(src: *mut AtkRange) -> *mut AtkRange;
1922 pub fn atk_range_free(range: *mut AtkRange);
1923 pub fn atk_range_get_description(range: *mut AtkRange) -> *const c_char;
1924 pub fn atk_range_get_lower_limit(range: *mut AtkRange) -> c_double;
1925 pub fn atk_range_get_upper_limit(range: *mut AtkRange) -> c_double;
1926
1927 pub fn atk_rectangle_get_type() -> GType;
1931
1932 pub fn atk_text_range_get_type() -> GType;
1936
1937 pub fn atk_gobject_accessible_get_type() -> GType;
1941 pub fn atk_gobject_accessible_for_object(obj: *mut gobject::GObject) -> *mut AtkObject;
1942 pub fn atk_gobject_accessible_get_object(
1943 obj: *mut AtkGObjectAccessible,
1944 ) -> *mut gobject::GObject;
1945
1946 pub fn atk_hyperlink_get_type() -> GType;
1950 pub fn atk_hyperlink_get_end_index(link_: *mut AtkHyperlink) -> c_int;
1951 pub fn atk_hyperlink_get_n_anchors(link_: *mut AtkHyperlink) -> c_int;
1952 pub fn atk_hyperlink_get_object(link_: *mut AtkHyperlink, i: c_int) -> *mut AtkObject;
1953 pub fn atk_hyperlink_get_start_index(link_: *mut AtkHyperlink) -> c_int;
1954 pub fn atk_hyperlink_get_uri(link_: *mut AtkHyperlink, i: c_int) -> *mut c_char;
1955 pub fn atk_hyperlink_is_inline(link_: *mut AtkHyperlink) -> gboolean;
1956 pub fn atk_hyperlink_is_selected_link(link_: *mut AtkHyperlink) -> gboolean;
1957 pub fn atk_hyperlink_is_valid(link_: *mut AtkHyperlink) -> gboolean;
1958
1959 pub fn atk_misc_get_type() -> GType;
1963 pub fn atk_misc_get_instance() -> *const AtkMisc;
1964 pub fn atk_misc_threads_enter(misc: *mut AtkMisc);
1965 pub fn atk_misc_threads_leave(misc: *mut AtkMisc);
1966
1967 pub fn atk_no_op_object_get_type() -> GType;
1971 pub fn atk_no_op_object_new(obj: *mut gobject::GObject) -> *mut AtkObject;
1972
1973 pub fn atk_no_op_object_factory_get_type() -> GType;
1977 pub fn atk_no_op_object_factory_new() -> *mut AtkObjectFactory;
1978
1979 pub fn atk_object_get_type() -> GType;
1983 pub fn atk_object_add_relationship(
1984 object: *mut AtkObject,
1985 relationship: AtkRelationType,
1986 target: *mut AtkObject,
1987 ) -> gboolean;
1988 pub fn atk_object_connect_property_change_handler(
1989 accessible: *mut AtkObject,
1990 handler: *mut AtkPropertyChangeHandler,
1991 ) -> c_uint;
1992 #[cfg(feature = "v2_34")]
1993 #[cfg_attr(docsrs, doc(cfg(feature = "v2_34")))]
1994 pub fn atk_object_get_accessible_id(accessible: *mut AtkObject) -> *const c_char;
1995 pub fn atk_object_get_attributes(accessible: *mut AtkObject) -> *mut AtkAttributeSet;
1996 pub fn atk_object_get_description(accessible: *mut AtkObject) -> *const c_char;
1997 pub fn atk_object_get_index_in_parent(accessible: *mut AtkObject) -> c_int;
1998 pub fn atk_object_get_layer(accessible: *mut AtkObject) -> AtkLayer;
1999 pub fn atk_object_get_mdi_zorder(accessible: *mut AtkObject) -> c_int;
2000 pub fn atk_object_get_n_accessible_children(accessible: *mut AtkObject) -> c_int;
2001 pub fn atk_object_get_name(accessible: *mut AtkObject) -> *const c_char;
2002 pub fn atk_object_get_object_locale(accessible: *mut AtkObject) -> *const c_char;
2003 pub fn atk_object_get_parent(accessible: *mut AtkObject) -> *mut AtkObject;
2004 pub fn atk_object_get_role(accessible: *mut AtkObject) -> AtkRole;
2005 pub fn atk_object_initialize(accessible: *mut AtkObject, data: gpointer);
2006 pub fn atk_object_notify_state_change(
2007 accessible: *mut AtkObject,
2008 state: AtkState,
2009 value: gboolean,
2010 );
2011 pub fn atk_object_peek_parent(accessible: *mut AtkObject) -> *mut AtkObject;
2012 pub fn atk_object_ref_accessible_child(accessible: *mut AtkObject, i: c_int) -> *mut AtkObject;
2013 pub fn atk_object_ref_relation_set(accessible: *mut AtkObject) -> *mut AtkRelationSet;
2014 pub fn atk_object_ref_state_set(accessible: *mut AtkObject) -> *mut AtkStateSet;
2015 pub fn atk_object_remove_property_change_handler(
2016 accessible: *mut AtkObject,
2017 handler_id: c_uint,
2018 );
2019 pub fn atk_object_remove_relationship(
2020 object: *mut AtkObject,
2021 relationship: AtkRelationType,
2022 target: *mut AtkObject,
2023 ) -> gboolean;
2024 #[cfg(feature = "v2_34")]
2025 #[cfg_attr(docsrs, doc(cfg(feature = "v2_34")))]
2026 pub fn atk_object_set_accessible_id(accessible: *mut AtkObject, name: *const c_char);
2027 pub fn atk_object_set_description(accessible: *mut AtkObject, description: *const c_char);
2028 pub fn atk_object_set_name(accessible: *mut AtkObject, name: *const c_char);
2029 pub fn atk_object_set_parent(accessible: *mut AtkObject, parent: *mut AtkObject);
2030 pub fn atk_object_set_role(accessible: *mut AtkObject, role: AtkRole);
2031
2032 pub fn atk_object_factory_get_type() -> GType;
2036 pub fn atk_object_factory_create_accessible(
2037 factory: *mut AtkObjectFactory,
2038 obj: *mut gobject::GObject,
2039 ) -> *mut AtkObject;
2040 pub fn atk_object_factory_get_accessible_type(factory: *mut AtkObjectFactory) -> GType;
2041 pub fn atk_object_factory_invalidate(factory: *mut AtkObjectFactory);
2042
2043 pub fn atk_plug_get_type() -> GType;
2047 pub fn atk_plug_new() -> *mut AtkObject;
2048 pub fn atk_plug_get_id(plug: *mut AtkPlug) -> *mut c_char;
2049
2050 pub fn atk_registry_get_type() -> GType;
2054 pub fn atk_registry_get_factory(
2055 registry: *mut AtkRegistry,
2056 type_: GType,
2057 ) -> *mut AtkObjectFactory;
2058 pub fn atk_registry_get_factory_type(registry: *mut AtkRegistry, type_: GType) -> GType;
2059 pub fn atk_registry_set_factory_type(
2060 registry: *mut AtkRegistry,
2061 type_: GType,
2062 factory_type: GType,
2063 );
2064
2065 pub fn atk_relation_get_type() -> GType;
2069 pub fn atk_relation_new(
2070 targets: *mut *mut AtkObject,
2071 n_targets: c_int,
2072 relationship: AtkRelationType,
2073 ) -> *mut AtkRelation;
2074 pub fn atk_relation_add_target(relation: *mut AtkRelation, target: *mut AtkObject);
2075 pub fn atk_relation_get_relation_type(relation: *mut AtkRelation) -> AtkRelationType;
2076 pub fn atk_relation_get_target(relation: *mut AtkRelation) -> *mut glib::GPtrArray;
2077 pub fn atk_relation_remove_target(
2078 relation: *mut AtkRelation,
2079 target: *mut AtkObject,
2080 ) -> gboolean;
2081
2082 pub fn atk_relation_set_get_type() -> GType;
2086 pub fn atk_relation_set_new() -> *mut AtkRelationSet;
2087 pub fn atk_relation_set_add(set: *mut AtkRelationSet, relation: *mut AtkRelation);
2088 pub fn atk_relation_set_add_relation_by_type(
2089 set: *mut AtkRelationSet,
2090 relationship: AtkRelationType,
2091 target: *mut AtkObject,
2092 );
2093 pub fn atk_relation_set_contains(
2094 set: *mut AtkRelationSet,
2095 relationship: AtkRelationType,
2096 ) -> gboolean;
2097 pub fn atk_relation_set_contains_target(
2098 set: *mut AtkRelationSet,
2099 relationship: AtkRelationType,
2100 target: *mut AtkObject,
2101 ) -> gboolean;
2102 pub fn atk_relation_set_get_n_relations(set: *mut AtkRelationSet) -> c_int;
2103 pub fn atk_relation_set_get_relation(set: *mut AtkRelationSet, i: c_int) -> *mut AtkRelation;
2104 pub fn atk_relation_set_get_relation_by_type(
2105 set: *mut AtkRelationSet,
2106 relationship: AtkRelationType,
2107 ) -> *mut AtkRelation;
2108 pub fn atk_relation_set_remove(set: *mut AtkRelationSet, relation: *mut AtkRelation);
2109
2110 pub fn atk_socket_get_type() -> GType;
2114 pub fn atk_socket_new() -> *mut AtkObject;
2115 pub fn atk_socket_embed(obj: *mut AtkSocket, plug_id: *const c_char);
2116 pub fn atk_socket_is_occupied(obj: *mut AtkSocket) -> gboolean;
2117
2118 pub fn atk_state_set_get_type() -> GType;
2122 pub fn atk_state_set_new() -> *mut AtkStateSet;
2123 pub fn atk_state_set_add_state(set: *mut AtkStateSet, type_: AtkStateType) -> gboolean;
2124 pub fn atk_state_set_add_states(
2125 set: *mut AtkStateSet,
2126 types: *mut AtkStateType,
2127 n_types: c_int,
2128 );
2129 pub fn atk_state_set_and_sets(
2130 set: *mut AtkStateSet,
2131 compare_set: *mut AtkStateSet,
2132 ) -> *mut AtkStateSet;
2133 pub fn atk_state_set_clear_states(set: *mut AtkStateSet);
2134 pub fn atk_state_set_contains_state(set: *mut AtkStateSet, type_: AtkStateType) -> gboolean;
2135 pub fn atk_state_set_contains_states(
2136 set: *mut AtkStateSet,
2137 types: *mut AtkStateType,
2138 n_types: c_int,
2139 ) -> gboolean;
2140 pub fn atk_state_set_is_empty(set: *mut AtkStateSet) -> gboolean;
2141 pub fn atk_state_set_or_sets(
2142 set: *mut AtkStateSet,
2143 compare_set: *mut AtkStateSet,
2144 ) -> *mut AtkStateSet;
2145 pub fn atk_state_set_remove_state(set: *mut AtkStateSet, type_: AtkStateType) -> gboolean;
2146 pub fn atk_state_set_xor_sets(
2147 set: *mut AtkStateSet,
2148 compare_set: *mut AtkStateSet,
2149 ) -> *mut AtkStateSet;
2150
2151 pub fn atk_util_get_type() -> GType;
2155
2156 pub fn atk_action_get_type() -> GType;
2160 pub fn atk_action_do_action(action: *mut AtkAction, i: c_int) -> gboolean;
2161 pub fn atk_action_get_description(action: *mut AtkAction, i: c_int) -> *const c_char;
2162 pub fn atk_action_get_keybinding(action: *mut AtkAction, i: c_int) -> *const c_char;
2163 pub fn atk_action_get_localized_name(action: *mut AtkAction, i: c_int) -> *const c_char;
2164 pub fn atk_action_get_n_actions(action: *mut AtkAction) -> c_int;
2165 pub fn atk_action_get_name(action: *mut AtkAction, i: c_int) -> *const c_char;
2166 pub fn atk_action_set_description(
2167 action: *mut AtkAction,
2168 i: c_int,
2169 desc: *const c_char,
2170 ) -> gboolean;
2171
2172 pub fn atk_component_get_type() -> GType;
2176 pub fn atk_component_add_focus_handler(
2177 component: *mut AtkComponent,
2178 handler: AtkFocusHandler,
2179 ) -> c_uint;
2180 pub fn atk_component_contains(
2181 component: *mut AtkComponent,
2182 x: c_int,
2183 y: c_int,
2184 coord_type: AtkCoordType,
2185 ) -> gboolean;
2186 pub fn atk_component_get_alpha(component: *mut AtkComponent) -> c_double;
2187 pub fn atk_component_get_extents(
2188 component: *mut AtkComponent,
2189 x: *mut c_int,
2190 y: *mut c_int,
2191 width: *mut c_int,
2192 height: *mut c_int,
2193 coord_type: AtkCoordType,
2194 );
2195 pub fn atk_component_get_layer(component: *mut AtkComponent) -> AtkLayer;
2196 pub fn atk_component_get_mdi_zorder(component: *mut AtkComponent) -> c_int;
2197 pub fn atk_component_get_position(
2198 component: *mut AtkComponent,
2199 x: *mut c_int,
2200 y: *mut c_int,
2201 coord_type: AtkCoordType,
2202 );
2203 pub fn atk_component_get_size(
2204 component: *mut AtkComponent,
2205 width: *mut c_int,
2206 height: *mut c_int,
2207 );
2208 pub fn atk_component_grab_focus(component: *mut AtkComponent) -> gboolean;
2209 pub fn atk_component_ref_accessible_at_point(
2210 component: *mut AtkComponent,
2211 x: c_int,
2212 y: c_int,
2213 coord_type: AtkCoordType,
2214 ) -> *mut AtkObject;
2215 pub fn atk_component_remove_focus_handler(component: *mut AtkComponent, handler_id: c_uint);
2216 #[cfg(feature = "v2_30")]
2217 #[cfg_attr(docsrs, doc(cfg(feature = "v2_30")))]
2218 pub fn atk_component_scroll_to(component: *mut AtkComponent, type_: AtkScrollType) -> gboolean;
2219 #[cfg(feature = "v2_30")]
2220 #[cfg_attr(docsrs, doc(cfg(feature = "v2_30")))]
2221 pub fn atk_component_scroll_to_point(
2222 component: *mut AtkComponent,
2223 coords: AtkCoordType,
2224 x: c_int,
2225 y: c_int,
2226 ) -> gboolean;
2227 pub fn atk_component_set_extents(
2228 component: *mut AtkComponent,
2229 x: c_int,
2230 y: c_int,
2231 width: c_int,
2232 height: c_int,
2233 coord_type: AtkCoordType,
2234 ) -> gboolean;
2235 pub fn atk_component_set_position(
2236 component: *mut AtkComponent,
2237 x: c_int,
2238 y: c_int,
2239 coord_type: AtkCoordType,
2240 ) -> gboolean;
2241 pub fn atk_component_set_size(
2242 component: *mut AtkComponent,
2243 width: c_int,
2244 height: c_int,
2245 ) -> gboolean;
2246
2247 pub fn atk_document_get_type() -> GType;
2251 pub fn atk_document_get_attribute_value(
2252 document: *mut AtkDocument,
2253 attribute_name: *const c_char,
2254 ) -> *const c_char;
2255 pub fn atk_document_get_attributes(document: *mut AtkDocument) -> *mut AtkAttributeSet;
2256 pub fn atk_document_get_current_page_number(document: *mut AtkDocument) -> c_int;
2257 pub fn atk_document_get_document(document: *mut AtkDocument) -> gpointer;
2258 pub fn atk_document_get_document_type(document: *mut AtkDocument) -> *const c_char;
2259 pub fn atk_document_get_locale(document: *mut AtkDocument) -> *const c_char;
2260 pub fn atk_document_get_page_count(document: *mut AtkDocument) -> c_int;
2261 pub fn atk_document_set_attribute_value(
2262 document: *mut AtkDocument,
2263 attribute_name: *const c_char,
2264 attribute_value: *const c_char,
2265 ) -> gboolean;
2266
2267 pub fn atk_editable_text_get_type() -> GType;
2271 pub fn atk_editable_text_copy_text(
2272 text: *mut AtkEditableText,
2273 start_pos: c_int,
2274 end_pos: c_int,
2275 );
2276 pub fn atk_editable_text_cut_text(text: *mut AtkEditableText, start_pos: c_int, end_pos: c_int);
2277 pub fn atk_editable_text_delete_text(
2278 text: *mut AtkEditableText,
2279 start_pos: c_int,
2280 end_pos: c_int,
2281 );
2282 pub fn atk_editable_text_insert_text(
2283 text: *mut AtkEditableText,
2284 string: *const c_char,
2285 length: c_int,
2286 position: *mut c_int,
2287 );
2288 pub fn atk_editable_text_paste_text(text: *mut AtkEditableText, position: c_int);
2289 pub fn atk_editable_text_set_run_attributes(
2290 text: *mut AtkEditableText,
2291 attrib_set: *mut AtkAttributeSet,
2292 start_offset: c_int,
2293 end_offset: c_int,
2294 ) -> gboolean;
2295 pub fn atk_editable_text_set_text_contents(text: *mut AtkEditableText, string: *const c_char);
2296
2297 pub fn atk_hyperlink_impl_get_type() -> GType;
2301 pub fn atk_hyperlink_impl_get_hyperlink(impl_: *mut AtkHyperlinkImpl) -> *mut AtkHyperlink;
2302
2303 pub fn atk_hypertext_get_type() -> GType;
2307 pub fn atk_hypertext_get_link(
2308 hypertext: *mut AtkHypertext,
2309 link_index: c_int,
2310 ) -> *mut AtkHyperlink;
2311 pub fn atk_hypertext_get_link_index(hypertext: *mut AtkHypertext, char_index: c_int) -> c_int;
2312 pub fn atk_hypertext_get_n_links(hypertext: *mut AtkHypertext) -> c_int;
2313
2314 pub fn atk_image_get_type() -> GType;
2318 pub fn atk_image_get_image_description(image: *mut AtkImage) -> *const c_char;
2319 pub fn atk_image_get_image_locale(image: *mut AtkImage) -> *const c_char;
2320 pub fn atk_image_get_image_position(
2321 image: *mut AtkImage,
2322 x: *mut c_int,
2323 y: *mut c_int,
2324 coord_type: AtkCoordType,
2325 );
2326 pub fn atk_image_get_image_size(image: *mut AtkImage, width: *mut c_int, height: *mut c_int);
2327 pub fn atk_image_set_image_description(
2328 image: *mut AtkImage,
2329 description: *const c_char,
2330 ) -> gboolean;
2331
2332 pub fn atk_implementor_get_type() -> GType;
2336
2337 pub fn atk_selection_get_type() -> GType;
2341 pub fn atk_selection_add_selection(selection: *mut AtkSelection, i: c_int) -> gboolean;
2342 pub fn atk_selection_clear_selection(selection: *mut AtkSelection) -> gboolean;
2343 pub fn atk_selection_get_selection_count(selection: *mut AtkSelection) -> c_int;
2344 pub fn atk_selection_is_child_selected(selection: *mut AtkSelection, i: c_int) -> gboolean;
2345 pub fn atk_selection_ref_selection(selection: *mut AtkSelection, i: c_int) -> *mut AtkObject;
2346 pub fn atk_selection_remove_selection(selection: *mut AtkSelection, i: c_int) -> gboolean;
2347 pub fn atk_selection_select_all_selection(selection: *mut AtkSelection) -> gboolean;
2348
2349 pub fn atk_streamable_content_get_type() -> GType;
2353 pub fn atk_streamable_content_get_mime_type(
2354 streamable: *mut AtkStreamableContent,
2355 i: c_int,
2356 ) -> *const c_char;
2357 pub fn atk_streamable_content_get_n_mime_types(streamable: *mut AtkStreamableContent) -> c_int;
2358 pub fn atk_streamable_content_get_stream(
2359 streamable: *mut AtkStreamableContent,
2360 mime_type: *const c_char,
2361 ) -> *mut glib::GIOChannel;
2362 pub fn atk_streamable_content_get_uri(
2363 streamable: *mut AtkStreamableContent,
2364 mime_type: *const c_char,
2365 ) -> *const c_char;
2366
2367 pub fn atk_table_get_type() -> GType;
2371 pub fn atk_table_add_column_selection(table: *mut AtkTable, column: c_int) -> gboolean;
2372 pub fn atk_table_add_row_selection(table: *mut AtkTable, row: c_int) -> gboolean;
2373 pub fn atk_table_get_caption(table: *mut AtkTable) -> *mut AtkObject;
2374 pub fn atk_table_get_column_at_index(table: *mut AtkTable, index_: c_int) -> c_int;
2375 pub fn atk_table_get_column_description(table: *mut AtkTable, column: c_int) -> *const c_char;
2376 pub fn atk_table_get_column_extent_at(table: *mut AtkTable, row: c_int, column: c_int)
2377 -> c_int;
2378 pub fn atk_table_get_column_header(table: *mut AtkTable, column: c_int) -> *mut AtkObject;
2379 pub fn atk_table_get_index_at(table: *mut AtkTable, row: c_int, column: c_int) -> c_int;
2380 pub fn atk_table_get_n_columns(table: *mut AtkTable) -> c_int;
2381 pub fn atk_table_get_n_rows(table: *mut AtkTable) -> c_int;
2382 pub fn atk_table_get_row_at_index(table: *mut AtkTable, index_: c_int) -> c_int;
2383 pub fn atk_table_get_row_description(table: *mut AtkTable, row: c_int) -> *const c_char;
2384 pub fn atk_table_get_row_extent_at(table: *mut AtkTable, row: c_int, column: c_int) -> c_int;
2385 pub fn atk_table_get_row_header(table: *mut AtkTable, row: c_int) -> *mut AtkObject;
2386 pub fn atk_table_get_selected_columns(table: *mut AtkTable, selected: *mut *mut c_int)
2387 -> c_int;
2388 pub fn atk_table_get_selected_rows(table: *mut AtkTable, selected: *mut *mut c_int) -> c_int;
2389 pub fn atk_table_get_summary(table: *mut AtkTable) -> *mut AtkObject;
2390 pub fn atk_table_is_column_selected(table: *mut AtkTable, column: c_int) -> gboolean;
2391 pub fn atk_table_is_row_selected(table: *mut AtkTable, row: c_int) -> gboolean;
2392 pub fn atk_table_is_selected(table: *mut AtkTable, row: c_int, column: c_int) -> gboolean;
2393 pub fn atk_table_ref_at(table: *mut AtkTable, row: c_int, column: c_int) -> *mut AtkObject;
2394 pub fn atk_table_remove_column_selection(table: *mut AtkTable, column: c_int) -> gboolean;
2395 pub fn atk_table_remove_row_selection(table: *mut AtkTable, row: c_int) -> gboolean;
2396 pub fn atk_table_set_caption(table: *mut AtkTable, caption: *mut AtkObject);
2397 pub fn atk_table_set_column_description(
2398 table: *mut AtkTable,
2399 column: c_int,
2400 description: *const c_char,
2401 );
2402 pub fn atk_table_set_column_header(table: *mut AtkTable, column: c_int, header: *mut AtkObject);
2403 pub fn atk_table_set_row_description(
2404 table: *mut AtkTable,
2405 row: c_int,
2406 description: *const c_char,
2407 );
2408 pub fn atk_table_set_row_header(table: *mut AtkTable, row: c_int, header: *mut AtkObject);
2409 pub fn atk_table_set_summary(table: *mut AtkTable, accessible: *mut AtkObject);
2410
2411 pub fn atk_table_cell_get_type() -> GType;
2415 pub fn atk_table_cell_get_column_header_cells(cell: *mut AtkTableCell) -> *mut glib::GPtrArray;
2416 pub fn atk_table_cell_get_column_span(cell: *mut AtkTableCell) -> c_int;
2417 pub fn atk_table_cell_get_position(
2418 cell: *mut AtkTableCell,
2419 row: *mut c_int,
2420 column: *mut c_int,
2421 ) -> gboolean;
2422 pub fn atk_table_cell_get_row_column_span(
2423 cell: *mut AtkTableCell,
2424 row: *mut c_int,
2425 column: *mut c_int,
2426 row_span: *mut c_int,
2427 column_span: *mut c_int,
2428 ) -> gboolean;
2429 pub fn atk_table_cell_get_row_header_cells(cell: *mut AtkTableCell) -> *mut glib::GPtrArray;
2430 pub fn atk_table_cell_get_row_span(cell: *mut AtkTableCell) -> c_int;
2431 pub fn atk_table_cell_get_table(cell: *mut AtkTableCell) -> *mut AtkObject;
2432
2433 pub fn atk_text_get_type() -> GType;
2437 pub fn atk_text_free_ranges(ranges: *mut *mut AtkTextRange);
2438 pub fn atk_text_add_selection(
2439 text: *mut AtkText,
2440 start_offset: c_int,
2441 end_offset: c_int,
2442 ) -> gboolean;
2443 pub fn atk_text_get_bounded_ranges(
2444 text: *mut AtkText,
2445 rect: *mut AtkTextRectangle,
2446 coord_type: AtkCoordType,
2447 x_clip_type: AtkTextClipType,
2448 y_clip_type: AtkTextClipType,
2449 ) -> *mut *mut AtkTextRange;
2450 pub fn atk_text_get_caret_offset(text: *mut AtkText) -> c_int;
2451 pub fn atk_text_get_character_at_offset(text: *mut AtkText, offset: c_int) -> u32;
2452 pub fn atk_text_get_character_count(text: *mut AtkText) -> c_int;
2453 pub fn atk_text_get_character_extents(
2454 text: *mut AtkText,
2455 offset: c_int,
2456 x: *mut c_int,
2457 y: *mut c_int,
2458 width: *mut c_int,
2459 height: *mut c_int,
2460 coords: AtkCoordType,
2461 );
2462 pub fn atk_text_get_default_attributes(text: *mut AtkText) -> *mut AtkAttributeSet;
2463 pub fn atk_text_get_n_selections(text: *mut AtkText) -> c_int;
2464 pub fn atk_text_get_offset_at_point(
2465 text: *mut AtkText,
2466 x: c_int,
2467 y: c_int,
2468 coords: AtkCoordType,
2469 ) -> c_int;
2470 pub fn atk_text_get_range_extents(
2471 text: *mut AtkText,
2472 start_offset: c_int,
2473 end_offset: c_int,
2474 coord_type: AtkCoordType,
2475 rect: *mut AtkTextRectangle,
2476 );
2477 pub fn atk_text_get_run_attributes(
2478 text: *mut AtkText,
2479 offset: c_int,
2480 start_offset: *mut c_int,
2481 end_offset: *mut c_int,
2482 ) -> *mut AtkAttributeSet;
2483 pub fn atk_text_get_selection(
2484 text: *mut AtkText,
2485 selection_num: c_int,
2486 start_offset: *mut c_int,
2487 end_offset: *mut c_int,
2488 ) -> *mut c_char;
2489 pub fn atk_text_get_string_at_offset(
2490 text: *mut AtkText,
2491 offset: c_int,
2492 granularity: AtkTextGranularity,
2493 start_offset: *mut c_int,
2494 end_offset: *mut c_int,
2495 ) -> *mut c_char;
2496 pub fn atk_text_get_text(
2497 text: *mut AtkText,
2498 start_offset: c_int,
2499 end_offset: c_int,
2500 ) -> *mut c_char;
2501 pub fn atk_text_get_text_after_offset(
2502 text: *mut AtkText,
2503 offset: c_int,
2504 boundary_type: AtkTextBoundary,
2505 start_offset: *mut c_int,
2506 end_offset: *mut c_int,
2507 ) -> *mut c_char;
2508 pub fn atk_text_get_text_at_offset(
2509 text: *mut AtkText,
2510 offset: c_int,
2511 boundary_type: AtkTextBoundary,
2512 start_offset: *mut c_int,
2513 end_offset: *mut c_int,
2514 ) -> *mut c_char;
2515 pub fn atk_text_get_text_before_offset(
2516 text: *mut AtkText,
2517 offset: c_int,
2518 boundary_type: AtkTextBoundary,
2519 start_offset: *mut c_int,
2520 end_offset: *mut c_int,
2521 ) -> *mut c_char;
2522 pub fn atk_text_remove_selection(text: *mut AtkText, selection_num: c_int) -> gboolean;
2523 #[cfg(feature = "v2_32")]
2524 #[cfg_attr(docsrs, doc(cfg(feature = "v2_32")))]
2525 pub fn atk_text_scroll_substring_to(
2526 text: *mut AtkText,
2527 start_offset: c_int,
2528 end_offset: c_int,
2529 type_: AtkScrollType,
2530 ) -> gboolean;
2531 #[cfg(feature = "v2_32")]
2532 #[cfg_attr(docsrs, doc(cfg(feature = "v2_32")))]
2533 pub fn atk_text_scroll_substring_to_point(
2534 text: *mut AtkText,
2535 start_offset: c_int,
2536 end_offset: c_int,
2537 coords: AtkCoordType,
2538 x: c_int,
2539 y: c_int,
2540 ) -> gboolean;
2541 pub fn atk_text_set_caret_offset(text: *mut AtkText, offset: c_int) -> gboolean;
2542 pub fn atk_text_set_selection(
2543 text: *mut AtkText,
2544 selection_num: c_int,
2545 start_offset: c_int,
2546 end_offset: c_int,
2547 ) -> gboolean;
2548
2549 pub fn atk_value_get_type() -> GType;
2553 pub fn atk_value_get_current_value(obj: *mut AtkValue, value: *mut gobject::GValue);
2554 pub fn atk_value_get_increment(obj: *mut AtkValue) -> c_double;
2555 pub fn atk_value_get_maximum_value(obj: *mut AtkValue, value: *mut gobject::GValue);
2556 pub fn atk_value_get_minimum_increment(obj: *mut AtkValue, value: *mut gobject::GValue);
2557 pub fn atk_value_get_minimum_value(obj: *mut AtkValue, value: *mut gobject::GValue);
2558 pub fn atk_value_get_range(obj: *mut AtkValue) -> *mut AtkRange;
2559 pub fn atk_value_get_sub_ranges(obj: *mut AtkValue) -> *mut glib::GSList;
2560 pub fn atk_value_get_value_and_text(
2561 obj: *mut AtkValue,
2562 value: *mut c_double,
2563 text: *mut *mut c_char,
2564 );
2565 pub fn atk_value_set_current_value(
2566 obj: *mut AtkValue,
2567 value: *const gobject::GValue,
2568 ) -> gboolean;
2569 pub fn atk_value_set_value(obj: *mut AtkValue, new_value: c_double);
2570
2571 pub fn atk_window_get_type() -> GType;
2575
2576 pub fn atk_add_focus_tracker(focus_tracker: AtkEventListener) -> c_uint;
2580 pub fn atk_add_global_event_listener(
2581 listener: gobject::GSignalEmissionHook,
2582 event_type: *const c_char,
2583 ) -> c_uint;
2584 pub fn atk_add_key_event_listener(listener: AtkKeySnoopFunc, data: gpointer) -> c_uint;
2585 pub fn atk_focus_tracker_init(init: AtkEventListenerInit);
2586 pub fn atk_focus_tracker_notify(object: *mut AtkObject);
2587 pub fn atk_get_binary_age() -> c_uint;
2588 pub fn atk_get_default_registry() -> *mut AtkRegistry;
2589 pub fn atk_get_focus_object() -> *mut AtkObject;
2590 pub fn atk_get_interface_age() -> c_uint;
2591 pub fn atk_get_major_version() -> c_uint;
2592 pub fn atk_get_micro_version() -> c_uint;
2593 pub fn atk_get_minor_version() -> c_uint;
2594 pub fn atk_get_root() -> *mut AtkObject;
2595 pub fn atk_get_toolkit_name() -> *const c_char;
2596 pub fn atk_get_toolkit_version() -> *const c_char;
2597 pub fn atk_get_version() -> *const c_char;
2598 pub fn atk_remove_focus_tracker(tracker_id: c_uint);
2599 pub fn atk_remove_global_event_listener(listener_id: c_uint);
2600 pub fn atk_remove_key_event_listener(listener_id: c_uint);
2601
2602}