]> Pileus Git - ~andy/gtk/blob - gtk/gtkiconfactory.c
Documentation fixes
[~andy/gtk] / gtk / gtkiconfactory.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 2000 Red Hat, Inc.
3  *               2008 Johan Dahlin
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 #include "config.h"
28
29 #include <stdlib.h>
30 #include <errno.h>
31 #include <string.h>
32
33 #include "gtkiconfactory.h"
34 #include "gtkiconcache.h"
35 #include "gtkdebug.h"
36 #include "gtkicontheme.h"
37 #include "gtksettingsprivate.h"
38 #include "gtkstock.h"
39 #include "gtkwidget.h"
40 #include "gtkintl.h"
41 #include "gtkbuildable.h"
42 #include "gtkbuilderprivate.h"
43 #include "gtktypebuiltins.h"
44
45
46 /**
47  * SECTION:gtkiconfactory
48  * @Short_description: Manipulating stock icons
49  * @Title: Themeable Stock Images
50  *
51  * Browse the available stock icons in the list of stock IDs found <link
52  * linkend="gtk-Stock-Items">here</link>. You can also use
53  * the <application>gtk-demo</application> application for this purpose.
54  *
55  * An icon factory manages a collection of #GtkIconSet; a #GtkIconSet manages a
56  * set of variants of a particular icon (i.e. a #GtkIconSet contains variants for
57  * different sizes and widget states). Icons in an icon factory are named by a
58  * stock ID, which is a simple string identifying the icon. Each #GtkStyle has a
59  * list of #GtkIconFactory derived from the current theme; those icon factories
60  * are consulted first when searching for an icon. If the theme doesn't set a
61  * particular icon, GTK+ looks for the icon in a list of default icon factories,
62  * maintained by gtk_icon_factory_add_default() and
63  * gtk_icon_factory_remove_default(). Applications with icons should add a default
64  * icon factory with their icons, which will allow themes to override the icons
65  * for the application.
66  *
67  * To display an icon, always use gtk_style_lookup_icon_set() on the widget that
68  * will display the icon, or the convenience function
69  * gtk_widget_render_icon(). These functions take the theme into account when
70  * looking up the icon to use for a given stock ID.
71  *
72  * <refsect2 id="GtkIconFactory-BUILDER-UI">
73  * <title>GtkIconFactory as GtkBuildable</title>
74  * <para>
75  * GtkIconFactory supports a custom &lt;sources&gt; element, which can contain
76  * multiple &lt;source&gt; elements.
77  * The following attributes are allowed:
78  * <variablelist>
79  * <varlistentry>
80  * <term>stock-id</term>
81  * <listitem><para>
82  * The stock id of the source, a string.
83  * This attribute is mandatory
84  * </para></listitem>
85  * </varlistentry>
86  * <varlistentry>
87  * <term>filename</term>
88  * <listitem><para>
89  * The filename of the source, a string.
90  * This attribute is optional
91  * </para></listitem>
92  * </varlistentry>
93  * <varlistentry>
94  * <term>icon-name</term>
95  * <listitem><para>
96  * The icon name for the source, a string.
97  * This attribute is optional.
98  * </para></listitem>
99  * </varlistentry>
100  * <varlistentry>
101  * <term>size</term>
102  * <listitem><para>
103  * Size of the icon, a #GtkIconSize enum value.
104  * This attribute is optional.
105  * </para></listitem>
106  * </varlistentry>
107  * <varlistentry>
108  * <term>direction</term>
109  * <listitem><para>
110  * Direction of the source, a #GtkTextDirection enum value.
111  * This attribute is optional.
112  * </para></listitem>
113  * </varlistentry>
114  * <varlistentry>
115  * <term>state</term>
116  * <listitem><para>
117  * State of the source, a #GtkStateType enum value.
118  * This attribute is optional.
119  * </para></listitem>
120  * </varlistentry>
121  * </variablelist>
122  * <example>
123  * <title>A #GtkIconFactory UI definition fragment.</title>
124  * <programlisting><![CDATA[
125  * <object class="GtkIconFactory" id="iconfactory1">
126  *   <sources>
127  *     <source stock-id="apple-red" filename="apple-red.png"/>
128  *   </sources>
129  * </object>
130  * <object class="GtkWindow" id="window1">
131  *   <child>
132  *     <object class="GtkButton" id="apple_button">
133  *       <property name="label">apple-red</property>
134  *       <property name="use-stock">True</property>
135  *     </object>
136  *   </child>
137  * </object>
138  * ]]>
139  * </programlisting>
140  * </example>
141  * </para>
142  * </refsect2>
143  */
144
145
146 static GSList *all_icon_factories = NULL;
147
148 struct _GtkIconFactoryPrivate
149 {
150   GHashTable *icons;
151 };
152
153 typedef enum {
154   GTK_ICON_SOURCE_EMPTY,
155   GTK_ICON_SOURCE_ICON_NAME,
156   GTK_ICON_SOURCE_STATIC_ICON_NAME,
157   GTK_ICON_SOURCE_FILENAME,
158   GTK_ICON_SOURCE_PIXBUF
159 } GtkIconSourceType;
160
161 struct _GtkIconSource
162 {
163   GtkIconSourceType type;
164
165   union {
166     gchar *icon_name;
167     gchar *filename;
168     GdkPixbuf *pixbuf;
169   } source;
170
171   GdkPixbuf *filename_pixbuf;
172
173   GtkTextDirection direction;
174   GtkStateType state;
175   GtkIconSize size;
176
177   /* If TRUE, then the parameter is wildcarded, and the above
178    * fields should be ignored. If FALSE, the parameter is
179    * specified, and the above fields should be valid.
180    */
181   guint any_direction : 1;
182   guint any_state : 1;
183   guint any_size : 1;
184 };
185
186
187 static void
188 gtk_icon_factory_buildable_init  (GtkBuildableIface      *iface);
189
190 static gboolean gtk_icon_factory_buildable_custom_tag_start (GtkBuildable     *buildable,
191                                                              GtkBuilder       *builder,
192                                                              GObject          *child,
193                                                              const gchar      *tagname,
194                                                              GMarkupParser    *parser,
195                                                              gpointer         *data);
196 static void gtk_icon_factory_buildable_custom_tag_end (GtkBuildable *buildable,
197                                                        GtkBuilder   *builder,
198                                                        GObject      *child,
199                                                        const gchar  *tagname,
200                                                        gpointer     *user_data);
201 static void gtk_icon_factory_finalize   (GObject             *object);
202 static void get_default_icons           (GtkIconFactory      *icon_factory);
203 static void icon_source_clear           (GtkIconSource       *source);
204
205 static GtkIconSize icon_size_register_intern (const gchar *name,
206                                               gint         width,
207                                               gint         height);
208
209 #define GTK_ICON_SOURCE_INIT(any_direction, any_state, any_size)        \
210   { GTK_ICON_SOURCE_EMPTY, { NULL }, NULL,                              \
211    0, 0, 0,                                                             \
212    any_direction, any_state, any_size }
213
214 G_DEFINE_TYPE_WITH_CODE (GtkIconFactory, gtk_icon_factory, G_TYPE_OBJECT,
215                          G_IMPLEMENT_INTERFACE (GTK_TYPE_BUILDABLE,
216                                                 gtk_icon_factory_buildable_init))
217
218 static void
219 gtk_icon_factory_init (GtkIconFactory *factory)
220 {
221   GtkIconFactoryPrivate *priv;
222
223   factory->priv = G_TYPE_INSTANCE_GET_PRIVATE (factory,
224                                                GTK_TYPE_ICON_FACTORY,
225                                                GtkIconFactoryPrivate);
226   priv = factory->priv;
227
228   priv->icons = g_hash_table_new (g_str_hash, g_str_equal);
229   all_icon_factories = g_slist_prepend (all_icon_factories, factory);
230 }
231
232 static void
233 gtk_icon_factory_class_init (GtkIconFactoryClass *klass)
234 {
235   GObjectClass *object_class = G_OBJECT_CLASS (klass);
236
237   object_class->finalize = gtk_icon_factory_finalize;
238
239   g_type_class_add_private (klass, sizeof (GtkIconFactoryPrivate));
240 }
241
242 static void
243 gtk_icon_factory_buildable_init (GtkBuildableIface *iface)
244 {
245   iface->custom_tag_start = gtk_icon_factory_buildable_custom_tag_start;
246   iface->custom_tag_end = gtk_icon_factory_buildable_custom_tag_end;
247 }
248
249 static void
250 free_icon_set (gpointer key, gpointer value, gpointer data)
251 {
252   g_free (key);
253   gtk_icon_set_unref (value);
254 }
255
256 static void
257 gtk_icon_factory_finalize (GObject *object)
258 {
259   GtkIconFactory *factory = GTK_ICON_FACTORY (object);
260   GtkIconFactoryPrivate *priv = factory->priv;
261
262   all_icon_factories = g_slist_remove (all_icon_factories, factory);
263
264   g_hash_table_foreach (priv->icons, free_icon_set, NULL);
265
266   g_hash_table_destroy (priv->icons);
267
268   G_OBJECT_CLASS (gtk_icon_factory_parent_class)->finalize (object);
269 }
270
271 /**
272  * gtk_icon_factory_new:
273  *
274  * Creates a new #GtkIconFactory. An icon factory manages a collection
275  * of #GtkIconSet<!-- -->s; a #GtkIconSet manages a set of variants of a
276  * particular icon (i.e. a #GtkIconSet contains variants for different
277  * sizes and widget states). Icons in an icon factory are named by a
278  * stock ID, which is a simple string identifying the icon. Each
279  * #GtkStyle has a list of #GtkIconFactory<!-- -->s derived from the current
280  * theme; those icon factories are consulted first when searching for
281  * an icon. If the theme doesn't set a particular icon, GTK+ looks for
282  * the icon in a list of default icon factories, maintained by
283  * gtk_icon_factory_add_default() and
284  * gtk_icon_factory_remove_default(). Applications with icons should
285  * add a default icon factory with their icons, which will allow
286  * themes to override the icons for the application.
287  *
288  * Return value: a new #GtkIconFactory
289  */
290 GtkIconFactory*
291 gtk_icon_factory_new (void)
292 {
293   return g_object_new (GTK_TYPE_ICON_FACTORY, NULL);
294 }
295
296 /**
297  * gtk_icon_factory_add:
298  * @factory: a #GtkIconFactory
299  * @stock_id: icon name
300  * @icon_set: icon set
301  *
302  * Adds the given @icon_set to the icon factory, under the name
303  * @stock_id.  @stock_id should be namespaced for your application,
304  * e.g. "myapp-whatever-icon".  Normally applications create a
305  * #GtkIconFactory, then add it to the list of default factories with
306  * gtk_icon_factory_add_default(). Then they pass the @stock_id to
307  * widgets such as #GtkImage to display the icon. Themes can provide
308  * an icon with the same name (such as "myapp-whatever-icon") to
309  * override your application's default icons. If an icon already
310  * existed in @factory for @stock_id, it is unreferenced and replaced
311  * with the new @icon_set.
312  */
313 void
314 gtk_icon_factory_add (GtkIconFactory *factory,
315                       const gchar    *stock_id,
316                       GtkIconSet     *icon_set)
317 {
318   GtkIconFactoryPrivate *priv = factory->priv;
319   gpointer old_key = NULL;
320   gpointer old_value = NULL;
321
322   g_return_if_fail (GTK_IS_ICON_FACTORY (factory));
323   g_return_if_fail (stock_id != NULL);
324   g_return_if_fail (icon_set != NULL);
325
326   g_hash_table_lookup_extended (priv->icons, stock_id,
327                                 &old_key, &old_value);
328
329   if (old_value == icon_set)
330     return;
331
332   gtk_icon_set_ref (icon_set);
333
334   /* GHashTable key memory management is so fantastically broken. */
335   if (old_key)
336     g_hash_table_insert (priv->icons, old_key, icon_set);
337   else
338     g_hash_table_insert (priv->icons, g_strdup (stock_id), icon_set);
339
340   if (old_value)
341     gtk_icon_set_unref (old_value);
342 }
343
344 /**
345  * gtk_icon_factory_lookup:
346  * @factory: a #GtkIconFactory
347  * @stock_id: an icon name
348  *
349  * Looks up @stock_id in the icon factory, returning an icon set
350  * if found, otherwise %NULL. For display to the user, you should
351  * use gtk_style_lookup_icon_set() on the #GtkStyle for the
352  * widget that will display the icon, instead of using this
353  * function directly, so that themes are taken into account.
354  *
355  * Return value: (transfer none): icon set of @stock_id.
356  */
357 GtkIconSet *
358 gtk_icon_factory_lookup (GtkIconFactory *factory,
359                          const gchar    *stock_id)
360 {
361   GtkIconFactoryPrivate *priv;
362
363   g_return_val_if_fail (GTK_IS_ICON_FACTORY (factory), NULL);
364   g_return_val_if_fail (stock_id != NULL, NULL);
365
366   priv = factory->priv;
367
368   return g_hash_table_lookup (priv->icons, stock_id);
369 }
370
371 static GtkIconFactory *gtk_default_icons = NULL;
372 static GSList *default_factories = NULL;
373
374 /**
375  * gtk_icon_factory_add_default:
376  * @factory: a #GtkIconFactory
377  *
378  * Adds an icon factory to the list of icon factories searched by
379  * gtk_style_lookup_icon_set(). This means that, for example,
380  * gtk_image_new_from_stock() will be able to find icons in @factory.
381  * There will normally be an icon factory added for each library or
382  * application that comes with icons. The default icon factories
383  * can be overridden by themes.
384  */
385 void
386 gtk_icon_factory_add_default (GtkIconFactory *factory)
387 {
388   g_return_if_fail (GTK_IS_ICON_FACTORY (factory));
389
390   g_object_ref (factory);
391
392   default_factories = g_slist_prepend (default_factories, factory);
393 }
394
395 /**
396  * gtk_icon_factory_remove_default:
397  * @factory: a #GtkIconFactory previously added with gtk_icon_factory_add_default()
398  *
399  * Removes an icon factory from the list of default icon
400  * factories. Not normally used; you might use it for a library that
401  * can be unloaded or shut down.
402  */
403 void
404 gtk_icon_factory_remove_default (GtkIconFactory  *factory)
405 {
406   g_return_if_fail (GTK_IS_ICON_FACTORY (factory));
407
408   default_factories = g_slist_remove (default_factories, factory);
409
410   g_object_unref (factory);
411 }
412
413 void
414 _gtk_icon_factory_ensure_default_icons (void)
415 {
416   if (gtk_default_icons == NULL)
417     {
418       gtk_default_icons = gtk_icon_factory_new ();
419
420       get_default_icons (gtk_default_icons);
421     }
422 }
423
424 /**
425  * gtk_icon_factory_lookup_default:
426  * @stock_id: an icon name
427  *
428  * Looks for an icon in the list of default icon factories.  For
429  * display to the user, you should use gtk_style_lookup_icon_set() on
430  * the #GtkStyle for the widget that will display the icon, instead of
431  * using this function directly, so that themes are taken into
432  * account.
433  *
434  * Return value: (transfer none): a #GtkIconSet, or %NULL
435  */
436 GtkIconSet *
437 gtk_icon_factory_lookup_default (const gchar *stock_id)
438 {
439   GSList *tmp_list;
440
441   g_return_val_if_fail (stock_id != NULL, NULL);
442
443   tmp_list = default_factories;
444   while (tmp_list != NULL)
445     {
446       GtkIconSet *icon_set =
447         gtk_icon_factory_lookup (GTK_ICON_FACTORY (tmp_list->data),
448                                  stock_id);
449
450       if (icon_set)
451         return icon_set;
452
453       tmp_list = g_slist_next (tmp_list);
454     }
455
456   _gtk_icon_factory_ensure_default_icons ();
457
458   return gtk_icon_factory_lookup (gtk_default_icons, stock_id);
459 }
460
461 static void
462 register_stock_icon (GtkIconFactory *factory,
463                      const gchar    *stock_id,
464                      const gchar    *icon_name)
465 {
466   GtkIconSet *set = gtk_icon_set_new ();
467   GtkIconSource source = GTK_ICON_SOURCE_INIT (TRUE, TRUE, TRUE);
468
469   source.type = GTK_ICON_SOURCE_STATIC_ICON_NAME;
470   source.source.icon_name = (gchar *)icon_name;
471   source.direction = GTK_TEXT_DIR_NONE;
472   gtk_icon_set_add_source (set, &source);
473
474   gtk_icon_factory_add (factory, stock_id, set);
475   gtk_icon_set_unref (set);
476 }
477
478 static void
479 register_bidi_stock_icon (GtkIconFactory *factory,
480                           const gchar    *stock_id,
481                           const gchar    *icon_name)
482 {
483   GtkIconSet *set = gtk_icon_set_new ();
484   GtkIconSource source = GTK_ICON_SOURCE_INIT (FALSE, TRUE, TRUE);
485
486   source.type = GTK_ICON_SOURCE_STATIC_ICON_NAME;
487   source.source.icon_name = (gchar *)icon_name;
488   source.direction = GTK_TEXT_DIR_LTR;
489   gtk_icon_set_add_source (set, &source);
490
491   source.type = GTK_ICON_SOURCE_STATIC_ICON_NAME;
492   source.source.icon_name = (gchar *)icon_name;
493   source.direction = GTK_TEXT_DIR_RTL;
494   gtk_icon_set_add_source (set, &source);
495
496   gtk_icon_factory_add (factory, stock_id, set);
497   gtk_icon_set_unref (set);
498 }
499
500 static void
501 get_default_icons (GtkIconFactory *factory)
502 {
503   /* KEEP IN SYNC with gtkstock.c */
504
505   register_stock_icon (factory, GTK_STOCK_DIALOG_AUTHENTICATION, "dialog-password");
506   register_stock_icon (factory, GTK_STOCK_DIALOG_ERROR, "dialog-error");
507   register_stock_icon (factory, GTK_STOCK_DIALOG_INFO, "dialog-information");
508   register_stock_icon (factory, GTK_STOCK_DIALOG_QUESTION, "dialog-question");
509   register_stock_icon (factory, GTK_STOCK_DIALOG_WARNING, "dialog-warning");
510   register_stock_icon (factory, GTK_STOCK_DND, GTK_STOCK_DND);
511   register_stock_icon (factory, GTK_STOCK_DND_MULTIPLE, GTK_STOCK_DND_MULTIPLE);
512   register_stock_icon (factory, GTK_STOCK_APPLY, GTK_STOCK_APPLY);
513   register_stock_icon (factory, GTK_STOCK_CANCEL, GTK_STOCK_CANCEL);
514   register_stock_icon (factory, GTK_STOCK_NO, GTK_STOCK_NO);
515   register_stock_icon (factory, GTK_STOCK_OK, GTK_STOCK_OK);
516   register_stock_icon (factory, GTK_STOCK_YES, GTK_STOCK_YES);
517   register_stock_icon (factory, GTK_STOCK_CLOSE, "window-close");
518   register_stock_icon (factory, GTK_STOCK_ADD, "list-add");
519   register_stock_icon (factory, GTK_STOCK_JUSTIFY_CENTER, "format-justify-center");
520   register_stock_icon (factory, GTK_STOCK_JUSTIFY_FILL, "format-justify-fill");
521   register_stock_icon (factory, GTK_STOCK_JUSTIFY_LEFT, "format-justify-left");
522   register_stock_icon (factory, GTK_STOCK_JUSTIFY_RIGHT, "format-justify-right");
523   register_stock_icon (factory, GTK_STOCK_GOTO_BOTTOM, "go-bottom");
524   register_stock_icon (factory, GTK_STOCK_CDROM, "media-optical");
525   register_stock_icon (factory, GTK_STOCK_CONVERT, GTK_STOCK_CONVERT);
526   register_stock_icon (factory, GTK_STOCK_COPY, "edit-copy");
527   register_stock_icon (factory, GTK_STOCK_CUT, "edit-cut");
528   register_stock_icon (factory, GTK_STOCK_GO_DOWN, "go-down");
529   register_stock_icon (factory, GTK_STOCK_EXECUTE, "system-run");
530   register_stock_icon (factory, GTK_STOCK_QUIT, "application-exit");
531   register_bidi_stock_icon (factory, GTK_STOCK_GOTO_FIRST, "go-first");
532   register_stock_icon (factory, GTK_STOCK_SELECT_FONT, GTK_STOCK_SELECT_FONT);
533   register_stock_icon (factory, GTK_STOCK_FULLSCREEN, "view-fullscreen");
534   register_stock_icon (factory, GTK_STOCK_LEAVE_FULLSCREEN, "view-restore");
535   register_stock_icon (factory, GTK_STOCK_HARDDISK, "drive-harddisk");
536   register_stock_icon (factory, GTK_STOCK_HELP, "help-contents");
537   register_stock_icon (factory, GTK_STOCK_HOME, "go-home");
538   register_stock_icon (factory, GTK_STOCK_INFO, "dialog-information");
539   register_bidi_stock_icon (factory, GTK_STOCK_JUMP_TO, "go-jump");
540   register_bidi_stock_icon (factory, GTK_STOCK_GOTO_LAST, "go-last");
541   register_bidi_stock_icon (factory, GTK_STOCK_GO_BACK, "go-previous");
542   register_stock_icon (factory, GTK_STOCK_MISSING_IMAGE, "image-missing");
543   register_stock_icon (factory, GTK_STOCK_NETWORK, "network-idle");
544   register_stock_icon (factory, GTK_STOCK_NEW, "document-new");
545   register_stock_icon (factory, GTK_STOCK_OPEN, "document-open");
546   register_stock_icon (factory, GTK_STOCK_ORIENTATION_PORTRAIT, GTK_STOCK_ORIENTATION_PORTRAIT);
547   register_stock_icon (factory, GTK_STOCK_ORIENTATION_LANDSCAPE, GTK_STOCK_ORIENTATION_LANDSCAPE);
548   register_stock_icon (factory, GTK_STOCK_ORIENTATION_REVERSE_PORTRAIT, GTK_STOCK_ORIENTATION_REVERSE_PORTRAIT);
549   register_stock_icon (factory, GTK_STOCK_ORIENTATION_REVERSE_LANDSCAPE, GTK_STOCK_ORIENTATION_REVERSE_LANDSCAPE);
550   register_stock_icon (factory, GTK_STOCK_PAGE_SETUP, GTK_STOCK_PAGE_SETUP);
551   register_stock_icon (factory, GTK_STOCK_PASTE, "edit-paste");
552   register_stock_icon (factory, GTK_STOCK_PREFERENCES, GTK_STOCK_PREFERENCES);
553   register_stock_icon (factory, GTK_STOCK_PRINT, "document-print");
554   register_stock_icon (factory, GTK_STOCK_PRINT_ERROR, "printer-error");
555   register_stock_icon (factory, GTK_STOCK_PRINT_PAUSED, "printer-paused");
556   register_stock_icon (factory, GTK_STOCK_PRINT_PREVIEW, "document-print-preview");
557   register_stock_icon (factory, GTK_STOCK_PRINT_REPORT, "printer-info");
558   register_stock_icon (factory, GTK_STOCK_PRINT_WARNING, "printer-warning");
559   register_stock_icon (factory, GTK_STOCK_PROPERTIES, "document-properties");
560   register_bidi_stock_icon (factory, GTK_STOCK_REDO, "edit-redo");
561   register_stock_icon (factory, GTK_STOCK_REMOVE, "list-remove");
562   register_stock_icon (factory, GTK_STOCK_REFRESH, "view-refresh");
563   register_bidi_stock_icon (factory, GTK_STOCK_REVERT_TO_SAVED, "document-revert");
564   register_bidi_stock_icon (factory, GTK_STOCK_GO_FORWARD, "go-next");
565   register_stock_icon (factory, GTK_STOCK_SAVE, "document-save");
566   register_stock_icon (factory, GTK_STOCK_FLOPPY, "media-floppy");
567   register_stock_icon (factory, GTK_STOCK_SAVE_AS, "document-save-as");
568   register_stock_icon (factory, GTK_STOCK_FIND, "edit-find");
569   register_stock_icon (factory, GTK_STOCK_FIND_AND_REPLACE, "edit-find-replace");
570   register_stock_icon (factory, GTK_STOCK_SORT_DESCENDING, "view-sort-descending");
571   register_stock_icon (factory, GTK_STOCK_SORT_ASCENDING, "view-sort-ascending");
572   register_stock_icon (factory, GTK_STOCK_SPELL_CHECK, "tools-check-spelling");
573   register_stock_icon (factory, GTK_STOCK_STOP, "process-stop");
574   register_stock_icon (factory, GTK_STOCK_BOLD, "format-text-bold");
575   register_stock_icon (factory, GTK_STOCK_ITALIC, "format-text-italic");
576   register_stock_icon (factory, GTK_STOCK_STRIKETHROUGH, "format-text-strikethrough");
577   register_stock_icon (factory, GTK_STOCK_UNDERLINE, "format-text-underline");
578   register_bidi_stock_icon (factory, GTK_STOCK_INDENT, "format-indent-more");
579   register_bidi_stock_icon (factory, GTK_STOCK_UNINDENT, "format-indent-less");
580   register_stock_icon (factory, GTK_STOCK_GOTO_TOP, "go-top");
581   register_stock_icon (factory, GTK_STOCK_DELETE, "edit-delete");
582   register_bidi_stock_icon (factory, GTK_STOCK_UNDELETE, GTK_STOCK_UNDELETE);
583   register_bidi_stock_icon (factory, GTK_STOCK_UNDO, "edit-undo");
584   register_stock_icon (factory, GTK_STOCK_GO_UP, "go-up");
585   register_stock_icon (factory, GTK_STOCK_FILE, "text-x-generic");
586   register_stock_icon (factory, GTK_STOCK_DIRECTORY, "folder");
587   register_stock_icon (factory, GTK_STOCK_ABOUT, "help-about");
588   register_stock_icon (factory, GTK_STOCK_CONNECT, GTK_STOCK_CONNECT);
589   register_stock_icon (factory, GTK_STOCK_DISCONNECT, GTK_STOCK_DISCONNECT);
590   register_stock_icon (factory, GTK_STOCK_EDIT, GTK_STOCK_EDIT);
591   register_stock_icon (factory, GTK_STOCK_CAPS_LOCK_WARNING, GTK_STOCK_CAPS_LOCK_WARNING);
592   register_bidi_stock_icon (factory, GTK_STOCK_MEDIA_FORWARD, "media-seek-forward");
593   register_bidi_stock_icon (factory, GTK_STOCK_MEDIA_NEXT, "media-skip-forward");
594   register_stock_icon (factory, GTK_STOCK_MEDIA_PAUSE, "media-playback-pause");
595   register_bidi_stock_icon (factory, GTK_STOCK_MEDIA_PLAY, "media-playback-start");
596   register_bidi_stock_icon (factory, GTK_STOCK_MEDIA_PREVIOUS, "media-skip-backward");
597   register_stock_icon (factory, GTK_STOCK_MEDIA_RECORD, "media-record");
598   register_bidi_stock_icon (factory, GTK_STOCK_MEDIA_REWIND, "media-seek-backward");
599   register_stock_icon (factory, GTK_STOCK_MEDIA_STOP, "media-playback-stop");
600   register_stock_icon (factory, GTK_STOCK_INDEX, GTK_STOCK_INDEX);
601   register_stock_icon (factory, GTK_STOCK_ZOOM_100, "zoom-original");
602   register_stock_icon (factory, GTK_STOCK_ZOOM_IN, "zoom-in");
603   register_stock_icon (factory, GTK_STOCK_ZOOM_OUT, "zoom-out");
604   register_stock_icon (factory, GTK_STOCK_ZOOM_FIT, "zoom-fit-best");
605   register_stock_icon (factory, GTK_STOCK_SELECT_ALL, "edit-select-all");
606   register_stock_icon (factory, GTK_STOCK_CLEAR, "edit-clear");
607   register_stock_icon (factory, GTK_STOCK_SELECT_COLOR, GTK_STOCK_SELECT_COLOR);
608   register_stock_icon (factory, GTK_STOCK_COLOR_PICKER, GTK_STOCK_COLOR_PICKER);
609 }
610
611 /************************************************************
612  *                    Icon size handling                    *
613  ************************************************************/
614
615 typedef struct _IconSize IconSize;
616
617 struct _IconSize
618 {
619   gint size;
620   gchar *name;
621
622   gint width;
623   gint height;
624 };
625
626 typedef struct _IconAlias IconAlias;
627
628 struct _IconAlias
629 {
630   gchar *name;
631   gint   target;
632 };
633
634 typedef struct _SettingsIconSize SettingsIconSize;
635
636 struct _SettingsIconSize
637 {
638   gint width;
639   gint height;
640 };
641
642 static GHashTable *icon_aliases = NULL;
643 static IconSize *icon_sizes = NULL;
644 static gint      icon_sizes_allocated = 0;
645 static gint      icon_sizes_used = 0;
646
647 static void
648 init_icon_sizes (void)
649 {
650   if (icon_sizes == NULL)
651     {
652 #define NUM_BUILTIN_SIZES 7
653       gint i;
654
655       icon_aliases = g_hash_table_new (g_str_hash, g_str_equal);
656
657       icon_sizes = g_new (IconSize, NUM_BUILTIN_SIZES);
658       icon_sizes_allocated = NUM_BUILTIN_SIZES;
659       icon_sizes_used = NUM_BUILTIN_SIZES;
660
661       icon_sizes[GTK_ICON_SIZE_INVALID].size = 0;
662       icon_sizes[GTK_ICON_SIZE_INVALID].name = NULL;
663       icon_sizes[GTK_ICON_SIZE_INVALID].width = 0;
664       icon_sizes[GTK_ICON_SIZE_INVALID].height = 0;
665
666       /* the name strings aren't copied since we don't ever remove
667        * icon sizes, so we don't need to know whether they're static.
668        * Even if we did I suppose removing the builtin sizes would be
669        * disallowed.
670        */
671
672       icon_sizes[GTK_ICON_SIZE_MENU].size = GTK_ICON_SIZE_MENU;
673       icon_sizes[GTK_ICON_SIZE_MENU].name = "gtk-menu";
674       icon_sizes[GTK_ICON_SIZE_MENU].width = 16;
675       icon_sizes[GTK_ICON_SIZE_MENU].height = 16;
676
677       icon_sizes[GTK_ICON_SIZE_BUTTON].size = GTK_ICON_SIZE_BUTTON;
678       icon_sizes[GTK_ICON_SIZE_BUTTON].name = "gtk-button";
679       icon_sizes[GTK_ICON_SIZE_BUTTON].width = 20;
680       icon_sizes[GTK_ICON_SIZE_BUTTON].height = 20;
681
682       icon_sizes[GTK_ICON_SIZE_SMALL_TOOLBAR].size = GTK_ICON_SIZE_SMALL_TOOLBAR;
683       icon_sizes[GTK_ICON_SIZE_SMALL_TOOLBAR].name = "gtk-small-toolbar";
684       icon_sizes[GTK_ICON_SIZE_SMALL_TOOLBAR].width = 18;
685       icon_sizes[GTK_ICON_SIZE_SMALL_TOOLBAR].height = 18;
686
687       icon_sizes[GTK_ICON_SIZE_LARGE_TOOLBAR].size = GTK_ICON_SIZE_LARGE_TOOLBAR;
688       icon_sizes[GTK_ICON_SIZE_LARGE_TOOLBAR].name = "gtk-large-toolbar";
689       icon_sizes[GTK_ICON_SIZE_LARGE_TOOLBAR].width = 24;
690       icon_sizes[GTK_ICON_SIZE_LARGE_TOOLBAR].height = 24;
691
692       icon_sizes[GTK_ICON_SIZE_DND].size = GTK_ICON_SIZE_DND;
693       icon_sizes[GTK_ICON_SIZE_DND].name = "gtk-dnd";
694       icon_sizes[GTK_ICON_SIZE_DND].width = 32;
695       icon_sizes[GTK_ICON_SIZE_DND].height = 32;
696
697       icon_sizes[GTK_ICON_SIZE_DIALOG].size = GTK_ICON_SIZE_DIALOG;
698       icon_sizes[GTK_ICON_SIZE_DIALOG].name = "gtk-dialog";
699       icon_sizes[GTK_ICON_SIZE_DIALOG].width = 48;
700       icon_sizes[GTK_ICON_SIZE_DIALOG].height = 48;
701
702       g_assert ((GTK_ICON_SIZE_DIALOG + 1) == NUM_BUILTIN_SIZES);
703
704       /* Alias everything to itself. */
705       i = 1; /* skip invalid size */
706       while (i < NUM_BUILTIN_SIZES)
707         {
708           gtk_icon_size_register_alias (icon_sizes[i].name, icon_sizes[i].size);
709
710           ++i;
711         }
712
713 #undef NUM_BUILTIN_SIZES
714     }
715 }
716
717 static void
718 free_settings_sizes (gpointer data)
719 {
720   g_array_free (data, TRUE);
721 }
722
723 static GArray *
724 get_settings_sizes (GtkSettings *settings,
725                     gboolean    *created)
726 {
727   GArray *settings_sizes;
728   static GQuark sizes_quark = 0;
729
730   if (!sizes_quark)
731     sizes_quark = g_quark_from_static_string ("gtk-icon-sizes");
732
733   settings_sizes = g_object_get_qdata (G_OBJECT (settings), sizes_quark);
734   if (!settings_sizes)
735     {
736       settings_sizes = g_array_new (FALSE, FALSE, sizeof (SettingsIconSize));
737       g_object_set_qdata_full (G_OBJECT (settings), sizes_quark,
738                                settings_sizes, free_settings_sizes);
739       if (created)
740         *created = TRUE;
741     }
742
743   return settings_sizes;
744 }
745
746 static void
747 icon_size_set_for_settings (GtkSettings *settings,
748                             const gchar *size_name,
749                             gint         width,
750                             gint         height)
751 {
752   GtkIconSize size;
753   GArray *settings_sizes;
754   SettingsIconSize *settings_size;
755
756   g_return_if_fail (size_name != NULL);
757
758   size = gtk_icon_size_from_name (size_name);
759   if (size == GTK_ICON_SIZE_INVALID)
760     /* Reserve a place */
761     size = icon_size_register_intern (size_name, -1, -1);
762
763   settings_sizes = get_settings_sizes (settings, NULL);
764   if (size >= settings_sizes->len)
765     {
766       SettingsIconSize unset = { -1, -1 };
767       gint i;
768
769       for (i = settings_sizes->len; i <= size; i++)
770         g_array_append_val (settings_sizes, unset);
771     }
772
773   settings_size = &g_array_index (settings_sizes, SettingsIconSize, size);
774
775   settings_size->width = width;
776   settings_size->height = height;
777 }
778
779 /* Like pango_parse_word, but accept - as well
780  */
781 static gboolean
782 scan_icon_size_name (const char **pos, GString *out)
783 {
784   const char *p = *pos;
785
786   while (g_ascii_isspace (*p))
787     p++;
788
789   if (!((*p >= 'A' && *p <= 'Z') ||
790         (*p >= 'a' && *p <= 'z') ||
791         *p == '_' || *p == '-'))
792     return FALSE;
793
794   g_string_truncate (out, 0);
795   g_string_append_c (out, *p);
796   p++;
797
798   while ((*p >= 'A' && *p <= 'Z') ||
799          (*p >= 'a' && *p <= 'z') ||
800          (*p >= '0' && *p <= '9') ||
801          *p == '_' || *p == '-')
802     {
803       g_string_append_c (out, *p);
804       p++;
805     }
806
807   *pos = p;
808
809   return TRUE;
810 }
811
812 static void
813 icon_size_setting_parse (GtkSettings *settings,
814                          const gchar *icon_size_string)
815 {
816   GString *name_buf = g_string_new (NULL);
817   const gchar *p = icon_size_string;
818
819   while (pango_skip_space (&p))
820     {
821       gint width, height;
822
823       if (!scan_icon_size_name (&p, name_buf))
824         goto err;
825
826       if (!pango_skip_space (&p))
827         goto err;
828
829       if (*p != '=')
830         goto err;
831
832       p++;
833
834       if (!pango_scan_int (&p, &width))
835         goto err;
836
837       if (!pango_skip_space (&p))
838         goto err;
839
840       if (*p != ',')
841         goto err;
842
843       p++;
844
845       if (!pango_scan_int (&p, &height))
846         goto err;
847
848       if (width > 0 && height > 0)
849         {
850           icon_size_set_for_settings (settings, name_buf->str,
851                                       width, height);
852         }
853       else
854         {
855           g_warning ("Invalid size in gtk-icon-sizes: %d,%d\n", width, height);
856         }
857
858       pango_skip_space (&p);
859       if (*p == '\0')
860         break;
861       if (*p == ':')
862         p++;
863       else
864         goto err;
865     }
866
867   g_string_free (name_buf, TRUE);
868   return;
869
870  err:
871   g_warning ("Error parsing gtk-icon-sizes string:\n\t'%s'", icon_size_string);
872   g_string_free (name_buf, TRUE);
873 }
874
875 static void
876 icon_size_set_all_from_settings (GtkSettings *settings)
877 {
878   GArray *settings_sizes;
879   gchar *icon_size_string;
880
881   /* Reset old settings */
882   settings_sizes = get_settings_sizes (settings, NULL);
883   g_array_set_size (settings_sizes, 0);
884
885   g_object_get (settings,
886                 "gtk-icon-sizes", &icon_size_string,
887                 NULL);
888
889   if (icon_size_string)
890     {
891       icon_size_setting_parse (settings, icon_size_string);
892       g_free (icon_size_string);
893     }
894 }
895
896 static void
897 icon_size_settings_changed (GtkSettings  *settings,
898                             GParamSpec   *pspec)
899 {
900   icon_size_set_all_from_settings (settings);
901
902   gtk_style_context_reset_widgets (_gtk_settings_get_screen (settings));
903 }
904
905 static void
906 icon_sizes_init_for_settings (GtkSettings *settings)
907 {
908   g_signal_connect (settings,
909                     "notify::gtk-icon-sizes",
910                     G_CALLBACK (icon_size_settings_changed),
911                     NULL);
912
913   icon_size_set_all_from_settings (settings);
914 }
915
916 static gboolean
917 icon_size_lookup_intern (GtkSettings *settings,
918                          GtkIconSize  size,
919                          gint        *widthp,
920                          gint        *heightp)
921 {
922   GArray *settings_sizes;
923   gint width_for_settings = -1;
924   gint height_for_settings = -1;
925
926   init_icon_sizes ();
927
928   if (size == (GtkIconSize)-1)
929     return FALSE;
930
931   if (size >= icon_sizes_used)
932     return FALSE;
933
934   if (size == GTK_ICON_SIZE_INVALID)
935     return FALSE;
936
937   if (settings)
938     {
939       gboolean initial = FALSE;
940
941       settings_sizes = get_settings_sizes (settings, &initial);
942
943       if (initial)
944         icon_sizes_init_for_settings (settings);
945
946       if (size < settings_sizes->len)
947         {
948           SettingsIconSize *settings_size;
949
950           settings_size = &g_array_index (settings_sizes, SettingsIconSize, size);
951
952           width_for_settings = settings_size->width;
953           height_for_settings = settings_size->height;
954         }
955     }
956
957   if (widthp)
958     *widthp = width_for_settings >= 0 ? width_for_settings : icon_sizes[size].width;
959
960   if (heightp)
961     *heightp = height_for_settings >= 0 ? height_for_settings : icon_sizes[size].height;
962
963   return TRUE;
964 }
965
966 /**
967  * gtk_icon_size_lookup_for_settings:
968  * @settings: a #GtkSettings object, used to determine
969  *   which set of user preferences to used.
970  * @size: (type int): an icon size
971  * @width: (out): location to store icon width
972  * @height: (out): location to store icon height
973  *
974  * Obtains the pixel size of a semantic icon size, possibly
975  * modified by user preferences for a particular
976  * #GtkSettings. Normally @size would be
977  * #GTK_ICON_SIZE_MENU, #GTK_ICON_SIZE_BUTTON, etc.  This function
978  * isn't normally needed, gtk_widget_render_icon_pixbuf() is the usual
979  * way to get an icon for rendering, then just look at the size of
980  * the rendered pixbuf. The rendered pixbuf may not even correspond to
981  * the width/height returned by gtk_icon_size_lookup(), because themes
982  * are free to render the pixbuf however they like, including changing
983  * the usual size.
984  *
985  * Return value: %TRUE if @size was a valid size
986  *
987  * Since: 2.2
988  */
989 gboolean
990 gtk_icon_size_lookup_for_settings (GtkSettings *settings,
991                                    GtkIconSize  size,
992                                    gint        *width,
993                                    gint        *height)
994 {
995   g_return_val_if_fail (GTK_IS_SETTINGS (settings), FALSE);
996
997   return icon_size_lookup_intern (settings, size, width, height);
998 }
999
1000 /**
1001  * gtk_icon_size_lookup:
1002  * @size: (type int): an icon size
1003  * @width: (out): location to store icon width
1004  * @height: (out): location to store icon height
1005  *
1006  * Obtains the pixel size of a semantic icon size, possibly
1007  * modified by user preferences for the default #GtkSettings.
1008  * (See gtk_icon_size_lookup_for_settings().)
1009  * Normally @size would be
1010  * #GTK_ICON_SIZE_MENU, #GTK_ICON_SIZE_BUTTON, etc.  This function
1011  * isn't normally needed, gtk_widget_render_icon_pixbuf() is the usual
1012  * way to get an icon for rendering, then just look at the size of
1013  * the rendered pixbuf. The rendered pixbuf may not even correspond to
1014  * the width/height returned by gtk_icon_size_lookup(), because themes
1015  * are free to render the pixbuf however they like, including changing
1016  * the usual size.
1017  *
1018  * Return value: %TRUE if @size was a valid size
1019  */
1020 gboolean
1021 gtk_icon_size_lookup (GtkIconSize  size,
1022                       gint        *widthp,
1023                       gint        *heightp)
1024 {
1025   GTK_NOTE (MULTIHEAD,
1026             g_warning ("gtk_icon_size_lookup ()) is not multihead safe"));
1027
1028   return gtk_icon_size_lookup_for_settings (gtk_settings_get_default (),
1029                                             size, widthp, heightp);
1030 }
1031
1032 static GtkIconSize
1033 icon_size_register_intern (const gchar *name,
1034                            gint         width,
1035                            gint         height)
1036 {
1037   IconAlias *old_alias;
1038   GtkIconSize size;
1039
1040   init_icon_sizes ();
1041
1042   old_alias = g_hash_table_lookup (icon_aliases, name);
1043   if (old_alias && icon_sizes[old_alias->target].width > 0)
1044     {
1045       g_warning ("Icon size name '%s' already exists", name);
1046       return GTK_ICON_SIZE_INVALID;
1047     }
1048
1049   if (old_alias)
1050     {
1051       size = old_alias->target;
1052     }
1053   else
1054     {
1055       if (icon_sizes_used == icon_sizes_allocated)
1056         {
1057           icon_sizes_allocated *= 2;
1058           icon_sizes = g_renew (IconSize, icon_sizes, icon_sizes_allocated);
1059         }
1060
1061       size = icon_sizes_used++;
1062
1063       /* alias to self. */
1064       gtk_icon_size_register_alias (name, size);
1065
1066       icon_sizes[size].size = size;
1067       icon_sizes[size].name = g_strdup (name);
1068     }
1069
1070   icon_sizes[size].width = width;
1071   icon_sizes[size].height = height;
1072
1073   return size;
1074 }
1075
1076 /**
1077  * gtk_icon_size_register:
1078  * @name: name of the icon size
1079  * @width: the icon width
1080  * @height: the icon height
1081  *
1082  * Registers a new icon size, along the same lines as #GTK_ICON_SIZE_MENU,
1083  * etc. Returns the integer value for the size.
1084  *
1085  * Returns: (type int): integer value representing the size
1086  */
1087 GtkIconSize
1088 gtk_icon_size_register (const gchar *name,
1089                         gint         width,
1090                         gint         height)
1091 {
1092   g_return_val_if_fail (name != NULL, 0);
1093   g_return_val_if_fail (width > 0, 0);
1094   g_return_val_if_fail (height > 0, 0);
1095
1096   return icon_size_register_intern (name, width, height);
1097 }
1098
1099 /**
1100  * gtk_icon_size_register_alias:
1101  * @alias: an alias for @target
1102  * @target: (type int): an existing icon size
1103  *
1104  * Registers @alias as another name for @target.
1105  * So calling gtk_icon_size_from_name() with @alias as argument
1106  * will return @target.
1107  */
1108 void
1109 gtk_icon_size_register_alias (const gchar *alias,
1110                               GtkIconSize  target)
1111 {
1112   IconAlias *ia;
1113
1114   g_return_if_fail (alias != NULL);
1115
1116   init_icon_sizes ();
1117
1118   if (!icon_size_lookup_intern (NULL, target, NULL, NULL))
1119     g_warning ("gtk_icon_size_register_alias: Icon size %u does not exist", target);
1120
1121   ia = g_hash_table_lookup (icon_aliases, alias);
1122   if (ia)
1123     {
1124       if (icon_sizes[ia->target].width > 0)
1125         {
1126           g_warning ("gtk_icon_size_register_alias: Icon size name '%s' already exists", alias);
1127           return;
1128         }
1129
1130       ia->target = target;
1131     }
1132
1133   if (!ia)
1134     {
1135       ia = g_new (IconAlias, 1);
1136       ia->name = g_strdup (alias);
1137       ia->target = target;
1138
1139       g_hash_table_insert (icon_aliases, ia->name, ia);
1140     }
1141 }
1142
1143 /**
1144  * gtk_icon_size_from_name:
1145  * @name: the name to look up.
1146  *
1147  * Looks up the icon size associated with @name.
1148  *
1149  * Return value: (type int): the icon size
1150  */
1151 GtkIconSize
1152 gtk_icon_size_from_name (const gchar *name)
1153 {
1154   IconAlias *ia;
1155
1156   init_icon_sizes ();
1157
1158   ia = g_hash_table_lookup (icon_aliases, name);
1159
1160   if (ia && icon_sizes[ia->target].width > 0)
1161     return ia->target;
1162   else
1163     return GTK_ICON_SIZE_INVALID;
1164 }
1165
1166 /**
1167  * gtk_icon_size_get_name:
1168  * @size: (type int): a #GtkIconSize.
1169  *
1170  * Gets the canonical name of the given icon size. The returned string
1171  * is statically allocated and should not be freed.
1172  *
1173  * Returns: the name of the given icon size.
1174  */
1175 const gchar*
1176 gtk_icon_size_get_name (GtkIconSize  size)
1177 {
1178   if (size >= icon_sizes_used)
1179     return NULL;
1180   else
1181     return icon_sizes[size].name;
1182 }
1183
1184 /************************************************************/
1185
1186 /* Icon Set */
1187
1188
1189 static GdkPixbuf *find_in_cache     (GtkIconSet       *icon_set,
1190                                      GtkStyleContext  *style_context,
1191                                      GtkTextDirection  direction,
1192                                      GtkStateType      state,
1193                                      GtkIconSize       size);
1194 static void       add_to_cache      (GtkIconSet       *icon_set,
1195                                      GtkStyleContext  *style_context,
1196                                      GtkTextDirection  direction,
1197                                      GtkStateType      state,
1198                                      GtkIconSize       size,
1199                                      GdkPixbuf        *pixbuf);
1200 /* Clear icon set contents, drop references to all contained
1201  * GdkPixbuf objects and forget all GtkIconSources. Used to
1202  * recycle an icon set.
1203  */
1204 static void       clear_cache       (GtkIconSet       *icon_set,
1205                                      gboolean          style_detach);
1206 static GSList*    copy_cache        (GtkIconSet       *icon_set,
1207                                      GtkIconSet       *copy_recipient);
1208 static void       attach_to_style   (GtkIconSet       *icon_set,
1209                                      GtkStyleContext  *style_context);
1210 static void       detach_from_style (GtkIconSet       *icon_set,
1211                                      GtkStyleContext  *style_context);
1212 static void       style_dnotify     (gpointer          data);
1213
1214 struct _GtkIconSet
1215 {
1216   guint ref_count;
1217
1218   GSList *sources;
1219
1220   /* Cache of the last few rendered versions of the icon. */
1221   GSList *cache;
1222
1223   guint cache_size;
1224
1225   guint cache_serial;
1226 };
1227
1228 static guint cache_serial = 0;
1229
1230 /**
1231  * gtk_icon_set_new:
1232  *
1233  * Creates a new #GtkIconSet. A #GtkIconSet represents a single icon
1234  * in various sizes and widget states. It can provide a #GdkPixbuf
1235  * for a given size and state on request, and automatically caches
1236  * some of the rendered #GdkPixbuf objects.
1237  *
1238  * Normally you would use gtk_widget_render_icon_pixbuf() instead of
1239  * using #GtkIconSet directly. The one case where you'd use
1240  * #GtkIconSet is to create application-specific icon sets to place in
1241  * a #GtkIconFactory.
1242  *
1243  * Return value: a new #GtkIconSet
1244  */
1245 GtkIconSet*
1246 gtk_icon_set_new (void)
1247 {
1248   GtkIconSet *icon_set;
1249
1250   icon_set = g_new (GtkIconSet, 1);
1251
1252   icon_set->ref_count = 1;
1253   icon_set->sources = NULL;
1254   icon_set->cache = NULL;
1255   icon_set->cache_size = 0;
1256   icon_set->cache_serial = cache_serial;
1257
1258   return icon_set;
1259 }
1260
1261 /**
1262  * gtk_icon_set_new_from_pixbuf:
1263  * @pixbuf: a #GdkPixbuf
1264  *
1265  * Creates a new #GtkIconSet with @pixbuf as the default/fallback
1266  * source image. If you don't add any additional #GtkIconSource to the
1267  * icon set, all variants of the icon will be created from @pixbuf,
1268  * using scaling, pixelation, etc. as required to adjust the icon size
1269  * or make the icon look insensitive/prelighted.
1270  *
1271  * Return value: a new #GtkIconSet
1272  */
1273 GtkIconSet *
1274 gtk_icon_set_new_from_pixbuf (GdkPixbuf *pixbuf)
1275 {
1276   GtkIconSet *set;
1277
1278   GtkIconSource source = GTK_ICON_SOURCE_INIT (TRUE, TRUE, TRUE);
1279
1280   g_return_val_if_fail (pixbuf != NULL, NULL);
1281
1282   set = gtk_icon_set_new ();
1283
1284   gtk_icon_source_set_pixbuf (&source, pixbuf);
1285   gtk_icon_set_add_source (set, &source);
1286   gtk_icon_source_set_pixbuf (&source, NULL);
1287
1288   return set;
1289 }
1290
1291
1292 /**
1293  * gtk_icon_set_ref:
1294  * @icon_set: a #GtkIconSet.
1295  *
1296  * Increments the reference count on @icon_set.
1297  *
1298  * Return value: @icon_set.
1299  */
1300 GtkIconSet*
1301 gtk_icon_set_ref (GtkIconSet *icon_set)
1302 {
1303   g_return_val_if_fail (icon_set != NULL, NULL);
1304   g_return_val_if_fail (icon_set->ref_count > 0, NULL);
1305
1306   icon_set->ref_count += 1;
1307
1308   return icon_set;
1309 }
1310
1311 /**
1312  * gtk_icon_set_unref:
1313  * @icon_set: a #GtkIconSet
1314  *
1315  * Decrements the reference count on @icon_set, and frees memory
1316  * if the reference count reaches 0.
1317  */
1318 void
1319 gtk_icon_set_unref (GtkIconSet *icon_set)
1320 {
1321   g_return_if_fail (icon_set != NULL);
1322   g_return_if_fail (icon_set->ref_count > 0);
1323
1324   icon_set->ref_count -= 1;
1325
1326   if (icon_set->ref_count == 0)
1327     {
1328       GSList *tmp_list = icon_set->sources;
1329       while (tmp_list != NULL)
1330         {
1331           gtk_icon_source_free (tmp_list->data);
1332
1333           tmp_list = g_slist_next (tmp_list);
1334         }
1335       g_slist_free (icon_set->sources);
1336
1337       clear_cache (icon_set, TRUE);
1338
1339       g_free (icon_set);
1340     }
1341 }
1342
1343 G_DEFINE_BOXED_TYPE (GtkIconSet, gtk_icon_set,
1344                      gtk_icon_set_ref,
1345                      gtk_icon_set_unref)
1346
1347 /**
1348  * gtk_icon_set_copy:
1349  * @icon_set: a #GtkIconSet
1350  *
1351  * Copies @icon_set by value.
1352  *
1353  * Return value: a new #GtkIconSet identical to the first.
1354  **/
1355 GtkIconSet*
1356 gtk_icon_set_copy (GtkIconSet *icon_set)
1357 {
1358   GtkIconSet *copy;
1359   GSList *tmp_list;
1360
1361   copy = gtk_icon_set_new ();
1362
1363   tmp_list = icon_set->sources;
1364   while (tmp_list != NULL)
1365     {
1366       copy->sources = g_slist_prepend (copy->sources,
1367                                        gtk_icon_source_copy (tmp_list->data));
1368
1369       tmp_list = g_slist_next (tmp_list);
1370     }
1371
1372   copy->sources = g_slist_reverse (copy->sources);
1373
1374   copy->cache = copy_cache (icon_set, copy);
1375   copy->cache_size = icon_set->cache_size;
1376   copy->cache_serial = icon_set->cache_serial;
1377
1378   return copy;
1379 }
1380
1381 static gboolean
1382 sizes_equivalent (GtkIconSize lhs,
1383                   GtkIconSize rhs)
1384 {
1385   /* We used to consider sizes equivalent if they were
1386    * the same pixel size, but we don't have the GtkSettings
1387    * here, so we can't do that. Plus, it's not clear that
1388    * it is right... it was just a workaround for the fact
1389    * that we register icons by logical size, not pixel size.
1390    */
1391 #if 1
1392   return lhs == rhs;
1393 #else
1394
1395   gint r_w, r_h, l_w, l_h;
1396
1397   icon_size_lookup_intern (NULL, rhs, &r_w, &r_h);
1398   icon_size_lookup_intern (NULL, lhs, &l_w, &l_h);
1399
1400   return r_w == l_w && r_h == l_h;
1401 #endif
1402 }
1403
1404 static GtkIconSource *
1405 find_best_matching_source (GtkIconSet       *icon_set,
1406                            GtkTextDirection  direction,
1407                            GtkStateType      state,
1408                            GtkIconSize       size,
1409                            GSList           *failed)
1410 {
1411   GtkIconSource *source;
1412   GSList *tmp_list;
1413
1414   /* We need to find the best icon source.  Direction matters more
1415    * than state, state matters more than size. icon_set->sources
1416    * is sorted according to wildness, so if we take the first
1417    * match we find it will be the least-wild match (if there are
1418    * multiple matches for a given "wildness" then the RC file contained
1419    * dumb stuff, and we end up with an arbitrary matching source)
1420    */
1421
1422   source = NULL;
1423   tmp_list = icon_set->sources;
1424   while (tmp_list != NULL)
1425     {
1426       GtkIconSource *s = tmp_list->data;
1427
1428       if ((s->any_direction || (s->direction == direction)) &&
1429           (s->any_state || (s->state == state)) &&
1430           (s->any_size || size == (GtkIconSize)-1 || (sizes_equivalent (size, s->size))))
1431         {
1432           if (!g_slist_find (failed, s))
1433             {
1434               source = s;
1435               break;
1436             }
1437         }
1438
1439       tmp_list = g_slist_next (tmp_list);
1440     }
1441
1442   return source;
1443 }
1444
1445 static gboolean
1446 ensure_filename_pixbuf (GtkIconSet    *icon_set,
1447                         GtkIconSource *source)
1448 {
1449   if (source->filename_pixbuf == NULL)
1450     {
1451       GError *error = NULL;
1452
1453       source->filename_pixbuf = gdk_pixbuf_new_from_file (source->source.filename, &error);
1454
1455       if (source->filename_pixbuf == NULL)
1456         {
1457           /* Remove this icon source so we don't keep trying to
1458            * load it.
1459            */
1460           g_warning ("Error loading icon: %s", error->message);
1461           g_error_free (error);
1462
1463           icon_set->sources = g_slist_remove (icon_set->sources, source);
1464
1465           gtk_icon_source_free (source);
1466
1467           return FALSE;
1468         }
1469     }
1470
1471   return TRUE;
1472 }
1473
1474 static GdkPixbuf *
1475 render_icon_name_pixbuf (GtkIconSource    *icon_source,
1476                          GtkStyleContext  *context,
1477                          GtkIconSize       size)
1478 {
1479   GdkPixbuf *pixbuf;
1480   GdkPixbuf *tmp_pixbuf;
1481   GtkIconSource tmp_source;
1482   GdkScreen *screen;
1483   GtkIconTheme *icon_theme;
1484   GtkSettings *settings;
1485   gint width, height, pixel_size;
1486   gint *sizes, *s, dist;
1487   GError *error = NULL;
1488
1489   screen = gtk_style_context_get_screen (context);
1490   icon_theme = gtk_icon_theme_get_for_screen (screen);
1491   settings = gtk_settings_get_for_screen (screen);
1492
1493   if (!gtk_icon_size_lookup_for_settings (settings, size, &width, &height))
1494     {
1495       if (size == (GtkIconSize)-1)
1496         {
1497           /* Find an available size close to 48 */
1498           sizes = gtk_icon_theme_get_icon_sizes (icon_theme, icon_source->source.icon_name);
1499           dist = 1000;
1500           width = height = 48;
1501           for (s = sizes; *s; s++)
1502             {
1503               if (*s == -1)
1504                 {
1505                   width = height = 48;
1506                   break;
1507                 }
1508               if (*s < 48)
1509                 {
1510                   if (48 - *s < dist)
1511                     {
1512                       width = height = *s;
1513                       dist = 48 - *s;
1514                     }
1515                 }
1516               else
1517                 {
1518                   if (*s - 48 < dist)
1519                     {
1520                       width = height = *s;
1521                       dist = *s - 48;
1522                     }
1523                 }
1524             }
1525
1526           g_free (sizes);
1527         }
1528       else
1529         {
1530           g_warning ("Invalid icon size %u\n", size);
1531           width = height = 24;
1532         }
1533     }
1534
1535   pixel_size = MIN (width, height);
1536
1537   if (icon_source->direction != GTK_TEXT_DIR_NONE)
1538     {
1539       gchar *suffix[3] = { NULL, "-ltr", "-rtl" };
1540       gchar *names[3];
1541       GtkIconInfo *info;
1542
1543       names[0] = g_strconcat (icon_source->source.icon_name, suffix[icon_source->direction], NULL);
1544       names[1] = icon_source->source.icon_name;
1545       names[2] = NULL;
1546
1547       info = gtk_icon_theme_choose_icon (icon_theme,
1548                                          (const char **) names,
1549                                          pixel_size, GTK_ICON_LOOKUP_USE_BUILTIN);
1550       g_free (names[0]);
1551       if (info)
1552         {
1553           tmp_pixbuf = gtk_icon_info_load_icon (info, &error);
1554           gtk_icon_info_free (info);
1555         }
1556       else
1557         tmp_pixbuf = NULL;
1558     }
1559   else
1560     {
1561       tmp_pixbuf = gtk_icon_theme_load_icon (icon_theme,
1562                                              icon_source->source.icon_name,
1563                                              pixel_size, 0,
1564                                              &error);
1565     }
1566
1567   if (!tmp_pixbuf)
1568     {
1569       g_warning ("Error loading theme icon '%s' for stock: %s",
1570                  icon_source->source.icon_name, error ? error->message : "");
1571       if (error)
1572         g_error_free (error);
1573       return NULL;
1574     }
1575
1576   tmp_source = *icon_source;
1577   tmp_source.type = GTK_ICON_SOURCE_PIXBUF;
1578   tmp_source.source.pixbuf = tmp_pixbuf;
1579
1580   pixbuf = gtk_render_icon_pixbuf (context, &tmp_source, -1);
1581
1582   if (!pixbuf)
1583     g_warning ("Failed to render icon");
1584
1585   g_object_unref (tmp_pixbuf);
1586
1587   return pixbuf;
1588 }
1589
1590 static GdkPixbuf *
1591 find_and_render_icon_source (GtkIconSet       *icon_set,
1592                              GtkStyleContext  *context,
1593                              GtkTextDirection  direction,
1594                              GtkStateType      state,
1595                              GtkIconSize       size)
1596 {
1597   GSList *failed = NULL;
1598   GdkPixbuf *pixbuf = NULL;
1599
1600   /* We treat failure in two different ways:
1601    *
1602    *  A) If loading a source that specifies a filename fails,
1603    *     we treat that as permanent, and remove the source
1604    *     from the GtkIconSet. (in ensure_filename_pixbuf ()
1605    *  B) If loading a themed icon fails, or scaling an icon
1606    *     fails, we treat that as transient and will try
1607    *     again next time the icon falls out of the cache
1608    *     and we need to recreate it.
1609    */
1610   while (pixbuf == NULL)
1611     {
1612       GtkIconSource *source = find_best_matching_source (icon_set, direction, state, size, failed);
1613
1614       if (source == NULL)
1615         break;
1616
1617       switch (source->type)
1618         {
1619         case GTK_ICON_SOURCE_FILENAME:
1620           if (!ensure_filename_pixbuf (icon_set, source))
1621             break;
1622           /* Fall through */
1623         case GTK_ICON_SOURCE_PIXBUF:
1624           pixbuf = gtk_render_icon_pixbuf (context, source, size);
1625           if (!pixbuf)
1626             {
1627               g_warning ("Failed to render icon");
1628               failed = g_slist_prepend (failed, source);
1629             }
1630           break;
1631         case GTK_ICON_SOURCE_ICON_NAME:
1632         case GTK_ICON_SOURCE_STATIC_ICON_NAME:
1633           pixbuf = render_icon_name_pixbuf (source, context, size);
1634           if (!pixbuf)
1635             failed = g_slist_prepend (failed, source);
1636           break;
1637         case GTK_ICON_SOURCE_EMPTY:
1638           g_assert_not_reached ();
1639         }
1640     }
1641
1642   g_slist_free (failed);
1643
1644   return pixbuf;
1645 }
1646
1647 extern GtkIconCache *_builtin_cache;
1648
1649 static GdkPixbuf*
1650 render_fallback_image (GtkStyleContext   *context,
1651                        GtkTextDirection   direction,
1652                        GtkStateType       state,
1653                        GtkIconSize        size)
1654 {
1655   /* This icon can be used for any direction/state/size */
1656   static GtkIconSource fallback_source = GTK_ICON_SOURCE_INIT (TRUE, TRUE, TRUE);
1657
1658   if (fallback_source.type == GTK_ICON_SOURCE_EMPTY)
1659     {
1660       gint index;
1661       GdkPixbuf *pixbuf;
1662
1663       _gtk_icon_theme_ensure_builtin_cache ();
1664
1665       index = _gtk_icon_cache_get_directory_index (_builtin_cache, "24");
1666       pixbuf = _gtk_icon_cache_get_icon (_builtin_cache,
1667                                          GTK_STOCK_MISSING_IMAGE,
1668                                          index);
1669       gtk_icon_source_set_pixbuf (&fallback_source, pixbuf);
1670       g_object_unref (pixbuf);
1671     }
1672
1673   return gtk_render_icon_pixbuf (context, &fallback_source, size);
1674 }
1675
1676 /**
1677  * gtk_icon_set_render_icon_pixbuf:
1678  * @icon_set: a #GtkIconSet
1679  * @context: a #GtkStyleContext
1680  * @size: (type int): icon size. A size of (GtkIconSize)-1
1681  *        means render at the size of the source and don't scale.
1682  *
1683  * Renders an icon using gtk_render_icon_pixbuf(). In most cases,
1684  * gtk_widget_render_icon_pixbuf() is better, since it automatically provides
1685  * most of the arguments from the current widget settings.  This
1686  * function never returns %NULL; if the icon can't be rendered
1687  * (perhaps because an image file fails to load), a default "missing
1688  * image" icon will be returned instead.
1689  *
1690  * Return value: (transfer full): a #GdkPixbuf to be displayed
1691  *
1692  * Since: 3.0
1693  */
1694 GdkPixbuf *
1695 gtk_icon_set_render_icon_pixbuf (GtkIconSet        *icon_set,
1696                                  GtkStyleContext   *context,
1697                                  GtkIconSize        size)
1698 {
1699   GdkPixbuf *icon = NULL;
1700   GtkStateFlags flags = 0;
1701   GtkStateType state;
1702   GtkTextDirection direction;
1703
1704   g_return_val_if_fail (icon_set != NULL, NULL);
1705   g_return_val_if_fail (GTK_IS_STYLE_CONTEXT (context), NULL);
1706
1707   flags = gtk_style_context_get_state (context);
1708   if (flags & GTK_STATE_FLAG_INSENSITIVE)
1709     state = GTK_STATE_INSENSITIVE;
1710   else if (flags & GTK_STATE_FLAG_PRELIGHT)
1711     state = GTK_STATE_PRELIGHT;
1712   else
1713     state = GTK_STATE_NORMAL;
1714
1715   direction = gtk_style_context_get_direction (context);
1716
1717   if (icon_set->sources)
1718     {
1719       icon = find_in_cache (icon_set, context, direction, state, size);
1720       if (icon)
1721         {
1722           g_object_ref (icon);
1723           return icon;
1724         }
1725     }
1726
1727   if (icon_set->sources)
1728     icon = find_and_render_icon_source (icon_set, context, direction, state, size);
1729
1730   if (icon == NULL)
1731     icon = render_fallback_image (context, direction, state, size);
1732
1733   add_to_cache (icon_set, context, direction, state, size, icon);
1734
1735   return icon;
1736 }
1737
1738 /**
1739  * gtk_icon_set_render_icon:
1740  * @icon_set: a #GtkIconSet
1741  * @style: (allow-none): a #GtkStyle associated with @widget, or %NULL
1742  * @direction: text direction
1743  * @state: widget state
1744  * @size: (type int): icon size. A size of (GtkIconSize)-1
1745  *        means render at the size of the source and don't scale.
1746  * @widget: (allow-none): widget that will display the icon, or %NULL.
1747  *          The only use that is typically made of this
1748  *          is to determine the appropriate #GdkScreen.
1749  * @detail: (allow-none): detail to pass to the theme engine, or %NULL.
1750  *          Note that passing a detail of anything but %NULL
1751  *          will disable caching.
1752  *
1753  * Renders an icon using gtk_style_render_icon(). In most cases,
1754  * gtk_widget_render_icon() is better, since it automatically provides
1755  * most of the arguments from the current widget settings.  This
1756  * function never returns %NULL; if the icon can't be rendered
1757  * (perhaps because an image file fails to load), a default "missing
1758  * image" icon will be returned instead.
1759  *
1760  * Return value: (transfer full): a #GdkPixbuf to be displayed
1761  *
1762  * Deprecated: 3.0: Use gtk_icon_set_render_icon_pixbuf() instead
1763  */
1764 GdkPixbuf*
1765 gtk_icon_set_render_icon (GtkIconSet        *icon_set,
1766                           GtkStyle          *style,
1767                           GtkTextDirection   direction,
1768                           GtkStateType       state,
1769                           GtkIconSize        size,
1770                           GtkWidget         *widget,
1771                           const char        *detail)
1772 {
1773   GdkPixbuf *icon;
1774   GtkStyleContext *context = NULL;
1775   GtkStateFlags flags = 0;
1776
1777   g_return_val_if_fail (icon_set != NULL, NULL);
1778   g_return_val_if_fail (style == NULL || GTK_IS_STYLE (style), NULL);
1779
1780   if (style && gtk_style_has_context (style))
1781     {
1782       g_object_get (style, "context", &context, NULL);
1783       /* g_object_get returns a refed object */
1784       if (context)
1785         g_object_unref (context);
1786     }
1787   else if (widget)
1788     {
1789       context = gtk_widget_get_style_context (widget);
1790     }
1791
1792   if (!context)
1793     return render_fallback_image (context, direction, state, size);
1794
1795   gtk_style_context_save (context);
1796
1797   switch (state)
1798     {
1799     case GTK_STATE_PRELIGHT:
1800       flags |= GTK_STATE_FLAG_PRELIGHT;
1801       break;
1802     case GTK_STATE_INSENSITIVE:
1803       flags |= GTK_STATE_FLAG_INSENSITIVE;
1804       break;
1805     default:
1806       break;
1807     }
1808
1809   gtk_style_context_set_state (context, flags);
1810   gtk_style_context_set_direction (context, direction);
1811
1812   icon = gtk_icon_set_render_icon_pixbuf (icon_set, context, size);
1813
1814   gtk_style_context_restore (context);
1815
1816   return icon;
1817 }
1818
1819 /* Order sources by their "wildness", so that "wilder" sources are
1820  * greater than "specific" sources; for determining ordering,
1821  * direction beats state beats size.
1822  */
1823
1824 static int
1825 icon_source_compare (gconstpointer ap, gconstpointer bp)
1826 {
1827   const GtkIconSource *a = ap;
1828   const GtkIconSource *b = bp;
1829
1830   if (!a->any_direction && b->any_direction)
1831     return -1;
1832   else if (a->any_direction && !b->any_direction)
1833     return 1;
1834   else if (!a->any_state && b->any_state)
1835     return -1;
1836   else if (a->any_state && !b->any_state)
1837     return 1;
1838   else if (!a->any_size && b->any_size)
1839     return -1;
1840   else if (a->any_size && !b->any_size)
1841     return 1;
1842   else
1843     return 0;
1844 }
1845
1846 /**
1847  * gtk_icon_set_add_source:
1848  * @icon_set: a #GtkIconSet
1849  * @source: a #GtkIconSource
1850  *
1851  * Icon sets have a list of #GtkIconSource, which they use as base
1852  * icons for rendering icons in different states and sizes. Icons are
1853  * scaled, made to look insensitive, etc. in
1854  * gtk_icon_set_render_icon(), but #GtkIconSet needs base images to
1855  * work with. The base images and when to use them are described by
1856  * a #GtkIconSource.
1857  *
1858  * This function copies @source, so you can reuse the same source immediately
1859  * without affecting the icon set.
1860  *
1861  * An example of when you'd use this function: a web browser's "Back
1862  * to Previous Page" icon might point in a different direction in
1863  * Hebrew and in English; it might look different when insensitive;
1864  * and it might change size depending on toolbar mode (small/large
1865  * icons). So a single icon set would contain all those variants of
1866  * the icon, and you might add a separate source for each one.
1867  *
1868  * You should nearly always add a "default" icon source with all
1869  * fields wildcarded, which will be used as a fallback if no more
1870  * specific source matches. #GtkIconSet always prefers more specific
1871  * icon sources to more generic icon sources. The order in which you
1872  * add the sources to the icon set does not matter.
1873  *
1874  * gtk_icon_set_new_from_pixbuf() creates a new icon set with a
1875  * default icon source based on the given pixbuf.
1876  */
1877 void
1878 gtk_icon_set_add_source (GtkIconSet          *icon_set,
1879                          const GtkIconSource *source)
1880 {
1881   g_return_if_fail (icon_set != NULL);
1882   g_return_if_fail (source != NULL);
1883
1884   if (source->type == GTK_ICON_SOURCE_EMPTY)
1885     {
1886       g_warning ("Useless empty GtkIconSource");
1887       return;
1888     }
1889
1890   icon_set->sources = g_slist_insert_sorted (icon_set->sources,
1891                                              gtk_icon_source_copy (source),
1892                                              icon_source_compare);
1893 }
1894
1895 /**
1896  * gtk_icon_set_get_sizes:
1897  * @icon_set: a #GtkIconSet
1898  * @sizes: (array length=n_sizes) (out) (type int): return location
1899  *     for array of sizes
1900  * @n_sizes: location to store number of elements in returned array
1901  *
1902  * Obtains a list of icon sizes this icon set can render. The returned
1903  * array must be freed with g_free().
1904  */
1905 void
1906 gtk_icon_set_get_sizes (GtkIconSet   *icon_set,
1907                         GtkIconSize **sizes,
1908                         gint         *n_sizes)
1909 {
1910   GSList *tmp_list;
1911   gboolean all_sizes = FALSE;
1912   GSList *specifics = NULL;
1913
1914   g_return_if_fail (icon_set != NULL);
1915   g_return_if_fail (sizes != NULL);
1916   g_return_if_fail (n_sizes != NULL);
1917
1918   tmp_list = icon_set->sources;
1919   while (tmp_list != NULL)
1920     {
1921       GtkIconSource *source;
1922
1923       source = tmp_list->data;
1924
1925       if (source->any_size)
1926         {
1927           all_sizes = TRUE;
1928           break;
1929         }
1930       else
1931         specifics = g_slist_prepend (specifics, GINT_TO_POINTER (source->size));
1932
1933       tmp_list = g_slist_next (tmp_list);
1934     }
1935
1936   if (all_sizes)
1937     {
1938       /* Need to find out what sizes exist */
1939       gint i;
1940
1941       init_icon_sizes ();
1942
1943       *sizes = g_new (GtkIconSize, icon_sizes_used);
1944       *n_sizes = icon_sizes_used - 1;
1945
1946       i = 1;
1947       while (i < icon_sizes_used)
1948         {
1949           (*sizes)[i - 1] = icon_sizes[i].size;
1950           ++i;
1951         }
1952     }
1953   else
1954     {
1955       gint i;
1956
1957       *n_sizes = g_slist_length (specifics);
1958       *sizes = g_new (GtkIconSize, *n_sizes);
1959
1960       i = 0;
1961       tmp_list = specifics;
1962       while (tmp_list != NULL)
1963         {
1964           (*sizes)[i] = GPOINTER_TO_INT (tmp_list->data);
1965
1966           ++i;
1967           tmp_list = g_slist_next (tmp_list);
1968         }
1969     }
1970
1971   g_slist_free (specifics);
1972 }
1973
1974
1975 /**
1976  * gtk_icon_source_new:
1977  *
1978  * Creates a new #GtkIconSource. A #GtkIconSource contains a #GdkPixbuf (or
1979  * image filename) that serves as the base image for one or more of the
1980  * icons in a #GtkIconSet, along with a specification for which icons in the
1981  * icon set will be based on that pixbuf or image file. An icon set contains
1982  * a set of icons that represent "the same" logical concept in different states,
1983  * different global text directions, and different sizes.
1984  *
1985  * So for example a web browser's "Back to Previous Page" icon might
1986  * point in a different direction in Hebrew and in English; it might
1987  * look different when insensitive; and it might change size depending
1988  * on toolbar mode (small/large icons). So a single icon set would
1989  * contain all those variants of the icon. #GtkIconSet contains a list
1990  * of #GtkIconSource from which it can derive specific icon variants in
1991  * the set.
1992  *
1993  * In the simplest case, #GtkIconSet contains one source pixbuf from
1994  * which it derives all variants. The convenience function
1995  * gtk_icon_set_new_from_pixbuf() handles this case; if you only have
1996  * one source pixbuf, just use that function.
1997  *
1998  * If you want to use a different base pixbuf for different icon
1999  * variants, you create multiple icon sources, mark which variants
2000  * they'll be used to create, and add them to the icon set with
2001  * gtk_icon_set_add_source().
2002  *
2003  * By default, the icon source has all parameters wildcarded. That is,
2004  * the icon source will be used as the base icon for any desired text
2005  * direction, widget state, or icon size.
2006  *
2007  * Return value: a new #GtkIconSource
2008  */
2009 GtkIconSource*
2010 gtk_icon_source_new (void)
2011 {
2012   GtkIconSource *src;
2013
2014   src = g_new0 (GtkIconSource, 1);
2015
2016   src->direction = GTK_TEXT_DIR_NONE;
2017   src->size = GTK_ICON_SIZE_INVALID;
2018   src->state = GTK_STATE_NORMAL;
2019
2020   src->any_direction = TRUE;
2021   src->any_state = TRUE;
2022   src->any_size = TRUE;
2023
2024   return src;
2025 }
2026
2027 /**
2028  * gtk_icon_source_copy:
2029  * @source: a #GtkIconSource
2030  *
2031  * Creates a copy of @source; mostly useful for language bindings.
2032  *
2033  * Return value: a new #GtkIconSource
2034  */
2035 GtkIconSource*
2036 gtk_icon_source_copy (const GtkIconSource *source)
2037 {
2038   GtkIconSource *copy;
2039
2040   g_return_val_if_fail (source != NULL, NULL);
2041
2042   copy = g_new (GtkIconSource, 1);
2043
2044   *copy = *source;
2045
2046   switch (copy->type)
2047     {
2048     case GTK_ICON_SOURCE_EMPTY:
2049     case GTK_ICON_SOURCE_STATIC_ICON_NAME:
2050       break;
2051     case GTK_ICON_SOURCE_ICON_NAME:
2052       copy->source.icon_name = g_strdup (copy->source.icon_name);
2053       break;
2054     case GTK_ICON_SOURCE_FILENAME:
2055       copy->source.filename = g_strdup (copy->source.filename);
2056       if (copy->filename_pixbuf)
2057         g_object_ref (copy->filename_pixbuf);
2058       break;
2059     case GTK_ICON_SOURCE_PIXBUF:
2060       g_object_ref (copy->source.pixbuf);
2061       break;
2062     default:
2063       g_assert_not_reached();
2064     }
2065
2066   return copy;
2067 }
2068
2069 /**
2070  * gtk_icon_source_free:
2071  * @source: a #GtkIconSource
2072  *
2073  * Frees a dynamically-allocated icon source, along with its
2074  * filename, size, and pixbuf fields if those are not %NULL.
2075  */
2076 void
2077 gtk_icon_source_free (GtkIconSource *source)
2078 {
2079   g_return_if_fail (source != NULL);
2080
2081   icon_source_clear (source);
2082   g_free (source);
2083 }
2084
2085 G_DEFINE_BOXED_TYPE (GtkIconSource, gtk_icon_source,
2086                      gtk_icon_source_copy,
2087                      gtk_icon_source_free)
2088
2089 static void
2090 icon_source_clear (GtkIconSource *source)
2091 {
2092   switch (source->type)
2093     {
2094     case GTK_ICON_SOURCE_EMPTY:
2095       break;
2096     case GTK_ICON_SOURCE_ICON_NAME:
2097       g_free (source->source.icon_name);
2098       /* fall thru */
2099     case GTK_ICON_SOURCE_STATIC_ICON_NAME:
2100       source->source.icon_name = NULL;
2101       break;
2102     case GTK_ICON_SOURCE_FILENAME:
2103       g_free (source->source.filename);
2104       source->source.filename = NULL;
2105       if (source->filename_pixbuf) 
2106         g_object_unref (source->filename_pixbuf);
2107       source->filename_pixbuf = NULL;
2108       break;
2109     case GTK_ICON_SOURCE_PIXBUF:
2110       g_object_unref (source->source.pixbuf);
2111       source->source.pixbuf = NULL;
2112       break;
2113     default:
2114       g_assert_not_reached();
2115     }
2116
2117   source->type = GTK_ICON_SOURCE_EMPTY;
2118 }
2119
2120 /**
2121  * gtk_icon_source_set_filename:
2122  * @source: a #GtkIconSource
2123  * @filename: (type filename): image file to use
2124  *
2125  * Sets the name of an image file to use as a base image when creating
2126  * icon variants for #GtkIconSet. The filename must be absolute.
2127  */
2128 void
2129 gtk_icon_source_set_filename (GtkIconSource *source,
2130                               const gchar   *filename)
2131 {
2132   g_return_if_fail (source != NULL);
2133   g_return_if_fail (filename == NULL || g_path_is_absolute (filename));
2134
2135   if (source->type == GTK_ICON_SOURCE_FILENAME &&
2136       source->source.filename == filename)
2137     return;
2138
2139   icon_source_clear (source);
2140
2141   if (filename != NULL)
2142     {
2143       source->type = GTK_ICON_SOURCE_FILENAME;
2144       source->source.filename = g_strdup (filename);
2145     }
2146 }
2147
2148 /**
2149  * gtk_icon_source_set_icon_name
2150  * @source: a #GtkIconSource
2151  * @icon_name: (allow-none): name of icon to use
2152  *
2153  * Sets the name of an icon to look up in the current icon theme
2154  * to use as a base image when creating icon variants for #GtkIconSet.
2155  */
2156 void
2157 gtk_icon_source_set_icon_name (GtkIconSource *source,
2158                                const gchar   *icon_name)
2159 {
2160   g_return_if_fail (source != NULL);
2161
2162   if (source->type == GTK_ICON_SOURCE_ICON_NAME &&
2163       source->source.icon_name == icon_name)
2164     return;
2165
2166   icon_source_clear (source);
2167
2168   if (icon_name != NULL)
2169     {
2170       source->type = GTK_ICON_SOURCE_ICON_NAME;
2171       source->source.icon_name = g_strdup (icon_name);
2172     }
2173 }
2174
2175 /**
2176  * gtk_icon_source_set_pixbuf:
2177  * @source: a #GtkIconSource
2178  * @pixbuf: pixbuf to use as a source
2179  *
2180  * Sets a pixbuf to use as a base image when creating icon variants
2181  * for #GtkIconSet.
2182  */
2183 void
2184 gtk_icon_source_set_pixbuf (GtkIconSource *source,
2185                             GdkPixbuf     *pixbuf)
2186 {
2187   g_return_if_fail (source != NULL);
2188   g_return_if_fail (pixbuf == NULL || GDK_IS_PIXBUF (pixbuf));
2189
2190   if (source->type == GTK_ICON_SOURCE_PIXBUF &&
2191       source->source.pixbuf == pixbuf)
2192     return;
2193
2194   icon_source_clear (source);
2195
2196   if (pixbuf != NULL)
2197     {
2198       source->type = GTK_ICON_SOURCE_PIXBUF;
2199       source->source.pixbuf = g_object_ref (pixbuf);
2200     }
2201 }
2202
2203 /**
2204  * gtk_icon_source_get_filename:
2205  * @source: a #GtkIconSource
2206  *
2207  * Retrieves the source filename, or %NULL if none is set. The
2208  * filename is not a copy, and should not be modified or expected to
2209  * persist beyond the lifetime of the icon source.
2210  *
2211  * Return value: (type filename): image filename. This string must not
2212  * be modified or freed.
2213  */
2214 const gchar*
2215 gtk_icon_source_get_filename (const GtkIconSource *source)
2216 {
2217   g_return_val_if_fail (source != NULL, NULL);
2218
2219   if (source->type == GTK_ICON_SOURCE_FILENAME)
2220     return source->source.filename;
2221   else
2222     return NULL;
2223 }
2224
2225 /**
2226  * gtk_icon_source_get_icon_name:
2227  * @source: a #GtkIconSource
2228  *
2229  * Retrieves the source icon name, or %NULL if none is set. The
2230  * icon_name is not a copy, and should not be modified or expected to
2231  * persist beyond the lifetime of the icon source.
2232  *
2233  * Return value: icon name. This string must not be modified or freed.
2234  */
2235 const gchar*
2236 gtk_icon_source_get_icon_name (const GtkIconSource *source)
2237 {
2238   g_return_val_if_fail (source != NULL, NULL);
2239
2240   if (source->type == GTK_ICON_SOURCE_ICON_NAME ||
2241      source->type == GTK_ICON_SOURCE_STATIC_ICON_NAME)
2242     return source->source.icon_name;
2243   else
2244     return NULL;
2245 }
2246
2247 /**
2248  * gtk_icon_source_get_pixbuf:
2249  * @source: a #GtkIconSource
2250  *
2251  * Retrieves the source pixbuf, or %NULL if none is set.
2252  * In addition, if a filename source is in use, this
2253  * function in some cases will return the pixbuf from
2254  * loaded from the filename. This is, for example, true
2255  * for the GtkIconSource passed to the GtkStyle::render_icon()
2256  * virtual function. The reference count on the pixbuf is
2257  * not incremented.
2258  *
2259  * Return value: (transfer none): source pixbuf
2260  */
2261 GdkPixbuf*
2262 gtk_icon_source_get_pixbuf (const GtkIconSource *source)
2263 {
2264   g_return_val_if_fail (source != NULL, NULL);
2265
2266   if (source->type == GTK_ICON_SOURCE_PIXBUF)
2267     return source->source.pixbuf;
2268   else if (source->type == GTK_ICON_SOURCE_FILENAME)
2269     return source->filename_pixbuf;
2270   else
2271     return NULL;
2272 }
2273
2274 /**
2275  * gtk_icon_source_set_direction_wildcarded:
2276  * @source: a #GtkIconSource
2277  * @setting: %TRUE to wildcard the text direction
2278  *
2279  * If the text direction is wildcarded, this source can be used
2280  * as the base image for an icon in any #GtkTextDirection.
2281  * If the text direction is not wildcarded, then the
2282  * text direction the icon source applies to should be set
2283  * with gtk_icon_source_set_direction(), and the icon source
2284  * will only be used with that text direction.
2285  *
2286  * #GtkIconSet prefers non-wildcarded sources (exact matches) over
2287  * wildcarded sources, and will use an exact match when possible.
2288  */
2289 void
2290 gtk_icon_source_set_direction_wildcarded (GtkIconSource *source,
2291                                           gboolean       setting)
2292 {
2293   g_return_if_fail (source != NULL);
2294
2295   source->any_direction = setting != FALSE;
2296 }
2297
2298 /**
2299  * gtk_icon_source_set_state_wildcarded:
2300  * @source: a #GtkIconSource
2301  * @setting: %TRUE to wildcard the widget state
2302  *
2303  * If the widget state is wildcarded, this source can be used as the
2304  * base image for an icon in any #GtkStateType.  If the widget state
2305  * is not wildcarded, then the state the source applies to should be
2306  * set with gtk_icon_source_set_state() and the icon source will
2307  * only be used with that specific state.
2308  *
2309  * #GtkIconSet prefers non-wildcarded sources (exact matches) over
2310  * wildcarded sources, and will use an exact match when possible.
2311  *
2312  * #GtkIconSet will normally transform wildcarded source images to
2313  * produce an appropriate icon for a given state, for example
2314  * lightening an image on prelight, but will not modify source images
2315  * that match exactly.
2316  */
2317 void
2318 gtk_icon_source_set_state_wildcarded (GtkIconSource *source,
2319                                       gboolean       setting)
2320 {
2321   g_return_if_fail (source != NULL);
2322
2323   source->any_state = setting != FALSE;
2324 }
2325
2326
2327 /**
2328  * gtk_icon_source_set_size_wildcarded:
2329  * @source: a #GtkIconSource
2330  * @setting: %TRUE to wildcard the widget state
2331  *
2332  * If the icon size is wildcarded, this source can be used as the base
2333  * image for an icon of any size.  If the size is not wildcarded, then
2334  * the size the source applies to should be set with
2335  * gtk_icon_source_set_size() and the icon source will only be used
2336  * with that specific size.
2337  *
2338  * #GtkIconSet prefers non-wildcarded sources (exact matches) over
2339  * wildcarded sources, and will use an exact match when possible.
2340  *
2341  * #GtkIconSet will normally scale wildcarded source images to produce
2342  * an appropriate icon at a given size, but will not change the size
2343  * of source images that match exactly.
2344  */
2345 void
2346 gtk_icon_source_set_size_wildcarded (GtkIconSource *source,
2347                                      gboolean       setting)
2348 {
2349   g_return_if_fail (source != NULL);
2350
2351   source->any_size = setting != FALSE;
2352 }
2353
2354 /**
2355  * gtk_icon_source_get_size_wildcarded:
2356  * @source: a #GtkIconSource
2357  *
2358  * Gets the value set by gtk_icon_source_set_size_wildcarded().
2359  *
2360  * Return value: %TRUE if this icon source is a base for any icon size variant
2361  */
2362 gboolean
2363 gtk_icon_source_get_size_wildcarded (const GtkIconSource *source)
2364 {
2365   g_return_val_if_fail (source != NULL, TRUE);
2366
2367   return source->any_size;
2368 }
2369
2370 /**
2371  * gtk_icon_source_get_state_wildcarded:
2372  * @source: a #GtkIconSource
2373  *
2374  * Gets the value set by gtk_icon_source_set_state_wildcarded().
2375  *
2376  * Return value: %TRUE if this icon source is a base for any widget state variant
2377  */
2378 gboolean
2379 gtk_icon_source_get_state_wildcarded (const GtkIconSource *source)
2380 {
2381   g_return_val_if_fail (source != NULL, TRUE);
2382
2383   return source->any_state;
2384 }
2385
2386 /**
2387  * gtk_icon_source_get_direction_wildcarded:
2388  * @source: a #GtkIconSource
2389  *
2390  * Gets the value set by gtk_icon_source_set_direction_wildcarded().
2391  *
2392  * Return value: %TRUE if this icon source is a base for any text direction variant
2393  */
2394 gboolean
2395 gtk_icon_source_get_direction_wildcarded (const GtkIconSource *source)
2396 {
2397   g_return_val_if_fail (source != NULL, TRUE);
2398
2399   return source->any_direction;
2400 }
2401
2402 /**
2403  * gtk_icon_source_set_direction:
2404  * @source: a #GtkIconSource
2405  * @direction: text direction this source applies to
2406  *
2407  * Sets the text direction this icon source is intended to be used
2408  * with.
2409  *
2410  * Setting the text direction on an icon source makes no difference
2411  * if the text direction is wildcarded. Therefore, you should usually
2412  * call gtk_icon_source_set_direction_wildcarded() to un-wildcard it
2413  * in addition to calling this function.
2414  */
2415 void
2416 gtk_icon_source_set_direction (GtkIconSource   *source,
2417                                GtkTextDirection direction)
2418 {
2419   g_return_if_fail (source != NULL);
2420
2421   source->direction = direction;
2422 }
2423
2424 /**
2425  * gtk_icon_source_set_state:
2426  * @source: a #GtkIconSource
2427  * @state: widget state this source applies to
2428  *
2429  * Sets the widget state this icon source is intended to be used
2430  * with.
2431  *
2432  * Setting the widget state on an icon source makes no difference
2433  * if the state is wildcarded. Therefore, you should usually
2434  * call gtk_icon_source_set_state_wildcarded() to un-wildcard it
2435  * in addition to calling this function.
2436  */
2437 void
2438 gtk_icon_source_set_state (GtkIconSource *source,
2439                            GtkStateType   state)
2440 {
2441   g_return_if_fail (source != NULL);
2442
2443   source->state = state;
2444 }
2445
2446 /**
2447  * gtk_icon_source_set_size:
2448  * @source: a #GtkIconSource
2449  * @size: (type int): icon size this source applies to
2450  *
2451  * Sets the icon size this icon source is intended to be used
2452  * with.
2453  *
2454  * Setting the icon size on an icon source makes no difference
2455  * if the size is wildcarded. Therefore, you should usually
2456  * call gtk_icon_source_set_size_wildcarded() to un-wildcard it
2457  * in addition to calling this function.
2458  */
2459 void
2460 gtk_icon_source_set_size (GtkIconSource *source,
2461                           GtkIconSize    size)
2462 {
2463   g_return_if_fail (source != NULL);
2464
2465   source->size = size;
2466 }
2467
2468 /**
2469  * gtk_icon_source_get_direction:
2470  * @source: a #GtkIconSource
2471  *
2472  * Obtains the text direction this icon source applies to. The return
2473  * value is only useful/meaningful if the text direction is <emphasis>not</emphasis>
2474  * wildcarded.
2475  *
2476  * Return value: text direction this source matches
2477  */
2478 GtkTextDirection
2479 gtk_icon_source_get_direction (const GtkIconSource *source)
2480 {
2481   g_return_val_if_fail (source != NULL, 0);
2482
2483   return source->direction;
2484 }
2485
2486 /**
2487  * gtk_icon_source_get_state:
2488  * @source: a #GtkIconSource
2489  *
2490  * Obtains the widget state this icon source applies to. The return
2491  * value is only useful/meaningful if the widget state is <emphasis>not</emphasis>
2492  * wildcarded.
2493  *
2494  * Return value: widget state this source matches
2495  */
2496 GtkStateType
2497 gtk_icon_source_get_state (const GtkIconSource *source)
2498 {
2499   g_return_val_if_fail (source != NULL, 0);
2500
2501   return source->state;
2502 }
2503
2504 /**
2505  * gtk_icon_source_get_size:
2506  * @source: a #GtkIconSource
2507  *
2508  * Obtains the icon size this source applies to. The return value
2509  * is only useful/meaningful if the icon size is <emphasis>not</emphasis> wildcarded.
2510  *
2511  * Return value: (type int): icon size this source matches.
2512  */
2513 GtkIconSize
2514 gtk_icon_source_get_size (const GtkIconSource *source)
2515 {
2516   g_return_val_if_fail (source != NULL, 0);
2517
2518   return source->size;
2519 }
2520
2521 #define NUM_CACHED_ICONS 8
2522
2523 typedef struct _CachedIcon CachedIcon;
2524
2525 struct _CachedIcon
2526 {
2527   /* These must all match to use the cached pixbuf.
2528    * If any don't match, we must re-render the pixbuf.
2529    */
2530   GtkStyleContext *style;
2531   GtkTextDirection direction;
2532   GtkStateType state;
2533   GtkIconSize size;
2534
2535   GdkPixbuf *pixbuf;
2536 };
2537
2538 static void
2539 ensure_cache_up_to_date (GtkIconSet *icon_set)
2540 {
2541   if (icon_set->cache_serial != cache_serial)
2542     {
2543       clear_cache (icon_set, TRUE);
2544       icon_set->cache_serial = cache_serial;
2545     }
2546 }
2547
2548 static void
2549 cached_icon_free (CachedIcon *icon)
2550 {
2551   g_object_unref (icon->pixbuf);
2552   g_object_unref (icon->style);
2553
2554   g_free (icon);
2555 }
2556
2557 static GdkPixbuf *
2558 find_in_cache (GtkIconSet      *icon_set,
2559                GtkStyleContext *style_context,
2560                GtkTextDirection direction,
2561                GtkStateType     state,
2562                GtkIconSize      size)
2563 {
2564   GSList *tmp_list;
2565   GSList *prev;
2566
2567   ensure_cache_up_to_date (icon_set);
2568
2569   prev = NULL;
2570   tmp_list = icon_set->cache;
2571   while (tmp_list != NULL)
2572     {
2573       CachedIcon *icon = tmp_list->data;
2574
2575       if (icon->style == style_context &&
2576           icon->direction == direction &&
2577           icon->state == state &&
2578           (size == (GtkIconSize)-1 || icon->size == size))
2579         {
2580           if (prev)
2581             {
2582               /* Move this icon to the front of the list. */
2583               prev->next = tmp_list->next;
2584               tmp_list->next = icon_set->cache;
2585               icon_set->cache = tmp_list;
2586             }
2587
2588           return icon->pixbuf;
2589         }
2590
2591       prev = tmp_list;
2592       tmp_list = g_slist_next (tmp_list);
2593     }
2594
2595   return NULL;
2596 }
2597
2598 static void
2599 add_to_cache (GtkIconSet      *icon_set,
2600               GtkStyleContext *style_context,
2601               GtkTextDirection direction,
2602               GtkStateType     state,
2603               GtkIconSize      size,
2604               GdkPixbuf       *pixbuf)
2605 {
2606   CachedIcon *icon;
2607
2608   ensure_cache_up_to_date (icon_set);
2609
2610   g_object_ref (pixbuf);
2611
2612   icon = g_new (CachedIcon, 1);
2613   icon_set->cache = g_slist_prepend (icon_set->cache, icon);
2614   icon_set->cache_size++;
2615
2616   icon->style = g_object_ref (style_context);
2617   icon->direction = direction;
2618   icon->state = state;
2619   icon->size = size;
2620   icon->pixbuf = pixbuf;
2621   attach_to_style (icon_set, icon->style);
2622
2623   if (icon_set->cache_size >= NUM_CACHED_ICONS)
2624     {
2625       /* Remove oldest item in the cache */
2626       GSList *tmp_list;
2627
2628       tmp_list = icon_set->cache;
2629
2630       /* Find next-to-last link */
2631       g_assert (NUM_CACHED_ICONS > 2);
2632       while (tmp_list->next->next)
2633         tmp_list = tmp_list->next;
2634
2635       g_assert (tmp_list != NULL);
2636       g_assert (tmp_list->next != NULL);
2637       g_assert (tmp_list->next->next == NULL);
2638
2639       /* Free the last icon */
2640       icon = tmp_list->next->data;
2641
2642       g_slist_free (tmp_list->next);
2643       tmp_list->next = NULL;
2644
2645       cached_icon_free (icon);
2646     }
2647 }
2648
2649 static void
2650 clear_cache (GtkIconSet *icon_set,
2651              gboolean    style_detach)
2652 {
2653   GSList *cache, *tmp_list;
2654   GtkStyleContext *last_style = NULL;
2655
2656   cache = icon_set->cache;
2657   icon_set->cache = NULL;
2658   icon_set->cache_size = 0;
2659   tmp_list = cache;
2660   while (tmp_list != NULL)
2661     {
2662       CachedIcon *icon = tmp_list->data;
2663
2664       if (style_detach)
2665         {
2666           /* simple optimization for the case where the cache
2667            * contains contiguous icons from the same style.
2668            * it's safe to call detach_from_style more than
2669            * once on the same style though.
2670            */
2671           if (last_style != icon->style)
2672             {
2673               detach_from_style (icon_set, icon->style);
2674               last_style = icon->style;
2675             }
2676         }
2677
2678       cached_icon_free (icon);
2679
2680       tmp_list = g_slist_next (tmp_list);
2681     }
2682
2683   g_slist_free (cache);
2684 }
2685
2686 static GSList*
2687 copy_cache (GtkIconSet *icon_set,
2688             GtkIconSet *copy_recipient)
2689 {
2690   GSList *tmp_list;
2691   GSList *copy = NULL;
2692
2693   ensure_cache_up_to_date (icon_set);
2694
2695   tmp_list = icon_set->cache;
2696   while (tmp_list != NULL)
2697     {
2698       CachedIcon *icon = tmp_list->data;
2699       CachedIcon *icon_copy = g_new (CachedIcon, 1);
2700
2701       *icon_copy = *icon;
2702
2703       attach_to_style (copy_recipient, icon_copy->style);
2704       g_object_ref (icon_copy->style);
2705
2706       g_object_ref (icon_copy->pixbuf);
2707
2708       icon_copy->size = icon->size;
2709
2710       copy = g_slist_prepend (copy, icon_copy);
2711
2712       tmp_list = g_slist_next (tmp_list);
2713     }
2714
2715   return g_slist_reverse (copy);
2716 }
2717
2718 static void
2719 attach_to_style (GtkIconSet      *icon_set,
2720                  GtkStyleContext *style_context)
2721 {
2722   GHashTable *table;
2723
2724   table = g_object_get_qdata (G_OBJECT (style_context),
2725                               g_quark_try_string ("gtk-style-icon-sets"));
2726
2727   if (table == NULL)
2728     {
2729       table = g_hash_table_new (NULL, NULL);
2730       g_object_set_qdata_full (G_OBJECT (style_context),
2731                                g_quark_from_static_string ("gtk-style-icon-sets"),
2732                                table,
2733                                style_dnotify);
2734     }
2735
2736   g_hash_table_insert (table, icon_set, icon_set);
2737 }
2738
2739 static void
2740 detach_from_style (GtkIconSet       *icon_set,
2741                    GtkStyleContext  *style_context)
2742 {
2743   GHashTable *table;
2744
2745   table = g_object_get_qdata (G_OBJECT (style_context),
2746                               g_quark_try_string ("gtk-style-icon-sets"));
2747
2748   if (table != NULL)
2749     g_hash_table_remove (table, icon_set);
2750 }
2751
2752 static void
2753 iconsets_foreach (gpointer key,
2754                   gpointer value,
2755                   gpointer user_data)
2756 {
2757   GtkIconSet *icon_set = key;
2758
2759   /* We only need to remove cache entries for the given style;
2760    * but that complicates things because in destroy notify
2761    * we don't know which style got destroyed, and 95% of the
2762    * time all cache entries will have the same style,
2763    * so this is faster anyway.
2764    */
2765
2766   clear_cache (icon_set, FALSE);
2767 }
2768
2769 static void
2770 style_dnotify (gpointer data)
2771 {
2772   GHashTable *table = data;
2773
2774   g_hash_table_foreach (table, iconsets_foreach, NULL);
2775
2776   g_hash_table_destroy (table);
2777 }
2778
2779 /* This allows the icon set to detect that its cache is out of date. */
2780 void
2781 _gtk_icon_set_invalidate_caches (void)
2782 {
2783   ++cache_serial;
2784 }
2785
2786 /**
2787  * _gtk_icon_factory_list_ids:
2788  *
2789  * Gets all known IDs stored in an existing icon factory.
2790  * The strings in the returned list aren't copied.
2791  * The list itself should be freed.
2792  *
2793  * Return value: List of ids in icon factories
2794  */
2795 GList*
2796 _gtk_icon_factory_list_ids (void)
2797 {
2798   GSList *tmp_list;
2799   GList *ids;
2800
2801   ids = NULL;
2802
2803   _gtk_icon_factory_ensure_default_icons ();
2804
2805   tmp_list = all_icon_factories;
2806   while (tmp_list != NULL)
2807     {
2808       GList *these_ids;
2809       GtkIconFactory *factory = GTK_ICON_FACTORY (tmp_list->data);
2810       GtkIconFactoryPrivate *priv = factory->priv;
2811
2812       these_ids = g_hash_table_get_keys (priv->icons);
2813
2814       ids = g_list_concat (ids, these_ids);
2815
2816       tmp_list = g_slist_next (tmp_list);
2817     }
2818
2819   return ids;
2820 }
2821
2822 typedef struct {
2823   GSList *sources;
2824   gboolean in_source;
2825
2826 } IconFactoryParserData;
2827
2828 typedef struct {
2829   gchar            *stock_id;
2830   gchar            *filename;
2831   gchar            *icon_name;
2832   GtkTextDirection  direction;
2833   GtkIconSize       size;
2834   GtkStateType      state;
2835 } IconSourceParserData;
2836
2837 static void
2838 icon_source_start_element (GMarkupParseContext  *context,
2839                            const gchar          *element_name,
2840                            const gchar         **names,
2841                            const gchar         **values,
2842                            gpointer              user_data,
2843                            GError              **error)
2844 {
2845   gint i;
2846   gchar *stock_id = NULL;
2847   gchar *filename = NULL;
2848   gchar *icon_name = NULL;
2849   gint size = -1;
2850   gint direction = -1;
2851   gint state = -1;
2852   IconFactoryParserData *parser_data;
2853   IconSourceParserData *source_data;
2854   gchar *error_msg;
2855   GQuark error_domain;
2856
2857   parser_data = (IconFactoryParserData*)user_data;
2858
2859   if (!parser_data->in_source)
2860     {
2861       if (strcmp (element_name, "sources") != 0)
2862         {
2863           error_msg = g_strdup_printf ("Unexpected element %s, expected <sources>", element_name);
2864           error_domain = GTK_BUILDER_ERROR_INVALID_TAG;
2865           goto error;
2866         }
2867       parser_data->in_source = TRUE;
2868       return;
2869     }
2870   else
2871     {
2872       if (strcmp (element_name, "source") != 0)
2873         {
2874           error_msg = g_strdup_printf ("Unexpected element %s, expected <source>", element_name);
2875           error_domain = GTK_BUILDER_ERROR_INVALID_TAG;
2876           goto error;
2877         }
2878     }
2879
2880   for (i = 0; names[i]; i++)
2881     {
2882       if (strcmp (names[i], "stock-id") == 0)
2883         stock_id = g_strdup (values[i]);
2884       else if (strcmp (names[i], "filename") == 0)
2885         filename = g_strdup (values[i]);
2886       else if (strcmp (names[i], "icon-name") == 0)
2887         icon_name = g_strdup (values[i]);
2888       else if (strcmp (names[i], "size") == 0)
2889         {
2890           if (!_gtk_builder_enum_from_string (GTK_TYPE_ICON_SIZE,
2891                                               values[i],
2892                                               &size,
2893                                               error))
2894             return;
2895         }
2896       else if (strcmp (names[i], "direction") == 0)
2897         {
2898           if (!_gtk_builder_enum_from_string (GTK_TYPE_TEXT_DIRECTION,
2899                                               values[i],
2900                                               &direction,
2901                                               error))
2902             return;
2903         }
2904       else if (strcmp (names[i], "state") == 0)
2905         {
2906           if (!_gtk_builder_enum_from_string (GTK_TYPE_STATE_TYPE,
2907                                               values[i],
2908                                               &state,
2909                                               error))
2910             return;
2911         }
2912       else
2913         {
2914           error_msg = g_strdup_printf ("'%s' is not a valid attribute of <%s>",
2915                                        names[i], "source");
2916           error_domain = GTK_BUILDER_ERROR_INVALID_ATTRIBUTE;
2917           goto error;
2918         }
2919     }
2920
2921   if (!stock_id)
2922     {
2923       error_msg = g_strdup_printf ("<source> requires a stock_id");
2924       error_domain = GTK_BUILDER_ERROR_MISSING_ATTRIBUTE;
2925       goto error;
2926     }
2927
2928   source_data = g_slice_new (IconSourceParserData);
2929   source_data->stock_id = stock_id;
2930   source_data->filename = filename;
2931   source_data->icon_name = icon_name;
2932   source_data->size = size;
2933   source_data->direction = direction;
2934   source_data->state = state;
2935
2936   parser_data->sources = g_slist_prepend (parser_data->sources, source_data);
2937   return;
2938
2939  error:
2940   {
2941     gchar *tmp;
2942     gint line_number, char_number;
2943
2944     g_markup_parse_context_get_position (context, &line_number, &char_number);
2945
2946     tmp = g_strdup_printf ("%s:%d:%d %s", "input",
2947                            line_number, char_number, error_msg);
2948     g_set_error_literal (error, GTK_BUILDER_ERROR, error_domain, tmp);
2949     g_free (tmp);
2950     g_free (stock_id);
2951     g_free (filename);
2952     g_free (icon_name);
2953     return;
2954   }
2955 }
2956
2957 static const GMarkupParser icon_source_parser =
2958   {
2959     icon_source_start_element,
2960   };
2961
2962 static gboolean
2963 gtk_icon_factory_buildable_custom_tag_start (GtkBuildable     *buildable,
2964                                              GtkBuilder       *builder,
2965                                              GObject          *child,
2966                                              const gchar      *tagname,
2967                                              GMarkupParser    *parser,
2968                                              gpointer         *data)
2969 {
2970   g_assert (buildable);
2971
2972   if (strcmp (tagname, "sources") == 0)
2973     {
2974       IconFactoryParserData *parser_data;
2975
2976       parser_data = g_slice_new0 (IconFactoryParserData);
2977       *parser = icon_source_parser;
2978       *data = parser_data;
2979       return TRUE;
2980     }
2981   return FALSE;
2982 }
2983
2984 static void
2985 gtk_icon_factory_buildable_custom_tag_end (GtkBuildable *buildable,
2986                                            GtkBuilder   *builder,
2987                                            GObject      *child,
2988                                            const gchar  *tagname,
2989                                            gpointer     *user_data)
2990 {
2991   GtkIconFactory *icon_factory;
2992
2993   icon_factory = GTK_ICON_FACTORY (buildable);
2994
2995   if (strcmp (tagname, "sources") == 0)
2996     {
2997       IconFactoryParserData *parser_data;
2998       GtkIconSource *icon_source;
2999       GtkIconSet *icon_set;
3000       GSList *l;
3001
3002       parser_data = (IconFactoryParserData*)user_data;
3003
3004       for (l = parser_data->sources; l; l = l->next)
3005         {
3006           IconSourceParserData *source_data = l->data;
3007
3008           icon_set = gtk_icon_factory_lookup (icon_factory, source_data->stock_id);
3009           if (!icon_set)
3010             {
3011               icon_set = gtk_icon_set_new ();
3012               gtk_icon_factory_add (icon_factory, source_data->stock_id, icon_set);
3013               gtk_icon_set_unref (icon_set);
3014             }
3015
3016           icon_source = gtk_icon_source_new ();
3017
3018           if (source_data->filename)
3019             {
3020               gchar *filename;
3021               filename = _gtk_builder_get_absolute_filename (builder, source_data->filename);
3022               gtk_icon_source_set_filename (icon_source, filename);
3023               g_free (filename);
3024             }
3025           if (source_data->icon_name)
3026             gtk_icon_source_set_icon_name (icon_source, source_data->icon_name);
3027           if (source_data->size != -1)
3028             {
3029               gtk_icon_source_set_size (icon_source, source_data->size);
3030               gtk_icon_source_set_size_wildcarded (icon_source, FALSE);
3031             }
3032           if (source_data->direction != -1)
3033             {
3034               gtk_icon_source_set_direction (icon_source, source_data->direction);
3035               gtk_icon_source_set_direction_wildcarded (icon_source, FALSE);
3036             }
3037           if (source_data->state != -1)
3038             {
3039               gtk_icon_source_set_state (icon_source, source_data->state);
3040               gtk_icon_source_set_state_wildcarded (icon_source, FALSE);
3041             }
3042
3043           /* Inline source_add() to avoid creating a copy */
3044           g_assert (icon_source->type != GTK_ICON_SOURCE_EMPTY);
3045           icon_set->sources = g_slist_insert_sorted (icon_set->sources,
3046                                                      icon_source,
3047                                                      icon_source_compare);
3048
3049           g_free (source_data->stock_id);
3050           g_free (source_data->filename);
3051           g_free (source_data->icon_name);
3052           g_slice_free (IconSourceParserData, source_data);
3053         }
3054       g_slist_free (parser_data->sources);
3055       g_slice_free (IconFactoryParserData, parser_data);
3056
3057       /* TODO: Add an attribute/tag to prevent this.
3058        * Usually it's the right thing to do though.
3059        */
3060       gtk_icon_factory_add_default (icon_factory);
3061     }
3062 }