diff options
author | Murray Cumming <murrayc@usa.net> | 2004-01-05 18:24:08 +0000 |
---|---|---|
committer | Murray Cumming <murrayc@src.gnome.org> | 2004-01-05 18:24:08 +0000 |
commit | 024b8898d784425464c0473d6e16bcc281abd384 (patch) | |
tree | 828032fa175cfde28ec3d67018765ca102ea014e /gdk/gdkimage.h | |
parent | 27ca7a08aa0968f0a74347a5aea3cfa909edcf24 (diff) | |
download | gtk+-024b8898d784425464c0473d6e16bcc281abd384.tar.gz |
Added <public> documentation to the struct, as suggested by Owen Taylor.
2004-01-05 Murray Cumming <murrayc@usa.net>
* gdk/gdkimage.h: Added <public> documentation to the struct, as
suggested by Owen Taylor.
Diffstat (limited to 'gdk/gdkimage.h')
-rw-r--r-- | gdk/gdkimage.h | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/gdk/gdkimage.h b/gdk/gdkimage.h index 3bb79b26f9..34ac913c7f 100644 --- a/gdk/gdkimage.h +++ b/gdk/gdkimage.h @@ -37,16 +37,18 @@ typedef struct _GdkImageClass GdkImageClass; struct _GdkImage { GObject parent_instance; + + /*< public >*/ - GdkImageType type; - GdkVisual *visual; /* visual used to create the image */ - GdkByteOrder byte_order; - gint width; - gint height; - guint16 depth; - guint16 bpp; /* bytes per pixel */ - guint16 bpl; /* bytes per line */ - guint16 bits_per_pixel; /* bits per pixel */ + GdkImageType type; /* read only. */ + GdkVisual *visual; /* read only. visual used to create the image */ + GdkByteOrder byte_order; /* read only. */ + gint width; /* read only. */ + gint height; /* read only. */ + guint16 depth; /* read only. */ + guint16 bpp; /* read only. bytes per pixel */ + guint16 bpl; /* read only. bytes per line */ + guint16 bits_per_pixel; /* read only. bits per pixel */ gpointer mem; GdkColormap *colormap; |