summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Piñeiro <apinheiro@igalia.com>2013-08-13 12:07:22 +0200
committerAlejandro Piñeiro <apinheiro@igalia.com>2013-08-13 12:07:22 +0200
commit7c2fd74c8c92eb039cd8ac01255d55caed399703 (patch)
tree7c4a7cba4fb0644859c8c0db3c5b71f845f0d464
parent10782c952a715562a611b7b69d5b20cf3b389519 (diff)
downloadatk-7c2fd74c8c92eb039cd8ac01255d55caed399703.tar.gz
docs: Add documentation for AtkRectangle
https://bugzilla.gnome.org/show_bug.cgi?id=491998
-rwxr-xr-xatk/atkcomponent.h10
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;