diff --git a/gtk/Makefile.am b/gtk/Makefile.am index 2f69946956..39284111fa 100644 --- a/gtk/Makefile.am +++ b/gtk/Makefile.am @@ -1243,7 +1243,6 @@ gtk_built_public_sources = \ gtk_built_private_headers = \ gtkresources.h \ gtkmarshalers.h \ - gtkbuiltincache.h \ gtkprivatetypebuiltins.h gtk_built_sources = \ @@ -1287,7 +1286,6 @@ DISTCLEANFILES = EXTRA_HEADERS = EXTRA_DIST += $(gtk_all_private_h_sources) $(gtk_extra_sources) EXTRA_DIST += $(gtk_built_sources) -EXTRA_DIST += $(STOCK_ICONS) pkgdatadir=$(datadir)/gtk-$(GTK_API_VERSION) @@ -1678,51 +1676,6 @@ files: echo $$p; \ done -STOCK_ICONS = \ - stock-icons/16/gtk-connect.png \ - stock-icons/16/gtk-convert.png \ - stock-icons/16/gtk-disconnect.png \ - stock-icons/16/gtk-edit.png \ - stock-icons/16/gtk-caps-lock-warning.png \ - stock-icons/16/gtk-color-picker.png \ - stock-icons/16/gtk-index.png \ - stock-icons/16/gtk-orientation-landscape.png \ - stock-icons/16/gtk-orientation-portrait.png \ - stock-icons/16/gtk-orientation-reverse-landscape.png \ - stock-icons/16/gtk-orientation-reverse-portrait.png \ - stock-icons/16/gtk-page-setup.png \ - stock-icons/16/gtk-preferences.png \ - stock-icons/16/gtk-select-color.png \ - stock-icons/16/gtk-select-font.png \ - stock-icons/16/gtk-font.png \ - stock-icons/16/gtk-undelete-ltr.png \ - stock-icons/16/gtk-undelete-rtl.png \ - stock-icons/20/gtk-apply.png \ - stock-icons/20/gtk-cancel.png \ - stock-icons/20/gtk-no.png \ - stock-icons/20/gtk-ok.png \ - stock-icons/20/gtk-yes.png \ - stock-icons/24/gtk-caps-lock-warning.png \ - stock-icons/24/gtk-color-picker.png \ - stock-icons/24/gtk-connect.png \ - stock-icons/24/gtk-convert.png \ - stock-icons/24/gtk-disconnect.png \ - stock-icons/24/gtk-edit.png \ - stock-icons/24/gtk-font.png \ - stock-icons/24/gtk-index.png \ - stock-icons/24/gtk-orientation-reverse-landscape.png \ - stock-icons/24/gtk-orientation-landscape.png \ - stock-icons/24/gtk-orientation-reverse-portrait.png \ - stock-icons/24/gtk-orientation-portrait.png \ - stock-icons/24/gtk-page-setup.png \ - stock-icons/24/gtk-preferences.png \ - stock-icons/24/gtk-select-font.png \ - stock-icons/24/gtk-select-color.png \ - stock-icons/24/gtk-undelete-ltr.png \ - stock-icons/24/gtk-undelete-rtl.png \ - stock-icons/32/gtk-dnd-multiple.png \ - stock-icons/32/gtk-dnd.png - if USE_EXTERNAL_ICON_CACHE gtk_update_icon_cache_program = $(GTK_UPDATE_ICON_CACHE) else @@ -1733,18 +1686,6 @@ gtk_update_icon_cache_program = ./gtk-update-icon-cache$(EXEEXT) endif endif -gtkbuiltincache.h: -if !USE_EXTERNAL_ICON_CACHE -if CROSS_COMPILING - $(AM_V_at) $(MAKE) $(AM_MAKEFLAGS) -C native/ -else - $(AM_V_at) $(MAKE) $(AM_MAKEFLAGS) gtk-update-icon-cache$(EXEEXT) -endif -endif - $(AM_V_GEN) $(gtk_update_icon_cache_program) --quiet --force --ignore-theme-index --include-image-data \ - --source builtin_icons stock-icons > gtkbuiltincache.h.tmp && \ - mv gtkbuiltincache.h.tmp gtkbuiltincache.h - gsettings_SCHEMAS = \ org.gtk.Settings.FileChooser.gschema.xml \ org.gtk.Settings.ColorChooser.gschema.xml \ @@ -1755,7 +1696,6 @@ gsettings_SCHEMAS = \ EXTRA_DIST += \ $(resource_files) \ $(adwaita_sources) \ - $(STOCK_ICONS) \ $(gsettings_SCHEMAS) \ gtk-win32.rc \ gtk-win32.rc.in \ diff --git a/gtk/deprecated/gtkiconfactory.c b/gtk/deprecated/gtkiconfactory.c index 47bf9cc760..1169d6d6b6 100644 --- a/gtk/deprecated/gtkiconfactory.c +++ b/gtk/deprecated/gtkiconfactory.c @@ -1454,8 +1454,6 @@ find_and_render_icon_source (GtkIconSet *icon_set, return pixbuf; } -extern GtkIconCache *_builtin_cache; - static GdkPixbuf* render_fallback_image (GtkStyleContext *context, GtkTextDirection direction, @@ -1467,21 +1465,12 @@ render_fallback_image (GtkStyleContext *context, if (fallback_source.type == GTK_ICON_SOURCE_EMPTY) { - gint index; - GdkPixbuf *pixbuf; - - _gtk_icon_theme_ensure_builtin_cache (); - - index = _gtk_icon_cache_get_directory_index (_builtin_cache, "24"); - pixbuf = _gtk_icon_cache_get_icon (_builtin_cache, "image-missing", index); - - g_return_val_if_fail(pixbuf != NULL, NULL); - - gtk_icon_source_set_pixbuf (&fallback_source, pixbuf); - g_object_unref (pixbuf); + fallback_source.type = GTK_ICON_SOURCE_STATIC_ICON_NAME; + fallback_source.source.icon_name = (gchar *)"image-missing"; + fallback_source.direction = GTK_TEXT_DIR_NONE; } - return gtk_render_icon_pixbuf (context, &fallback_source, size); + return render_icon_name_pixbuf (&fallback_source, context, size, 1); } static GdkPixbuf* diff --git a/gtk/gtkicontheme.c b/gtk/gtkicontheme.c index aca62c146f..1f74e71d27 100644 --- a/gtk/gtkicontheme.c +++ b/gtk/gtkicontheme.c @@ -41,7 +41,6 @@ #include "gtkdebug.h" #include "deprecated/gtkiconfactory.h" #include "gtkiconcache.h" -#include "gtkbuiltincache.h" #include "gtkintl.h" #include "gtkmain.h" #include "deprecated/gtknumerableiconprivate.h" @@ -380,10 +379,6 @@ static guint signal_changed = 0; static GHashTable *icon_theme_builtin_icons; -/* also used in gtkiconfactory.c */ -GtkIconCache *_builtin_cache = NULL; -static GList *builtin_dirs = NULL; - static guint icon_info_key_hash (gconstpointer _key) { @@ -1368,38 +1363,6 @@ load_themes (GtkIconTheme *icon_theme) }); } -void -_gtk_icon_theme_ensure_builtin_cache (void) -{ - static gboolean initialized = FALSE; - IconThemeDir *dir; - static IconThemeDir dirs[5] = - { - { ICON_THEME_DIR_THRESHOLD, 0, 16, 16, 16, 2, 1, NULL, "16", -1, NULL, NULL, NULL }, - { ICON_THEME_DIR_THRESHOLD, 0, 20, 20, 20, 2, 1, NULL, "20", -1, NULL, NULL, NULL }, - { ICON_THEME_DIR_THRESHOLD, 0, 24, 24, 24, 2, 1, NULL, "24", -1, NULL, NULL, NULL }, - { ICON_THEME_DIR_THRESHOLD, 0, 32, 32, 32, 2, 1, NULL, "32", -1, NULL, NULL, NULL }, - { ICON_THEME_DIR_THRESHOLD, 0, 48, 48, 48, 2, 1, NULL, "48", -1, NULL, NULL, NULL } - }; - gint i; - - if (!initialized) - { - initialized = TRUE; - - _builtin_cache = _gtk_icon_cache_new ((gchar *)builtin_icons); - - for (i = 0; i < G_N_ELEMENTS (dirs); i++) - { - dir = &(dirs[i]); - dir->cache = _gtk_icon_cache_ref (_builtin_cache); - dir->subdir_index = _gtk_icon_cache_get_directory_index (dir->cache, dir->subdir); - - builtin_dirs = g_list_append (builtin_dirs, dir); - } - } -} - static void ensure_valid_themes (GtkIconTheme *icon_theme) { @@ -1411,8 +1374,6 @@ ensure_valid_themes (GtkIconTheme *icon_theme) return; priv->loading_themes = TRUE; - _gtk_icon_theme_ensure_builtin_cache (); - if (priv->themes_valid) { g_get_current_time (&tv); @@ -2388,10 +2349,6 @@ gtk_icon_theme_has_icon (GtkIconTheme *icon_theme, icon_name, NULL, NULL)) return TRUE; - if (_builtin_cache && - _gtk_icon_cache_has_icon (_builtin_cache, icon_name)) - return TRUE; - if (icon_theme_builtin_icons && g_hash_table_lookup_extended (icon_theme_builtin_icons, icon_name, NULL, NULL)) @@ -2468,23 +2425,6 @@ gtk_icon_theme_get_icon_sizes (GtkIconTheme *icon_theme, } } - for (d = builtin_dirs; d; d = d->next) - { - IconThemeDir *dir = d->data; - - if (dir->type != ICON_THEME_DIR_SCALABLE && g_hash_table_lookup_extended (sizes, GINT_TO_POINTER (dir->size), NULL, NULL)) - continue; - - suffix = theme_dir_get_icon_suffix (dir, icon_name, NULL); - if (suffix != ICON_SUFFIX_NONE) - { - if (suffix == ICON_SUFFIX_SVG) - g_hash_table_insert (sizes, GINT_TO_POINTER (-1), NULL); - else - g_hash_table_insert (sizes, GINT_TO_POINTER (dir->size), NULL); - } - } - if (icon_theme_builtin_icons) { icons = g_hash_table_lookup (icon_theme_builtin_icons, icon_name); @@ -2979,11 +2919,9 @@ theme_lookup_icon (IconTheme *theme, if (min_difference == 0) return icon_info_new_builtin (closest_builtin); - - dirs = builtin_dirs; } - else - dirs = theme->dirs; + + dirs = theme->dirs; l = dirs; while (l != NULL) @@ -3007,12 +2945,6 @@ theme_lookup_icon (IconTheme *theme, } l = l->next; - - if (l == NULL && dirs == builtin_dirs) - { - dirs = theme->dirs; - l = dirs; - } } if (min_dir) diff --git a/gtk/gtkicontheme.h b/gtk/gtkicontheme.h index 662545b694..39bdd74303 100644 --- a/gtk/gtkicontheme.h +++ b/gtk/gtkicontheme.h @@ -366,9 +366,6 @@ gboolean gtk_icon_info_get_attach_points (GtkIconInfo *icon_info GDK_AVAILABLE_IN_ALL const gchar * gtk_icon_info_get_display_name (GtkIconInfo *icon_info); -/* Non-public methods */ -void _gtk_icon_theme_ensure_builtin_cache (void); - G_END_DECLS #endif /* __GTK_ICON_THEME_H__ */ diff --git a/gtk/stock-icons/16/gtk-caps-lock-warning.png b/gtk/stock-icons/16/gtk-caps-lock-warning.png deleted file mode 100644 index 0dfa418761..0000000000 Binary files a/gtk/stock-icons/16/gtk-caps-lock-warning.png and /dev/null differ diff --git a/gtk/stock-icons/16/gtk-color-picker.png b/gtk/stock-icons/16/gtk-color-picker.png deleted file mode 100644 index 24233cde02..0000000000 Binary files a/gtk/stock-icons/16/gtk-color-picker.png and /dev/null differ diff --git a/gtk/stock-icons/16/gtk-color-picker.svg b/gtk/stock-icons/16/gtk-color-picker.svg deleted file mode 100644 index 9bd03a233e..0000000000 --- a/gtk/stock-icons/16/gtk-color-picker.svg +++ /dev/null @@ -1,233 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - gtk color picker - 30.3.2007 - - - Josef Vybíral - - - - - color picker - - - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/16/gtk-connect.png b/gtk/stock-icons/16/gtk-connect.png deleted file mode 100644 index 097969a7cc..0000000000 Binary files a/gtk/stock-icons/16/gtk-connect.png and /dev/null differ diff --git a/gtk/stock-icons/16/gtk-connect.svg b/gtk/stock-icons/16/gtk-connect.svg deleted file mode 100644 index de654bddda..0000000000 --- a/gtk/stock-icons/16/gtk-connect.svg +++ /dev/null @@ -1,378 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/16/gtk-convert.png b/gtk/stock-icons/16/gtk-convert.png deleted file mode 100644 index e4d9125792..0000000000 Binary files a/gtk/stock-icons/16/gtk-convert.png and /dev/null differ diff --git a/gtk/stock-icons/16/gtk-convert.svg b/gtk/stock-icons/16/gtk-convert.svg deleted file mode 100644 index 5d15105dbf..0000000000 --- a/gtk/stock-icons/16/gtk-convert.svg +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/16/gtk-disconnect.png b/gtk/stock-icons/16/gtk-disconnect.png deleted file mode 100644 index 3dece1068b..0000000000 Binary files a/gtk/stock-icons/16/gtk-disconnect.png and /dev/null differ diff --git a/gtk/stock-icons/16/gtk-disconnect.svg b/gtk/stock-icons/16/gtk-disconnect.svg deleted file mode 100644 index 5fcc4c1c65..0000000000 --- a/gtk/stock-icons/16/gtk-disconnect.svg +++ /dev/null @@ -1,512 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/16/gtk-edit.png b/gtk/stock-icons/16/gtk-edit.png deleted file mode 100644 index c5da3f9fb1..0000000000 Binary files a/gtk/stock-icons/16/gtk-edit.png and /dev/null differ diff --git a/gtk/stock-icons/16/gtk-edit.svg b/gtk/stock-icons/16/gtk-edit.svg deleted file mode 100644 index 3bc2eb30d2..0000000000 --- a/gtk/stock-icons/16/gtk-edit.svg +++ /dev/null @@ -1,295 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - gtk edit - 29.3.2007 - - - Josef Vybíral - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/16/gtk-font.png b/gtk/stock-icons/16/gtk-font.png deleted file mode 100644 index 2514b61671..0000000000 Binary files a/gtk/stock-icons/16/gtk-font.png and /dev/null differ diff --git a/gtk/stock-icons/16/gtk-font.svg b/gtk/stock-icons/16/gtk-font.svg deleted file mode 100644 index 770c21328b..0000000000 --- a/gtk/stock-icons/16/gtk-font.svg +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - a - b - - diff --git a/gtk/stock-icons/16/gtk-index.png b/gtk/stock-icons/16/gtk-index.png deleted file mode 100644 index 0967a61c32..0000000000 Binary files a/gtk/stock-icons/16/gtk-index.png and /dev/null differ diff --git a/gtk/stock-icons/16/gtk-index.svg b/gtk/stock-icons/16/gtk-index.svg deleted file mode 100644 index 1675d0fdc9..0000000000 --- a/gtk/stock-icons/16/gtk-index.svg +++ /dev/null @@ -1,365 +0,0 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/16/gtk-orientation-landscape.png b/gtk/stock-icons/16/gtk-orientation-landscape.png deleted file mode 100644 index 748bb502dd..0000000000 Binary files a/gtk/stock-icons/16/gtk-orientation-landscape.png and /dev/null differ diff --git a/gtk/stock-icons/16/gtk-orientation-landscape.svg b/gtk/stock-icons/16/gtk-orientation-landscape.svg deleted file mode 100644 index cc025a6f54..0000000000 --- a/gtk/stock-icons/16/gtk-orientation-landscape.svg +++ /dev/null @@ -1,282 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - orientation landscape - 29.3.2007 - - - Josef Vybíral - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/16/gtk-orientation-portrait.png b/gtk/stock-icons/16/gtk-orientation-portrait.png deleted file mode 100644 index 94f078d91b..0000000000 Binary files a/gtk/stock-icons/16/gtk-orientation-portrait.png and /dev/null differ diff --git a/gtk/stock-icons/16/gtk-orientation-portrait.svg b/gtk/stock-icons/16/gtk-orientation-portrait.svg deleted file mode 100644 index 0e9cb0eb8d..0000000000 --- a/gtk/stock-icons/16/gtk-orientation-portrait.svg +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - orientation portrait - 29.3.2007 - - - Josef Vybíral - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/16/gtk-orientation-reverse-landscape.png b/gtk/stock-icons/16/gtk-orientation-reverse-landscape.png deleted file mode 100644 index 2a732a6ee6..0000000000 Binary files a/gtk/stock-icons/16/gtk-orientation-reverse-landscape.png and /dev/null differ diff --git a/gtk/stock-icons/16/gtk-orientation-reverse-landscape.svg b/gtk/stock-icons/16/gtk-orientation-reverse-landscape.svg deleted file mode 100644 index c28d6dc981..0000000000 --- a/gtk/stock-icons/16/gtk-orientation-reverse-landscape.svg +++ /dev/null @@ -1,282 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - orientation reverse landscape - 29.3.2007 - - - Josef Vybíral - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/16/gtk-orientation-reverse-portrait.png b/gtk/stock-icons/16/gtk-orientation-reverse-portrait.png deleted file mode 100644 index c79cea3559..0000000000 Binary files a/gtk/stock-icons/16/gtk-orientation-reverse-portrait.png and /dev/null differ diff --git a/gtk/stock-icons/16/gtk-orientation-reverse-portrait.svg b/gtk/stock-icons/16/gtk-orientation-reverse-portrait.svg deleted file mode 100644 index 5b801e46cb..0000000000 --- a/gtk/stock-icons/16/gtk-orientation-reverse-portrait.svg +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - orientation reverse portrait - 29.3.2007 - - - Josef Vybíral - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/16/gtk-page-setup.png b/gtk/stock-icons/16/gtk-page-setup.png deleted file mode 100644 index 61b46d998c..0000000000 Binary files a/gtk/stock-icons/16/gtk-page-setup.png and /dev/null differ diff --git a/gtk/stock-icons/16/gtk-preferences.png b/gtk/stock-icons/16/gtk-preferences.png deleted file mode 100644 index 9703a40dff..0000000000 Binary files a/gtk/stock-icons/16/gtk-preferences.png and /dev/null differ diff --git a/gtk/stock-icons/16/gtk-preferences.svg b/gtk/stock-icons/16/gtk-preferences.svg deleted file mode 100644 index 986766d9d6..0000000000 --- a/gtk/stock-icons/16/gtk-preferences.svg +++ /dev/null @@ -1,288 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/16/gtk-select-color.png b/gtk/stock-icons/16/gtk-select-color.png deleted file mode 100644 index 2c764b374a..0000000000 Binary files a/gtk/stock-icons/16/gtk-select-color.png and /dev/null differ diff --git a/gtk/stock-icons/16/gtk-select-color.svg b/gtk/stock-icons/16/gtk-select-color.svg deleted file mode 100644 index 0fc24f4c91..0000000000 --- a/gtk/stock-icons/16/gtk-select-color.svg +++ /dev/null @@ -1,1275 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/16/gtk-select-font.png b/gtk/stock-icons/16/gtk-select-font.png deleted file mode 100644 index 2514b61671..0000000000 Binary files a/gtk/stock-icons/16/gtk-select-font.png and /dev/null differ diff --git a/gtk/stock-icons/16/gtk-undelete-ltr.png b/gtk/stock-icons/16/gtk-undelete-ltr.png deleted file mode 100644 index cc58d0fb5d..0000000000 Binary files a/gtk/stock-icons/16/gtk-undelete-ltr.png and /dev/null differ diff --git a/gtk/stock-icons/16/gtk-undelete-ltr.svg b/gtk/stock-icons/16/gtk-undelete-ltr.svg deleted file mode 100644 index 1c31bf5825..0000000000 --- a/gtk/stock-icons/16/gtk-undelete-ltr.svg +++ /dev/null @@ -1,665 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Jakub Steiner - - - Delete - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/16/gtk-undelete-rtl.png b/gtk/stock-icons/16/gtk-undelete-rtl.png deleted file mode 100644 index a312dd854c..0000000000 Binary files a/gtk/stock-icons/16/gtk-undelete-rtl.png and /dev/null differ diff --git a/gtk/stock-icons/16/gtk-undelete-rtl.svg b/gtk/stock-icons/16/gtk-undelete-rtl.svg deleted file mode 100644 index ca8f379358..0000000000 --- a/gtk/stock-icons/16/gtk-undelete-rtl.svg +++ /dev/null @@ -1,558 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - Jakub Steiner - - - Delete - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/20/gtk-apply.png b/gtk/stock-icons/20/gtk-apply.png deleted file mode 100644 index afca0732a7..0000000000 Binary files a/gtk/stock-icons/20/gtk-apply.png and /dev/null differ diff --git a/gtk/stock-icons/20/gtk-apply.svg b/gtk/stock-icons/20/gtk-apply.svg deleted file mode 100644 index 336a8a9708..0000000000 --- a/gtk/stock-icons/20/gtk-apply.svg +++ /dev/null @@ -1,1444 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Dialog ok - - - ok - sure - set - apply - - - - - Andreas Nilsson - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/20/gtk-cancel.png b/gtk/stock-icons/20/gtk-cancel.png deleted file mode 100644 index 0a395c0991..0000000000 Binary files a/gtk/stock-icons/20/gtk-cancel.png and /dev/null differ diff --git a/gtk/stock-icons/20/gtk-cancel.svg b/gtk/stock-icons/20/gtk-cancel.svg deleted file mode 100644 index 4a182e0970..0000000000 --- a/gtk/stock-icons/20/gtk-cancel.svg +++ /dev/null @@ -1,1431 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/20/gtk-no.png b/gtk/stock-icons/20/gtk-no.png deleted file mode 100644 index 2a7da6e2a8..0000000000 Binary files a/gtk/stock-icons/20/gtk-no.png and /dev/null differ diff --git a/gtk/stock-icons/20/gtk-ok.png b/gtk/stock-icons/20/gtk-ok.png deleted file mode 100644 index c08115f62f..0000000000 Binary files a/gtk/stock-icons/20/gtk-ok.png and /dev/null differ diff --git a/gtk/stock-icons/20/gtk-ok.svg b/gtk/stock-icons/20/gtk-ok.svg deleted file mode 100644 index 8824d07170..0000000000 --- a/gtk/stock-icons/20/gtk-ok.svg +++ /dev/null @@ -1,1676 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - Jakub Steiner - - - http://jimmac.musichall.cz - - Dialog ok - - - ok - sure - set - apply - - - - - Andreas Nilsson - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/20/gtk-yes.png b/gtk/stock-icons/20/gtk-yes.png deleted file mode 100644 index e562366386..0000000000 Binary files a/gtk/stock-icons/20/gtk-yes.png and /dev/null differ diff --git a/gtk/stock-icons/24/gtk-caps-lock-warning.png b/gtk/stock-icons/24/gtk-caps-lock-warning.png deleted file mode 100644 index ca76d509ba..0000000000 Binary files a/gtk/stock-icons/24/gtk-caps-lock-warning.png and /dev/null differ diff --git a/gtk/stock-icons/24/gtk-color-picker.png b/gtk/stock-icons/24/gtk-color-picker.png deleted file mode 100644 index fd97f343c0..0000000000 Binary files a/gtk/stock-icons/24/gtk-color-picker.png and /dev/null differ diff --git a/gtk/stock-icons/24/gtk-color-picker.svg b/gtk/stock-icons/24/gtk-color-picker.svg deleted file mode 100644 index e7bd067251..0000000000 --- a/gtk/stock-icons/24/gtk-color-picker.svg +++ /dev/null @@ -1,243 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - gtk color picker - 30.3.2007 - - - Josef Vybíral - - - - - color picker - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/24/gtk-connect.png b/gtk/stock-icons/24/gtk-connect.png deleted file mode 100644 index 97f2143fb4..0000000000 Binary files a/gtk/stock-icons/24/gtk-connect.png and /dev/null differ diff --git a/gtk/stock-icons/24/gtk-connect.svg b/gtk/stock-icons/24/gtk-connect.svg deleted file mode 100644 index 0a415bcbed..0000000000 --- a/gtk/stock-icons/24/gtk-connect.svg +++ /dev/null @@ -1,331 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/24/gtk-convert.png b/gtk/stock-icons/24/gtk-convert.png deleted file mode 100644 index da8194fa8d..0000000000 Binary files a/gtk/stock-icons/24/gtk-convert.png and /dev/null differ diff --git a/gtk/stock-icons/24/gtk-convert.svg b/gtk/stock-icons/24/gtk-convert.svg deleted file mode 100644 index 1f57dcc0f6..0000000000 --- a/gtk/stock-icons/24/gtk-convert.svg +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/24/gtk-copy.xcf.bz2 b/gtk/stock-icons/24/gtk-copy.xcf.bz2 deleted file mode 100644 index ff4373f080..0000000000 Binary files a/gtk/stock-icons/24/gtk-copy.xcf.bz2 and /dev/null differ diff --git a/gtk/stock-icons/24/gtk-cut.xcf.bz2 b/gtk/stock-icons/24/gtk-cut.xcf.bz2 deleted file mode 100644 index 0a5bdde19a..0000000000 Binary files a/gtk/stock-icons/24/gtk-cut.xcf.bz2 and /dev/null differ diff --git a/gtk/stock-icons/24/gtk-disconnect.png b/gtk/stock-icons/24/gtk-disconnect.png deleted file mode 100644 index 883a003bce..0000000000 Binary files a/gtk/stock-icons/24/gtk-disconnect.png and /dev/null differ diff --git a/gtk/stock-icons/24/gtk-disconnect.svg b/gtk/stock-icons/24/gtk-disconnect.svg deleted file mode 100644 index 3d10baaedf..0000000000 --- a/gtk/stock-icons/24/gtk-disconnect.svg +++ /dev/null @@ -1,396 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/24/gtk-edit.png b/gtk/stock-icons/24/gtk-edit.png deleted file mode 100644 index f429e10150..0000000000 Binary files a/gtk/stock-icons/24/gtk-edit.png and /dev/null differ diff --git a/gtk/stock-icons/24/gtk-edit.svg b/gtk/stock-icons/24/gtk-edit.svg deleted file mode 100644 index 3384737f31..0000000000 --- a/gtk/stock-icons/24/gtk-edit.svg +++ /dev/null @@ -1,466 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - gtk-edit - 29.3.2007 - - - Josef Vybíral - - - - - - edit - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/24/gtk-font.png b/gtk/stock-icons/24/gtk-font.png deleted file mode 100644 index cde0e8698e..0000000000 Binary files a/gtk/stock-icons/24/gtk-font.png and /dev/null differ diff --git a/gtk/stock-icons/24/gtk-font.svg b/gtk/stock-icons/24/gtk-font.svg deleted file mode 100644 index 2a1809ce69..0000000000 --- a/gtk/stock-icons/24/gtk-font.svg +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - a - b - c - - diff --git a/gtk/stock-icons/24/gtk-index.png b/gtk/stock-icons/24/gtk-index.png deleted file mode 100644 index 9ddbe9b8ef..0000000000 Binary files a/gtk/stock-icons/24/gtk-index.png and /dev/null differ diff --git a/gtk/stock-icons/24/gtk-index.svg b/gtk/stock-icons/24/gtk-index.svg deleted file mode 100644 index ac11baaced..0000000000 --- a/gtk/stock-icons/24/gtk-index.svg +++ /dev/null @@ -1,724 +0,0 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/24/gtk-orientation-landscape.png b/gtk/stock-icons/24/gtk-orientation-landscape.png deleted file mode 100644 index fcf7f2a496..0000000000 Binary files a/gtk/stock-icons/24/gtk-orientation-landscape.png and /dev/null differ diff --git a/gtk/stock-icons/24/gtk-orientation-landscape.svg b/gtk/stock-icons/24/gtk-orientation-landscape.svg deleted file mode 100644 index 9d5a813a07..0000000000 --- a/gtk/stock-icons/24/gtk-orientation-landscape.svg +++ /dev/null @@ -1,304 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - gtk orientation landscape - 29.3.2007 - - - Josef Vybíral - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/24/gtk-orientation-portrait.png b/gtk/stock-icons/24/gtk-orientation-portrait.png deleted file mode 100644 index cb7b760bcf..0000000000 Binary files a/gtk/stock-icons/24/gtk-orientation-portrait.png and /dev/null differ diff --git a/gtk/stock-icons/24/gtk-orientation-portrait.svg b/gtk/stock-icons/24/gtk-orientation-portrait.svg deleted file mode 100644 index cc076781e7..0000000000 --- a/gtk/stock-icons/24/gtk-orientation-portrait.svg +++ /dev/null @@ -1,232 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - gtk orientation portrait - 29.3.2007 - - - Josef Vybíral - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/24/gtk-orientation-reverse-landscape.png b/gtk/stock-icons/24/gtk-orientation-reverse-landscape.png deleted file mode 100644 index 69ade25242..0000000000 Binary files a/gtk/stock-icons/24/gtk-orientation-reverse-landscape.png and /dev/null differ diff --git a/gtk/stock-icons/24/gtk-orientation-reverse-landscape.svg b/gtk/stock-icons/24/gtk-orientation-reverse-landscape.svg deleted file mode 100644 index d5c324dcf8..0000000000 --- a/gtk/stock-icons/24/gtk-orientation-reverse-landscape.svg +++ /dev/null @@ -1,304 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - gtk orientation landscape reverse - 29.3.2007 - - - Josef Vybíral - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/24/gtk-orientation-reverse-portrait.png b/gtk/stock-icons/24/gtk-orientation-reverse-portrait.png deleted file mode 100644 index c309a6d82c..0000000000 Binary files a/gtk/stock-icons/24/gtk-orientation-reverse-portrait.png and /dev/null differ diff --git a/gtk/stock-icons/24/gtk-orientation-reverse-portrait.svg b/gtk/stock-icons/24/gtk-orientation-reverse-portrait.svg deleted file mode 100644 index 1e34cf0d1b..0000000000 --- a/gtk/stock-icons/24/gtk-orientation-reverse-portrait.svg +++ /dev/null @@ -1,232 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - gtk orientation portrait reverse - 29.3.2007 - - - Josef Vybíral - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/24/gtk-page-setup.png b/gtk/stock-icons/24/gtk-page-setup.png deleted file mode 100644 index 9acf0d5ff2..0000000000 Binary files a/gtk/stock-icons/24/gtk-page-setup.png and /dev/null differ diff --git a/gtk/stock-icons/24/gtk-paste.xcf.bz2 b/gtk/stock-icons/24/gtk-paste.xcf.bz2 deleted file mode 100644 index 18b7176762..0000000000 Binary files a/gtk/stock-icons/24/gtk-paste.xcf.bz2 and /dev/null differ diff --git a/gtk/stock-icons/24/gtk-preferences.png b/gtk/stock-icons/24/gtk-preferences.png deleted file mode 100644 index 2596f3cc5e..0000000000 Binary files a/gtk/stock-icons/24/gtk-preferences.png and /dev/null differ diff --git a/gtk/stock-icons/24/gtk-preferences.svg b/gtk/stock-icons/24/gtk-preferences.svg deleted file mode 100644 index 30277ad816..0000000000 --- a/gtk/stock-icons/24/gtk-preferences.svg +++ /dev/null @@ -1,323 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/24/gtk-select-color.png b/gtk/stock-icons/24/gtk-select-color.png deleted file mode 100644 index 0e71c35d78..0000000000 Binary files a/gtk/stock-icons/24/gtk-select-color.png and /dev/null differ diff --git a/gtk/stock-icons/24/gtk-select-color.svg b/gtk/stock-icons/24/gtk-select-color.svg deleted file mode 100644 index f4338f4c74..0000000000 --- a/gtk/stock-icons/24/gtk-select-color.svg +++ /dev/null @@ -1,420 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/24/gtk-select-font.png b/gtk/stock-icons/24/gtk-select-font.png deleted file mode 100644 index cde0e8698e..0000000000 Binary files a/gtk/stock-icons/24/gtk-select-font.png and /dev/null differ diff --git a/gtk/stock-icons/24/gtk-undelete-ltr.png b/gtk/stock-icons/24/gtk-undelete-ltr.png deleted file mode 100644 index bccc39e7cc..0000000000 Binary files a/gtk/stock-icons/24/gtk-undelete-ltr.png and /dev/null differ diff --git a/gtk/stock-icons/24/gtk-undelete-ltr.svg b/gtk/stock-icons/24/gtk-undelete-ltr.svg deleted file mode 100644 index 4dc03350ae..0000000000 --- a/gtk/stock-icons/24/gtk-undelete-ltr.svg +++ /dev/null @@ -1,791 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Undelete - - - Jakub Steiner - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/24/gtk-undelete-rtl.png b/gtk/stock-icons/24/gtk-undelete-rtl.png deleted file mode 100644 index 22023b8531..0000000000 Binary files a/gtk/stock-icons/24/gtk-undelete-rtl.png and /dev/null differ diff --git a/gtk/stock-icons/24/gtk-undelete-rtl.svg b/gtk/stock-icons/24/gtk-undelete-rtl.svg deleted file mode 100644 index 2debdf748d..0000000000 --- a/gtk/stock-icons/24/gtk-undelete-rtl.svg +++ /dev/null @@ -1,791 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Undelete - - - Jakub Steiner - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/32/gtk-dnd-multiple.png b/gtk/stock-icons/32/gtk-dnd-multiple.png deleted file mode 100644 index dc09283f42..0000000000 Binary files a/gtk/stock-icons/32/gtk-dnd-multiple.png and /dev/null differ diff --git a/gtk/stock-icons/32/gtk-dnd-multiple.svg b/gtk/stock-icons/32/gtk-dnd-multiple.svg deleted file mode 100644 index 0addf6b469..0000000000 --- a/gtk/stock-icons/32/gtk-dnd-multiple.svg +++ /dev/null @@ -1,559 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - gtk file - 29.3.2007 - - - Josef Vybíral - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/gtk/stock-icons/32/gtk-dnd.png b/gtk/stock-icons/32/gtk-dnd.png deleted file mode 100644 index c58e5a6f41..0000000000 Binary files a/gtk/stock-icons/32/gtk-dnd.png and /dev/null differ diff --git a/gtk/stock-icons/32/gtk-dnd.svg b/gtk/stock-icons/32/gtk-dnd.svg deleted file mode 100644 index a5680ae11a..0000000000 --- a/gtk/stock-icons/32/gtk-dnd.svg +++ /dev/null @@ -1,407 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - gtk file - 29.3.2007 - - - Josef Vybíral - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -