]> Pileus Git - ~andy/gtk/blob - gtk/gtkiconcache.h
Add pointer warping to GDK. (#160437)
[~andy/gtk] / gtk / gtkiconcache.h
1 /* gtkiconcache.h
2  * Copyright (C) 2004  Anders Carlsson <andersca@gnome.org>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library 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  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library 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 #ifndef __GTK_ICON_CACHE_H__
20 #define __GTK_ICON_CACHE_H__
21
22 #include <gdk-pixbuf/gdk-pixbuf.h>
23
24 typedef struct _GtkIconCache GtkIconCache;
25
26 GtkIconCache *_gtk_icon_cache_new_for_path   (const gchar  *path);
27 gboolean      _gtk_icon_cache_has_directory  (GtkIconCache *cache,
28                                               const gchar  *directory);
29 gboolean      _gtk_icon_cache_has_icon       (GtkIconCache *cache,
30                                               const gchar  *icon_name);
31 void          _gtk_icon_cache_add_icons      (GtkIconCache *cache,
32                                               const gchar  *directory,
33                                               GHashTable   *hash_table);
34
35 gint          _gtk_icon_cache_get_icon_flags (GtkIconCache *cache,
36                                               const gchar  *icon_name,
37                                               const gchar  *directory);
38
39 GtkIconCache *_gtk_icon_cache_ref            (GtkIconCache *cache);
40 void          _gtk_icon_cache_unref          (GtkIconCache *cache);
41
42
43 #endif /* __GTK_ICON_CACHE_H__ */