tint2conf: Support for loading themes from /usr/share/tint2

This commit is contained in:
o9000
2016-03-08 23:42:35 +01:00
parent 7f9ac5c584
commit 38ef80637f
4 changed files with 159 additions and 94 deletions

View File

@@ -5,12 +5,12 @@
#include <gtk/gtk.h>
extern GtkWidget *g_theme_view;
extern GtkListStore *g_store;
extern GtkListStore *theme_list_store;
enum { COL_THEME_FILE = 0, COL_THEME_NAME, COL_SNAPSHOT, NB_COL, };
GtkWidget *create_view();
void custom_list_append(const gchar *path);
void theme_list_append(const gchar *path, const gchar *suffix);
#endif