]> Pileus Git - ~andy/gtk/blob - gtk/gtkicontheme.c
gtk: Fix crasher when loading symbolic icons
[~andy/gtk] / gtk / gtkicontheme.c
1 /* GtkIconTheme - a loader for icon themes
2  * gtk-icon-theme.c Copyright (C) 2002, 2003 Red Hat, Inc.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #include "config.h"
21
22 #include <sys/types.h>
23 #include <sys/stat.h>
24 #ifdef HAVE_UNISTD_H
25 #include <unistd.h>
26 #endif
27 #include <string.h>
28 #include <stdlib.h>
29 #include <glib.h>
30 #include <glib/gstdio.h>
31
32 #ifdef G_OS_WIN32
33 #ifndef S_ISDIR
34 #define S_ISDIR(mode) ((mode)&_S_IFDIR)
35 #endif
36 #define WIN32_MEAN_AND_LEAN
37 #include <windows.h>
38 #include "win32/gdkwin32.h"
39 #endif /* G_OS_WIN32 */
40
41 #include "gtkicontheme.h"
42 #include "gtkdebug.h"
43 #include "gtkiconfactory.h"
44 #include "gtkiconcache.h"
45 #include "gtkbuiltincache.h"
46 #include "gtkintl.h"
47 #include "gtkmain.h"
48 #include "gtksettings.h"
49 #include "gtkprivate.h"
50
51 #define DEFAULT_THEME_NAME "hicolor"
52
53 typedef enum
54 {
55   ICON_THEME_DIR_FIXED,  
56   ICON_THEME_DIR_SCALABLE,  
57   ICON_THEME_DIR_THRESHOLD,
58   ICON_THEME_DIR_UNTHEMED
59 } IconThemeDirType;
60
61 /* In reverse search order: */
62 typedef enum
63 {
64   ICON_SUFFIX_NONE = 0,
65   ICON_SUFFIX_XPM = 1 << 0,
66   ICON_SUFFIX_SVG = 1 << 1,
67   ICON_SUFFIX_PNG = 1 << 2,
68   HAS_ICON_FILE = 1 << 3
69 } IconSuffix;
70
71
72 struct _GtkIconThemePrivate
73 {
74   guint custom_theme        : 1;
75   guint is_screen_singleton : 1;
76   guint pixbuf_supports_svg : 1;
77   guint themes_valid        : 1;
78   guint check_reload        : 1;
79   guint loading_themes      : 1;
80   
81   char *current_theme;
82   char *fallback_theme;
83   char **search_path;
84   int search_path_len;
85
86   /* A list of all the themes needed to look up icons.
87    * In search order, without duplicates
88    */
89   GList *themes;
90   GHashTable *unthemed_icons;
91   
92   /* Note: The keys of this hashtable are owned by the
93    * themedir and unthemed hashtables.
94    */
95   GHashTable *all_icons;
96
97   /* GdkScreen for the icon theme (may be NULL)
98    */
99   GdkScreen *screen;
100   
101   /* time when we last stat:ed for theme changes */
102   long last_stat_time;
103   GList *dir_mtimes;
104
105   gulong reset_styles_idle;
106 };
107
108 struct _GtkIconInfo
109 {
110   /* Information about the source
111    */
112   gchar *filename;
113   GLoadableIcon *loadable;
114   GSList *emblem_infos;
115
116   /* Cache pixbuf (if there is any) */
117   GdkPixbuf *cache_pixbuf;
118
119   GtkIconData *data;
120   
121   /* Information about the directory where
122    * the source was found
123    */
124   IconThemeDirType dir_type;
125   gint dir_size;
126   gint threshold;
127
128   /* Parameters influencing the scaled icon
129    */
130   gint desired_size;
131   guint raw_coordinates : 1;
132   guint forced_size     : 1;
133
134   /* Cached information if we go ahead and try to load
135    * the icon.
136    */
137   GdkPixbuf *pixbuf;
138   GError *load_error;
139   gdouble scale;
140
141   guint ref_count;
142 };
143
144 typedef struct
145 {
146   char *name;
147   char *display_name;
148   char *comment;
149   char *example;
150
151   /* In search order */
152   GList *dirs;
153 } IconTheme;
154
155 typedef struct
156 {
157   IconThemeDirType type;
158   GQuark context;
159
160   int size;
161   int min_size;
162   int max_size;
163   int threshold;
164
165   char *dir;
166   char *subdir;
167   int subdir_index;
168   
169   GtkIconCache *cache;
170   
171   GHashTable *icons;
172   GHashTable *icon_data;
173 } IconThemeDir;
174
175 typedef struct
176 {
177   char *svg_filename;
178   char *no_svg_filename;
179 } UnthemedIcon;
180
181 typedef struct
182 {
183   gint size;
184   GdkPixbuf *pixbuf;
185 } BuiltinIcon;
186
187 typedef struct 
188 {
189   char *dir;
190   time_t mtime; /* 0 == not existing or not a dir */
191
192   GtkIconCache *cache;
193 } IconThemeDirMtime;
194
195 static void  gtk_icon_theme_finalize   (GObject              *object);
196 static void  theme_dir_destroy         (IconThemeDir         *dir);
197
198 static void         theme_destroy     (IconTheme        *theme);
199 static GtkIconInfo *theme_lookup_icon (IconTheme        *theme,
200                                        const char       *icon_name,
201                                        int               size,
202                                        gboolean          allow_svg,
203                                        gboolean          use_default_icons);
204 static void         theme_list_icons  (IconTheme        *theme,
205                                        GHashTable       *icons,
206                                        GQuark            context);
207 static void         theme_list_contexts  (IconTheme        *theme,
208                                           GHashTable       *contexts);
209 static void         theme_subdir_load (GtkIconTheme     *icon_theme,
210                                        IconTheme        *theme,
211                                        GKeyFile         *theme_file,
212                                        char             *subdir);
213 static void         do_theme_change   (GtkIconTheme     *icon_theme);
214
215 static void     blow_themes               (GtkIconTheme    *icon_themes);
216 static gboolean rescan_themes             (GtkIconTheme    *icon_themes);
217
218 static void  icon_data_free            (GtkIconData     *icon_data);
219 static void load_icon_data             (IconThemeDir    *dir,
220                                         const char      *path,
221                                         const char      *name);
222
223 static IconSuffix theme_dir_get_icon_suffix (IconThemeDir *dir,
224                                              const gchar  *icon_name,
225                                              gboolean     *has_icon_file);
226
227
228 static GtkIconInfo *icon_info_new             (void);
229 static GtkIconInfo *icon_info_new_builtin     (BuiltinIcon *icon);
230
231 static IconSuffix suffix_from_name (const char *name);
232
233 static BuiltinIcon *find_builtin_icon (const gchar *icon_name,
234                                        gint        size,
235                                        gint        *min_difference_p,
236                                        gboolean    *has_larger_p);
237
238 static guint signal_changed = 0;
239
240 static GHashTable *icon_theme_builtin_icons;
241
242 /* also used in gtkiconfactory.c */
243 GtkIconCache *_builtin_cache = NULL;
244 static GList *builtin_dirs = NULL;
245
246 G_DEFINE_TYPE (GtkIconTheme, gtk_icon_theme, G_TYPE_OBJECT)
247
248 /**
249  * gtk_icon_theme_new:
250  * 
251  * Creates a new icon theme object. Icon theme objects are used
252  * to lookup up an icon by name in a particular icon theme.
253  * Usually, you'll want to use gtk_icon_theme_get_default()
254  * or gtk_icon_theme_get_for_screen() rather than creating
255  * a new icon theme object for scratch.
256  * 
257  * Return value: the newly created #GtkIconTheme object.
258  *
259  * Since: 2.4
260  **/
261 GtkIconTheme *
262 gtk_icon_theme_new (void)
263 {
264   return g_object_new (GTK_TYPE_ICON_THEME, NULL);
265 }
266
267 /**
268  * gtk_icon_theme_get_default:
269  * 
270  * Gets the icon theme for the default screen. See
271  * gtk_icon_theme_get_for_screen().
272  *
273  * Return value: (transfer none): A unique #GtkIconTheme associated with
274  *  the default screen. This icon theme is associated with
275  *  the screen and can be used as long as the screen
276  *  is open. Do not ref or unref it.
277  *
278  * Since: 2.4
279  **/
280 GtkIconTheme *
281 gtk_icon_theme_get_default (void)
282 {
283   return gtk_icon_theme_get_for_screen (gdk_screen_get_default ());
284 }
285
286 /**
287  * gtk_icon_theme_get_for_screen:
288  * @screen: a #GdkScreen
289  * 
290  * Gets the icon theme object associated with @screen; if this
291  * function has not previously been called for the given
292  * screen, a new icon theme object will be created and
293  * associated with the screen. Icon theme objects are
294  * fairly expensive to create, so using this function
295  * is usually a better choice than calling than gtk_icon_theme_new()
296  * and setting the screen yourself; by using this function
297  * a single icon theme object will be shared between users.
298  *
299  * Return value: (transfer none): A unique #GtkIconTheme associated with
300  *  the given screen. This icon theme is associated with
301  *  the screen and can be used as long as the screen
302  *  is open. Do not ref or unref it.
303  *
304  * Since: 2.4
305  **/
306 GtkIconTheme *
307 gtk_icon_theme_get_for_screen (GdkScreen *screen)
308 {
309   GtkIconTheme *icon_theme;
310
311   g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
312   g_return_val_if_fail (!screen->closed, NULL);
313
314   icon_theme = g_object_get_data (G_OBJECT (screen), "gtk-icon-theme");
315   if (!icon_theme)
316     {
317       GtkIconThemePrivate *priv;
318
319       icon_theme = gtk_icon_theme_new ();
320       gtk_icon_theme_set_screen (icon_theme, screen);
321
322       priv = icon_theme->priv;
323       priv->is_screen_singleton = TRUE;
324
325       g_object_set_data (G_OBJECT (screen), I_("gtk-icon-theme"), icon_theme);
326     }
327
328   return icon_theme;
329 }
330
331 static void
332 gtk_icon_theme_class_init (GtkIconThemeClass *klass)
333 {
334   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
335
336   gobject_class->finalize = gtk_icon_theme_finalize;
337
338 /**
339  * GtkIconTheme::changed
340  * @icon_theme: the icon theme
341  * 
342  * Emitted when the current icon theme is switched or GTK+ detects
343  * that a change has occurred in the contents of the current
344  * icon theme.
345  **/
346   signal_changed = g_signal_new (I_("changed"),
347                                  G_TYPE_FROM_CLASS (klass),
348                                  G_SIGNAL_RUN_LAST,
349                                  G_STRUCT_OFFSET (GtkIconThemeClass, changed),
350                                  NULL, NULL,
351                                  g_cclosure_marshal_VOID__VOID,
352                                  G_TYPE_NONE, 0);
353
354   g_type_class_add_private (klass, sizeof (GtkIconThemePrivate));
355 }
356
357
358 /* Callback when the display that the icon theme is attached to
359  * is closed; unset the screen, and if it's the unique theme
360  * for the screen, drop the reference
361  */
362 static void
363 display_closed (GdkDisplay   *display,
364                 gboolean      is_error,
365                 GtkIconTheme *icon_theme)
366 {
367   GtkIconThemePrivate *priv = icon_theme->priv;
368   GdkScreen *screen = priv->screen;
369   gboolean was_screen_singleton = priv->is_screen_singleton;
370
371   if (was_screen_singleton)
372     {
373       g_object_set_data (G_OBJECT (screen), I_("gtk-icon-theme"), NULL);
374       priv->is_screen_singleton = FALSE;
375     }
376
377   gtk_icon_theme_set_screen (icon_theme, NULL);
378
379   if (was_screen_singleton)
380     {
381       g_object_unref (icon_theme);
382     }
383 }
384
385 static void
386 update_current_theme (GtkIconTheme *icon_theme)
387 {
388 #define theme_changed(_old, _new) \
389   ((_old && !_new) || (!_old && _new) || \
390    (_old && _new && strcmp (_old, _new) != 0))
391   GtkIconThemePrivate *priv = icon_theme->priv;
392
393   if (!priv->custom_theme)
394     {
395       gchar *theme = NULL;
396       gchar *fallback_theme = NULL;
397       gboolean changed = FALSE;
398
399       if (priv->screen)
400         {
401           GtkSettings *settings = gtk_settings_get_for_screen (priv->screen);
402           g_object_get (settings, 
403                         "gtk-icon-theme-name", &theme, 
404                         "gtk-fallback-icon-theme", &fallback_theme, NULL);
405         }
406
407       /* ensure that the current theme (even when just the default)
408        * is searched before any fallback theme
409        */
410       if (!theme && fallback_theme)
411         theme = g_strdup (DEFAULT_THEME_NAME);
412
413       if (theme_changed (priv->current_theme, theme))
414         {
415           g_free (priv->current_theme);
416           priv->current_theme = theme;
417           changed = TRUE;
418         }
419       else
420         g_free (theme);
421
422       if (theme_changed (priv->fallback_theme, fallback_theme))
423         {
424           g_free (priv->fallback_theme);
425           priv->fallback_theme = fallback_theme;
426           changed = TRUE;
427         }
428       else
429         g_free (fallback_theme);
430
431       if (changed)
432         do_theme_change (icon_theme);
433     }
434 #undef theme_changed
435 }
436
437 /* Callback when the icon theme GtkSetting changes
438  */
439 static void
440 theme_changed (GtkSettings  *settings,
441                GParamSpec   *pspec,
442                GtkIconTheme *icon_theme)
443 {
444   update_current_theme (icon_theme);
445 }
446
447 static void
448 unset_screen (GtkIconTheme *icon_theme)
449 {
450   GtkIconThemePrivate *priv = icon_theme->priv;
451   GtkSettings *settings;
452   GdkDisplay *display;
453   
454   if (priv->screen)
455     {
456       settings = gtk_settings_get_for_screen (priv->screen);
457       display = gdk_screen_get_display (priv->screen);
458       
459       g_signal_handlers_disconnect_by_func (display,
460                                             (gpointer) display_closed,
461                                             icon_theme);
462       g_signal_handlers_disconnect_by_func (settings,
463                                             (gpointer) theme_changed,
464                                             icon_theme);
465
466       priv->screen = NULL;
467     }
468 }
469
470 /**
471  * gtk_icon_theme_set_screen:
472  * @icon_theme: a #GtkIconTheme
473  * @screen: a #GdkScreen
474  * 
475  * Sets the screen for an icon theme; the screen is used
476  * to track the user's currently configured icon theme,
477  * which might be different for different screens.
478  *
479  * Since: 2.4
480  **/
481 void
482 gtk_icon_theme_set_screen (GtkIconTheme *icon_theme,
483                            GdkScreen    *screen)
484 {
485   GtkIconThemePrivate *priv;
486   GtkSettings *settings;
487   GdkDisplay *display;
488
489   g_return_if_fail (GTK_ICON_THEME (icon_theme));
490   g_return_if_fail (screen == NULL || GDK_IS_SCREEN (screen));
491
492   priv = icon_theme->priv;
493
494   unset_screen (icon_theme);
495   
496   if (screen)
497     {
498       display = gdk_screen_get_display (screen);
499       settings = gtk_settings_get_for_screen (screen);
500       
501       priv->screen = screen;
502       
503       g_signal_connect (display, "closed",
504                         G_CALLBACK (display_closed), icon_theme);
505       g_signal_connect (settings, "notify::gtk-icon-theme-name",
506                         G_CALLBACK (theme_changed), icon_theme);
507       g_signal_connect (settings, "notify::gtk-fallback-icon-theme-name",
508                         G_CALLBACK (theme_changed), icon_theme);
509     }
510
511   update_current_theme (icon_theme);
512 }
513
514 /* Checks whether a loader for SVG files has been registered
515  * with GdkPixbuf.
516  */
517 static gboolean
518 pixbuf_supports_svg (void)
519 {
520   GSList *formats;
521   GSList *tmp_list;
522   static gint found_svg = -1;
523
524   if (found_svg != -1)
525     return found_svg;
526
527   formats = gdk_pixbuf_get_formats ();
528
529   found_svg = FALSE; 
530   for (tmp_list = formats; tmp_list && !found_svg; tmp_list = tmp_list->next)
531     {
532       gchar **mime_types = gdk_pixbuf_format_get_mime_types (tmp_list->data);
533       gchar **mime_type;
534       
535       for (mime_type = mime_types; *mime_type && !found_svg; mime_type++)
536         {
537           if (strcmp (*mime_type, "image/svg") == 0)
538             found_svg = TRUE;
539         }
540
541       g_strfreev (mime_types);
542     }
543
544   g_slist_free (formats);
545   
546   return found_svg;
547 }
548
549 static void
550 gtk_icon_theme_init (GtkIconTheme *icon_theme)
551 {
552   GtkIconThemePrivate *priv;
553   const gchar * const *xdg_data_dirs;
554   int i, j;
555
556   priv = G_TYPE_INSTANCE_GET_PRIVATE (icon_theme,
557                                       GTK_TYPE_ICON_THEME,
558                                       GtkIconThemePrivate);
559   icon_theme->priv = priv;
560
561   priv->custom_theme = FALSE;
562
563   xdg_data_dirs = g_get_system_data_dirs ();
564   for (i = 0; xdg_data_dirs[i]; i++) ;
565
566   priv->search_path_len = 2 * i + 2;
567   
568   priv->search_path = g_new (char *, priv->search_path_len);
569   
570   i = 0;
571   priv->search_path[i++] = g_build_filename (g_get_home_dir (), ".icons", NULL);
572   priv->search_path[i++] = g_build_filename (g_get_user_data_dir (), "icons", NULL);
573   
574   for (j = 0; xdg_data_dirs[j]; j++) 
575     priv->search_path[i++] = g_build_filename (xdg_data_dirs[j], "icons", NULL);
576
577   for (j = 0; xdg_data_dirs[j]; j++) 
578     priv->search_path[i++] = g_build_filename (xdg_data_dirs[j], "pixmaps", NULL);
579
580   priv->themes_valid = FALSE;
581   priv->themes = NULL;
582   priv->unthemed_icons = NULL;
583   
584   priv->pixbuf_supports_svg = pixbuf_supports_svg ();
585 }
586
587 static void
588 free_dir_mtime (IconThemeDirMtime *dir_mtime)
589 {
590   if (dir_mtime->cache)
591     _gtk_icon_cache_unref (dir_mtime->cache);
592
593   g_free (dir_mtime->dir);
594   g_slice_free (IconThemeDirMtime, dir_mtime);
595
596 }
597
598 static gboolean
599 reset_styles_idle (gpointer user_data)
600 {
601   GtkIconTheme *icon_theme;
602   GtkIconThemePrivate *priv;
603
604   icon_theme = GTK_ICON_THEME (user_data);
605   priv = icon_theme->priv;
606
607   if (priv->screen && priv->is_screen_singleton)
608     {
609       GtkSettings *settings = gtk_settings_get_for_screen (priv->screen);
610       gtk_rc_reset_styles (settings);
611     }
612
613   priv->reset_styles_idle = 0;
614
615   return FALSE;
616 }
617
618 static void
619 do_theme_change (GtkIconTheme *icon_theme)
620 {
621   GtkIconThemePrivate *priv = icon_theme->priv;
622
623   if (!priv->themes_valid)
624     return;
625   
626   GTK_NOTE (ICONTHEME, 
627             g_print ("change to icon theme \"%s\"\n", priv->current_theme));
628   blow_themes (icon_theme);
629   g_signal_emit (icon_theme, signal_changed, 0);
630
631   if (!priv->reset_styles_idle)
632     priv->reset_styles_idle = 
633       gdk_threads_add_idle_full (GTK_PRIORITY_RESIZE - 2, 
634                        reset_styles_idle, icon_theme, NULL);
635 }
636
637 static void
638 blow_themes (GtkIconTheme *icon_theme)
639 {
640   GtkIconThemePrivate *priv = icon_theme->priv;
641   
642   if (priv->themes_valid)
643     {
644       g_hash_table_destroy (priv->all_icons);
645       g_list_foreach (priv->themes, (GFunc)theme_destroy, NULL);
646       g_list_free (priv->themes);
647       g_list_foreach (priv->dir_mtimes, (GFunc)free_dir_mtime, NULL);
648       g_list_free (priv->dir_mtimes);
649       g_hash_table_destroy (priv->unthemed_icons);
650     }
651   priv->themes = NULL;
652   priv->unthemed_icons = NULL;
653   priv->dir_mtimes = NULL;
654   priv->all_icons = NULL;
655   priv->themes_valid = FALSE;
656 }
657
658 static void
659 gtk_icon_theme_finalize (GObject *object)
660 {
661   GtkIconTheme *icon_theme;
662   GtkIconThemePrivate *priv;
663   int i;
664
665   icon_theme = GTK_ICON_THEME (object);
666   priv = icon_theme->priv;
667
668   if (priv->reset_styles_idle)
669     {
670       g_source_remove (priv->reset_styles_idle);
671       priv->reset_styles_idle = 0;
672     }
673
674   unset_screen (icon_theme);
675
676   g_free (priv->current_theme);
677   priv->current_theme = NULL;
678
679   for (i = 0; i < priv->search_path_len; i++)
680     g_free (priv->search_path[i]);
681
682   g_free (priv->search_path);
683   priv->search_path = NULL;
684
685   blow_themes (icon_theme);
686
687   G_OBJECT_CLASS (gtk_icon_theme_parent_class)->finalize (object);  
688 }
689
690 /**
691  * gtk_icon_theme_set_search_path:
692  * @icon_theme: a #GtkIconTheme
693  * @path: array of directories that are searched for icon themes
694  * @n_elements: number of elements in @path.
695  * 
696  * Sets the search path for the icon theme object. When looking
697  * for an icon theme, GTK+ will search for a subdirectory of
698  * one or more of the directories in @path with the same name
699  * as the icon theme. (Themes from multiple of the path elements
700  * are combined to allow themes to be extended by adding icons
701  * in the user's home directory.)
702  *
703  * In addition if an icon found isn't found either in the current
704  * icon theme or the default icon theme, and an image file with
705  * the right name is found directly in one of the elements of
706  * @path, then that image will be used for the icon name.
707  * (This is legacy feature, and new icons should be put
708  * into the default icon theme, which is called DEFAULT_THEME_NAME,
709  * rather than directly on the icon path.)
710  *
711  * Since: 2.4
712  **/
713 void
714 gtk_icon_theme_set_search_path (GtkIconTheme *icon_theme,
715                                 const gchar  *path[],
716                                 gint          n_elements)
717 {
718   GtkIconThemePrivate *priv;
719   gint i;
720
721   g_return_if_fail (GTK_IS_ICON_THEME (icon_theme));
722
723   priv = icon_theme->priv;
724   for (i = 0; i < priv->search_path_len; i++)
725     g_free (priv->search_path[i]);
726
727   g_free (priv->search_path);
728
729   priv->search_path = g_new (gchar *, n_elements);
730   priv->search_path_len = n_elements;
731
732   for (i = 0; i < priv->search_path_len; i++)
733     priv->search_path[i] = g_strdup (path[i]);
734
735   do_theme_change (icon_theme);
736 }
737
738
739 /**
740  * gtk_icon_theme_get_search_path:
741  * @icon_theme: a #GtkIconTheme
742  * @path: (allow-none) (array length=n_elements) (out): location to store a list of icon theme path directories or %NULL
743  *        The stored value should be freed with g_strfreev().
744  * @n_elements: location to store number of elements
745  *              in @path, or %NULL
746  * 
747  * Gets the current search path. See gtk_icon_theme_set_search_path().
748  *
749  * Since: 2.4
750  **/
751 void
752 gtk_icon_theme_get_search_path (GtkIconTheme      *icon_theme,
753                                 gchar            **path[],
754                                 gint              *n_elements)
755 {
756   GtkIconThemePrivate *priv;
757   int i;
758
759   g_return_if_fail (GTK_IS_ICON_THEME (icon_theme));
760
761   priv = icon_theme->priv;
762
763   if (n_elements)
764     *n_elements = priv->search_path_len;
765   
766   if (path)
767     {
768       *path = g_new (gchar *, priv->search_path_len + 1);
769       for (i = 0; i < priv->search_path_len; i++)
770         (*path)[i] = g_strdup (priv->search_path[i]);
771       (*path)[i] = NULL;
772     }
773 }
774
775 /**
776  * gtk_icon_theme_append_search_path:
777  * @icon_theme: a #GtkIconTheme
778  * @path: directory name to append to the icon path
779  * 
780  * Appends a directory to the search path. 
781  * See gtk_icon_theme_set_search_path(). 
782  *
783  * Since: 2.4
784  **/
785 void
786 gtk_icon_theme_append_search_path (GtkIconTheme *icon_theme,
787                                    const gchar  *path)
788 {
789   GtkIconThemePrivate *priv;
790
791   g_return_if_fail (GTK_IS_ICON_THEME (icon_theme));
792   g_return_if_fail (path != NULL);
793
794   priv = icon_theme->priv;
795   
796   priv->search_path_len++;
797
798   priv->search_path = g_renew (gchar *, priv->search_path, priv->search_path_len);
799   priv->search_path[priv->search_path_len-1] = g_strdup (path);
800
801   do_theme_change (icon_theme);
802 }
803
804 /**
805  * gtk_icon_theme_prepend_search_path:
806  * @icon_theme: a #GtkIconTheme
807  * @path: directory name to prepend to the icon path
808  * 
809  * Prepends a directory to the search path. 
810  * See gtk_icon_theme_set_search_path().
811  *
812  * Since: 2.4
813  **/
814 void
815 gtk_icon_theme_prepend_search_path (GtkIconTheme *icon_theme,
816                                     const gchar  *path)
817 {
818   GtkIconThemePrivate *priv;
819   int i;
820
821   g_return_if_fail (GTK_IS_ICON_THEME (icon_theme));
822   g_return_if_fail (path != NULL);
823
824   priv = icon_theme->priv;
825   
826   priv->search_path_len++;
827   priv->search_path = g_renew (gchar *, priv->search_path, priv->search_path_len);
828
829   for (i = priv->search_path_len - 1; i > 0; i--)
830     priv->search_path[i] = priv->search_path[i - 1];
831   
832   priv->search_path[0] = g_strdup (path);
833
834   do_theme_change (icon_theme);
835 }
836
837 /**
838  * gtk_icon_theme_set_custom_theme:
839  * @icon_theme: a #GtkIconTheme
840  * @theme_name: name of icon theme to use instead of configured theme,
841  *   or %NULL to unset a previously set custom theme
842  * 
843  * Sets the name of the icon theme that the #GtkIconTheme object uses
844  * overriding system configuration. This function cannot be called
845  * on the icon theme objects returned from gtk_icon_theme_get_default()
846  * and gtk_icon_theme_get_for_screen().
847  *
848  * Since: 2.4
849  **/
850 void
851 gtk_icon_theme_set_custom_theme (GtkIconTheme *icon_theme,
852                                  const gchar  *theme_name)
853 {
854   GtkIconThemePrivate *priv;
855
856   g_return_if_fail (GTK_IS_ICON_THEME (icon_theme));
857
858   priv = icon_theme->priv;
859
860   g_return_if_fail (!priv->is_screen_singleton);
861   
862   if (theme_name != NULL)
863     {
864       priv->custom_theme = TRUE;
865       if (!priv->current_theme || strcmp (theme_name, priv->current_theme) != 0)
866         {
867           g_free (priv->current_theme);
868           priv->current_theme = g_strdup (theme_name);
869
870           do_theme_change (icon_theme);
871         }
872     }
873   else
874     {
875       if (priv->custom_theme)
876         {
877           priv->custom_theme = FALSE;
878
879           update_current_theme (icon_theme);
880         }
881     }
882 }
883
884 static void
885 insert_theme (GtkIconTheme *icon_theme, const char *theme_name)
886 {
887   int i;
888   GList *l;
889   char **dirs;
890   char **themes;
891   GtkIconThemePrivate *priv;
892   IconTheme *theme = NULL;
893   char *path;
894   GKeyFile *theme_file;
895   GError *error = NULL;
896   IconThemeDirMtime *dir_mtime;
897   struct stat stat_buf;
898   
899   priv = icon_theme->priv;
900
901   for (l = priv->themes; l != NULL; l = l->next)
902     {
903       theme = l->data;
904       if (strcmp (theme->name, theme_name) == 0)
905         return;
906     }
907   
908   for (i = 0; i < priv->search_path_len; i++)
909     {
910       path = g_build_filename (priv->search_path[i],
911                                theme_name,
912                                NULL);
913       dir_mtime = g_slice_new (IconThemeDirMtime);
914       dir_mtime->cache = NULL;
915       dir_mtime->dir = path;
916       if (g_stat (path, &stat_buf) == 0 && S_ISDIR (stat_buf.st_mode))
917         dir_mtime->mtime = stat_buf.st_mtime;
918       else
919         dir_mtime->mtime = 0;
920
921       priv->dir_mtimes = g_list_prepend (priv->dir_mtimes, dir_mtime);
922     }
923   priv->dir_mtimes = g_list_reverse (priv->dir_mtimes);
924
925   theme_file = NULL;
926   for (i = 0; i < priv->search_path_len && !theme_file; i++)
927     {
928       path = g_build_filename (priv->search_path[i],
929                                theme_name,
930                                "index.theme",
931                                NULL);
932       if (g_file_test (path, G_FILE_TEST_IS_REGULAR)) 
933         {
934           theme_file = g_key_file_new ();
935           g_key_file_set_list_separator (theme_file, ',');
936           g_key_file_load_from_file (theme_file, path, 0, &error);
937           if (error)
938             {
939               g_key_file_free (theme_file);
940               theme_file = NULL;
941               g_error_free (error);
942               error = NULL;
943             }
944         }
945       g_free (path);
946     }
947
948   if (theme_file || strcmp (theme_name, DEFAULT_THEME_NAME) == 0)
949     {
950       theme = g_new0 (IconTheme, 1);
951       theme->name = g_strdup (theme_name);
952       priv->themes = g_list_prepend (priv->themes, theme);
953     }
954
955   if (theme_file == NULL)
956     return;
957
958   theme->display_name = 
959     g_key_file_get_locale_string (theme_file, "Icon Theme", "Name", NULL, NULL);
960   if (!theme->display_name)
961     g_warning ("Theme file for %s has no name\n", theme_name);
962
963   dirs = g_key_file_get_string_list (theme_file, "Icon Theme", "Directories", NULL, NULL);
964   if (!dirs)
965     {
966       g_warning ("Theme file for %s has no directories\n", theme_name);
967       priv->themes = g_list_remove (priv->themes, theme);
968       g_free (theme->name);
969       g_free (theme->display_name);
970       g_free (theme);
971       g_key_file_free (theme_file);
972       return;
973     }
974   
975   theme->comment = 
976     g_key_file_get_locale_string (theme_file, 
977                                   "Icon Theme", "Comment",
978                                   NULL, NULL);
979   theme->example = 
980     g_key_file_get_string (theme_file, 
981                            "Icon Theme", "Example",
982                            NULL);
983
984   theme->dirs = NULL;
985   for (i = 0; dirs[i] != NULL; i++)
986     theme_subdir_load (icon_theme, theme, theme_file, dirs[i]);
987
988   g_strfreev (dirs);
989
990   theme->dirs = g_list_reverse (theme->dirs);
991
992   themes = g_key_file_get_string_list (theme_file,
993                                        "Icon Theme",
994                                        "Inherits",
995                                        NULL,
996                                        NULL);
997   if (themes)
998     {
999       for (i = 0; themes[i] != NULL; i++)
1000         insert_theme (icon_theme, themes[i]);
1001       
1002       g_strfreev (themes);
1003     }
1004
1005   g_key_file_free (theme_file);
1006 }
1007
1008 static void
1009 free_unthemed_icon (UnthemedIcon *unthemed_icon)
1010 {
1011   g_free (unthemed_icon->svg_filename);
1012   g_free (unthemed_icon->no_svg_filename);
1013   g_slice_free (UnthemedIcon, unthemed_icon);
1014 }
1015
1016 static char *
1017 strip_suffix (const char *filename)
1018 {
1019   const char *dot;
1020
1021   dot = strrchr (filename, '.');
1022
1023   if (dot == NULL)
1024     return g_strdup (filename);
1025
1026   return g_strndup (filename, dot - filename);
1027 }
1028
1029 static void
1030 load_themes (GtkIconTheme *icon_theme)
1031 {
1032   GtkIconThemePrivate *priv;
1033   GDir *gdir;
1034   int base;
1035   char *dir;
1036   const char *file;
1037   UnthemedIcon *unthemed_icon;
1038   IconSuffix old_suffix, new_suffix;
1039   GTimeVal tv;
1040   IconThemeDirMtime *dir_mtime;
1041   struct stat stat_buf;
1042   
1043   priv = icon_theme->priv;
1044
1045   priv->all_icons = g_hash_table_new (g_str_hash, g_str_equal);
1046   
1047   if (priv->current_theme)
1048     insert_theme (icon_theme, priv->current_theme);
1049
1050   /* Always look in the "default" icon theme, and in a fallback theme */
1051   if (priv->fallback_theme)
1052     insert_theme (icon_theme, priv->fallback_theme);
1053   insert_theme (icon_theme, DEFAULT_THEME_NAME);
1054   priv->themes = g_list_reverse (priv->themes);
1055
1056
1057   priv->unthemed_icons = g_hash_table_new_full (g_str_hash, g_str_equal,
1058                                                 g_free, (GDestroyNotify)free_unthemed_icon);
1059
1060   for (base = 0; base < icon_theme->priv->search_path_len; base++)
1061     {
1062       dir = icon_theme->priv->search_path[base];
1063
1064       dir_mtime = g_slice_new (IconThemeDirMtime);
1065       priv->dir_mtimes = g_list_append (priv->dir_mtimes, dir_mtime);
1066       
1067       dir_mtime->dir = g_strdup (dir);
1068       dir_mtime->mtime = 0;
1069       dir_mtime->cache = NULL;
1070
1071       if (g_stat (dir, &stat_buf) != 0 || !S_ISDIR (stat_buf.st_mode))
1072         continue;
1073       dir_mtime->mtime = stat_buf.st_mtime;
1074
1075       dir_mtime->cache = _gtk_icon_cache_new_for_path (dir);
1076       if (dir_mtime->cache != NULL)
1077         continue;
1078
1079       gdir = g_dir_open (dir, 0, NULL);
1080       if (gdir == NULL)
1081         continue;
1082
1083       while ((file = g_dir_read_name (gdir)))
1084         {
1085           new_suffix = suffix_from_name (file);
1086           
1087           if (new_suffix != ICON_SUFFIX_NONE)
1088             {
1089               char *abs_file;
1090               char *base_name;
1091
1092               abs_file = g_build_filename (dir, file, NULL);
1093               base_name = strip_suffix (file);
1094
1095               if ((unthemed_icon = g_hash_table_lookup (priv->unthemed_icons,
1096                                                         base_name)))
1097                 {
1098                   if (new_suffix == ICON_SUFFIX_SVG)
1099                     {
1100                       if (unthemed_icon->svg_filename)
1101                         g_free (abs_file);
1102                       else
1103                         unthemed_icon->svg_filename = abs_file;
1104                     }
1105                   else
1106                     {
1107                       if (unthemed_icon->no_svg_filename)
1108                         {
1109                           old_suffix = suffix_from_name (unthemed_icon->no_svg_filename);
1110                           if (new_suffix > old_suffix)
1111                             {
1112                               g_free (unthemed_icon->no_svg_filename);
1113                               unthemed_icon->no_svg_filename = abs_file;                              
1114                             }
1115                           else
1116                             g_free (abs_file);
1117                         }
1118                       else
1119                         unthemed_icon->no_svg_filename = abs_file;                            
1120                     }
1121
1122                   g_free (base_name);
1123                 }
1124               else
1125                 {
1126                   unthemed_icon = g_slice_new0 (UnthemedIcon);
1127                   
1128                   if (new_suffix == ICON_SUFFIX_SVG)
1129                     unthemed_icon->svg_filename = abs_file;
1130                   else
1131                     unthemed_icon->no_svg_filename = abs_file;
1132
1133                   g_hash_table_insert (priv->unthemed_icons,
1134                                        base_name,
1135                                        unthemed_icon);
1136                   g_hash_table_insert (priv->all_icons,
1137                                        base_name, NULL);
1138                 }
1139             }
1140         }
1141       g_dir_close (gdir);
1142     }
1143
1144   priv->themes_valid = TRUE;
1145   
1146   g_get_current_time(&tv);
1147   priv->last_stat_time = tv.tv_sec;
1148 }
1149
1150 void
1151 _gtk_icon_theme_ensure_builtin_cache (void)
1152 {
1153   static gboolean initialized = FALSE;
1154   IconThemeDir *dir;
1155   static IconThemeDir dirs[5] = 
1156     {
1157       { ICON_THEME_DIR_THRESHOLD, 0, 16, 16, 16, 2, NULL, "16", -1, NULL, NULL, NULL },
1158       { ICON_THEME_DIR_THRESHOLD, 0, 20, 20, 20, 2, NULL, "20", -1,  NULL, NULL, NULL },
1159       { ICON_THEME_DIR_THRESHOLD, 0, 24, 24, 24, 2, NULL, "24", -1, NULL, NULL, NULL },
1160       { ICON_THEME_DIR_THRESHOLD, 0, 32, 32, 32, 2, NULL, "32", -1, NULL, NULL, NULL },
1161       { ICON_THEME_DIR_THRESHOLD, 0, 48, 48, 48, 2, NULL, "48", -1, NULL, NULL, NULL }
1162     };
1163   gint i;
1164
1165   if (!initialized)
1166     {
1167       initialized = TRUE;
1168
1169       _builtin_cache = _gtk_icon_cache_new ((gchar *)builtin_icons);
1170
1171       for (i = 0; i < G_N_ELEMENTS (dirs); i++)
1172         {
1173           dir = &(dirs[i]);
1174           dir->cache = _gtk_icon_cache_ref (_builtin_cache);
1175           dir->subdir_index = _gtk_icon_cache_get_directory_index (dir->cache, dir->subdir);
1176
1177           builtin_dirs = g_list_append (builtin_dirs, dir);
1178         }
1179     }
1180 }
1181
1182 static void
1183 ensure_valid_themes (GtkIconTheme *icon_theme)
1184 {
1185   GtkIconThemePrivate *priv = icon_theme->priv;
1186   GTimeVal tv;
1187   gboolean was_valid = priv->themes_valid;
1188
1189   if (priv->loading_themes)
1190     return;
1191   priv->loading_themes = TRUE;
1192
1193   _gtk_icon_theme_ensure_builtin_cache ();
1194
1195   if (priv->themes_valid)
1196     {
1197       g_get_current_time (&tv);
1198
1199       if (ABS (tv.tv_sec - priv->last_stat_time) > 5 &&
1200           rescan_themes (icon_theme))
1201         blow_themes (icon_theme);
1202     }
1203   
1204   if (!priv->themes_valid)
1205     {
1206       load_themes (icon_theme);
1207
1208       if (was_valid)
1209         {
1210           g_signal_emit (icon_theme, signal_changed, 0);
1211
1212           if (!priv->check_reload && priv->screen)
1213             {     
1214               static GdkAtom atom_iconthemes = GDK_NONE;
1215               GdkEvent *event = gdk_event_new (GDK_CLIENT_EVENT);
1216               int i;
1217
1218               if (!atom_iconthemes)
1219                 atom_iconthemes = gdk_atom_intern_static_string ("_GTK_LOAD_ICONTHEMES");
1220
1221               for (i = 0; i < 5; i++)
1222                 event->client.data.l[i] = 0;
1223               event->client.data_format = 32;
1224               event->client.message_type = atom_iconthemes;
1225
1226               gdk_screen_broadcast_client_message (priv->screen, event);
1227             }
1228         }
1229     }
1230
1231   priv->loading_themes = FALSE;
1232 }
1233
1234 static GtkIconInfo *
1235 choose_icon (GtkIconTheme       *icon_theme,
1236              const gchar        *icon_names[],
1237              gint                size,
1238              GtkIconLookupFlags  flags)
1239 {
1240   GtkIconThemePrivate *priv;
1241   GList *l;
1242   GtkIconInfo *icon_info = NULL;
1243   UnthemedIcon *unthemed_icon = NULL;
1244   gboolean allow_svg;
1245   gboolean use_builtin;
1246   gint i;
1247
1248   priv = icon_theme->priv;
1249
1250   if (flags & GTK_ICON_LOOKUP_NO_SVG)
1251     allow_svg = FALSE;
1252   else if (flags & GTK_ICON_LOOKUP_FORCE_SVG)
1253     allow_svg = TRUE;
1254   else
1255     allow_svg = priv->pixbuf_supports_svg;
1256
1257   use_builtin = flags & GTK_ICON_LOOKUP_USE_BUILTIN;
1258   
1259   ensure_valid_themes (icon_theme);
1260
1261   for (l = priv->themes; l; l = l->next)
1262     {
1263       IconTheme *theme = l->data;
1264       
1265       for (i = 0; icon_names[i]; i++)
1266         {
1267           icon_info = theme_lookup_icon (theme, icon_names[i], size, allow_svg, use_builtin);
1268           if (icon_info)
1269             goto out;
1270         }
1271     }
1272
1273   for (i = 0; icon_names[i]; i++)
1274     {
1275       unthemed_icon = g_hash_table_lookup (priv->unthemed_icons, icon_names[i]);
1276       if (unthemed_icon)
1277         break;
1278     }
1279 #ifdef G_OS_WIN32
1280   /* Still not found an icon, check if reference to a Win32 resource */
1281   if (!unthemed_icon)
1282     {
1283       gchar **resources;
1284       HICON hIcon = NULL;
1285       
1286       resources = g_strsplit (icon_names[0], ",", 0);
1287       if (resources[0])
1288         {
1289           wchar_t *wfile = g_utf8_to_utf16 (resources[0], -1, NULL, NULL, NULL);
1290           ExtractIconExW (wfile, resources[1] ? atoi (resources[1]) : 0, &hIcon, NULL, 1);
1291           g_free (wfile);
1292         }
1293       
1294       if (hIcon)
1295         {
1296           icon_info = icon_info_new ();
1297           icon_info->cache_pixbuf = gdk_win32_icon_to_pixbuf_libgtk_only (hIcon);
1298           DestroyIcon (hIcon);
1299           icon_info->dir_type = ICON_THEME_DIR_UNTHEMED;
1300           icon_info->dir_size = size;
1301         }
1302       g_strfreev (resources);
1303     }
1304 #endif
1305
1306   if (unthemed_icon)
1307     {
1308       icon_info = icon_info_new ();
1309
1310       /* A SVG icon, when allowed, beats out a XPM icon, but not
1311        * a PNG icon
1312        */
1313       if (allow_svg &&
1314           unthemed_icon->svg_filename &&
1315           (!unthemed_icon->no_svg_filename ||
1316            suffix_from_name (unthemed_icon->no_svg_filename) != ICON_SUFFIX_PNG))
1317         icon_info->filename = g_strdup (unthemed_icon->svg_filename);
1318       else if (unthemed_icon->no_svg_filename)
1319         icon_info->filename = g_strdup (unthemed_icon->no_svg_filename);
1320
1321       icon_info->dir_type = ICON_THEME_DIR_UNTHEMED;
1322       icon_info->dir_size = size;
1323     }
1324
1325  out:
1326   if (icon_info) 
1327     {
1328       icon_info->desired_size = size;
1329       icon_info->forced_size = (flags & GTK_ICON_LOOKUP_FORCE_SIZE) != 0;
1330     }
1331   else
1332     {
1333       static gboolean check_for_default_theme = TRUE;
1334       char *default_theme_path;
1335       gboolean found = FALSE;
1336       unsigned i;
1337
1338       if (check_for_default_theme)
1339         {
1340           check_for_default_theme = FALSE;
1341
1342           for (i = 0; !found && i < priv->search_path_len; i++)
1343             {
1344               default_theme_path = g_build_filename (priv->search_path[i],
1345                                                      DEFAULT_THEME_NAME,
1346                                                      "index.theme",
1347                                                      NULL);
1348               found = g_file_test (default_theme_path, G_FILE_TEST_IS_REGULAR);
1349               g_free (default_theme_path);
1350             }
1351
1352           if (!found)
1353             {
1354               g_warning (_("Could not find the icon '%s'. The '%s' theme\n"
1355                            "was not found either, perhaps you need to install it.\n"
1356                            "You can get a copy from:\n"
1357                            "\t%s"),
1358                          icon_names[0], DEFAULT_THEME_NAME, "http://icon-theme.freedesktop.org/releases");
1359             }
1360         }
1361     }
1362
1363   return icon_info;
1364 }
1365
1366
1367 /**
1368  * gtk_icon_theme_lookup_icon:
1369  * @icon_theme: a #GtkIconTheme
1370  * @icon_name: the name of the icon to lookup
1371  * @size: desired icon size
1372  * @flags: flags modifying the behavior of the icon lookup
1373  * 
1374  * Looks up a named icon and returns a structure containing
1375  * information such as the filename of the icon. The icon
1376  * can then be rendered into a pixbuf using
1377  * gtk_icon_info_load_icon(). (gtk_icon_theme_load_icon()
1378  * combines these two steps if all you need is the pixbuf.)
1379  * 
1380  * Return value: a #GtkIconInfo structure containing information
1381  * about the icon, or %NULL if the icon wasn't found. Free with
1382  * gtk_icon_info_free()
1383  *
1384  * Since: 2.4
1385  */
1386 GtkIconInfo *
1387 gtk_icon_theme_lookup_icon (GtkIconTheme       *icon_theme,
1388                             const gchar        *icon_name,
1389                             gint                size,
1390                             GtkIconLookupFlags  flags)
1391 {
1392   GtkIconInfo *info;
1393
1394   g_return_val_if_fail (GTK_IS_ICON_THEME (icon_theme), NULL);
1395   g_return_val_if_fail (icon_name != NULL, NULL);
1396   g_return_val_if_fail ((flags & GTK_ICON_LOOKUP_NO_SVG) == 0 ||
1397                         (flags & GTK_ICON_LOOKUP_FORCE_SVG) == 0, NULL);
1398
1399   GTK_NOTE (ICONTHEME, 
1400             g_print ("gtk_icon_theme_lookup_icon %s\n", icon_name));
1401
1402   if (flags & GTK_ICON_LOOKUP_GENERIC_FALLBACK)
1403     {
1404       gchar **names;
1405       gint dashes, i;
1406       gchar *p;
1407  
1408       dashes = 0;
1409       for (p = (gchar *) icon_name; *p; p++)
1410         if (*p == '-')
1411           dashes++;
1412
1413       names = g_new (gchar *, dashes + 2);
1414       names[0] = g_strdup (icon_name);
1415       for (i = 1; i <= dashes; i++)
1416         {
1417           names[i] = g_strdup (names[i - 1]);
1418           p = strrchr (names[i], '-');
1419           *p = '\0';
1420         }
1421       names[dashes + 1] = NULL;
1422    
1423       info = choose_icon (icon_theme, (const gchar **) names, size, flags);
1424       
1425       g_strfreev (names);
1426     }
1427   else 
1428     {
1429       const gchar *names[2];
1430       
1431       names[0] = icon_name;
1432       names[1] = NULL;
1433
1434       info = choose_icon (icon_theme, names, size, flags);
1435     }
1436
1437   return info;
1438 }
1439
1440 /**
1441  * gtk_icon_theme_choose_icon:
1442  * @icon_theme: a #GtkIconTheme
1443  * @icon_names: %NULL-terminated array of icon names to lookup
1444  * @size: desired icon size
1445  * @flags: flags modifying the behavior of the icon lookup
1446  * 
1447  * Looks up a named icon and returns a structure containing
1448  * information such as the filename of the icon. The icon
1449  * can then be rendered into a pixbuf using
1450  * gtk_icon_info_load_icon(). (gtk_icon_theme_load_icon()
1451  * combines these two steps if all you need is the pixbuf.)
1452  *
1453  * If @icon_names contains more than one name, this function 
1454  * tries them all in the given order before falling back to 
1455  * inherited icon themes.
1456  * 
1457  * Return value: a #GtkIconInfo structure containing information
1458  * about the icon, or %NULL if the icon wasn't found. Free with
1459  * gtk_icon_info_free()
1460  *
1461  * Since: 2.12
1462  */
1463 GtkIconInfo *
1464 gtk_icon_theme_choose_icon (GtkIconTheme       *icon_theme,
1465                             const gchar        *icon_names[],
1466                             gint                size,
1467                             GtkIconLookupFlags  flags)
1468 {
1469   g_return_val_if_fail (GTK_IS_ICON_THEME (icon_theme), NULL);
1470   g_return_val_if_fail (icon_names != NULL, NULL);
1471   g_return_val_if_fail ((flags & GTK_ICON_LOOKUP_NO_SVG) == 0 ||
1472                         (flags & GTK_ICON_LOOKUP_FORCE_SVG) == 0, NULL);
1473
1474   return choose_icon (icon_theme, icon_names, size, flags);
1475 }
1476
1477 /* Error quark */
1478 GQuark
1479 gtk_icon_theme_error_quark (void)
1480 {
1481   return g_quark_from_static_string ("gtk-icon-theme-error-quark");
1482 }
1483
1484 /**
1485  * gtk_icon_theme_load_icon:
1486  * @icon_theme: a #GtkIconTheme
1487  * @icon_name: the name of the icon to lookup
1488  * @size: the desired icon size. The resulting icon may not be
1489  *     exactly this size; see gtk_icon_info_load_icon().
1490  * @flags: flags modifying the behavior of the icon lookup
1491  * @error: (allow-none): Location to store error information on failure,
1492  *     or %NULL.
1493  *
1494  * Looks up an icon in an icon theme, scales it to the given size
1495  * and renders it into a pixbuf. This is a convenience function;
1496  * if more details about the icon are needed, use
1497  * gtk_icon_theme_lookup_icon() followed by gtk_icon_info_load_icon().
1498  *
1499  * Note that you probably want to listen for icon theme changes and
1500  * update the icon. This is usually done by connecting to the
1501  * GtkWidget::style-set signal. If for some reason you do not want to
1502  * update the icon when the icon theme changes, you should consider
1503  * using gdk_pixbuf_copy() to make a private copy of the pixbuf
1504  * returned by this function. Otherwise GTK+ may need to keep the old
1505  * icon theme loaded, which would be a waste of memory.
1506  *
1507  * Return value: (transfer full): the rendered icon; this may be a
1508  *     newly created icon or a new reference to an internal icon, so
1509  *     you must not modify the icon. Use g_object_unref() to release
1510  *     your reference to the icon. %NULL if the icon isn't found.
1511  *
1512  * Since: 2.4
1513  **/
1514 GdkPixbuf *
1515 gtk_icon_theme_load_icon (GtkIconTheme         *icon_theme,
1516                           const gchar          *icon_name,
1517                           gint                  size,
1518                           GtkIconLookupFlags    flags,
1519                           GError              **error)
1520 {
1521   GtkIconInfo *icon_info;
1522   GdkPixbuf *pixbuf = NULL;
1523   
1524   g_return_val_if_fail (GTK_IS_ICON_THEME (icon_theme), NULL);
1525   g_return_val_if_fail (icon_name != NULL, NULL);
1526   g_return_val_if_fail ((flags & GTK_ICON_LOOKUP_NO_SVG) == 0 ||
1527                         (flags & GTK_ICON_LOOKUP_FORCE_SVG) == 0, NULL);
1528   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
1529   
1530   icon_info = gtk_icon_theme_lookup_icon (icon_theme, icon_name, size,
1531                                           flags | GTK_ICON_LOOKUP_USE_BUILTIN);
1532   if (!icon_info)
1533     {
1534       g_set_error (error, GTK_ICON_THEME_ERROR,  GTK_ICON_THEME_NOT_FOUND,
1535                    _("Icon '%s' not present in theme"), icon_name);
1536       return NULL;
1537     }
1538
1539   pixbuf = gtk_icon_info_load_icon (icon_info, error);
1540   gtk_icon_info_free (icon_info);
1541
1542   return pixbuf;
1543 }
1544
1545 /**
1546  * gtk_icon_theme_has_icon:
1547  * @icon_theme: a #GtkIconTheme
1548  * @icon_name: the name of an icon
1549  * 
1550  * Checks whether an icon theme includes an icon
1551  * for a particular name.
1552  * 
1553  * Return value: %TRUE if @icon_theme includes an
1554  *  icon for @icon_name.
1555  *
1556  * Since: 2.4
1557  **/
1558 gboolean 
1559 gtk_icon_theme_has_icon (GtkIconTheme *icon_theme,
1560                          const char   *icon_name)
1561 {
1562   GtkIconThemePrivate *priv;
1563   GList *l;
1564
1565   g_return_val_if_fail (GTK_IS_ICON_THEME (icon_theme), FALSE);
1566   g_return_val_if_fail (icon_name != NULL, FALSE);
1567
1568   priv = icon_theme->priv;
1569   
1570   ensure_valid_themes (icon_theme);
1571
1572   for (l = priv->dir_mtimes; l; l = l->next)
1573     {
1574       IconThemeDirMtime *dir_mtime = l->data;
1575       GtkIconCache *cache = dir_mtime->cache;
1576       
1577       if (cache && _gtk_icon_cache_has_icon (cache, icon_name))
1578         return TRUE;
1579     }
1580
1581   if (g_hash_table_lookup_extended (priv->all_icons,
1582                                     icon_name, NULL, NULL))
1583     return TRUE;
1584
1585   if (_builtin_cache &&
1586       _gtk_icon_cache_has_icon (_builtin_cache, icon_name))
1587     return TRUE;
1588
1589   if (icon_theme_builtin_icons &&
1590       g_hash_table_lookup_extended (icon_theme_builtin_icons,
1591                                     icon_name, NULL, NULL))
1592     return TRUE;
1593
1594   return FALSE;
1595 }
1596
1597 static void
1598 add_size (gpointer  key,
1599           gpointer  value,
1600           gpointer  user_data)
1601 {
1602   gint **res_p = user_data;
1603
1604   **res_p = GPOINTER_TO_INT (key);
1605
1606   (*res_p)++;
1607 }
1608
1609 /**
1610  * gtk_icon_theme_get_icon_sizes:
1611  * @icon_theme: a #GtkIconTheme
1612  * @icon_name: the name of an icon
1613  * 
1614  * Returns an array of integers describing the sizes at which
1615  * the icon is available without scaling. A size of -1 means 
1616  * that the icon is available in a scalable format. The array 
1617  * is zero-terminated.
1618  * 
1619  * Return value: An newly allocated array describing the sizes at
1620  * which the icon is available. The array should be freed with g_free()
1621  * when it is no longer needed.
1622  *
1623  * Since: 2.6
1624  **/
1625 gint *
1626 gtk_icon_theme_get_icon_sizes (GtkIconTheme *icon_theme,
1627                                const char   *icon_name)
1628 {
1629   GList *l, *d, *icons;
1630   GHashTable *sizes;
1631   gint *result, *r;
1632   guint suffix;  
1633   GtkIconThemePrivate *priv;
1634
1635   g_return_val_if_fail (GTK_IS_ICON_THEME (icon_theme), NULL);
1636   
1637   priv = icon_theme->priv;
1638
1639   ensure_valid_themes (icon_theme);
1640
1641   sizes = g_hash_table_new (g_direct_hash, g_direct_equal);
1642
1643   for (l = priv->themes; l; l = l->next)
1644     {
1645       IconTheme *theme = l->data;
1646       for (d = theme->dirs; d; d = d->next)
1647         {
1648           IconThemeDir *dir = d->data;
1649
1650           if (dir->type != ICON_THEME_DIR_SCALABLE && g_hash_table_lookup_extended (sizes, GINT_TO_POINTER (dir->size), NULL, NULL))
1651             continue;
1652
1653           suffix = theme_dir_get_icon_suffix (dir, icon_name, NULL);      
1654           if (suffix != ICON_SUFFIX_NONE)
1655             {
1656               if (suffix == ICON_SUFFIX_SVG)
1657                 g_hash_table_insert (sizes, GINT_TO_POINTER (-1), NULL);
1658               else
1659                 g_hash_table_insert (sizes, GINT_TO_POINTER (dir->size), NULL);
1660             }
1661         }
1662     }
1663
1664   for (d = builtin_dirs; d; d = d->next)
1665     {
1666       IconThemeDir *dir = d->data;
1667       
1668       if (dir->type != ICON_THEME_DIR_SCALABLE && g_hash_table_lookup_extended (sizes, GINT_TO_POINTER (dir->size), NULL, NULL))
1669         continue;
1670
1671       suffix = theme_dir_get_icon_suffix (dir, icon_name, NULL);          
1672       if (suffix != ICON_SUFFIX_NONE)
1673         {
1674           if (suffix == ICON_SUFFIX_SVG)
1675             g_hash_table_insert (sizes, GINT_TO_POINTER (-1), NULL);
1676           else
1677             g_hash_table_insert (sizes, GINT_TO_POINTER (dir->size), NULL);
1678         }
1679     }
1680
1681   if (icon_theme_builtin_icons)
1682     {
1683       icons = g_hash_table_lookup (icon_theme_builtin_icons, icon_name);
1684       
1685       while (icons)
1686         {
1687           BuiltinIcon *icon = icons->data;
1688         
1689           g_hash_table_insert (sizes, GINT_TO_POINTER (icon->size), NULL);
1690           icons = icons->next;
1691         }      
1692     }
1693
1694   r = result = g_new0 (gint, g_hash_table_size (sizes) + 1);
1695
1696   g_hash_table_foreach (sizes, add_size, &r);
1697   g_hash_table_destroy (sizes);
1698   
1699   return result;
1700 }
1701
1702 static void
1703 add_key_to_hash (gpointer  key,
1704                  gpointer  value,
1705                  gpointer  user_data)
1706 {
1707   GHashTable *hash = user_data;
1708
1709   g_hash_table_insert (hash, key, NULL);
1710 }
1711
1712 static void
1713 add_key_to_list (gpointer  key,
1714                  gpointer  value,
1715                  gpointer  user_data)
1716 {
1717   GList **list = user_data;
1718
1719   *list = g_list_prepend (*list, g_strdup (key));
1720 }
1721
1722 /**
1723  * gtk_icon_theme_list_icons:
1724  * @icon_theme: a #GtkIconTheme
1725  * @context: a string identifying a particular type of icon,
1726  *           or %NULL to list all icons.
1727  * 
1728  * Lists the icons in the current icon theme. Only a subset
1729  * of the icons can be listed by providing a context string.
1730  * The set of values for the context string is system dependent,
1731  * but will typically include such values as "Applications" and
1732  * "MimeTypes".
1733  *
1734  * Return value: (element-type utf8) (transfer none): a #GList list holding the names of all the
1735  *  icons in the theme. You must first free each element
1736  *  in the list with g_free(), then free the list itself
1737  *  with g_list_free().
1738  *
1739  * Since: 2.4
1740  **/
1741 GList *
1742 gtk_icon_theme_list_icons (GtkIconTheme *icon_theme,
1743                            const char   *context)
1744 {
1745   GtkIconThemePrivate *priv;
1746   GHashTable *icons;
1747   GList *list, *l;
1748   GQuark context_quark;
1749   
1750   priv = icon_theme->priv;
1751   
1752   ensure_valid_themes (icon_theme);
1753
1754   if (context)
1755     {
1756       context_quark = g_quark_try_string (context);
1757
1758       if (!context_quark)
1759         return NULL;
1760     }
1761   else
1762     context_quark = 0;
1763
1764   icons = g_hash_table_new (g_str_hash, g_str_equal);
1765   
1766   l = priv->themes;
1767   while (l != NULL)
1768     {
1769       theme_list_icons (l->data, icons, context_quark);
1770       l = l->next;
1771     }
1772
1773   if (context_quark == 0)
1774     g_hash_table_foreach (priv->unthemed_icons,
1775                           add_key_to_hash,
1776                           icons);
1777
1778   list = NULL;
1779   
1780   g_hash_table_foreach (icons,
1781                         add_key_to_list,
1782                         &list);
1783
1784   g_hash_table_destroy (icons);
1785   
1786   return list;
1787 }
1788
1789 /**
1790  * gtk_icon_theme_list_contexts:
1791  * @icon_theme: a #GtkIconTheme
1792  *
1793  * Gets the list of contexts available within the current
1794  * hierarchy of icon themes
1795  *
1796  * Return value: (element-type utf8) (transfer full): a #GList list holding the names of all the
1797  *  contexts in the theme. You must first free each element
1798  *  in the list with g_free(), then free the list itself
1799  *  with g_list_free().
1800  *
1801  * Since: 2.12
1802  **/
1803 GList *
1804 gtk_icon_theme_list_contexts (GtkIconTheme *icon_theme)
1805 {
1806   GtkIconThemePrivate *priv;
1807   GHashTable *contexts;
1808   GList *list, *l;
1809
1810   priv = icon_theme->priv;
1811   
1812   ensure_valid_themes (icon_theme);
1813
1814   contexts = g_hash_table_new (g_str_hash, g_str_equal);
1815
1816   l = priv->themes;
1817   while (l != NULL)
1818     {
1819       theme_list_contexts (l->data, contexts);
1820       l = l->next;
1821     }
1822
1823   list = NULL;
1824
1825   g_hash_table_foreach (contexts,
1826                         add_key_to_list,
1827                         &list);
1828
1829   g_hash_table_destroy (contexts);
1830
1831   return list;
1832 }
1833
1834 /**
1835  * gtk_icon_theme_get_example_icon_name:
1836  * @icon_theme: a #GtkIconTheme
1837  * 
1838  * Gets the name of an icon that is representative of the
1839  * current theme (for instance, to use when presenting
1840  * a list of themes to the user.)
1841  * 
1842  * Return value: the name of an example icon or %NULL.
1843  *  Free with g_free().
1844  *
1845  * Since: 2.4
1846  **/
1847 char *
1848 gtk_icon_theme_get_example_icon_name (GtkIconTheme *icon_theme)
1849 {
1850   GtkIconThemePrivate *priv;
1851   GList *l;
1852   IconTheme *theme;
1853
1854   g_return_val_if_fail (GTK_IS_ICON_THEME (icon_theme), NULL);
1855   
1856   priv = icon_theme->priv;
1857   
1858   ensure_valid_themes (icon_theme);
1859
1860   l = priv->themes;
1861   while (l != NULL)
1862     {
1863       theme = l->data;
1864       if (theme->example)
1865         return g_strdup (theme->example);
1866       
1867       l = l->next;
1868     }
1869   
1870   return NULL;
1871 }
1872
1873
1874 static gboolean
1875 rescan_themes (GtkIconTheme *icon_theme)
1876 {
1877   GtkIconThemePrivate *priv;
1878   IconThemeDirMtime *dir_mtime;
1879   GList *d;
1880   int stat_res;
1881   struct stat stat_buf;
1882   GTimeVal tv;
1883
1884   priv = icon_theme->priv;
1885
1886   for (d = priv->dir_mtimes; d != NULL; d = d->next)
1887     {
1888       dir_mtime = d->data;
1889
1890       stat_res = g_stat (dir_mtime->dir, &stat_buf);
1891
1892       /* dir mtime didn't change */
1893       if (stat_res == 0 &&
1894           S_ISDIR (stat_buf.st_mode) &&
1895           dir_mtime->mtime == stat_buf.st_mtime)
1896         continue;
1897       /* didn't exist before, and still doesn't */
1898       if (dir_mtime->mtime == 0 &&
1899           (stat_res != 0 || !S_ISDIR (stat_buf.st_mode)))
1900         continue;
1901
1902       return TRUE;
1903     }
1904
1905   g_get_current_time (&tv);
1906   priv->last_stat_time = tv.tv_sec;
1907
1908   return FALSE;
1909 }
1910
1911 /**
1912  * gtk_icon_theme_rescan_if_needed:
1913  * @icon_theme: a #GtkIconTheme
1914  * 
1915  * Checks to see if the icon theme has changed; if it has, any
1916  * currently cached information is discarded and will be reloaded
1917  * next time @icon_theme is accessed.
1918  * 
1919  * Return value: %TRUE if the icon theme has changed and needed
1920  *   to be reloaded.
1921  *
1922  * Since: 2.4
1923  **/
1924 gboolean
1925 gtk_icon_theme_rescan_if_needed (GtkIconTheme *icon_theme)
1926 {
1927   gboolean retval;
1928
1929   g_return_val_if_fail (GTK_IS_ICON_THEME (icon_theme), FALSE);
1930
1931   retval = rescan_themes (icon_theme);
1932   if (retval)
1933       do_theme_change (icon_theme);
1934
1935   return retval;
1936 }
1937
1938 static void
1939 theme_destroy (IconTheme *theme)
1940 {
1941   g_free (theme->display_name);
1942   g_free (theme->comment);
1943   g_free (theme->name);
1944   g_free (theme->example);
1945
1946   g_list_foreach (theme->dirs, (GFunc)theme_dir_destroy, NULL);
1947   g_list_free (theme->dirs);
1948   
1949   g_free (theme);
1950 }
1951
1952 static void
1953 theme_dir_destroy (IconThemeDir *dir)
1954 {
1955   if (dir->cache)
1956       _gtk_icon_cache_unref (dir->cache);
1957   else
1958     g_hash_table_destroy (dir->icons);
1959   
1960   if (dir->icon_data)
1961     g_hash_table_destroy (dir->icon_data);
1962   g_free (dir->dir);
1963   g_free (dir->subdir);
1964   g_free (dir);
1965 }
1966
1967 static int
1968 theme_dir_size_difference (IconThemeDir *dir, int size, gboolean *smaller)
1969 {
1970   int min, max;
1971   switch (dir->type)
1972     {
1973     case ICON_THEME_DIR_FIXED:
1974       *smaller = size < dir->size;
1975       return abs (size - dir->size);
1976       break;
1977     case ICON_THEME_DIR_SCALABLE:
1978       *smaller = size < dir->min_size;
1979       if (size < dir->min_size)
1980         return dir->min_size - size;
1981       if (size > dir->max_size)
1982         return size - dir->max_size;
1983       return 0;
1984       break;
1985     case ICON_THEME_DIR_THRESHOLD:
1986       min = dir->size - dir->threshold;
1987       max = dir->size + dir->threshold;
1988       *smaller = size < min;
1989       if (size < min)
1990         return min - size;
1991       if (size > max)
1992         return size - max;
1993       return 0;
1994       break;
1995     case ICON_THEME_DIR_UNTHEMED:
1996       g_assert_not_reached ();
1997       break;
1998     }
1999   g_assert_not_reached ();
2000   return 1000;
2001 }
2002
2003 static const char *
2004 string_from_suffix (IconSuffix suffix)
2005 {
2006   switch (suffix)
2007     {
2008     case ICON_SUFFIX_XPM:
2009       return ".xpm";
2010     case ICON_SUFFIX_SVG:
2011       return ".svg";
2012     case ICON_SUFFIX_PNG:
2013       return ".png";
2014     default:
2015       g_assert_not_reached();
2016     }
2017   return NULL;
2018 }
2019
2020 static IconSuffix
2021 suffix_from_name (const char *name)
2022 {
2023   IconSuffix retval;
2024
2025   if (g_str_has_suffix (name, ".png"))
2026     retval = ICON_SUFFIX_PNG;
2027   else if (g_str_has_suffix (name, ".svg"))
2028     retval = ICON_SUFFIX_SVG;
2029   else if (g_str_has_suffix (name, ".xpm"))
2030     retval = ICON_SUFFIX_XPM;
2031   else
2032     retval = ICON_SUFFIX_NONE;
2033
2034   return retval;
2035 }
2036
2037 static IconSuffix
2038 best_suffix (IconSuffix suffix,
2039              gboolean   allow_svg)
2040 {
2041   if ((suffix & ICON_SUFFIX_PNG) != 0)
2042     return ICON_SUFFIX_PNG;
2043   else if (allow_svg && ((suffix & ICON_SUFFIX_SVG) != 0))
2044     return ICON_SUFFIX_SVG;
2045   else if ((suffix & ICON_SUFFIX_XPM) != 0)
2046     return ICON_SUFFIX_XPM;
2047   else
2048     return ICON_SUFFIX_NONE;
2049 }
2050
2051
2052 static IconSuffix
2053 theme_dir_get_icon_suffix (IconThemeDir *dir,
2054                            const gchar  *icon_name,
2055                            gboolean     *has_icon_file)
2056 {
2057   IconSuffix suffix;
2058
2059   if (dir->cache)
2060     {
2061       suffix = (IconSuffix)_gtk_icon_cache_get_icon_flags (dir->cache,
2062                                                            icon_name,
2063                                                            dir->subdir_index);
2064
2065       if (has_icon_file)
2066         *has_icon_file = suffix & HAS_ICON_FILE;
2067
2068       suffix = suffix & ~HAS_ICON_FILE;
2069     }
2070   else
2071     suffix = GPOINTER_TO_UINT (g_hash_table_lookup (dir->icons, icon_name));
2072
2073   GTK_NOTE (ICONTHEME, 
2074             g_print ("get_icon_suffix%s %u\n", dir->cache ? " (cached)" : "", suffix));
2075
2076   return suffix;
2077 }
2078
2079 static GtkIconInfo *
2080 theme_lookup_icon (IconTheme          *theme,
2081                    const char         *icon_name,
2082                    int                 size,
2083                    gboolean            allow_svg,
2084                    gboolean            use_builtin)
2085 {
2086   GList *dirs, *l;
2087   IconThemeDir *dir, *min_dir;
2088   char *file;
2089   int min_difference, difference;
2090   BuiltinIcon *closest_builtin = NULL;
2091   gboolean smaller, has_larger, match;
2092   IconSuffix suffix;
2093
2094   min_difference = G_MAXINT;
2095   min_dir = NULL;
2096   has_larger = FALSE;
2097   match = FALSE;
2098
2099   /* Builtin icons are logically part of the default theme and
2100    * are searched before other subdirectories of the default theme.
2101    */
2102   if (use_builtin && strcmp (theme->name, DEFAULT_THEME_NAME) == 0)
2103     {
2104       closest_builtin = find_builtin_icon (icon_name, 
2105                                            size,
2106                                            &min_difference,
2107                                            &has_larger);
2108
2109       if (min_difference == 0)
2110         return icon_info_new_builtin (closest_builtin);
2111
2112       dirs = builtin_dirs;
2113     }
2114   else
2115     dirs = theme->dirs;
2116
2117   l = dirs;
2118   while (l != NULL)
2119     {
2120       dir = l->data;
2121
2122       GTK_NOTE (ICONTHEME,
2123                 g_print ("theme_lookup_icon dir %s\n", dir->dir));
2124       suffix = theme_dir_get_icon_suffix (dir, icon_name, NULL);
2125       if (best_suffix (suffix, allow_svg) != ICON_SUFFIX_NONE)
2126         {
2127           difference = theme_dir_size_difference (dir, size, &smaller);
2128
2129           if (difference == 0)
2130             {
2131               if (dir->type == ICON_THEME_DIR_SCALABLE)
2132                 {
2133                   /* don't pick scalable if we already found
2134                    * a matching non-scalable dir
2135                    */
2136                   if (!match)
2137                     {
2138                       min_dir = dir;
2139                       break;
2140                     }
2141                 }
2142               else
2143                 {
2144                   /* for a matching non-scalable dir keep
2145                    * going and look for a closer match
2146                    */             
2147                   difference = abs (size - dir->size);
2148                   if (!match || difference < min_difference)
2149                     {
2150                       match = TRUE;
2151                       min_difference = difference;
2152                       min_dir = dir;
2153                     }
2154                   if (difference == 0)
2155                     break;
2156                 }
2157             } 
2158   
2159           if (!match)
2160             {
2161               if (!has_larger)
2162                 {
2163                   if (difference < min_difference || smaller)
2164                     {
2165                       min_difference = difference;
2166                       min_dir = dir;
2167                       has_larger = smaller;
2168                     }
2169                 }
2170               else
2171                 {
2172                   if (difference < min_difference && smaller)
2173                     {
2174                       min_difference = difference;
2175                       min_dir = dir;
2176                     }
2177                 }
2178             }
2179         }
2180
2181       l = l->next;
2182
2183       if (l == NULL && dirs == builtin_dirs)
2184         {
2185           dirs = theme->dirs;
2186           l = dirs;
2187         }
2188     }
2189
2190   if (min_dir)
2191     {
2192       GtkIconInfo *icon_info = icon_info_new ();
2193       gboolean has_icon_file = FALSE;
2194       
2195       suffix = theme_dir_get_icon_suffix (min_dir, icon_name, &has_icon_file);
2196       suffix = best_suffix (suffix, allow_svg);
2197       g_assert (suffix != ICON_SUFFIX_NONE);
2198       
2199       if (min_dir->dir)
2200         {
2201           file = g_strconcat (icon_name, string_from_suffix (suffix), NULL);
2202           icon_info->filename = g_build_filename (min_dir->dir, file, NULL);
2203           g_free (file);
2204         }
2205       else
2206         {
2207           icon_info->filename = NULL;
2208         }
2209       
2210       if (min_dir->icon_data != NULL)
2211         icon_info->data = g_hash_table_lookup (min_dir->icon_data, icon_name);
2212
2213       if (icon_info->data == NULL && min_dir->cache != NULL)
2214         {
2215           icon_info->data = _gtk_icon_cache_get_icon_data (min_dir->cache, icon_name, min_dir->subdir_index);
2216           if (icon_info->data)
2217             {
2218               if (min_dir->icon_data == NULL)
2219                 min_dir->icon_data = g_hash_table_new_full (g_str_hash, g_str_equal,
2220                                                             g_free, (GDestroyNotify)icon_data_free);
2221
2222               g_hash_table_replace (min_dir->icon_data, g_strdup (icon_name), icon_info->data);
2223             }
2224         }
2225
2226       if (icon_info->data == NULL && has_icon_file)
2227         {
2228           gchar *icon_file_name, *icon_file_path;
2229
2230           icon_file_name = g_strconcat (icon_name, ".icon", NULL);
2231           icon_file_path = g_build_filename (min_dir->dir, icon_file_name, NULL);
2232
2233           if (g_file_test (icon_file_path, G_FILE_TEST_IS_REGULAR))
2234             {
2235               if (min_dir->icon_data == NULL)   
2236                 min_dir->icon_data = g_hash_table_new_full (g_str_hash, g_str_equal,
2237                                                             g_free, (GDestroyNotify)icon_data_free);
2238               load_icon_data (min_dir, icon_file_path, icon_file_name);
2239               
2240               icon_info->data = g_hash_table_lookup (min_dir->icon_data, icon_name);
2241             }
2242           g_free (icon_file_name);
2243           g_free (icon_file_path);
2244         }
2245
2246       if (min_dir->cache)
2247         {
2248           icon_info->cache_pixbuf = _gtk_icon_cache_get_icon (min_dir->cache, icon_name,
2249                                                               min_dir->subdir_index);
2250         }
2251
2252       icon_info->dir_type = min_dir->type;
2253       icon_info->dir_size = min_dir->size;
2254       icon_info->threshold = min_dir->threshold;
2255       
2256       return icon_info;
2257     }
2258
2259   if (closest_builtin)
2260     return icon_info_new_builtin (closest_builtin);
2261   
2262   return NULL;
2263 }
2264
2265 static void
2266 theme_list_icons (IconTheme  *theme, 
2267                   GHashTable *icons,
2268                   GQuark      context)
2269 {
2270   GList *l = theme->dirs;
2271   IconThemeDir *dir;
2272   
2273   while (l != NULL)
2274     {
2275       dir = l->data;
2276
2277       if (context == dir->context ||
2278           context == 0)
2279         {
2280           if (dir->cache)
2281             {
2282               _gtk_icon_cache_add_icons (dir->cache,
2283                                          dir->subdir,
2284                                          icons);
2285                                          
2286             }
2287           else
2288             {
2289               g_hash_table_foreach (dir->icons,
2290                                     add_key_to_hash,
2291                                     icons);
2292             }
2293         }
2294       l = l->next;
2295     }
2296 }
2297
2298 static void
2299 theme_list_contexts (IconTheme  *theme, 
2300                      GHashTable *contexts)
2301 {
2302   GList *l = theme->dirs;
2303   IconThemeDir *dir;
2304   const char *context;
2305
2306   while (l != NULL)
2307     {
2308       dir = l->data;
2309
2310       context = g_quark_to_string (dir->context);
2311       g_hash_table_replace (contexts, (gpointer) context, NULL);
2312
2313       l = l->next;
2314     }
2315 }
2316
2317 static void
2318 load_icon_data (IconThemeDir *dir, const char *path, const char *name)
2319 {
2320   GKeyFile *icon_file;
2321   char *base_name;
2322   char **split;
2323   gsize length;
2324   char *str;
2325   char *split_point;
2326   int i;
2327   gint *ivalues;
2328   GError *error = NULL;
2329   
2330   GtkIconData *data;
2331
2332   icon_file = g_key_file_new ();
2333   g_key_file_set_list_separator (icon_file, ',');
2334   g_key_file_load_from_file (icon_file, path, 0, &error);
2335   if (error)
2336     {
2337       g_error_free (error);
2338       g_key_file_free (icon_file);      
2339       return;
2340     }
2341   else
2342     {
2343       base_name = strip_suffix (name);
2344       
2345       data = g_slice_new0 (GtkIconData);
2346       g_hash_table_replace (dir->icon_data, base_name, data);
2347       
2348       ivalues = g_key_file_get_integer_list (icon_file, 
2349                                              "Icon Data", "EmbeddedTextRectangle",
2350                                               &length, NULL);
2351       if (ivalues)
2352         {
2353           if (length == 4)
2354             {
2355               data->has_embedded_rect = TRUE;
2356               data->x0 = ivalues[0];
2357               data->y0 = ivalues[1];
2358               data->x1 = ivalues[2];
2359               data->y1 = ivalues[3];
2360             }
2361           
2362           g_free (ivalues);
2363         }
2364       
2365       str = g_key_file_get_string (icon_file, "Icon Data", "AttachPoints", NULL);
2366       if (str)
2367         {
2368           split = g_strsplit (str, "|", -1);
2369           
2370           data->n_attach_points = g_strv_length (split);
2371           data->attach_points = g_new (GdkPoint, data->n_attach_points);
2372
2373           i = 0;
2374           while (split[i] != NULL && i < data->n_attach_points)
2375             {
2376               split_point = strchr (split[i], ',');
2377               if (split_point)
2378                 {
2379                   *split_point = 0;
2380                   split_point++;
2381                   data->attach_points[i].x = atoi (split[i]);
2382                   data->attach_points[i].y = atoi (split_point);
2383                 }
2384               i++;
2385             }
2386           
2387           g_strfreev (split);
2388           g_free (str);
2389         }
2390       
2391       data->display_name = g_key_file_get_locale_string (icon_file, 
2392                                                          "Icon Data", "DisplayName",
2393                                                          NULL, NULL);
2394       g_key_file_free (icon_file);
2395     }
2396 }
2397
2398 static void
2399 scan_directory (GtkIconThemePrivate *icon_theme,
2400                 IconThemeDir *dir, char *full_dir)
2401 {
2402   GDir *gdir;
2403   const char *name;
2404
2405   GTK_NOTE (ICONTHEME, 
2406             g_print ("scanning directory %s\n", full_dir));
2407   dir->icons = g_hash_table_new_full (g_str_hash, g_str_equal,
2408                                       g_free, NULL);
2409   
2410   gdir = g_dir_open (full_dir, 0, NULL);
2411
2412   if (gdir == NULL)
2413     return;
2414
2415   while ((name = g_dir_read_name (gdir)))
2416     {
2417       char *path;
2418       char *base_name;
2419       IconSuffix suffix, hash_suffix;
2420
2421       if (g_str_has_suffix (name, ".icon"))
2422         {
2423           if (dir->icon_data == NULL)
2424             dir->icon_data = g_hash_table_new_full (g_str_hash, g_str_equal,
2425                                                     g_free, (GDestroyNotify)icon_data_free);
2426           
2427           path = g_build_filename (full_dir, name, NULL);
2428           if (g_file_test (path, G_FILE_TEST_IS_REGULAR))
2429             load_icon_data (dir, path, name);
2430           
2431           g_free (path);
2432           
2433           continue;
2434         }
2435
2436       suffix = suffix_from_name (name);
2437       if (suffix == ICON_SUFFIX_NONE)
2438         continue;
2439
2440       base_name = strip_suffix (name);
2441
2442       hash_suffix = GPOINTER_TO_INT (g_hash_table_lookup (dir->icons, base_name));
2443       g_hash_table_replace (icon_theme->all_icons, base_name, NULL);
2444       g_hash_table_replace (dir->icons, base_name, GUINT_TO_POINTER (hash_suffix| suffix));
2445     }
2446   
2447   g_dir_close (gdir);
2448 }
2449
2450 static void
2451 theme_subdir_load (GtkIconTheme *icon_theme,
2452                    IconTheme    *theme,
2453                    GKeyFile     *theme_file,
2454                    char         *subdir)
2455 {
2456   GList *d;
2457   char *type_string;
2458   IconThemeDir *dir;
2459   IconThemeDirType type;
2460   char *context_string;
2461   GQuark context;
2462   int size;
2463   int min_size;
2464   int max_size;
2465   int threshold;
2466   char *full_dir;
2467   GError *error = NULL;
2468   IconThemeDirMtime *dir_mtime;
2469
2470   size = g_key_file_get_integer (theme_file, subdir, "Size", &error);
2471   if (error)
2472     {
2473       g_error_free (error);
2474       g_warning ("Theme directory %s of theme %s has no size field\n", 
2475                  subdir, theme->name);
2476       return;
2477     }
2478   
2479   type = ICON_THEME_DIR_THRESHOLD;
2480   type_string = g_key_file_get_string (theme_file, subdir, "Type", NULL);
2481   if (type_string)
2482     {
2483       if (strcmp (type_string, "Fixed") == 0)
2484         type = ICON_THEME_DIR_FIXED;
2485       else if (strcmp (type_string, "Scalable") == 0)
2486         type = ICON_THEME_DIR_SCALABLE;
2487       else if (strcmp (type_string, "Threshold") == 0)
2488         type = ICON_THEME_DIR_THRESHOLD;
2489
2490       g_free (type_string);
2491     }
2492   
2493   context = 0;
2494   context_string = g_key_file_get_string (theme_file, subdir, "Context", NULL);
2495   if (context_string)
2496     {
2497       context = g_quark_from_string (context_string);
2498       g_free (context_string);
2499     }
2500
2501   max_size = g_key_file_get_integer (theme_file, subdir, "MaxSize", &error);
2502   if (error)
2503     {
2504       max_size = size;
2505
2506       g_error_free (error);
2507       error = NULL;
2508     }
2509
2510   min_size = g_key_file_get_integer (theme_file, subdir, "MinSize", &error);
2511   if (error)
2512     {
2513       min_size = size;
2514
2515       g_error_free (error);
2516       error = NULL;
2517     }
2518   
2519   threshold = g_key_file_get_integer (theme_file, subdir, "Threshold", &error);
2520   if (error)
2521     {
2522       threshold = 2;
2523
2524       g_error_free (error);
2525       error = NULL;
2526     }
2527
2528   for (d = icon_theme->priv->dir_mtimes; d; d = d->next)
2529     {
2530       dir_mtime = (IconThemeDirMtime *)d->data;
2531
2532       if (dir_mtime->mtime == 0)
2533         continue; /* directory doesn't exist */
2534
2535        full_dir = g_build_filename (dir_mtime->dir, subdir, NULL);
2536
2537       /* First, see if we have a cache for the directory */
2538       if (dir_mtime->cache != NULL || g_file_test (full_dir, G_FILE_TEST_IS_DIR))
2539         {
2540           if (dir_mtime->cache == NULL)
2541             {
2542               /* This will return NULL if the cache doesn't exist or is outdated */
2543               dir_mtime->cache = _gtk_icon_cache_new_for_path (dir_mtime->dir);
2544             }
2545           
2546           dir = g_new (IconThemeDir, 1);
2547           dir->type = type;
2548           dir->context = context;
2549           dir->size = size;
2550           dir->min_size = min_size;
2551           dir->max_size = max_size;
2552           dir->threshold = threshold;
2553           dir->dir = full_dir;
2554           dir->icon_data = NULL;
2555           dir->subdir = g_strdup (subdir);
2556           if (dir_mtime->cache != NULL)
2557             {
2558               dir->cache = _gtk_icon_cache_ref (dir_mtime->cache);
2559               dir->subdir_index = _gtk_icon_cache_get_directory_index (dir->cache, dir->subdir);
2560             }
2561           else
2562             {
2563               dir->cache = NULL;
2564               dir->subdir_index = -1;
2565               scan_directory (icon_theme->priv, dir, full_dir);
2566             }
2567
2568           theme->dirs = g_list_prepend (theme->dirs, dir);
2569         }
2570       else
2571         g_free (full_dir);
2572     }
2573 }
2574
2575 static void
2576 icon_data_free (GtkIconData *icon_data)
2577 {
2578   g_free (icon_data->attach_points);
2579   g_free (icon_data->display_name);
2580   g_slice_free (GtkIconData, icon_data);
2581 }
2582
2583 /*
2584  * GtkIconInfo
2585  */
2586
2587 G_DEFINE_BOXED_TYPE (GtkIconInfo, gtk_icon_info,
2588                      gtk_icon_info_copy,
2589                      gtk_icon_info_free)
2590
2591 static GtkIconInfo *
2592 icon_info_new (void)
2593 {
2594   GtkIconInfo *icon_info = g_slice_new0 (GtkIconInfo);
2595
2596   icon_info->scale = -1.;
2597   icon_info->ref_count = 1;
2598
2599   return icon_info;
2600 }
2601
2602 static GtkIconInfo *
2603 icon_info_new_builtin (BuiltinIcon *icon)
2604 {
2605   GtkIconInfo *icon_info = icon_info_new ();
2606
2607   icon_info->cache_pixbuf = g_object_ref (icon->pixbuf);
2608   icon_info->dir_type = ICON_THEME_DIR_THRESHOLD;
2609   icon_info->dir_size = icon->size;
2610   icon_info->threshold = 2;
2611
2612   return icon_info;
2613 }
2614
2615 /**
2616  * gtk_icon_info_copy:
2617  * @icon_info: a #GtkIconInfo
2618  * 
2619  * Make a copy of a #GtkIconInfo.
2620  * 
2621  * Return value: the new GtkIconInfo
2622  *
2623  * Since: 2.4
2624  **/
2625 GtkIconInfo *
2626 gtk_icon_info_copy (GtkIconInfo *icon_info)
2627 {
2628   
2629   g_return_val_if_fail (icon_info != NULL, NULL);
2630
2631   icon_info->ref_count++;
2632
2633   return icon_info;
2634 }
2635
2636 /**
2637  * gtk_icon_info_free:
2638  * @icon_info: a #GtkIconInfo
2639  * 
2640  * Free a #GtkIconInfo and associated information
2641  *
2642  * Since: 2.4
2643  **/
2644 void
2645 gtk_icon_info_free (GtkIconInfo *icon_info)
2646 {
2647   g_return_if_fail (icon_info != NULL);
2648
2649   icon_info->ref_count--;
2650   if (icon_info->ref_count > 0)
2651     return;
2652  
2653   g_free (icon_info->filename);
2654   if (icon_info->loadable)
2655     g_object_unref (icon_info->loadable);
2656   g_slist_foreach (icon_info->emblem_infos, (GFunc)gtk_icon_info_free, NULL);
2657   g_slist_free (icon_info->emblem_infos);
2658   if (icon_info->pixbuf)
2659     g_object_unref (icon_info->pixbuf);
2660   if (icon_info->cache_pixbuf)
2661     g_object_unref (icon_info->cache_pixbuf);
2662
2663   g_slice_free (GtkIconInfo, icon_info);
2664 }
2665
2666 /**
2667  * gtk_icon_info_get_base_size:
2668  * @icon_info: a #GtkIconInfo
2669  * 
2670  * Gets the base size for the icon. The base size
2671  * is a size for the icon that was specified by
2672  * the icon theme creator. This may be different
2673  * than the actual size of image; an example of
2674  * this is small emblem icons that can be attached
2675  * to a larger icon. These icons will be given
2676  * the same base size as the larger icons to which
2677  * they are attached.
2678  * 
2679  * Return value: the base size, or 0, if no base
2680  *  size is known for the icon.
2681  *
2682  * Since: 2.4
2683  **/
2684 gint
2685 gtk_icon_info_get_base_size (GtkIconInfo *icon_info)
2686 {
2687   g_return_val_if_fail (icon_info != NULL, 0);
2688
2689   return icon_info->dir_size;
2690 }
2691
2692 /**
2693  * gtk_icon_info_get_filename:
2694  * @icon_info: a #GtkIconInfo
2695  * 
2696  * Gets the filename for the icon. If the
2697  * %GTK_ICON_LOOKUP_USE_BUILTIN flag was passed
2698  * to gtk_icon_theme_lookup_icon(), there may be
2699  * no filename if a builtin icon is returned; in this
2700  * case, you should use gtk_icon_info_get_builtin_pixbuf().
2701  * 
2702  * Return value: the filename for the icon, or %NULL
2703  *  if gtk_icon_info_get_builtin_pixbuf() should
2704  *  be used instead. The return value is owned by
2705  *  GTK+ and should not be modified or freed.
2706  *
2707  * Since: 2.4
2708  **/
2709 G_CONST_RETURN gchar *
2710 gtk_icon_info_get_filename (GtkIconInfo *icon_info)
2711 {
2712   g_return_val_if_fail (icon_info != NULL, NULL);
2713
2714   return icon_info->filename;
2715 }
2716
2717 /**
2718  * gtk_icon_info_get_builtin_pixbuf:
2719  * @icon_info: a #GtkIconInfo structure
2720  * 
2721  * Gets the built-in image for this icon, if any. To allow
2722  * GTK+ to use built in icon images, you must pass the
2723  * %GTK_ICON_LOOKUP_USE_BUILTIN to
2724  * gtk_icon_theme_lookup_icon().
2725  *
2726  * Return value: (transfer none): the built-in image pixbuf, or %NULL. No
2727  *  extra reference is added to the returned pixbuf, so if
2728  *  you want to keep it around, you must use g_object_ref().
2729  *  The returned image must not be modified.
2730  *
2731  * Since: 2.4
2732  **/
2733 GdkPixbuf *
2734 gtk_icon_info_get_builtin_pixbuf (GtkIconInfo *icon_info)
2735 {
2736   g_return_val_if_fail (icon_info != NULL, NULL);
2737
2738   if (icon_info->filename)
2739     return NULL;
2740   
2741   return icon_info->cache_pixbuf;
2742 }
2743
2744 static gboolean icon_info_ensure_scale_and_pixbuf (GtkIconInfo*, gboolean);
2745
2746 /* Combine the icon with all emblems, the first emblem is placed 
2747  * in the southeast corner. Scale emblems to be at most 3/4 of the
2748  * size of the icon itself.
2749  */
2750 static void 
2751 apply_emblems (GtkIconInfo *info)
2752 {
2753   GdkPixbuf *icon = NULL;
2754   gint w, h, pos;
2755   GSList *l;
2756
2757   if (info->emblem_infos == NULL)
2758     return;
2759
2760   w = gdk_pixbuf_get_width (info->pixbuf);
2761   h = gdk_pixbuf_get_height (info->pixbuf);
2762
2763   for (l = info->emblem_infos, pos = 0; l; l = l->next, pos++)
2764     {
2765       GtkIconInfo *emblem_info = l->data;
2766
2767       if (icon_info_ensure_scale_and_pixbuf (emblem_info, FALSE))
2768         {
2769           GdkPixbuf *emblem = emblem_info->pixbuf;
2770           gint ew, eh;
2771           gint x = 0, y = 0; /* silence compiler */
2772           gdouble scale;
2773
2774           ew = gdk_pixbuf_get_width (emblem);
2775           eh = gdk_pixbuf_get_height (emblem);
2776           if (ew >= w)
2777             {
2778               scale = 0.75;
2779               ew = ew * 0.75;
2780               eh = eh * 0.75;
2781             }
2782           else
2783             scale = 1.0;
2784
2785           switch (pos % 4)
2786             {
2787             case 0:
2788               x = w - ew;
2789               y = h - eh;
2790               break;
2791             case 1:
2792               x = w - ew;
2793               y = 0;
2794               break;
2795             case 2:
2796               x = 0;
2797               y = h - eh;
2798               break;
2799             case 3:
2800               x = 0;
2801               y = 0;
2802               break;
2803             }
2804
2805           if (icon == NULL)
2806             {
2807               icon = gdk_pixbuf_copy (info->pixbuf);
2808               if (icon == NULL)
2809                 break;
2810             }
2811
2812           gdk_pixbuf_composite (emblem, icon, x, y, ew, eh, x, y,
2813                                 scale, scale, GDK_INTERP_BILINEAR, 255);
2814        }
2815    }
2816
2817   if (icon)
2818     {
2819       g_object_unref (info->pixbuf);
2820       info->pixbuf = icon;
2821     }
2822 }
2823
2824 /* This function contains the complicated logic for deciding
2825  * on the size at which to load the icon and loading it at
2826  * that size.
2827  */
2828 static gboolean
2829 icon_info_ensure_scale_and_pixbuf (GtkIconInfo  *icon_info,
2830                                    gboolean      scale_only)
2831 {
2832   int image_width, image_height;
2833   GdkPixbuf *source_pixbuf;
2834   gboolean is_svg;
2835
2836   /* First check if we already succeeded have the necessary
2837    * information (or failed earlier)
2838    */
2839   if (scale_only && icon_info->scale >= 0)
2840     return TRUE;
2841
2842   if (icon_info->pixbuf)
2843     return TRUE;
2844
2845   if (icon_info->load_error)
2846     return FALSE;
2847
2848   /* SVG icons are a special case - we just immediately scale them
2849    * to the desired size
2850    */
2851   if (icon_info->filename && !icon_info->loadable) 
2852     {
2853       GFile *file;
2854
2855       file = g_file_new_for_path (icon_info->filename);
2856       icon_info->loadable = G_LOADABLE_ICON (g_file_icon_new (file));
2857       g_object_unref (file);
2858     }
2859
2860   is_svg = FALSE;
2861   if (G_IS_FILE_ICON (icon_info->loadable))
2862     {
2863       GFile *file;
2864       GFileInfo *file_info;
2865       const gchar *content_type;
2866
2867       file = g_file_icon_get_file (G_FILE_ICON (icon_info->loadable));
2868       file_info = g_file_query_info (file, 
2869                                      G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE,
2870                                      G_FILE_QUERY_INFO_NONE,
2871                                      NULL, NULL);
2872       if (file_info) 
2873         {
2874           content_type = g_file_info_get_content_type (file_info);
2875
2876           if (content_type && strcmp (content_type, "image/svg+xml") == 0)
2877             is_svg = TRUE;
2878
2879           g_object_unref (file_info);
2880        }
2881     }
2882
2883   if (is_svg)
2884     {
2885       GInputStream *stream;
2886
2887       icon_info->scale = icon_info->desired_size / 1000.;
2888
2889       if (scale_only)
2890         return TRUE;
2891       
2892       stream = g_loadable_icon_load (icon_info->loadable,
2893                                      icon_info->desired_size,
2894                                      NULL, NULL,
2895                                      &icon_info->load_error);
2896       if (stream)
2897         {
2898           icon_info->pixbuf = gdk_pixbuf_new_from_stream_at_scale (stream,
2899                                                                    icon_info->desired_size,
2900                                                                    icon_info->desired_size,
2901                                                                    TRUE,
2902                                                                    NULL,
2903                                                                    &icon_info->load_error);
2904           g_object_unref (stream);
2905         }
2906
2907       if (!icon_info->pixbuf)
2908         return FALSE;
2909
2910       apply_emblems (icon_info);
2911         
2912       return TRUE;
2913     }
2914
2915   /* In many cases, the scale can be determined without actual access
2916    * to the icon file. This is generally true when we have a size
2917    * for the directory where the icon is; the image size doesn't
2918    * matter in that case.
2919    */
2920   if (icon_info->forced_size)
2921     icon_info->scale = -1;
2922   else if (icon_info->dir_type == ICON_THEME_DIR_FIXED)
2923     icon_info->scale = 1.0;
2924   else if (icon_info->dir_type == ICON_THEME_DIR_THRESHOLD)
2925     {
2926       if (icon_info->desired_size >= icon_info->dir_size - icon_info->threshold &&
2927           icon_info->desired_size <= icon_info->dir_size + icon_info->threshold)
2928         icon_info->scale = 1.0;
2929       else if (icon_info->dir_size > 0)
2930         icon_info->scale =(gdouble) icon_info->desired_size / icon_info->dir_size;
2931     }
2932   else if (icon_info->dir_type == ICON_THEME_DIR_SCALABLE)
2933     {
2934       if (icon_info->dir_size > 0)
2935         icon_info->scale = (gdouble) icon_info->desired_size / icon_info->dir_size;
2936     }
2937
2938   if (icon_info->scale >= 0. && scale_only)
2939     return TRUE;
2940
2941   /* At this point, we need to actually get the icon; either from the
2942    * builtin image or by loading the file
2943    */
2944   source_pixbuf = NULL;
2945   if (icon_info->cache_pixbuf)
2946     source_pixbuf = g_object_ref (icon_info->cache_pixbuf);
2947   else
2948     {
2949       GInputStream *stream;
2950
2951       stream = g_loadable_icon_load (icon_info->loadable,
2952                                      icon_info->desired_size,
2953                                      NULL, NULL,
2954                                      &icon_info->load_error);
2955       if (stream)
2956         {
2957           source_pixbuf = gdk_pixbuf_new_from_stream (stream,
2958                                                       NULL,
2959                                                       &icon_info->load_error);
2960           g_object_unref (stream);
2961         }
2962     }
2963
2964   if (!source_pixbuf)
2965     return FALSE;
2966
2967   /* Do scale calculations that depend on the image size
2968    */
2969   image_width = gdk_pixbuf_get_width (source_pixbuf);
2970   image_height = gdk_pixbuf_get_height (source_pixbuf);
2971
2972   if (icon_info->scale < 0.0)
2973     {
2974       gint image_size = MAX (image_width, image_height);
2975       if (image_size > 0)
2976         icon_info->scale = (gdouble)icon_info->desired_size / (gdouble)image_size;
2977       else
2978         icon_info->scale = 1.0;
2979       
2980       if (icon_info->dir_type == ICON_THEME_DIR_UNTHEMED && 
2981           !icon_info->forced_size)
2982         icon_info->scale = MIN (icon_info->scale, 1.0);
2983     }
2984
2985   /* We don't short-circuit out here for scale_only, since, now
2986    * we've loaded the icon, we might as well go ahead and finish
2987    * the job. This is a bit of a waste when we scale here
2988    * and never get the final pixbuf; at the cost of a bit of
2989    * extra complexity, we could keep the source pixbuf around
2990    * but not actually scale it until needed.
2991    */
2992   if (icon_info->scale == 1.0)
2993     icon_info->pixbuf = source_pixbuf;
2994   else
2995     {
2996       icon_info->pixbuf = gdk_pixbuf_scale_simple (source_pixbuf,
2997                                                    0.5 + image_width * icon_info->scale,
2998                                                    0.5 + image_height * icon_info->scale,
2999                                                    GDK_INTERP_BILINEAR);
3000       g_object_unref (source_pixbuf);
3001     }
3002
3003   apply_emblems (icon_info);
3004
3005   return TRUE;
3006 }
3007
3008 /**
3009  * gtk_icon_info_load_icon:
3010  * @icon_info: a #GtkIconInfo structure from gtk_icon_theme_lookup_icon()
3011  * @error: (allow-none): location to store error information on failure,
3012  *     or %NULL.
3013  *
3014  * Renders an icon previously looked up in an icon theme using
3015  * gtk_icon_theme_lookup_icon(); the size will be based on the size
3016  * passed to gtk_icon_theme_lookup_icon(). Note that the resulting
3017  * pixbuf may not be exactly this size; an icon theme may have icons
3018  * that differ slightly from their nominal sizes, and in addition GTK+
3019  * will avoid scaling icons that it considers sufficiently close to the
3020  * requested size or for which the source image would have to be scaled
3021  * up too far. (This maintains sharpness.). This behaviour can be changed
3022  * by passing the %GTK_ICON_LOOKUP_FORCE_SIZE flag when obtaining
3023  * the #GtkIconInfo. If this flag has been specified, the pixbuf
3024  * returned by this function will be scaled to the exact size.
3025  *
3026  * Return value: (transfer full): the rendered icon; this may be a newly
3027  *     created icon or a new reference to an internal icon, so you must
3028  *     not modify the icon. Use g_object_unref() to release your reference
3029  *     to the icon.
3030  *
3031  * Since: 2.4
3032  **/
3033 GdkPixbuf *
3034 gtk_icon_info_load_icon (GtkIconInfo *icon_info,
3035                          GError     **error)
3036 {
3037   g_return_val_if_fail (icon_info != NULL, NULL);
3038   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
3039
3040   if (!icon_info_ensure_scale_and_pixbuf (icon_info, FALSE))
3041     {
3042       if (icon_info->load_error)
3043         g_propagate_error (error, icon_info->load_error);
3044       else
3045         g_set_error_literal (error,  
3046                              GTK_ICON_THEME_ERROR,  
3047                              GTK_ICON_THEME_NOT_FOUND,
3048                              _("Failed to load icon"));
3049  
3050       return NULL;
3051     }
3052
3053   return g_object_ref (icon_info->pixbuf);
3054 }
3055
3056 static gchar *
3057 gdk_color_to_css (GdkColor *color)
3058 {
3059   return g_strdup_printf ("rgb(%d,%d,%d)",
3060                           color->red >> 8,
3061                           color->green >> 8,
3062                           color->blue >> 8);
3063 }
3064
3065 static GdkPixbuf *
3066 _gtk_icon_info_load_symbolic_internal (GtkIconInfo  *icon_info,
3067                                        const gchar  *css_fg,
3068                                        const gchar  *css_success,
3069                                        const gchar  *css_warning,
3070                                        const gchar  *css_error,
3071                                        GError      **error)
3072 {
3073   GInputStream *stream;
3074   GdkPixbuf *pixbuf;
3075   gchar *data;
3076   gchar *success, *warning, *err;
3077
3078   /* css_fg can't possibly have failed, otherwise
3079    * that would mean we have a broken style */
3080   g_return_val_if_fail (css_fg != NULL, NULL);
3081
3082   success = warning = err = NULL;
3083
3084   if (!css_success)
3085     {
3086       GdkColor success_default_color = { 0, 0x4e00, 0x9a00, 0x0600 };
3087       success = gdk_color_to_css (&success_default_color);
3088     }
3089   if (!css_warning)
3090     {
3091       GdkColor warning_default_color = { 0, 0xf500, 0x7900, 0x3e00 };
3092       warning = gdk_color_to_css (&warning_default_color);
3093     }
3094   if (!css_error)
3095     {
3096       GdkColor error_default_color = { 0, 0xcc00, 0x0000, 0x0000 };
3097       err = gdk_color_to_css (&error_default_color);
3098     }
3099
3100
3101   data = g_strconcat ("<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n"
3102                       "<svg version=\"1.1\"\n"
3103                       "     xmlns=\"http://www.w3.org/2000/svg\"\n"
3104                       "     xmlns:xi=\"http://www.w3.org/2001/XInclude\"\n"
3105                       "     width=\"16\"\n"
3106                       "     height=\"16\">\n"
3107                       "  <style type=\"text/css\">\n"
3108                       "    rect,path {\n"
3109                       "      fill: ", css_fg," !important;\n"
3110                       "    }\n"
3111                       "    .warning {\n"
3112                       "      fill: ", css_warning ? css_warning : warning," !important;\n"
3113                       "    }\n"
3114                       "    .error {\n"
3115                       "      fill: ", css_error ? css_error : err," !important;\n"
3116                       "    }\n"
3117                       "    .success {\n"
3118                       "      fill: ", css_success ? css_success : success," !important;\n"
3119                       "    }\n"
3120                       "  </style>\n"
3121                       "  <xi:include href=\"", icon_info->filename, "\"/>\n"
3122                       "</svg>",
3123                       NULL);
3124   g_free (warning);
3125   g_free (err);
3126   g_free (success);
3127
3128   stream = g_memory_input_stream_new_from_data (data, -1, g_free);
3129   pixbuf = gdk_pixbuf_new_from_stream_at_scale (stream,
3130                                                 icon_info->desired_size,
3131                                                 icon_info->desired_size,
3132                                                 TRUE,
3133                                                 NULL,
3134                                                 error);
3135   g_object_unref (stream);
3136
3137   return pixbuf;
3138 }
3139
3140 /**
3141  * gtk_icon_info_load_symbolic:
3142  * @icon_info: a #GtkIconInfo
3143  * @fg: a #GdkRGBA representing the foreground color of the icon
3144  * @success_color: (allow-none): a #GdkRGBA representing the warning color
3145  *     of the icon or %NULL to use the default color
3146  * @warning_color: (allow-none): a #GdkRGBA representing the warning color
3147  *     of the icon or %NULL to use the default color
3148  * @error_color: (allow-none): a #GdkRGBA representing the error color
3149  *     of the icon or %NULL to use the default color (allow-none)
3150  * @was_symbolic: (allow-none): a #gboolean, returns whether the loaded icon
3151  *     was a symbolic one and whether the @fg color was applied to it.
3152  * @error: (allow-none): location to store error information on failure,
3153  *     or %NULL.
3154  *
3155  * Loads an icon, modifying it to match the system colours for the foreground,
3156  * success, warning and error colors provided. If the icon is not a symbolic
3157  * one, the function will return the result from gtk_icon_info_load_icon().
3158  *
3159  * This allows loading symbolic icons that will match the system theme.
3160  *
3161  * Unless you are implementing a widget, you will want to use
3162  * g_themed_icon_new_with_default_fallbacks() to load the icon.
3163  *
3164  * As implementation details, the icon loaded needs to be of SVG type,
3165  * contain the "symbolic" term as the last component of the icon name,
3166  * and use the 'fg', 'success', 'warning' and 'error' CSS styles in the
3167  * SVG file itself.
3168  *
3169  * See the <ulink url="http://www.freedesktop.org/wiki/SymbolicIcons">Symbolic Icons spec</ulink>
3170  * for more information about symbolic icons.
3171  *
3172  * Return value: (transfer full): a #GdkPixbuf representing the loaded icon
3173  *
3174  * Since: 3.0
3175  **/
3176 GdkPixbuf *
3177 gtk_icon_info_load_symbolic (GtkIconInfo  *icon_info,
3178                              GdkRGBA      *fg,
3179                              GdkRGBA      *success_color,
3180                              GdkRGBA      *warning_color,
3181                              GdkRGBA      *error_color,
3182                              gboolean     *was_symbolic,
3183                              GError      **error)
3184 {
3185   GdkPixbuf *pixbuf;
3186   gchar *css_fg;
3187   gchar *css_success;
3188   gchar *css_warning;
3189   gchar *css_error;
3190
3191   g_return_val_if_fail (fg != NULL, NULL);
3192
3193   if (!icon_info->filename ||
3194       !g_str_has_suffix (icon_info->filename, "-symbolic.svg"))
3195     {
3196       if (was_symbolic)
3197         *was_symbolic = FALSE;
3198       return gtk_icon_info_load_icon (icon_info, error);
3199     }
3200
3201   if (was_symbolic)
3202     *was_symbolic = TRUE;
3203
3204   css_fg = gdk_rgba_to_string (fg);
3205
3206   css_success = css_warning = css_error = NULL;
3207
3208   if (warning_color)
3209     css_warning = gdk_rgba_to_string (warning_color);
3210
3211   if (error_color)
3212     css_error = gdk_rgba_to_string (error_color);
3213
3214   if (success_color)
3215     css_success = gdk_rgba_to_string (success_color);
3216
3217   pixbuf = _gtk_icon_info_load_symbolic_internal (icon_info,
3218                                                   css_fg, css_success,
3219                                                   css_warning, css_error,
3220                                                   error);
3221   g_free (css_fg);
3222   g_free (css_warning);
3223   g_free (css_success);
3224   g_free (css_error);
3225
3226   return pixbuf;
3227 }
3228
3229 /**
3230  * gtk_icon_info_load_symbolic_for_style:
3231  * @icon_info: a #GtkIconInfo
3232  * @style: a #GtkStyle to take the colors from
3233  * @state: the widget state to use for colors
3234  * @was_symbolic: (allow-none): a #gboolean, returns whether the loaded icon
3235  *     was a symbolic one and whether the @fg color was applied to it.
3236  * @error: (allow-none): location to store error information on failure,
3237  *     or %NULL.
3238  *
3239  * Loads an icon, modifying it to match the system colours for the foreground,
3240  * success, warning and error colors provided. If the icon is not a symbolic
3241  * one, the function will return the result from gtk_icon_info_load_icon().
3242  *
3243  * This allows loading symbolic icons that will match the system theme.
3244  *
3245  * See gtk_icon_info_load_symbolic() for more details.
3246  *
3247  * Return value: (transfer full): a #GdkPixbuf representing the loaded icon
3248  *
3249  * Since: 3.0
3250  **/
3251 GdkPixbuf *
3252 gtk_icon_info_load_symbolic_for_style (GtkIconInfo   *icon_info,
3253                                        GtkStyle      *style,
3254                                        GtkStateType   state,
3255                                        gboolean      *was_symbolic,
3256                                        GError       **error)
3257 {
3258   GdkPixbuf *pixbuf;
3259   GdkColor success_color;
3260   GdkColor warning_color;
3261   GdkColor error_color;
3262   GdkColor *fg;
3263   gchar *css_fg, *css_success;
3264   gchar *css_warning, *css_error;
3265
3266   if (!icon_info->filename ||
3267       !g_str_has_suffix (icon_info->filename, "-symbolic.svg"))
3268     {
3269       if (was_symbolic)
3270         *was_symbolic = FALSE;
3271       return gtk_icon_info_load_icon (icon_info, error);
3272     }
3273
3274   if (was_symbolic)
3275     *was_symbolic = TRUE;
3276
3277   fg = &style->fg[state];
3278   css_fg = gdk_color_to_css (fg);
3279
3280   css_success = css_warning = css_error = NULL;
3281
3282   if (gtk_style_lookup_color (style, "success_color", &success_color))
3283     css_success = gdk_color_to_css (&success_color);
3284
3285   if (gtk_style_lookup_color (style, "warning_color", &warning_color))
3286     css_warning = gdk_color_to_css (&warning_color);
3287
3288   if (gtk_style_lookup_color (style, "error_color", &error_color))
3289     css_error = gdk_color_to_css (&error_color);
3290
3291   pixbuf = _gtk_icon_info_load_symbolic_internal (icon_info,
3292                                                   css_fg, css_success,
3293                                                   css_warning, css_error,
3294                                                   error);
3295
3296   g_free (css_fg);
3297   g_free (css_success);
3298   g_free (css_warning);
3299   g_free (css_error);
3300
3301   return pixbuf;
3302 }
3303
3304 /**
3305  * gtk_icon_info_set_raw_coordinates:
3306  * @icon_info: a #GtkIconInfo
3307  * @raw_coordinates: whether the coordinates of embedded rectangles
3308  *   and attached points should be returned in their original
3309  *   (unscaled) form.
3310  * 
3311  * Sets whether the coordinates returned by gtk_icon_info_get_embedded_rect()
3312  * and gtk_icon_info_get_attach_points() should be returned in their
3313  * original form as specified in the icon theme, instead of scaled
3314  * appropriately for the pixbuf returned by gtk_icon_info_load_icon().
3315  *
3316  * Raw coordinates are somewhat strange; they are specified to be with
3317  * respect to the unscaled pixmap for PNG and XPM icons, but for SVG
3318  * icons, they are in a 1000x1000 coordinate space that is scaled
3319  * to the final size of the icon.  You can determine if the icon is an SVG
3320  * icon by using gtk_icon_info_get_filename(), and seeing if it is non-%NULL
3321  * and ends in '.svg'.
3322  *
3323  * This function is provided primarily to allow compatibility wrappers
3324  * for older API's, and is not expected to be useful for applications.
3325  *
3326  * Since: 2.4
3327  **/
3328 void
3329 gtk_icon_info_set_raw_coordinates (GtkIconInfo *icon_info,
3330                                    gboolean     raw_coordinates)
3331 {
3332   g_return_if_fail (icon_info != NULL);
3333   
3334   icon_info->raw_coordinates = raw_coordinates != FALSE;
3335 }
3336
3337 /* Scale coordinates from the icon data prior to returning
3338  * them to the user.
3339  */
3340 static gboolean
3341 icon_info_scale_point (GtkIconInfo  *icon_info,
3342                        gint          x,
3343                        gint          y,
3344                        gint         *x_out,
3345                        gint         *y_out)
3346 {
3347   if (icon_info->raw_coordinates)
3348     {
3349       *x_out = x;
3350       *y_out = y;
3351     }
3352   else
3353     {
3354       if (!icon_info_ensure_scale_and_pixbuf (icon_info, TRUE))
3355         return FALSE;
3356
3357       *x_out = 0.5 + x * icon_info->scale;
3358       *y_out = 0.5 + y * icon_info->scale;
3359     }
3360
3361   return TRUE;
3362 }
3363
3364 /**
3365  * gtk_icon_info_get_embedded_rect:
3366  * @icon_info: a #GtkIconInfo
3367  * @rectangle: #GdkRectangle in which to store embedded
3368  *   rectangle coordinates; coordinates are only stored
3369  *   when this function returns %TRUE.
3370  *
3371  * Gets the coordinates of a rectangle within the icon
3372  * that can be used for display of information such
3373  * as a preview of the contents of a text file.
3374  * See gtk_icon_info_set_raw_coordinates() for further
3375  * information about the coordinate system.
3376  * 
3377  * Return value: %TRUE if the icon has an embedded rectangle
3378  *
3379  * Since: 2.4
3380  **/
3381 gboolean
3382 gtk_icon_info_get_embedded_rect (GtkIconInfo  *icon_info,
3383                                  GdkRectangle *rectangle)
3384 {
3385   g_return_val_if_fail (icon_info != NULL, FALSE);
3386
3387   if (icon_info->data && icon_info->data->has_embedded_rect &&
3388       icon_info_ensure_scale_and_pixbuf (icon_info, TRUE))
3389     {
3390       gint scaled_x0, scaled_y0;
3391       gint scaled_x1, scaled_y1;
3392       
3393       if (rectangle)
3394         {
3395           icon_info_scale_point (icon_info,
3396                                  icon_info->data->x0, icon_info->data->y0,
3397                                  &scaled_x0, &scaled_y0);
3398           icon_info_scale_point (icon_info,
3399                                  icon_info->data->x1, icon_info->data->y1,
3400                                  &scaled_x1, &scaled_y1);
3401           
3402           rectangle->x = scaled_x0;
3403           rectangle->y = scaled_y0;
3404           rectangle->width = scaled_x1 - rectangle->x;
3405           rectangle->height = scaled_y1 - rectangle->y;
3406         }
3407
3408       return TRUE;
3409     }
3410   else
3411     return FALSE;
3412 }
3413
3414 /**
3415  * gtk_icon_info_get_attach_points:
3416  * @icon_info: a #GtkIconInfo
3417  * @points: (allow-none) (array length=n_points) (out): location to store pointer to an array of points, or %NULL
3418  *          free the array of points with g_free().
3419  * @n_points: (allow-none): location to store the number of points in @points, or %NULL
3420  * 
3421  * Fetches the set of attach points for an icon. An attach point
3422  * is a location in the icon that can be used as anchor points for attaching
3423  * emblems or overlays to the icon.
3424  * 
3425  * Return value: %TRUE if there are any attach points for the icon.
3426  *
3427  * Since: 2.4
3428  **/
3429 gboolean
3430 gtk_icon_info_get_attach_points (GtkIconInfo *icon_info,
3431                                  GdkPoint   **points,
3432                                  gint        *n_points)
3433 {
3434   g_return_val_if_fail (icon_info != NULL, FALSE);
3435   
3436   if (icon_info->data && icon_info->data->n_attach_points &&
3437       icon_info_ensure_scale_and_pixbuf (icon_info, TRUE))
3438     {
3439       if (points)
3440         {
3441           gint i;
3442           
3443           *points = g_new (GdkPoint, icon_info->data->n_attach_points);
3444           for (i = 0; i < icon_info->data->n_attach_points; i++)
3445             icon_info_scale_point (icon_info,
3446                                    icon_info->data->attach_points[i].x,
3447                                    icon_info->data->attach_points[i].y,
3448                                    &(*points)[i].x,
3449                                    &(*points)[i].y);
3450         }
3451           
3452       if (n_points)
3453         *n_points = icon_info->data->n_attach_points;
3454
3455       return TRUE;
3456     }
3457   else
3458     {
3459       if (points)
3460         *points = NULL;
3461       if (n_points)
3462         *n_points = 0;
3463       
3464       return FALSE;
3465     }
3466 }
3467
3468 /**
3469  * gtk_icon_info_get_display_name:
3470  * @icon_info: a #GtkIconInfo
3471  * 
3472  * Gets the display name for an icon. A display name is a
3473  * string to be used in place of the icon name in a user
3474  * visible context like a list of icons.
3475  * 
3476  * Return value: the display name for the icon or %NULL, if
3477  *  the icon doesn't have a specified display name. This value
3478  *  is owned @icon_info and must not be modified or free.
3479  *
3480  * Since: 2.4
3481  **/
3482 G_CONST_RETURN gchar *
3483 gtk_icon_info_get_display_name (GtkIconInfo *icon_info)
3484 {
3485   g_return_val_if_fail (icon_info != NULL, NULL);
3486
3487   if (icon_info->data)
3488     return icon_info->data->display_name;
3489   else
3490     return NULL;
3491 }
3492
3493 /*
3494  * Builtin icons
3495  */
3496
3497
3498 /**
3499  * gtk_icon_theme_add_builtin_icon:
3500  * @icon_name: the name of the icon to register
3501  * @size: the size at which to register the icon (different
3502  *        images can be registered for the same icon name
3503  *        at different sizes.)
3504  * @pixbuf: #GdkPixbuf that contains the image to use
3505  *          for @icon_name.
3506  * 
3507  * Registers a built-in icon for icon theme lookups. The idea
3508  * of built-in icons is to allow an application or library
3509  * that uses themed icons to function requiring files to
3510  * be present in the file system. For instance, the default
3511  * images for all of GTK+'s stock icons are registered
3512  * as built-icons.
3513  *
3514  * In general, if you use gtk_icon_theme_add_builtin_icon()
3515  * you should also install the icon in the icon theme, so
3516  * that the icon is generally available.
3517  *
3518  * This function will generally be used with pixbufs loaded
3519  * via gdk_pixbuf_new_from_inline().
3520  *
3521  * Since: 2.4
3522  **/
3523 void
3524 gtk_icon_theme_add_builtin_icon (const gchar *icon_name,
3525                                  gint         size,
3526                                  GdkPixbuf   *pixbuf)
3527 {
3528   BuiltinIcon *default_icon;
3529   GSList *icons;
3530   gpointer key;
3531
3532   g_return_if_fail (icon_name != NULL);
3533   g_return_if_fail (GDK_IS_PIXBUF (pixbuf));
3534   
3535   if (!icon_theme_builtin_icons)
3536     icon_theme_builtin_icons = g_hash_table_new (g_str_hash, g_str_equal);
3537
3538   icons = g_hash_table_lookup (icon_theme_builtin_icons, icon_name);
3539   if (!icons)
3540     key = g_strdup (icon_name);
3541   else
3542     key = (gpointer)icon_name;  /* Won't get stored */
3543
3544   default_icon = g_new (BuiltinIcon, 1);
3545   default_icon->size = size;
3546   default_icon->pixbuf = g_object_ref (pixbuf);
3547   icons = g_slist_prepend (icons, default_icon);
3548
3549   /* Replaces value, leaves key untouched
3550    */
3551   g_hash_table_insert (icon_theme_builtin_icons, key, icons);
3552 }
3553
3554 /* Look up a builtin icon; the min_difference_p and
3555  * has_larger_p out parameters allow us to combine
3556  * this lookup with searching through the actual directories
3557  * of the "hicolor" icon theme. See theme_lookup_icon()
3558  * for how they are used.
3559  */
3560 static BuiltinIcon *
3561 find_builtin_icon (const gchar *icon_name,
3562                    gint         size,
3563                    gint        *min_difference_p,
3564                    gboolean    *has_larger_p)
3565 {
3566   GSList *icons = NULL;
3567   gint min_difference = G_MAXINT;
3568   gboolean has_larger = FALSE;
3569   BuiltinIcon *min_icon = NULL;
3570   
3571   if (!icon_theme_builtin_icons)
3572     return NULL;
3573
3574   icons = g_hash_table_lookup (icon_theme_builtin_icons, icon_name);
3575
3576   while (icons)
3577     {
3578       BuiltinIcon *default_icon = icons->data;
3579       int min, max, difference;
3580       gboolean smaller;
3581       
3582       min = default_icon->size - 2;
3583       max = default_icon->size + 2;
3584       smaller = size < min;
3585       if (size < min)
3586         difference = min - size;
3587       else if (size > max)
3588         difference = size - max;
3589       else
3590         difference = 0;
3591       
3592       if (difference == 0)
3593         {
3594           min_icon = default_icon;
3595           break;
3596         }
3597       
3598       if (!has_larger)
3599         {
3600           if (difference < min_difference || smaller)
3601             {
3602               min_difference = difference;
3603               min_icon = default_icon;
3604               has_larger = smaller;
3605             }
3606         }
3607       else
3608         {
3609           if (difference < min_difference && smaller)
3610             {
3611               min_difference = difference;
3612               min_icon = default_icon;
3613             }
3614         }
3615       
3616       icons = icons->next;
3617     }
3618
3619   if (min_difference_p)
3620     *min_difference_p = min_difference;
3621   if (has_larger_p)
3622     *has_larger_p = has_larger;
3623
3624   return min_icon;
3625 }
3626
3627 void
3628 _gtk_icon_theme_check_reload (GdkDisplay *display)
3629 {
3630   gint n_screens, i;
3631   GdkScreen *screen;
3632   GtkIconTheme *icon_theme;
3633
3634   n_screens = gdk_display_get_n_screens (display);
3635   
3636   for (i = 0; i < n_screens; i++)
3637     {
3638       screen = gdk_display_get_screen (display, i);
3639
3640       icon_theme = g_object_get_data (G_OBJECT (screen), "gtk-icon-theme");
3641       if (icon_theme)
3642         {
3643           icon_theme->priv->check_reload = TRUE;
3644           ensure_valid_themes (icon_theme);
3645           icon_theme->priv->check_reload = FALSE;
3646         }
3647     }
3648 }
3649
3650
3651 /**
3652  * gtk_icon_theme_lookup_by_gicon:
3653  * @icon_theme: a #GtkIconTheme
3654  * @icon: the #GIcon to look up
3655  * @size: desired icon size
3656  * @flags: flags modifying the behavior of the icon lookup
3657  * 
3658  * Looks up an icon and returns a structure containing
3659  * information such as the filename of the icon. 
3660  * The icon can then be rendered into a pixbuf using
3661  * gtk_icon_info_load_icon().
3662  *
3663  * Return value: a #GtkIconInfo structure containing 
3664  *     information about the icon, or %NULL if the icon 
3665  *     wasn't found. Free with gtk_icon_info_free()
3666  *
3667  * Since: 2.14
3668  */
3669 GtkIconInfo *
3670 gtk_icon_theme_lookup_by_gicon (GtkIconTheme       *icon_theme,
3671                                 GIcon              *icon,
3672                                 gint                size,
3673                                 GtkIconLookupFlags  flags)
3674 {
3675   GtkIconInfo *info;
3676
3677   g_return_val_if_fail (GTK_IS_ICON_THEME (icon_theme), NULL);
3678   g_return_val_if_fail (G_IS_ICON (icon), NULL);
3679
3680   if (G_IS_LOADABLE_ICON (icon))
3681     {
3682       info = icon_info_new ();
3683       info->loadable = G_LOADABLE_ICON (g_object_ref (icon));
3684
3685       info->dir_type = ICON_THEME_DIR_UNTHEMED;
3686       info->dir_size = size;
3687       info->desired_size = size;
3688       info->threshold = 2;
3689       info->forced_size = (flags & GTK_ICON_LOOKUP_FORCE_SIZE) != 0;
3690
3691       return info;
3692     }
3693   else if (G_IS_THEMED_ICON (icon))
3694     {
3695       const gchar **names;
3696
3697       names = (const gchar **)g_themed_icon_get_names (G_THEMED_ICON (icon));
3698       info = gtk_icon_theme_choose_icon (icon_theme, names, size, flags);
3699
3700       return info;
3701     }
3702   else if (G_IS_EMBLEMED_ICON (icon))
3703     {
3704       GIcon *base, *emblem;
3705       GList *list, *l;
3706       GtkIconInfo *emblem_info;
3707
3708       base = g_emblemed_icon_get_icon (G_EMBLEMED_ICON (icon));
3709       info = gtk_icon_theme_lookup_by_gicon (icon_theme, base, size, flags);
3710       if (info)
3711         {
3712           list = g_emblemed_icon_get_emblems (G_EMBLEMED_ICON (icon));
3713           for (l = list; l; l = l->next)
3714             {
3715               emblem = g_emblem_get_icon (G_EMBLEM (l->data));
3716               emblem_info = gtk_icon_theme_lookup_by_gicon (icon_theme, emblem, size / 2, flags);
3717               if (emblem_info)
3718                 info->emblem_infos = g_slist_prepend (info->emblem_infos, emblem_info);
3719             }
3720         }
3721
3722       return info;
3723     }
3724
3725   return NULL;
3726 }
3727
3728 /**
3729  * gtk_icon_info_new_for_pixbuf:
3730  * @icon_theme: a #GtkIconTheme
3731  * @pixbuf: the pixbuf to wrap in a #GtkIconInfo
3732  *
3733  * Creates a #GtkIconInfo for a #GdkPixbuf.
3734  *
3735  * Returns: a #GtkIconInfo
3736  *
3737  * Since: 2.14
3738  */
3739 GtkIconInfo *
3740 gtk_icon_info_new_for_pixbuf (GtkIconTheme *icon_theme,
3741                               GdkPixbuf    *pixbuf)
3742 {
3743   GtkIconInfo *info;
3744
3745   g_return_val_if_fail (GTK_IS_ICON_THEME (icon_theme), NULL);
3746   g_return_val_if_fail (GDK_IS_PIXBUF (pixbuf), NULL);
3747
3748   info = icon_info_new ();
3749   info->pixbuf = g_object_ref (pixbuf);
3750   info->scale = 1.0;
3751   info->dir_type = ICON_THEME_DIR_UNTHEMED;
3752
3753   return info;
3754 }