2003-07-02 22:44:09 +00:00
|
|
|
|
/* GtkIconTheme - a loader for icon themes
|
|
|
|
|
* gtk-icon-loader.h Copyright (C) 2002, 2003 Red Hat, Inc.
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Lesser 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
|
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2003-07-02 22:44:09 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2012-12-28 14:57:34 +00:00
|
|
|
|
#ifndef __GTK_ICON_THEME_H__
|
|
|
|
|
#define __GTK_ICON_THEME_H__
|
|
|
|
|
|
2009-10-21 18:30:04 +00:00
|
|
|
|
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
2008-05-28 15:07:04 +00:00
|
|
|
|
#error "Only <gtk/gtk.h> can be included directly."
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-07-02 22:44:09 +00:00
|
|
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
2008-04-18 14:56:23 +00:00
|
|
|
|
#include <gdk/gdk.h>
|
2010-11-24 19:40:31 +00:00
|
|
|
|
#include <gtk/gtkstylecontext.h>
|
2003-07-02 22:44:09 +00:00
|
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
2003-12-24 06:32:28 +00:00
|
|
|
|
#define GTK_TYPE_ICON_INFO (gtk_icon_info_get_type ())
|
2013-02-13 14:05:02 +00:00
|
|
|
|
#define GTK_ICON_INFO(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_ICON_INFO, GtkIconInfo))
|
|
|
|
|
#define GTK_ICON_INFO_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_ICON_INFO, GtkIconInfoClass))
|
|
|
|
|
#define GTK_IS_ICON_INFO(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_ICON_INFO))
|
|
|
|
|
#define GTK_IS_ICON_INFO_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_ICON_INFO))
|
|
|
|
|
#define GTK_ICON_INFO_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_ICON_INFO, GtkIconInfoClass))
|
2003-07-02 22:44:09 +00:00
|
|
|
|
|
|
|
|
|
#define GTK_TYPE_ICON_THEME (gtk_icon_theme_get_type ())
|
|
|
|
|
#define GTK_ICON_THEME(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_ICON_THEME, GtkIconTheme))
|
|
|
|
|
#define GTK_ICON_THEME_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_ICON_THEME, GtkIconThemeClass))
|
|
|
|
|
#define GTK_IS_ICON_THEME(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_ICON_THEME))
|
|
|
|
|
#define GTK_IS_ICON_THEME_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_ICON_THEME))
|
2004-06-22 14:26:42 +00:00
|
|
|
|
#define GTK_ICON_THEME_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_ICON_THEME, GtkIconThemeClass))
|
2003-07-02 22:44:09 +00:00
|
|
|
|
|
2011-04-14 21:07:29 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkIconInfo:
|
|
|
|
|
*
|
|
|
|
|
* Contains information found when looking up an icon in
|
|
|
|
|
* an icon theme.
|
|
|
|
|
*/
|
2003-07-02 22:44:09 +00:00
|
|
|
|
typedef struct _GtkIconInfo GtkIconInfo;
|
2013-02-13 14:05:02 +00:00
|
|
|
|
typedef struct _GtkIconInfoClass GtkIconInfoClass;
|
2003-07-02 22:44:09 +00:00
|
|
|
|
typedef struct _GtkIconTheme GtkIconTheme;
|
|
|
|
|
typedef struct _GtkIconThemeClass GtkIconThemeClass;
|
|
|
|
|
typedef struct _GtkIconThemePrivate GtkIconThemePrivate;
|
|
|
|
|
|
2011-04-14 21:07:29 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkIconTheme:
|
|
|
|
|
*
|
|
|
|
|
* Acts as a database of information about an icon theme.
|
|
|
|
|
* Normally, you retrieve the icon theme for a particular
|
|
|
|
|
* screen using gtk_icon_theme_get_for_screen() and it
|
|
|
|
|
* will contain information about current icon theme for
|
|
|
|
|
* that screen, but you can also create a new #GtkIconTheme
|
2014-01-21 21:15:28 +00:00
|
|
|
|
* object and set the icon theme name explicitly using
|
2011-04-14 21:07:29 +00:00
|
|
|
|
* gtk_icon_theme_set_custom_theme().
|
|
|
|
|
*/
|
2003-07-02 22:44:09 +00:00
|
|
|
|
struct _GtkIconTheme
|
|
|
|
|
{
|
|
|
|
|
/*< private >*/
|
|
|
|
|
GObject parent_instance;
|
|
|
|
|
|
2010-06-22 14:42:00 +00:00
|
|
|
|
GtkIconThemePrivate *priv;
|
2003-07-02 22:44:09 +00:00
|
|
|
|
};
|
|
|
|
|
|
2014-01-17 20:17:45 +00:00
|
|
|
|
/**
|
|
|
|
|
* GtkIconThemeClass:
|
|
|
|
|
* @parent_class: The parent class.
|
|
|
|
|
* @changed: Signal emitted when the current icon theme is switched or
|
|
|
|
|
* GTK+ detects that a change has occurred in the contents of the
|
|
|
|
|
* current icon theme.
|
|
|
|
|
*/
|
2003-07-02 22:44:09 +00:00
|
|
|
|
struct _GtkIconThemeClass
|
|
|
|
|
{
|
|
|
|
|
GObjectClass parent_class;
|
|
|
|
|
|
2014-01-17 20:17:45 +00:00
|
|
|
|
/*< public >*/
|
|
|
|
|
|
2003-07-02 22:44:09 +00:00
|
|
|
|
void (* changed) (GtkIconTheme *icon_theme);
|
2011-01-25 21:29:00 +00:00
|
|
|
|
|
2014-01-17 20:17:45 +00:00
|
|
|
|
/*< private >*/
|
|
|
|
|
|
2011-01-25 21:29:00 +00:00
|
|
|
|
/* Padding for future expansion */
|
|
|
|
|
void (*_gtk_reserved1) (void);
|
|
|
|
|
void (*_gtk_reserved2) (void);
|
|
|
|
|
void (*_gtk_reserved3) (void);
|
|
|
|
|
void (*_gtk_reserved4) (void);
|
2003-07-02 22:44:09 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GtkIconLookupFlags:
|
2014-01-21 18:19:47 +00:00
|
|
|
|
* @GTK_ICON_LOOKUP_NO_SVG: Never get SVG icons, even if gdk-pixbuf
|
2003-07-02 22:44:09 +00:00
|
|
|
|
* supports them. Cannot be used together with %GTK_ICON_LOOKUP_FORCE_SVG.
|
2014-01-21 18:19:47 +00:00
|
|
|
|
* @GTK_ICON_LOOKUP_FORCE_SVG: Get SVG icons, even if gdk-pixbuf
|
2014-02-07 18:32:47 +00:00
|
|
|
|
* doesn’t support them.
|
2003-07-02 22:44:09 +00:00
|
|
|
|
* Cannot be used together with %GTK_ICON_LOOKUP_NO_SVG.
|
|
|
|
|
* @GTK_ICON_LOOKUP_USE_BUILTIN: When passed to
|
|
|
|
|
* gtk_icon_theme_lookup_icon() includes builtin icons
|
2004-11-10 02:03:36 +00:00
|
|
|
|
* as well as files. For a builtin icon, gtk_icon_info_get_filename()
|
2014-01-21 18:19:47 +00:00
|
|
|
|
* is %NULL and you need to call gtk_icon_info_get_builtin_pixbuf().
|
2007-04-19 04:14:39 +00:00
|
|
|
|
* @GTK_ICON_LOOKUP_GENERIC_FALLBACK: Try to shorten icon name at '-'
|
2007-05-18 20:19:12 +00:00
|
|
|
|
* characters before looking at inherited themes. For more general
|
|
|
|
|
* fallback, see gtk_icon_theme_choose_icon(). Since 2.12.
|
2014-01-21 00:15:34 +00:00
|
|
|
|
* @GTK_ICON_LOOKUP_FORCE_SIZE: Always get the icon scaled to the
|
2008-05-29 14:33:49 +00:00
|
|
|
|
* requested size. Since 2.14.
|
2014-05-11 00:30:50 +00:00
|
|
|
|
* @GTK_ICON_LOOKUP_FORCE_REGULAR: Try to always load regular icons, even
|
|
|
|
|
* when symbolic icon names are given. Since 3.14.
|
|
|
|
|
* @GTK_ICON_LOOKUP_FORCE_SYMBOLIC: Try to always load symbolic icons, even
|
|
|
|
|
* when regular icon names are given. Since 3.14.
|
2014-05-14 01:34:49 +00:00
|
|
|
|
* @GTK_ICON_LOOKUP_DIR_LTR: Try to load a variant of the icon for left-to-right
|
|
|
|
|
* text direction. Since 3.14.
|
|
|
|
|
* @GTK_ICON_LOOKUP_DIR_RTL: Try to load a variant of the icon for right-to-left
|
|
|
|
|
* text direction. Since 3.14.
|
2003-07-02 22:44:09 +00:00
|
|
|
|
*
|
|
|
|
|
* Used to specify options for gtk_icon_theme_lookup_icon()
|
2014-01-21 03:57:10 +00:00
|
|
|
|
*/
|
2003-07-02 22:44:09 +00:00
|
|
|
|
typedef enum
|
|
|
|
|
{
|
2008-05-29 14:33:49 +00:00
|
|
|
|
GTK_ICON_LOOKUP_NO_SVG = 1 << 0,
|
|
|
|
|
GTK_ICON_LOOKUP_FORCE_SVG = 1 << 1,
|
|
|
|
|
GTK_ICON_LOOKUP_USE_BUILTIN = 1 << 2,
|
|
|
|
|
GTK_ICON_LOOKUP_GENERIC_FALLBACK = 1 << 3,
|
2014-05-10 13:35:12 +00:00
|
|
|
|
GTK_ICON_LOOKUP_FORCE_SIZE = 1 << 4,
|
|
|
|
|
GTK_ICON_LOOKUP_FORCE_REGULAR = 1 << 5,
|
2014-05-14 01:34:49 +00:00
|
|
|
|
GTK_ICON_LOOKUP_FORCE_SYMBOLIC = 1 << 6,
|
|
|
|
|
GTK_ICON_LOOKUP_DIR_LTR = 1 << 7,
|
|
|
|
|
GTK_ICON_LOOKUP_DIR_RTL = 1 << 8
|
2003-07-02 22:44:09 +00:00
|
|
|
|
} GtkIconLookupFlags;
|
|
|
|
|
|
2011-04-14 21:07:29 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_ICON_THEME_ERROR:
|
|
|
|
|
*
|
|
|
|
|
* The #GQuark used for #GtkIconThemeError errors.
|
|
|
|
|
*/
|
2003-07-02 22:44:09 +00:00
|
|
|
|
#define GTK_ICON_THEME_ERROR gtk_icon_theme_error_quark ()
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GtkIconThemeError:
|
|
|
|
|
* @GTK_ICON_THEME_NOT_FOUND: The icon specified does not exist in the theme
|
|
|
|
|
* @GTK_ICON_THEME_FAILED: An unspecified error occurred.
|
|
|
|
|
*
|
|
|
|
|
* Error codes for GtkIconTheme operations.
|
|
|
|
|
**/
|
|
|
|
|
typedef enum {
|
|
|
|
|
GTK_ICON_THEME_NOT_FOUND,
|
|
|
|
|
GTK_ICON_THEME_FAILED
|
|
|
|
|
} GtkIconThemeError;
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2004-11-23 20:02:15 +00:00
|
|
|
|
GQuark gtk_icon_theme_error_quark (void);
|
2003-07-02 22:44:09 +00:00
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-07-02 22:44:09 +00:00
|
|
|
|
GType gtk_icon_theme_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-07-02 22:44:09 +00:00
|
|
|
|
GtkIconTheme *gtk_icon_theme_new (void);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-07-02 22:44:09 +00:00
|
|
|
|
GtkIconTheme *gtk_icon_theme_get_default (void);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-07-02 22:44:09 +00:00
|
|
|
|
GtkIconTheme *gtk_icon_theme_get_for_screen (GdkScreen *screen);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-07-02 22:44:09 +00:00
|
|
|
|
void gtk_icon_theme_set_screen (GtkIconTheme *icon_theme,
|
|
|
|
|
GdkScreen *screen);
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-07-02 22:44:09 +00:00
|
|
|
|
void gtk_icon_theme_set_search_path (GtkIconTheme *icon_theme,
|
|
|
|
|
const gchar *path[],
|
|
|
|
|
gint n_elements);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-07-02 22:44:09 +00:00
|
|
|
|
void gtk_icon_theme_get_search_path (GtkIconTheme *icon_theme,
|
|
|
|
|
gchar **path[],
|
|
|
|
|
gint *n_elements);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-07-02 22:44:09 +00:00
|
|
|
|
void gtk_icon_theme_append_search_path (GtkIconTheme *icon_theme,
|
|
|
|
|
const gchar *path);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-07-02 22:44:09 +00:00
|
|
|
|
void gtk_icon_theme_prepend_search_path (GtkIconTheme *icon_theme,
|
|
|
|
|
const gchar *path);
|
|
|
|
|
|
2014-06-20 04:46:09 +00:00
|
|
|
|
GDK_AVAILABLE_IN_3_14
|
|
|
|
|
void gtk_icon_theme_add_resource_path (GtkIconTheme *icon_theme,
|
|
|
|
|
const gchar *path);
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-07-02 22:44:09 +00:00
|
|
|
|
void gtk_icon_theme_set_custom_theme (GtkIconTheme *icon_theme,
|
|
|
|
|
const gchar *theme_name);
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-07-02 22:44:09 +00:00
|
|
|
|
gboolean gtk_icon_theme_has_icon (GtkIconTheme *icon_theme,
|
|
|
|
|
const gchar *icon_name);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2004-07-17 03:55:07 +00:00
|
|
|
|
gint *gtk_icon_theme_get_icon_sizes (GtkIconTheme *icon_theme,
|
|
|
|
|
const gchar *icon_name);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-07-02 22:44:09 +00:00
|
|
|
|
GtkIconInfo * gtk_icon_theme_lookup_icon (GtkIconTheme *icon_theme,
|
|
|
|
|
const gchar *icon_name,
|
|
|
|
|
gint size,
|
|
|
|
|
GtkIconLookupFlags flags);
|
2013-05-10 16:06:00 +00:00
|
|
|
|
GDK_AVAILABLE_IN_3_10
|
|
|
|
|
GtkIconInfo * gtk_icon_theme_lookup_icon_for_scale (GtkIconTheme *icon_theme,
|
|
|
|
|
const gchar *icon_name,
|
|
|
|
|
gint size,
|
|
|
|
|
gint scale,
|
|
|
|
|
GtkIconLookupFlags flags);
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2007-05-18 20:19:12 +00:00
|
|
|
|
GtkIconInfo * gtk_icon_theme_choose_icon (GtkIconTheme *icon_theme,
|
|
|
|
|
const gchar *icon_names[],
|
|
|
|
|
gint size,
|
|
|
|
|
GtkIconLookupFlags flags);
|
2013-05-10 16:06:00 +00:00
|
|
|
|
GDK_AVAILABLE_IN_3_10
|
|
|
|
|
GtkIconInfo * gtk_icon_theme_choose_icon_for_scale (GtkIconTheme *icon_theme,
|
|
|
|
|
const gchar *icon_names[],
|
|
|
|
|
gint size,
|
|
|
|
|
gint scale,
|
|
|
|
|
GtkIconLookupFlags flags);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-07-02 22:44:09 +00:00
|
|
|
|
GdkPixbuf * gtk_icon_theme_load_icon (GtkIconTheme *icon_theme,
|
|
|
|
|
const gchar *icon_name,
|
|
|
|
|
gint size,
|
|
|
|
|
GtkIconLookupFlags flags,
|
|
|
|
|
GError **error);
|
2013-05-10 16:06:00 +00:00
|
|
|
|
GDK_AVAILABLE_IN_3_10
|
|
|
|
|
GdkPixbuf * gtk_icon_theme_load_icon_for_scale (GtkIconTheme *icon_theme,
|
|
|
|
|
const gchar *icon_name,
|
|
|
|
|
gint size,
|
|
|
|
|
gint scale,
|
|
|
|
|
GtkIconLookupFlags flags,
|
|
|
|
|
GError **error);
|
2013-06-26 14:26:43 +00:00
|
|
|
|
GDK_AVAILABLE_IN_3_10
|
|
|
|
|
cairo_surface_t * gtk_icon_theme_load_surface (GtkIconTheme *icon_theme,
|
|
|
|
|
const gchar *icon_name,
|
|
|
|
|
gint size,
|
|
|
|
|
gint scale,
|
|
|
|
|
GdkWindow *for_window,
|
|
|
|
|
GtkIconLookupFlags flags,
|
|
|
|
|
GError **error);
|
2003-07-02 22:44:09 +00:00
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2008-05-29 14:33:49 +00:00
|
|
|
|
GtkIconInfo * gtk_icon_theme_lookup_by_gicon (GtkIconTheme *icon_theme,
|
|
|
|
|
GIcon *icon,
|
|
|
|
|
gint size,
|
|
|
|
|
GtkIconLookupFlags flags);
|
2013-07-26 20:16:12 +00:00
|
|
|
|
GDK_AVAILABLE_IN_3_10
|
2013-05-10 16:06:00 +00:00
|
|
|
|
GtkIconInfo * gtk_icon_theme_lookup_by_gicon_for_scale (GtkIconTheme *icon_theme,
|
|
|
|
|
GIcon *icon,
|
|
|
|
|
gint size,
|
|
|
|
|
gint scale,
|
|
|
|
|
GtkIconLookupFlags flags);
|
|
|
|
|
|
2008-05-29 14:33:49 +00:00
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-07-02 22:44:09 +00:00
|
|
|
|
GList * gtk_icon_theme_list_icons (GtkIconTheme *icon_theme,
|
|
|
|
|
const gchar *context);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2007-03-21 19:31:01 +00:00
|
|
|
|
GList * gtk_icon_theme_list_contexts (GtkIconTheme *icon_theme);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-07-02 22:44:09 +00:00
|
|
|
|
char * gtk_icon_theme_get_example_icon_name (GtkIconTheme *icon_theme);
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-07-02 22:44:09 +00:00
|
|
|
|
gboolean gtk_icon_theme_rescan_if_needed (GtkIconTheme *icon_theme);
|
|
|
|
|
|
2014-06-20 04:49:25 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_14_FOR(gtk_icon_theme_add_resource_path)
|
2008-05-29 14:33:49 +00:00
|
|
|
|
void gtk_icon_theme_add_builtin_icon (const gchar *icon_name,
|
|
|
|
|
gint size,
|
|
|
|
|
GdkPixbuf *pixbuf);
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2008-05-29 14:33:49 +00:00
|
|
|
|
GType gtk_icon_info_get_type (void) G_GNUC_CONST;
|
2013-02-15 10:07:51 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_8_FOR(g_object_ref)
|
2008-05-29 14:33:49 +00:00
|
|
|
|
GtkIconInfo * gtk_icon_info_copy (GtkIconInfo *icon_info);
|
2013-02-15 10:07:51 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_8_FOR(g_object_unref)
|
2008-05-29 14:33:49 +00:00
|
|
|
|
void gtk_icon_info_free (GtkIconInfo *icon_info);
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2008-05-29 14:33:49 +00:00
|
|
|
|
GtkIconInfo * gtk_icon_info_new_for_pixbuf (GtkIconTheme *icon_theme,
|
|
|
|
|
GdkPixbuf *pixbuf);
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2008-05-29 14:33:49 +00:00
|
|
|
|
gint gtk_icon_info_get_base_size (GtkIconInfo *icon_info);
|
2013-05-10 16:06:00 +00:00
|
|
|
|
GDK_AVAILABLE_IN_3_10
|
|
|
|
|
gint gtk_icon_info_get_base_scale (GtkIconInfo *icon_info);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-06-06 18:13:44 +00:00
|
|
|
|
const gchar * gtk_icon_info_get_filename (GtkIconInfo *icon_info);
|
2014-06-20 04:49:25 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_14
|
2008-05-29 14:33:49 +00:00
|
|
|
|
GdkPixbuf * gtk_icon_info_get_builtin_pixbuf (GtkIconInfo *icon_info);
|
2013-12-15 02:41:49 +00:00
|
|
|
|
GDK_AVAILABLE_IN_3_12
|
|
|
|
|
gboolean gtk_icon_info_is_symbolic (GtkIconInfo *icon_info);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2008-05-29 14:33:49 +00:00
|
|
|
|
GdkPixbuf * gtk_icon_info_load_icon (GtkIconInfo *icon_info,
|
|
|
|
|
GError **error);
|
2013-06-26 14:26:43 +00:00
|
|
|
|
GDK_AVAILABLE_IN_3_10
|
|
|
|
|
cairo_surface_t * gtk_icon_info_load_surface (GtkIconInfo *icon_info,
|
|
|
|
|
GdkWindow *for_window,
|
|
|
|
|
GError **error);
|
2013-02-14 12:32:30 +00:00
|
|
|
|
GDK_AVAILABLE_IN_3_8
|
|
|
|
|
void gtk_icon_info_load_icon_async (GtkIconInfo *icon_info,
|
|
|
|
|
GCancellable *cancellable,
|
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
|
gpointer user_data);
|
|
|
|
|
GDK_AVAILABLE_IN_3_8
|
|
|
|
|
GdkPixbuf * gtk_icon_info_load_icon_finish (GtkIconInfo *icon_info,
|
|
|
|
|
GAsyncResult *res,
|
|
|
|
|
GError **error);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-04-26 10:55:34 +00:00
|
|
|
|
GdkPixbuf * gtk_icon_info_load_symbolic (GtkIconInfo *icon_info,
|
2011-02-10 12:58:07 +00:00
|
|
|
|
const GdkRGBA *fg,
|
|
|
|
|
const GdkRGBA *success_color,
|
|
|
|
|
const GdkRGBA *warning_color,
|
|
|
|
|
const GdkRGBA *error_color,
|
2010-10-22 12:21:34 +00:00
|
|
|
|
gboolean *was_symbolic,
|
2010-04-26 10:55:34 +00:00
|
|
|
|
GError **error);
|
2013-02-14 15:01:04 +00:00
|
|
|
|
GDK_AVAILABLE_IN_3_8
|
|
|
|
|
void gtk_icon_info_load_symbolic_async (GtkIconInfo *icon_info,
|
|
|
|
|
const GdkRGBA *fg,
|
|
|
|
|
const GdkRGBA *success_color,
|
|
|
|
|
const GdkRGBA *warning_color,
|
|
|
|
|
const GdkRGBA *error_color,
|
|
|
|
|
GCancellable *cancellable,
|
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
|
gpointer user_data);
|
|
|
|
|
GDK_AVAILABLE_IN_3_8
|
|
|
|
|
GdkPixbuf * gtk_icon_info_load_symbolic_finish (GtkIconInfo *icon_info,
|
|
|
|
|
GAsyncResult *res,
|
|
|
|
|
gboolean *was_symbolic,
|
|
|
|
|
GError **error);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-11-24 19:40:31 +00:00
|
|
|
|
GdkPixbuf * gtk_icon_info_load_symbolic_for_context (GtkIconInfo *icon_info,
|
|
|
|
|
GtkStyleContext *context,
|
|
|
|
|
gboolean *was_symbolic,
|
|
|
|
|
GError **error);
|
2013-02-14 15:01:04 +00:00
|
|
|
|
GDK_AVAILABLE_IN_3_8
|
|
|
|
|
void gtk_icon_info_load_symbolic_for_context_async (GtkIconInfo *icon_info,
|
|
|
|
|
GtkStyleContext *context,
|
|
|
|
|
GCancellable *cancellable,
|
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
|
gpointer user_data);
|
|
|
|
|
GDK_AVAILABLE_IN_3_8
|
|
|
|
|
GdkPixbuf * gtk_icon_info_load_symbolic_for_context_finish (GtkIconInfo *icon_info,
|
|
|
|
|
GAsyncResult *res,
|
|
|
|
|
gboolean *was_symbolic,
|
|
|
|
|
GError **error);
|
2012-02-27 12:10:59 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_0_FOR(gtk_icon_info_load_symbol_for_context)
|
2010-06-15 03:46:46 +00:00
|
|
|
|
GdkPixbuf * gtk_icon_info_load_symbolic_for_style (GtkIconInfo *icon_info,
|
|
|
|
|
GtkStyle *style,
|
|
|
|
|
GtkStateType state,
|
|
|
|
|
gboolean *was_symbolic,
|
|
|
|
|
GError **error);
|
2014-06-18 02:23:19 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_14
|
2008-05-29 14:33:49 +00:00
|
|
|
|
void gtk_icon_info_set_raw_coordinates (GtkIconInfo *icon_info,
|
|
|
|
|
gboolean raw_coordinates);
|
|
|
|
|
|
2014-06-18 02:23:19 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_14
|
2008-05-29 14:33:49 +00:00
|
|
|
|
gboolean gtk_icon_info_get_embedded_rect (GtkIconInfo *icon_info,
|
|
|
|
|
GdkRectangle *rectangle);
|
2014-06-18 02:23:19 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_14
|
2008-05-29 14:33:49 +00:00
|
|
|
|
gboolean gtk_icon_info_get_attach_points (GtkIconInfo *icon_info,
|
|
|
|
|
GdkPoint **points,
|
|
|
|
|
gint *n_points);
|
2014-06-18 02:23:19 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_14
|
2011-06-06 18:13:44 +00:00
|
|
|
|
const gchar * gtk_icon_info_get_display_name (GtkIconInfo *icon_info);
|
2003-07-02 22:44:09 +00:00
|
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
|
|
#endif /* __GTK_ICON_THEME_H__ */
|