summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2008-06-11 03:17:55 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2008-06-11 03:17:55 +0000
commit3dbfc1935f70b9f2ca38505a35e643ebe64cc46f (patch)
tree6bd9848306e27b4095567827a3a639ce8a6f924c
parent7bc5628bbfa7b01dbbdda2c147a81e6edd59bf39 (diff)
downloadgdk-pixbuf-3dbfc1935f70b9f2ca38505a35e643ebe64cc46f.tar.gz
Add standard icon names, and also fall back to builtin gtk stock icons.
* gtk/gtkfilesystem.c (get_icon_for_special_directory): (gtk_file_system_volume_render_icon): Add standard icon names, and also fall back to builtin gtk stock icons. svn path=/trunk/; revision=20350
-rw-r--r--ChangeLog6
-rw-r--r--gtk/gtkfilesystem.c28
2 files changed, 30 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index f49851e12..9e7cf10e1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2008-06-10 Christian Persch <chpe@gnome.org>
+ * gtk/gtkfilesystem.c (get_icon_for_special_directory):
+ (gtk_file_system_volume_render_icon): Add standard icon names,
+ and also fall back to builtin gtk stock icons.
+
+2008-06-10 Christian Persch <chpe@gnome.org>
+
* gtk/gtktreeview.c: (destroy_info), (set_destination_row),
(gtk_tree_view_maybe_begin_dragging_row),
(gtk_tree_view_set_reorderable),
diff --git a/gtk/gtkfilesystem.c b/gtk/gtkfilesystem.c
index aa89a2c11..027f1bb49 100644
--- a/gtk/gtkfilesystem.c
+++ b/gtk/gtkfilesystem.c
@@ -1649,7 +1649,7 @@ get_pixbuf_from_gicon (GIcon *icon,
icon_info = gtk_icon_theme_lookup_by_gicon (icon_theme,
icon,
icon_size,
- 0);
+ GTK_ICON_LOOKUP_USE_BUILTIN);
if (!icon_info)
return NULL;
@@ -1671,8 +1671,15 @@ get_icon_for_special_directory (GFile *file)
if (g_file_equal (file, special_file))
{
+ const char *names[] = {
+ "user-desktop",
+ "gnome-fs-desktop",
+ "folder",
+ "gtk-directory",
+ NULL
+ };
g_object_unref (special_file);
- return g_themed_icon_new ("gnome-fs-desktop");
+ return g_themed_icon_new_from_names (names, -1);
}
g_object_unref (special_file);
@@ -1681,8 +1688,15 @@ get_icon_for_special_directory (GFile *file)
if (g_file_equal (file, special_file))
{
+ const char *names[] = {
+ "user-home",
+ "gnome-fs-home",
+ "folder",
+ "gtk-directory",
+ NULL
+ };
g_object_unref (special_file);
- return g_themed_icon_new ("gnome-fs-home");
+ return g_themed_icon_new_from_names (names, -1);
}
g_object_unref (special_file);
@@ -1698,11 +1712,17 @@ gtk_file_system_volume_render_icon (GtkFileSystemVolume *volume,
{
GIcon *icon = NULL;
GdkPixbuf *pixbuf;
+ const char *harddisk_icons[] = {
+ "drive-harddisk",
+ "gnome-dev-harddisk",
+ "gtk-harddisk",
+ NULL
+ };
DEBUG ("volume_get_icon_name");
if (IS_ROOT_VOLUME (volume))
- icon = g_themed_icon_new ("gnome-dev-harddisk");
+ icon = g_themed_icon_new_from_names (harddisk_icons, -1);
else if (G_IS_DRIVE (volume))
icon = g_drive_get_icon (G_DRIVE (volume));
else if (G_IS_VOLUME (volume))