diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-05-24 23:54:43 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-05-24 23:54:43 +0800 |
commit | f575a7626a769b0a99e080944749958d644d4aef (patch) | |
tree | 5e006645628a7b36fc5141230cb7bdcce0846e64 /e-util/e-icon-factory.h | |
parent | 2087f385e566fcc3a79060e93c921afed310c2a9 (diff) | |
download | gsoc2013-evolution-f575a7626a769b0a99e080944749958d644d4aef.tar.gz gsoc2013-evolution-f575a7626a769b0a99e080944749958d644d4aef.tar.zst gsoc2013-evolution-f575a7626a769b0a99e080944749958d644d4aef.zip |
Eliminate redundant E_ICON_SIZE_* enumeration.
Diffstat (limited to 'e-util/e-icon-factory.h')
-rw-r--r-- | e-util/e-icon-factory.h | 35 |
1 files changed, 9 insertions, 26 deletions
diff --git a/e-util/e-icon-factory.h b/e-util/e-icon-factory.h index f8d1fc2fc7..c864b1be8e 100644 --- a/e-util/e-icon-factory.h +++ b/e-util/e-icon-factory.h @@ -26,31 +26,14 @@ #include <gtk/gtk.h> -enum { - E_ICON_SIZE_MENU, - E_ICON_SIZE_BUTTON, - E_ICON_SIZE_SMALL_TOOLBAR, - E_ICON_SIZE_LARGE_TOOLBAR, - E_ICON_SIZE_DND, - E_ICON_SIZE_DIALOG, - E_ICON_NUM_SIZES -}; - -/* standard size for list/tree widgets (16x16) */ -#define E_ICON_SIZE_LIST E_ICON_SIZE_MENU - -/* standard size for status bar icons (16x16) */ -#define E_ICON_SIZE_STATUS E_ICON_SIZE_MENU - - - -void e_icon_factory_init (void); -void e_icon_factory_shutdown (void); - -char *e_icon_factory_get_icon_filename (const char *icon_name, int icon_size); - -GdkPixbuf *e_icon_factory_get_icon (const char *icon_name, int icon_size); - -GdkPixbuf *e_icon_factory_pixbuf_scale (GdkPixbuf *pixbuf, int width, int height); +void e_icon_factory_init (void); +void e_icon_factory_shutdown (void); +gchar * e_icon_factory_get_icon_filename(const gchar *icon_name, + GtkIconSize icon_size); +GdkPixbuf * e_icon_factory_get_icon (const gchar *icon_name, + GtkIconSize icon_size); +GdkPixbuf * e_icon_factory_pixbuf_scale (GdkPixbuf *pixbuf, + gint width, + gint height); #endif /* _E_ICON_FACTORY_H_ */ |