From 43b8ed2d151faccd87735a6a6afb950584392937 Mon Sep 17 00:00:00 2001 From: Thierry Lorthiois Date: Sat, 3 Apr 2010 22:54:51 +0000 Subject: [PATCH] tint2conf : cleanup --- src/tint2conf/theme_view.c | 40 -------------------------------------- 1 file changed, 40 deletions(-) diff --git a/src/tint2conf/theme_view.c b/src/tint2conf/theme_view.c index 6b7e4dc..b6715c2 100644 --- a/src/tint2conf/theme_view.c +++ b/src/tint2conf/theme_view.c @@ -124,43 +124,3 @@ gboolean update_snapshot() -void custom_list_append2(const gchar *name) -{ - GtkTreeIter iter; - gchar *snap, *cmd; - gint pixWidth, pixHeight; - gboolean changeSize = FALSE; - GdkPixbuf *icon; - - // build panel's snapshot - snap = g_build_filename (g_get_user_config_dir(), "tint2", "snap.jpg", NULL); - g_remove(snap); - - cmd = g_strdup_printf("tint2 -c \'%s\' -s \'%s\'", name, snap); - system(cmd); - g_free(cmd); - - // load - icon = gdk_pixbuf_new_from_file(snap, NULL); - g_free(snap); - if (!icon) - return; - - pixWidth = gdk_pixbuf_get_width(icon); - pixHeight = gdk_pixbuf_get_height(icon); - if (g_width_list < pixWidth) { - g_width_list = pixWidth; - changeSize = TRUE; - } - if (g_height_list < (pixHeight+6)) { - g_height_list = pixHeight+6; - changeSize = TRUE; - } - if (changeSize) - gtk_cell_renderer_set_fixed_size(g_renderer, g_width_list, g_height_list); - - gtk_list_store_append(g_store, &iter); - gtk_list_store_set(g_store, &iter, COL_THEME_FILE, name, COL_SNAPSHOT, icon, -1); -} - - -- 2.44.0