summaryrefslogtreecommitdiff
path: root/gtk/gtkiconcache.h
blob: da3c95ab9f266ff27108b5270b441833fc90d164 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* gtkiconcache.h
 * Copyright (C) 2004  Anders Carlsson <andersca@gnome.org>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 */
#ifndef __GTK_ICON_CACHE_H__
#define __GTK_ICON_CACHE_H__

#include <gdk-pixbuf/gdk-pixbuf.h>
#include <gdk/gdk.h>

typedef struct _GtkIconCache GtkIconCache;

GtkIconCache *_gtk_icon_cache_new            (const gchar  *data);
GtkIconCache *_gtk_icon_cache_new_for_path   (const gchar  *path);
gint          _gtk_icon_cache_get_directory_index  (GtkIconCache *cache,
					            const gchar  *directory);
gboolean      _gtk_icon_cache_has_icon       (GtkIconCache *cache,
					      const gchar  *icon_name);
gboolean      _gtk_icon_cache_has_icon_in_directory (GtkIconCache *cache,
					             const gchar  *icon_name,
					             const gchar  *directory);
gboolean      _gtk_icon_cache_has_icons      (GtkIconCache *cache,
                                              const gchar  *directory);
void	      _gtk_icon_cache_add_icons      (GtkIconCache *cache,
					      const gchar  *directory,
					      GHashTable   *hash_table);

gint          _gtk_icon_cache_get_icon_flags (GtkIconCache *cache,
					      const gchar  *icon_name,
					      gint          directory_index);
GdkPixbuf    *_gtk_icon_cache_get_icon       (GtkIconCache *cache,
					      const gchar  *icon_name,
					      gint          directory_index);

GtkIconCache *_gtk_icon_cache_ref            (GtkIconCache *cache);
void          _gtk_icon_cache_unref          (GtkIconCache *cache);


#endif /* __GTK_ICON_CACHE_H__ */