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.
This commit is contained in:
Murray Cumming
2004-01-05 18:24:08 +00:00
committed by Murray Cumming
parent 27ca7a08aa
commit 024b8898d7
6 changed files with 36 additions and 9 deletions

View File

@ -1,3 +1,8 @@
2004-01-05 Murray Cumming <murrayc@usa.net>
* gdk/gdkimage.h: Added <public> documentation to the struct, as
suggested by Owen Taylor.
Sun Jan 4 15:29:04 2004 Soeren Sandmann <sandmann@daimi.au.dk> Sun Jan 4 15:29:04 2004 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtkradiotoolbutton.[ch] * gtk/gtkradiotoolbutton.[ch]

View File

@ -1,3 +1,8 @@
2004-01-05 Murray Cumming <murrayc@usa.net>
* gdk/gdkimage.h: Added <public> documentation to the struct, as
suggested by Owen Taylor.
Sun Jan 4 15:29:04 2004 Soeren Sandmann <sandmann@daimi.au.dk> Sun Jan 4 15:29:04 2004 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtkradiotoolbutton.[ch] * gtk/gtkradiotoolbutton.[ch]

View File

@ -1,3 +1,8 @@
2004-01-05 Murray Cumming <murrayc@usa.net>
* gdk/gdkimage.h: Added <public> documentation to the struct, as
suggested by Owen Taylor.
Sun Jan 4 15:29:04 2004 Soeren Sandmann <sandmann@daimi.au.dk> Sun Jan 4 15:29:04 2004 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtkradiotoolbutton.[ch] * gtk/gtkradiotoolbutton.[ch]

View File

@ -1,3 +1,8 @@
2004-01-05 Murray Cumming <murrayc@usa.net>
* gdk/gdkimage.h: Added <public> documentation to the struct, as
suggested by Owen Taylor.
Sun Jan 4 15:29:04 2004 Soeren Sandmann <sandmann@daimi.au.dk> Sun Jan 4 15:29:04 2004 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtkradiotoolbutton.[ch] * gtk/gtkradiotoolbutton.[ch]

View File

@ -1,3 +1,8 @@
2004-01-05 Murray Cumming <murrayc@usa.net>
* gdk/gdkimage.h: Added <public> documentation to the struct, as
suggested by Owen Taylor.
Sun Jan 4 15:29:04 2004 Soeren Sandmann <sandmann@daimi.au.dk> Sun Jan 4 15:29:04 2004 Soeren Sandmann <sandmann@daimi.au.dk>
* gtk/gtkradiotoolbutton.[ch] * gtk/gtkradiotoolbutton.[ch]

View File

@ -37,16 +37,18 @@ typedef struct _GdkImageClass GdkImageClass;
struct _GdkImage struct _GdkImage
{ {
GObject parent_instance; GObject parent_instance;
/*< public >*/
GdkImageType type; GdkImageType type; /* read only. */
GdkVisual *visual; /* visual used to create the image */ GdkVisual *visual; /* read only. visual used to create the image */
GdkByteOrder byte_order; GdkByteOrder byte_order; /* read only. */
gint width; gint width; /* read only. */
gint height; gint height; /* read only. */
guint16 depth; guint16 depth; /* read only. */
guint16 bpp; /* bytes per pixel */ guint16 bpp; /* read only. bytes per pixel */
guint16 bpl; /* bytes per line */ guint16 bpl; /* read only. bytes per line */
guint16 bits_per_pixel; /* bits per pixel */ guint16 bits_per_pixel; /* read only. bits per pixel */
gpointer mem; gpointer mem;
GdkColormap *colormap; GdkColormap *colormap;