]> Pileus Git - ~andy/gtk/blob - gtk/gtkimage.h
image: remove GdkImage as a possible image type
[~andy/gtk] / gtk / gtkimage.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
25  */
26
27 #if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
28 #error "Only <gtk/gtk.h> can be included directly."
29 #endif
30
31 #ifndef __GTK_IMAGE_H__
32 #define __GTK_IMAGE_H__
33
34
35 #include <gio/gio.h>
36 #include <gtk/gtkmisc.h>
37
38
39 G_BEGIN_DECLS
40
41 #define GTK_TYPE_IMAGE                  (gtk_image_get_type ())
42 #define GTK_IMAGE(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_IMAGE, GtkImage))
43 #define GTK_IMAGE_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_IMAGE, GtkImageClass))
44 #define GTK_IS_IMAGE(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_IMAGE))
45 #define GTK_IS_IMAGE_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_IMAGE))
46 #define GTK_IMAGE_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_IMAGE, GtkImageClass))
47
48
49 typedef struct _GtkImage       GtkImage;
50 typedef struct _GtkImagePriv   GtkImagePriv;
51 typedef struct _GtkImageClass  GtkImageClass;
52
53 typedef struct _GtkImagePixmapData  GtkImagePixmapData;
54 typedef struct _GtkImageImageData   GtkImageImageData;
55 typedef struct _GtkImagePixbufData  GtkImagePixbufData;
56 typedef struct _GtkImageStockData   GtkImageStockData;
57 typedef struct _GtkImageIconSetData GtkImageIconSetData;
58 typedef struct _GtkImageAnimationData GtkImageAnimationData;
59 typedef struct _GtkImageIconNameData  GtkImageIconNameData;
60 typedef struct _GtkImageGIconData     GtkImageGIconData;
61
62 struct _GtkImagePixmapData
63 {
64   GdkPixmap *pixmap;
65 };
66
67 struct _GtkImagePixbufData
68 {
69   GdkPixbuf *pixbuf;
70 };
71
72 struct _GtkImageStockData
73 {
74   gchar *stock_id;
75 };
76
77 struct _GtkImageIconSetData
78 {
79   GtkIconSet *icon_set;
80 };
81
82 struct _GtkImageAnimationData
83 {
84   GdkPixbufAnimation *anim;
85   GdkPixbufAnimationIter *iter;
86   guint frame_timeout;
87 };
88
89 struct _GtkImageIconNameData
90 {
91   gchar *icon_name;
92   GdkPixbuf *pixbuf;
93   guint theme_change_id;
94 };
95
96 struct _GtkImageGIconData
97 {
98   GIcon *icon;
99   GdkPixbuf *pixbuf;
100   guint theme_change_id;
101 };
102
103 /**
104  * GtkImageType:
105  * @GTK_IMAGE_EMPTY: there is no image displayed by the widget
106  * @GTK_IMAGE_PIXMAP: the widget contains a #GdkPixmap
107  * @GTK_IMAGE_PIXBUF: the widget contains a #GdkPixbuf
108  * @GTK_IMAGE_STOCK: the widget contains a stock icon name (see
109  *  <xref linkend="gtk3-Stock-Items"/>)
110  * @GTK_IMAGE_ICON_SET: the widget contains a #GtkIconSet
111  * @GTK_IMAGE_ANIMATION: the widget contains a #GdkPixbufAnimation
112  * @GTK_IMAGE_ICON_NAME: the widget contains a named icon.
113  *  This image type was added in GTK+ 2.6
114  * @GTK_IMAGE_GICON: the widget contains a #GIcon.
115  *  This image type was added in GTK+ 2.14
116  *
117  * Describes the image data representation used by a #GtkImage. If you
118  * want to get the image from the widget, you can only get the
119  * currently-stored representation. e.g.  if the
120  * gtk_image_get_storage_type() returns #GTK_IMAGE_PIXBUF, then you can
121  * call gtk_image_get_pixbuf() but not gtk_image_get_stock().  For empty
122  * images, you can request any storage type (call any of the "get"
123  * functions), but they will all return %NULL values.
124  */
125 typedef enum
126 {
127   GTK_IMAGE_EMPTY,
128   GTK_IMAGE_PIXMAP,
129   GTK_IMAGE_PIXBUF,
130   GTK_IMAGE_STOCK,
131   GTK_IMAGE_ICON_SET,
132   GTK_IMAGE_ANIMATION,
133   GTK_IMAGE_ICON_NAME,
134   GTK_IMAGE_GICON
135 } GtkImageType;
136
137 /**
138  * GtkImage:
139  *
140  * This struct contain private data only and should be accessed by the functions
141  * below.
142  */
143 struct _GtkImage
144 {
145   GtkMisc misc;
146
147   /* <private> */
148   GtkImagePriv *priv;
149 };
150
151 struct _GtkImageClass
152 {
153   GtkMiscClass parent_class;
154
155   /* Padding for future expansion */
156   void (*_gtk_reserved1) (void);
157   void (*_gtk_reserved2) (void);
158   void (*_gtk_reserved3) (void);
159   void (*_gtk_reserved4) (void);
160 };
161
162 #ifdef G_OS_WIN32
163 /* Reserve old names for DLL ABI backward compatibility */
164 #define gtk_image_new_from_file gtk_image_new_from_file_utf8
165 #define gtk_image_set_from_file gtk_image_set_from_file_utf8
166 #endif
167
168 GType      gtk_image_get_type (void) G_GNUC_CONST;
169
170 GtkWidget* gtk_image_new                (void);
171 GtkWidget* gtk_image_new_from_pixmap    (GdkPixmap       *pixmap,
172                                          GdkBitmap       *mask);
173 GtkWidget* gtk_image_new_from_file      (const gchar     *filename);
174 GtkWidget* gtk_image_new_from_pixbuf    (GdkPixbuf       *pixbuf);
175 GtkWidget* gtk_image_new_from_stock     (const gchar     *stock_id,
176                                          GtkIconSize      size);
177 GtkWidget* gtk_image_new_from_icon_set  (GtkIconSet      *icon_set,
178                                          GtkIconSize      size);
179 GtkWidget* gtk_image_new_from_animation (GdkPixbufAnimation *animation);
180 GtkWidget* gtk_image_new_from_icon_name (const gchar     *icon_name,
181                                          GtkIconSize      size);
182 GtkWidget* gtk_image_new_from_gicon     (GIcon           *icon,
183                                          GtkIconSize      size);
184
185 void gtk_image_clear              (GtkImage        *image);
186 void gtk_image_set_from_pixmap    (GtkImage        *image,
187                                    GdkPixmap       *pixmap,
188                                    GdkBitmap       *mask);
189 void gtk_image_set_from_file      (GtkImage        *image,
190                                    const gchar     *filename);
191 void gtk_image_set_from_pixbuf    (GtkImage        *image,
192                                    GdkPixbuf       *pixbuf);
193 void gtk_image_set_from_stock     (GtkImage        *image,
194                                    const gchar     *stock_id,
195                                    GtkIconSize      size);
196 void gtk_image_set_from_icon_set  (GtkImage        *image,
197                                    GtkIconSet      *icon_set,
198                                    GtkIconSize      size);
199 void gtk_image_set_from_animation (GtkImage           *image,
200                                    GdkPixbufAnimation *animation);
201 void gtk_image_set_from_icon_name (GtkImage        *image,
202                                    const gchar     *icon_name,
203                                    GtkIconSize      size);
204 void gtk_image_set_from_gicon     (GtkImage        *image,
205                                    GIcon           *icon,
206                                    GtkIconSize      size);
207 void gtk_image_set_pixel_size     (GtkImage        *image,
208                                    gint             pixel_size);
209
210 GtkImageType gtk_image_get_storage_type (GtkImage   *image);
211
212 void       gtk_image_get_pixmap   (GtkImage         *image,
213                                    GdkPixmap       **pixmap,
214                                    GdkBitmap       **mask);
215 GdkPixbuf* gtk_image_get_pixbuf   (GtkImage         *image);
216 void       gtk_image_get_stock    (GtkImage         *image,
217                                    gchar           **stock_id,
218                                    GtkIconSize      *size);
219 void       gtk_image_get_icon_set (GtkImage         *image,
220                                    GtkIconSet      **icon_set,
221                                    GtkIconSize      *size);
222 GdkPixbufAnimation* gtk_image_get_animation (GtkImage *image);
223 void       gtk_image_get_icon_name (GtkImage              *image,
224                                     G_CONST_RETURN gchar **icon_name,
225                                     GtkIconSize           *size);
226 void       gtk_image_get_gicon     (GtkImage              *image,
227                                     GIcon                **gicon,
228                                     GtkIconSize           *size);
229 gint       gtk_image_get_pixel_size (GtkImage             *image);
230
231 G_END_DECLS
232
233 #endif /* __GTK_IMAGE_H__ */