diff options
author | Alejandro Piñeiro <apinheiro@igalia.com> | 2013-08-13 12:07:22 +0200 |
---|---|---|
committer | Alejandro Piñeiro <apinheiro@igalia.com> | 2013-08-13 12:07:22 +0200 |
commit | 7c2fd74c8c92eb039cd8ac01255d55caed399703 (patch) | |
tree | 7c4a7cba4fb0644859c8c0db3c5b71f845f0d464 /atk/atkcomponent.h | |
parent | 10782c952a715562a611b7b69d5b20cf3b389519 (diff) | |
download | atk-7c2fd74c8c92eb039cd8ac01255d55caed399703.tar.gz |
docs: Add documentation for AtkRectangle
https://bugzilla.gnome.org/show_bug.cgi?id=491998
Diffstat (limited to 'atk/atkcomponent.h')
-rwxr-xr-x | atk/atkcomponent.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/atk/atkcomponent.h b/atk/atkcomponent.h index 49b5202..c14ac22 100755 --- a/atk/atkcomponent.h +++ b/atk/atkcomponent.h @@ -65,6 +65,16 @@ typedef void (*AtkFocusHandler) (AtkObject* object, gboolean focus_in); typedef struct _AtkRectangle AtkRectangle; +/** + * AtkRectangle: + * @x: X coordinate of the left side of the rectangle. + * @y: Y coordinate of the top side of the rectangle. + * @width: width of the rectangle. + * @height: height of the rectangle. + * + * A data structure for holding a rectangle. Those coordinates are + * relative to the component top-level parent. + */ struct _AtkRectangle { gint x; |