| AT-SPI C Bindings Reference Manual | |||
|---|---|---|---|
| <<< Previous Page | Home | Up | Next Page >>> | 
| int AccessibleImage_ref (AccessibleImage *obj); int AccessibleImage_unref (AccessibleImage *obj); char* AccessibleImage_getImageDescription (AccessibleImage *obj); void AccessibleImage_getImageSize (AccessibleImage *obj, long int *width, long int *height); void AccessibleImage_getImagePosition (AccessibleImage *obj, long int *x, long int *y, AccessibleCoordType ctype); | 
| int AccessibleImage_ref (AccessibleImage *obj); | 
Increment the reference count for an AccessibleImage object.
| int AccessibleImage_unref (AccessibleImage *obj); | 
Decrement the reference count for an AccessibleImage object.
| char*       AccessibleImage_getImageDescription
                                            (AccessibleImage *obj); | 
Get the description of the image displayed in an AccessibleImage object.
| void        AccessibleImage_getImageSize    (AccessibleImage *obj,
                                             long int *width,
                                             long int *height); | 
Get the size of the image displayed in a specified AccessibleImage object.
| void        AccessibleImage_getImagePosition
                                            (AccessibleImage *obj,
                                             long int *x,
                                             long int *y,
                                             AccessibleCoordType ctype); | 
Get the minimum x and y coordinates of the image displayed in a specified AccessibleImage implementor.
| obj : | a pointer to the AccessibleImage implementor to query. | 
| x : | a pointer to a long into which the minimum x coordinate will be returned. | 
| y : | a pointer to a long into which the minimum y coordinate will be returned. | 
| ctype : | the desired coordinate system into which to return the results, (e.g. SPI_COORD_TYPE_WINDOW, SPI_COORD_TYPE_SCREEN). |