summaryrefslogtreecommitdiff
path: root/atspi/atspi-image.c
diff options
context:
space:
mode:
authorAline Bessa <alibezz@gmail.com>2011-07-26 15:19:17 -0300
committerMike Gorse <mgorse@novell.com>2011-08-23 22:45:29 -0500
commit1fdf91269383d2ab394d20bc6d99868558c4a040 (patch)
treef400b9a4595bc0f06e764716a8eff7ae2d2fbb9a /atspi/atspi-image.c
parent5988b76c2d588c1c3332203dea3e18d85639302f (diff)
downloadat-spi2-core-1fdf91269383d2ab394d20bc6d99868558c4a040.tar.gz
Improving atspi-image.c documentation
Diffstat (limited to 'atspi/atspi-image.c')
-rw-r--r--atspi/atspi-image.c25
1 files changed, 18 insertions, 7 deletions
diff --git a/atspi/atspi-image.c b/atspi/atspi-image.c
index b6536b69..4f173269 100644
--- a/atspi/atspi-image.c
+++ b/atspi/atspi-image.c
@@ -28,7 +28,7 @@
* atspi_image_get_image_description:
* @obj: a pointer to the #AtspiImage implementor on which to operate.
*
- * Get the description of the image displayed in an #AtspiImage object.
+ * Gets the description of the image displayed in an #AtspiImage object.
*
* Returns: a UTF-8 string describing the image.
**/
@@ -48,7 +48,11 @@ atspi_image_get_image_description (AtspiImage *obj, GError **error)
* atspi_image_get_image_size:
* @obj: a pointer to the #AtspiImage to query.
*
- * Get the size of the image displayed in a specified #AtspiImage object.
+ * Gets the size of the image displayed in a specified #AtspiImage object.
+ *
+ * Returns: a pointer to an #AtspiPoint where x corresponds to
+ * the image's width and y corresponds to the image's height.
+ *
**/
AtspiPoint *
atspi_image_get_image_size (AtspiImage *obj, GError **error)
@@ -72,8 +76,12 @@ atspi_image_get_image_size (AtspiImage *obj, GError **error)
* @ctype: the desired coordinate system into which to return the results,
* (e.g. ATSPI_COORD_TYPE_WINDOW, ATSPI_COORD_TYPE_SCREEN).
*
- * Get the minimum x and y coordinates of the image displayed in a
+ * Gets the minimum x and y coordinates of the image displayed in a
* specified #AtspiImage implementor.
+ *
+ * Returns: a pointer to an #AtspiPoint where x and y correspond to the
+ * minimum coordinates of the displayed image.
+ *
**/
AtspiPoint *
atspi_image_get_image_position (AtspiImage *obj,
@@ -102,8 +110,11 @@ atspi_image_get_image_position (AtspiImage *obj,
* @ctype: the desired coordinate system into which to return the results,
* (e.g. ATSPI_COORD_TYPE_WINDOW, ATSPI_COORD_TYPE_SCREEN).
*
- * Get the bounding box of the image displayed in a
+ * Gets the bounding box of the image displayed in a
* specified #AtspiImage implementor.
+ *
+ * Returns: a pointer to an #AtspiRect corresponding to the image's bounding box. The minimum x and y coordinates,
+ * width, and height are specified.
**/
AtspiRect *
atspi_image_get_image_extents (AtspiImage *obj,
@@ -123,11 +134,11 @@ atspi_image_get_image_extents (AtspiImage *obj,
/**
* atspi_image_get_image_locale:
- * @obj: The #AtspiImage being queried.
+ * @obj: a pointer to the #AtspiImage to query.
*
- * Get the locale associated with an image and its textual representation.
+ * Gets the locale associated with an image and its textual representation.
*
- * Returns: A POSIX LC_MESSAGES-style Locale value for image description and text.
+ * Returns: A POSIX LC_MESSAGES-style locale value for image description and text.
**/
gchar *
atspi_image_get_image_locale (AtspiImage *obj, GError **error)