3 * @obj: a pointer to the #AccessibleImage implementor on which to operate.
5 * Increment the reference count for an #AccessibleImage object.
7 * Returns: (no return code implemented yet).
11 AccessibleImage_ref (AccessibleImage *obj)
13 Accessibility_Image_ref (*obj, &ev);
20 * AccessibleImage_unref:
21 * @obj: a pointer to the #AccessibleImage implementor on which to operate.
23 * Decrement the reference count for an #AccessibleImage object.
25 * Returns: (no return code implemented yet).
29 AccessibleImage_unref (AccessibleImage *obj)
31 Accessibility_Image_unref (*obj, &ev);
37 * AccessibleImage_getImageDescription:
38 * @obj: a pointer to the #AccessibleImage implementor on which to operate.
40 * Get the description of the image displayed in an #AccessibleImage object.
42 * Returns: a UTF-8 string describing the image.
46 AccessibleImage_getImageDescription (AccessibleImage *obj)
49 Accessibility_Image__get_imageDescription (*obj, &ev);
55 * AccessibleImage_getImageSize:
56 * @obj: a pointer to the #AccessibleImage to query.
57 * @width: a pointer to a #long into which the x extents (width) will be returned.
58 * @height: a pointer to a #long into which the y extents (height) will be returned.
60 * Get the size of the image displayed in a specified #AccessibleImage object.
64 AccessibleImage_getImageSize (AccessibleImage *obj,
68 Accessibility_Image_getImageSize (*obj,
69 (CORBA_long *) width, (CORBA_long *) height, &ev);
75 * AccessibleImage_getImagePosition:
76 * @obj: a pointer to the #AccessibleImage implementor to query.
77 * @x: a pointer to a #long into which the minimum x coordinate will be returned.
78 * @y: a pointer to a #long into which the minimum y coordinate will be returned.
79 * @ctype: the desired coordinate system into which to return the results,
80 * (e.g. SPI_COORD_TYPE_WINDOW, SPI_COORD_TYPE_SCREEN).
82 * Get the minimum x and y coordinates of the image displayed in a
83 * specified #AccessibleImage implementor.
87 AccessibleImage_getImagePosition (AccessibleImage *obj,
90 AccessibleCoordType ctype)
92 Accessibility_Image_getImagePosition (*obj,
93 (CORBA_long *) x, (CORBA_long *) y, (CORBA_short) ctype,