2004-10-19 18:45:41 +00:00
|
|
|
/* 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, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
#ifndef __GTK_ICON_CACHE_H__
|
|
|
|
#define __GTK_ICON_CACHE_H__
|
|
|
|
|
|
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
Update spec.
2005-03-15 Anders Carlsson <andersca@imendio.com>
* docs/iconcache.txt:
Update spec.
* gtk/gtkiconcache.c: (find_image_offset),
(_gtk_icon_cache_get_icon_flags), (_gtk_icon_cache_add_icons),
(_gtk_icon_cache_get_icon), (_gtk_icon_cache_get_icon_data):
* gtk/gtkiconcache.h:
Update to be able to fetch pixbuf data and icon metadata.
* gtk/gtkicontheme.c: (theme_lookup_icon), (gtk_icon_info_free),
(icon_info_ensure_scale_and_pixbuf):
Use new cache functions.
* gtk/updateiconcache.c: (foreach_remove_func), (load_icon_data),
(maybe_cache_image_data), (scan_directory), (write_pixdata),
(get_image_meta_data_size), (get_image_pixel_data_size),
(get_image_data_size), (get_single_node_size), (get_bucket_size),
(write_bucket), (main):
Update to write pixbuf data as well as information from .icon
files.
2005-03-15 13:18:25 +00:00
|
|
|
#include <gdk/gdk.h>
|
2004-10-19 18:45:41 +00:00
|
|
|
|
|
|
|
typedef struct _GtkIconCache GtkIconCache;
|
Update spec.
2005-03-15 Anders Carlsson <andersca@imendio.com>
* docs/iconcache.txt:
Update spec.
* gtk/gtkiconcache.c: (find_image_offset),
(_gtk_icon_cache_get_icon_flags), (_gtk_icon_cache_add_icons),
(_gtk_icon_cache_get_icon), (_gtk_icon_cache_get_icon_data):
* gtk/gtkiconcache.h:
Update to be able to fetch pixbuf data and icon metadata.
* gtk/gtkicontheme.c: (theme_lookup_icon), (gtk_icon_info_free),
(icon_info_ensure_scale_and_pixbuf):
Use new cache functions.
* gtk/updateiconcache.c: (foreach_remove_func), (load_icon_data),
(maybe_cache_image_data), (scan_directory), (write_pixdata),
(get_image_meta_data_size), (get_image_pixel_data_size),
(get_image_data_size), (get_single_node_size), (get_bucket_size),
(write_bucket), (main):
Update to write pixbuf data as well as information from .icon
files.
2005-03-15 13:18:25 +00:00
|
|
|
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;
|
|
|
|
};
|
2004-10-19 18:45:41 +00:00
|
|
|
|
2005-11-04 15:43:40 +00:00
|
|
|
GtkIconCache *_gtk_icon_cache_new (const gchar *data);
|
2004-10-19 18:45:41 +00:00
|
|
|
GtkIconCache *_gtk_icon_cache_new_for_path (const gchar *path);
|
2007-12-03 17:44:27 +00:00
|
|
|
gint _gtk_icon_cache_get_directory_index (GtkIconCache *cache,
|
|
|
|
const gchar *directory);
|
2004-10-21 18:44:08 +00:00
|
|
|
gboolean _gtk_icon_cache_has_icon (GtkIconCache *cache,
|
|
|
|
const gchar *icon_name);
|
2005-11-04 15:43:40 +00:00
|
|
|
gboolean _gtk_icon_cache_has_icon_in_directory (GtkIconCache *cache,
|
|
|
|
const gchar *icon_name,
|
|
|
|
const gchar *directory);
|
2004-10-19 18:45:41 +00:00
|
|
|
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,
|
2007-12-03 17:44:27 +00:00
|
|
|
gint directory_index);
|
Update spec.
2005-03-15 Anders Carlsson <andersca@imendio.com>
* docs/iconcache.txt:
Update spec.
* gtk/gtkiconcache.c: (find_image_offset),
(_gtk_icon_cache_get_icon_flags), (_gtk_icon_cache_add_icons),
(_gtk_icon_cache_get_icon), (_gtk_icon_cache_get_icon_data):
* gtk/gtkiconcache.h:
Update to be able to fetch pixbuf data and icon metadata.
* gtk/gtkicontheme.c: (theme_lookup_icon), (gtk_icon_info_free),
(icon_info_ensure_scale_and_pixbuf):
Use new cache functions.
* gtk/updateiconcache.c: (foreach_remove_func), (load_icon_data),
(maybe_cache_image_data), (scan_directory), (write_pixdata),
(get_image_meta_data_size), (get_image_pixel_data_size),
(get_image_data_size), (get_single_node_size), (get_bucket_size),
(write_bucket), (main):
Update to write pixbuf data as well as information from .icon
files.
2005-03-15 13:18:25 +00:00
|
|
|
GdkPixbuf *_gtk_icon_cache_get_icon (GtkIconCache *cache,
|
|
|
|
const gchar *icon_name,
|
2007-12-03 17:44:27 +00:00
|
|
|
gint directory_index);
|
Update spec.
2005-03-15 Anders Carlsson <andersca@imendio.com>
* docs/iconcache.txt:
Update spec.
* gtk/gtkiconcache.c: (find_image_offset),
(_gtk_icon_cache_get_icon_flags), (_gtk_icon_cache_add_icons),
(_gtk_icon_cache_get_icon), (_gtk_icon_cache_get_icon_data):
* gtk/gtkiconcache.h:
Update to be able to fetch pixbuf data and icon metadata.
* gtk/gtkicontheme.c: (theme_lookup_icon), (gtk_icon_info_free),
(icon_info_ensure_scale_and_pixbuf):
Use new cache functions.
* gtk/updateiconcache.c: (foreach_remove_func), (load_icon_data),
(maybe_cache_image_data), (scan_directory), (write_pixdata),
(get_image_meta_data_size), (get_image_pixel_data_size),
(get_image_data_size), (get_single_node_size), (get_bucket_size),
(write_bucket), (main):
Update to write pixbuf data as well as information from .icon
files.
2005-03-15 13:18:25 +00:00
|
|
|
GtkIconData *_gtk_icon_cache_get_icon_data (GtkIconCache *cache,
|
|
|
|
const gchar *icon_name,
|
2007-12-03 17:44:27 +00:00
|
|
|
gint directory_index);
|
2004-10-19 18:45:41 +00:00
|
|
|
|
|
|
|
GtkIconCache *_gtk_icon_cache_ref (GtkIconCache *cache);
|
|
|
|
void _gtk_icon_cache_unref (GtkIconCache *cache);
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GTK_ICON_CACHE_H__ */
|