]> Pileus Git - ~andy/gtk/blobdiff - gtk/gtkiconcache.h
Updated Norwegian bokmål translation
[~andy/gtk] / gtk / gtkiconcache.h
index 010ebfe939fda739b9d7bf42457b15134149e301..1b09cb6865fd74d861501cfce12dac0eb956f486 100644 (file)
 #define __GTK_ICON_CACHE_H__
 
 #include <gdk-pixbuf/gdk-pixbuf.h>
+#include <gdk/gdk.h>
 
 typedef struct _GtkIconCache GtkIconCache;
+typedef struct _GtkIconData GtkIconData;
 
+struct _GtkIconData
+{
+  gboolean has_embedded_rect;
+  gint x0, y0, x1, y1;
+  
+  GdkPoint *attach_points;
+  gint n_attach_points;
+
+  gchar *display_name;
+};
+
+GtkIconCache *_gtk_icon_cache_new            (const gchar  *data);
 GtkIconCache *_gtk_icon_cache_new_for_path   (const gchar  *path);
-gboolean      _gtk_icon_cache_has_directory  (GtkIconCache *cache,
-                                             const gchar  *directory);
+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);
 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,
-                                             const gchar  *directory);
+                                             gint          directory_index);
+GdkPixbuf    *_gtk_icon_cache_get_icon       (GtkIconCache *cache,
+                                             const gchar  *icon_name,
+                                             gint          directory_index);
+GtkIconData  *_gtk_icon_cache_get_icon_data  (GtkIconCache *cache,
+                                             const gchar  *icon_name,
+                                             gint          directory_index);
 
 GtkIconCache *_gtk_icon_cache_ref            (GtkIconCache *cache);
 void          _gtk_icon_cache_unref          (GtkIconCache *cache);