diff options
author | Benjamin Otte <otte@redhat.com> | 2011-02-08 08:55:25 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2011-02-08 08:58:49 +0100 |
commit | 14831458063db477286851dbf4f8995e912a6eb5 (patch) | |
tree | b303ce766b60e81493062062c6af72314628e79d /gtk/gtkimage.h | |
parent | c1f8330a2824a494e1d27be2337d0ff8dc14fea3 (diff) | |
download | gtk+-14831458063db477286851dbf4f8995e912a6eb5.tar.gz |
API: image: Move private struct definitions into private header
They weren't privatized because the dnd code used them, too. But a
private header can allow the dnd code to be nasty, so go dnd code!
Diffstat (limited to 'gtk/gtkimage.h')
-rw-r--r-- | gtk/gtkimage.h | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/gtk/gtkimage.h b/gtk/gtkimage.h index 2e6bcc2814..bdd74e7058 100644 --- a/gtk/gtkimage.h +++ b/gtk/gtkimage.h @@ -50,49 +50,6 @@ typedef struct _GtkImage GtkImage; typedef struct _GtkImagePrivate GtkImagePrivate; typedef struct _GtkImageClass GtkImageClass; -typedef struct _GtkImagePixbufData GtkImagePixbufData; -typedef struct _GtkImageStockData GtkImageStockData; -typedef struct _GtkImageIconSetData GtkImageIconSetData; -typedef struct _GtkImageAnimationData GtkImageAnimationData; -typedef struct _GtkImageIconNameData GtkImageIconNameData; -typedef struct _GtkImageGIconData GtkImageGIconData; - -struct _GtkImagePixbufData -{ - GdkPixbuf *pixbuf; -}; - -struct _GtkImageStockData -{ - gchar *stock_id; -}; - -struct _GtkImageIconSetData -{ - GtkIconSet *icon_set; -}; - -struct _GtkImageAnimationData -{ - GdkPixbufAnimation *anim; - GdkPixbufAnimationIter *iter; - guint frame_timeout; -}; - -struct _GtkImageIconNameData -{ - gchar *icon_name; - GdkPixbuf *pixbuf; - guint theme_change_id; -}; - -struct _GtkImageGIconData -{ - GIcon *icon; - GdkPixbuf *pixbuf; - guint theme_change_id; -}; - /** * GtkImageType: * @GTK_IMAGE_EMPTY: there is no image displayed by the widget |