2010-11-02 11:40:50 +00:00
|
|
|
/**************************************************************************
|
|
|
|
*
|
|
|
|
* Tint2conf
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Thierry lorthiois (lorthiois@bbsoft.fr) from Omega distribution
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License version 2
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
**************************************************************************/
|
2010-03-28 22:50:26 +00:00
|
|
|
|
2010-04-03 22:52:52 +00:00
|
|
|
|
2010-06-14 15:08:51 +00:00
|
|
|
#include "main.h"
|
2015-07-12 15:01:44 +00:00
|
|
|
#include "strnatcmp.h"
|
2009-11-17 10:03:39 +00:00
|
|
|
#include "theme_view.h"
|
|
|
|
|
2010-03-31 22:13:24 +00:00
|
|
|
// The data columns that we export via the tree model interface
|
2010-04-03 22:52:52 +00:00
|
|
|
GtkWidget *g_theme_view;
|
2010-03-31 22:13:24 +00:00
|
|
|
GtkListStore *g_store;
|
|
|
|
int g_width_list, g_height_list;
|
|
|
|
GtkCellRenderer *g_renderer;
|
2009-11-17 10:03:39 +00:00
|
|
|
|
2015-07-12 15:01:44 +00:00
|
|
|
gint theme_name_compare(GtkTreeModel *model,
|
|
|
|
GtkTreeIter *a,
|
|
|
|
GtkTreeIter *b,
|
|
|
|
gpointer user_data);
|
|
|
|
|
2010-03-31 22:13:24 +00:00
|
|
|
GtkWidget *create_view()
|
2009-11-17 10:03:39 +00:00
|
|
|
{
|
2010-05-04 18:47:34 +00:00
|
|
|
GtkTreeViewColumn *col;
|
|
|
|
GtkCellRenderer *renderer;
|
|
|
|
GtkWidget *view;
|
2010-03-31 22:13:24 +00:00
|
|
|
|
2011-06-06 09:16:51 +00:00
|
|
|
g_store = gtk_list_store_new(NB_COL, G_TYPE_STRING, G_TYPE_STRING, GDK_TYPE_PIXBUF);
|
2010-03-31 22:13:24 +00:00
|
|
|
|
|
|
|
view = gtk_tree_view_new_with_model(GTK_TREE_MODEL(g_store));
|
|
|
|
gtk_tree_view_set_rules_hint(GTK_TREE_VIEW(view), TRUE);
|
|
|
|
gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(view), FALSE);
|
|
|
|
|
|
|
|
g_object_unref(g_store); // destroy store automatically with view
|
|
|
|
|
|
|
|
renderer = gtk_cell_renderer_text_new();
|
|
|
|
col = gtk_tree_view_column_new();
|
|
|
|
gtk_tree_view_column_pack_start(col, renderer, TRUE);
|
|
|
|
gtk_tree_view_column_add_attribute(col, renderer, "text", COL_THEME_FILE);
|
|
|
|
gtk_tree_view_column_set_visible(col, FALSE);
|
|
|
|
gtk_tree_view_append_column(GTK_TREE_VIEW(view),col);
|
|
|
|
|
2011-06-06 09:16:51 +00:00
|
|
|
renderer = gtk_cell_renderer_text_new();
|
|
|
|
col = gtk_tree_view_column_new();
|
|
|
|
gtk_tree_view_column_pack_start(col, renderer, TRUE);
|
|
|
|
gtk_tree_view_column_add_attribute(col, renderer, "text", COL_THEME_NAME);
|
|
|
|
gtk_tree_view_append_column(GTK_TREE_VIEW(view),col);
|
|
|
|
|
2010-03-31 22:13:24 +00:00
|
|
|
g_width_list = 200;
|
|
|
|
g_height_list = 30;
|
|
|
|
g_renderer = gtk_cell_renderer_pixbuf_new();
|
|
|
|
g_object_set(g_renderer, "xalign", 0.0, NULL);
|
|
|
|
gtk_cell_renderer_set_fixed_size(g_renderer, g_width_list, g_height_list);
|
|
|
|
// specific to gtk-2.18 or higher
|
|
|
|
//gtk_cell_renderer_set_padding(g_renderer, 5, 5);
|
|
|
|
col = gtk_tree_view_column_new();
|
|
|
|
gtk_tree_view_column_pack_start(col, g_renderer, TRUE);
|
|
|
|
gtk_tree_view_column_add_attribute(col, g_renderer, "pixbuf", COL_SNAPSHOT);
|
|
|
|
gtk_tree_view_append_column(GTK_TREE_VIEW(view),col);
|
|
|
|
|
2010-05-04 18:47:34 +00:00
|
|
|
GtkTreeSortable *sortable;
|
|
|
|
sortable = GTK_TREE_SORTABLE(g_store);
|
|
|
|
gtk_tree_sortable_set_sort_column_id(sortable, COL_THEME_FILE, GTK_SORT_ASCENDING);
|
2015-07-12 15:01:44 +00:00
|
|
|
gtk_tree_sortable_set_sort_func(sortable, COL_THEME_FILE, theme_name_compare, NULL, NULL);
|
2010-03-31 22:13:24 +00:00
|
|
|
return view;
|
2010-03-28 22:50:26 +00:00
|
|
|
}
|
|
|
|
|
2015-07-12 15:01:44 +00:00
|
|
|
gint theme_name_compare(GtkTreeModel *model,
|
|
|
|
GtkTreeIter *a,
|
|
|
|
GtkTreeIter *b,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
gchar *path_a, *path_b;
|
|
|
|
gtk_tree_model_get(model, a, COL_THEME_FILE, &path_a, -1);
|
|
|
|
gtk_tree_model_get(model, b, COL_THEME_FILE, &path_b, -1);
|
|
|
|
gchar *name_a = path_a;
|
|
|
|
gchar *p;
|
|
|
|
for (p = name_a; *p; p++) {
|
|
|
|
if (*p == '/')
|
|
|
|
name_a = p + 1;
|
|
|
|
}
|
|
|
|
gchar *name_b = path_b;
|
|
|
|
for (p = name_b; *p; p++) {
|
|
|
|
if (*p == '/')
|
|
|
|
name_b = p + 1;
|
|
|
|
}
|
|
|
|
if (g_str_equal(name_a, name_b))
|
|
|
|
return 0;
|
|
|
|
if (g_str_equal(name_a, "tint2rc"))
|
|
|
|
return -1;
|
|
|
|
if (g_str_equal(name_b, "tint2rc"))
|
|
|
|
return 1;
|
|
|
|
gint result = strnatcasecmp(name_a, name_b);
|
|
|
|
g_free(path_a);
|
|
|
|
g_free(path_b);
|
|
|
|
return result;
|
|
|
|
}
|
2010-03-28 22:50:26 +00:00
|
|
|
|
2015-07-12 15:01:44 +00:00
|
|
|
void custom_list_append(const gchar *path)
|
2010-04-03 22:52:52 +00:00
|
|
|
{
|
|
|
|
GtkTreeIter iter;
|
|
|
|
|
|
|
|
gtk_list_store_append(g_store, &iter);
|
2015-07-12 15:01:44 +00:00
|
|
|
gtk_list_store_set(g_store, &iter, COL_THEME_FILE, path, -1);
|
2011-06-06 09:16:51 +00:00
|
|
|
|
2015-07-12 15:01:44 +00:00
|
|
|
gchar *name = g_strdup(strrchr(path, '/') + 1);
|
|
|
|
gtk_list_store_set(g_store, &iter, COL_THEME_NAME, name, -1);
|
2010-04-03 22:52:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
gboolean update_snapshot()
|
|
|
|
{
|
|
|
|
GtkTreeModel *model;
|
|
|
|
GtkTreeIter iter;
|
|
|
|
GdkPixbuf *icon;
|
2015-01-28 15:31:20 +00:00
|
|
|
gboolean have_iter;
|
|
|
|
|
|
|
|
gint pixWidth = 200, pixHeight = 30;
|
2010-04-03 22:52:52 +00:00
|
|
|
|
|
|
|
model = gtk_tree_view_get_model(GTK_TREE_VIEW(g_theme_view));
|
|
|
|
have_iter = gtk_tree_model_get_iter_first(model, &iter);
|
|
|
|
while (have_iter) {
|
|
|
|
gtk_tree_model_get(model, &iter, COL_SNAPSHOT, &icon, -1);
|
|
|
|
if (icon != NULL) {
|
|
|
|
g_object_unref(icon);
|
|
|
|
}
|
|
|
|
|
|
|
|
// build panel's snapshot
|
2015-01-28 15:31:20 +00:00
|
|
|
GdkPixbuf *pixbuf = NULL;
|
2010-04-03 22:52:52 +00:00
|
|
|
gchar *name, *snap, *cmd;
|
|
|
|
|
2015-01-28 15:31:20 +00:00
|
|
|
snap = g_build_filename(g_get_user_config_dir(), "tint2", "snap.jpg", NULL);
|
2010-04-03 22:52:52 +00:00
|
|
|
g_remove(snap);
|
|
|
|
|
|
|
|
gtk_tree_model_get(model, &iter, COL_THEME_FILE, &name, -1);
|
|
|
|
cmd = g_strdup_printf("tint2 -c \'%s\' -s \'%s\'", name, snap);
|
2015-01-28 15:31:20 +00:00
|
|
|
if (system(cmd) == 0) {
|
|
|
|
// load
|
|
|
|
pixbuf = gdk_pixbuf_new_from_file(snap, NULL);
|
|
|
|
if (pixbuf == NULL) {
|
|
|
|
printf("snapshot NULL : %s\n", cmd);
|
|
|
|
}
|
2010-04-03 22:52:52 +00:00
|
|
|
}
|
|
|
|
g_free(snap);
|
|
|
|
g_free(cmd);
|
|
|
|
g_free(name);
|
|
|
|
|
2015-01-28 15:31:20 +00:00
|
|
|
gint w, h;
|
|
|
|
w = gdk_pixbuf_get_width(pixbuf);
|
|
|
|
h = gdk_pixbuf_get_height(pixbuf);
|
|
|
|
pixWidth = w > pixWidth ? w : pixWidth;
|
|
|
|
pixHeight = h > pixHeight ? h : pixHeight;
|
2010-04-03 22:52:52 +00:00
|
|
|
|
|
|
|
gtk_list_store_set(g_store, &iter, COL_SNAPSHOT, pixbuf, -1);
|
2015-01-28 15:31:20 +00:00
|
|
|
|
|
|
|
have_iter = gtk_tree_model_iter_next(model, &iter);
|
2010-04-03 22:52:52 +00:00
|
|
|
}
|
2015-01-28 15:31:20 +00:00
|
|
|
|
|
|
|
gtk_cell_renderer_set_fixed_size(g_renderer, pixWidth + 30, pixHeight + 30);
|
|
|
|
|
|
|
|
return FALSE;
|
2010-04-03 22:52:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|