diff options
author | Alejandro Piñeiro <apinheiro@igalia.com> | 2013-12-11 12:33:10 +0100 |
---|---|---|
committer | Alejandro Piñeiro <apinheiro@igalia.com> | 2013-12-11 12:50:23 +0100 |
commit | 8e5f9acecdeddfba6bf52dd3eda224ec84fce528 (patch) | |
tree | 850c8b0a0a47b49f22766426bde451b79f558900 /atk/atkutil.h | |
parent | a65911af37955dd4192c18eea6dbb2b82cabfc17 (diff) | |
download | atk-8e5f9acecdeddfba6bf52dd3eda224ec84fce528.tar.gz |
doc: improve atkutil documentation
Diffstat (limited to 'atk/atkutil.h')
-rwxr-xr-x | atk/atkutil.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/atk/atkutil.h b/atk/atkutil.h index 420d83e..0b0c402 100755 --- a/atk/atkutil.h +++ b/atk/atkutil.h @@ -137,6 +137,26 @@ struct _AtkUtil GObject parent; }; +/** + * AtkUtilClass: + * @add_global_event_listener: adds the specified function to the list + * of functions to be called when an ATK event occurs. ATK + * implementors are discouraged from reimplementing this method. + * @remove_global_event_listener: removes the specified function to + * the list of functions to be called when an ATK event occurs. ATK + * implementors are discouraged from reimplementing this method. + * @add_key_event_listener: adds the specified function to the list of + * functions to be called when a key event occurs. + * @remove_key_event_listener: remove the specified function to the + * list of functions to be called when a key event occurs. + * @get_root: gets the root accessible container for the current + * application. + * @get_toolkit_name: gets name string for the GUI toolkit + * implementing ATK for this application. + * @get_toolkit_version: gets version string for the GUI toolkit + * implementing ATK for this application. + * + */ struct _AtkUtilClass { GObjectClass parent; |