summaryrefslogtreecommitdiff
path: root/atk/atkimage.h
diff options
context:
space:
mode:
authorBrian Cameron <bcameron@src.gnome.org>2001-05-28 15:35:18 +0000
committerBrian Cameron <bcameron@src.gnome.org>2001-05-28 15:35:18 +0000
commit0eb2df058c94d10592f66a344552d75e3b3b2417 (patch)
tree24bafa0e148194ba5af4184b59edee3f6d8c5c90 /atk/atkimage.h
parent78d10a74dc40bbb8addb4fe43f8303189835f355 (diff)
downloadatk-0eb2df058c94d10592f66a344552d75e3b3b2417.tar.gz
Updated the atk docs for several files, particularly for enumerations.
Diffstat (limited to 'atk/atkimage.h')
-rwxr-xr-xatk/atkimage.h26
1 files changed, 11 insertions, 15 deletions
diff --git a/atk/atkimage.h b/atk/atkimage.h
index caa959e..d3fc0d2 100755
--- a/atk/atkimage.h
+++ b/atk/atkimage.h
@@ -43,6 +43,17 @@ typedef struct _AtkImage AtkImage;
#endif
typedef struct _AtkImageIface AtkImageIface;
+/**
+ *AtkImageType:
+ *@ATK_IMAGE_EMPTY:
+ *@ATK_IMAGE_PIXMAP:
+ *@ATK_IMAGE_IMAGE:
+ *@ATK_IMAGE_PIXBUF:
+ *@ATK_IMAGE_STOCK:
+ *@ATK_IMAGE_ICON_SET:
+ *
+ *The representation being used to store the image data
+ **/
typedef enum
{
ATK_IMAGE_EMPTY,
@@ -57,25 +68,10 @@ struct _AtkImageIface
{
GTypeInterface parent;
- /*
- * Gets the type of representation being used to store image data
- */
AtkImageType (*get_storage_type) (AtkImage *image);
- /*
- * Gets the description of the image
- */
G_CONST_RETURN gchar* ( *get_image_description) (AtkImage *image);
- /*
- * Gets the height of the image
- */
gint ( *get_image_height) (AtkImage *image);
- /*
- * Gets the width of the image
- */
gint ( *get_image_width) (AtkImage *image);
- /*
- * Sets the description of the image
- */
gboolean ( *set_image_description) (AtkImage *image,
const gchar *description);