Add g_themed_icon_prepend_name

svn path=/trunk/; revision=6991
This commit is contained in:
Matthias Clasen
2008-06-10 16:45:54 +00:00
parent e12152159f
commit 0f370f9a04
6 changed files with 62 additions and 7 deletions

View File

@@ -48,12 +48,16 @@ typedef struct _GThemedIconClass GThemedIconClass;
GType g_themed_icon_get_type (void) G_GNUC_CONST;
GIcon *g_themed_icon_new (const char *iconname);
GIcon *g_themed_icon_new_with_default_fallbacks (const char *iconname);
GIcon *g_themed_icon_new_from_names (char **iconnames, int len);
void g_themed_icon_append_name (GThemedIcon *icon, const char *iconname);
GIcon *g_themed_icon_new (const char *iconname);
GIcon *g_themed_icon_new_with_default_fallbacks (const char *iconname);
GIcon *g_themed_icon_new_from_names (char **iconnames,
int len);
void g_themed_icon_prepend_name (GThemedIcon *icon,
const char *iconname);
void g_themed_icon_append_name (GThemedIcon *icon,
const char *iconname);
const char * const *g_themed_icon_get_names (GThemedIcon *icon);
const char * const *g_themed_icon_get_names (GThemedIcon *icon);
G_END_DECLS