2009-11-17 10:03:39 +00:00
|
|
|
#ifndef THEME_VIEW
|
|
|
|
#define THEME_VIEW
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2010-04-03 22:52:52 +00:00
|
|
|
extern GtkWidget *g_theme_view;
|
2016-03-08 22:42:35 +00:00
|
|
|
extern GtkListStore *theme_list_store;
|
2011-06-06 09:16:51 +00:00
|
|
|
enum { COL_THEME_FILE = 0, COL_THEME_NAME, COL_SNAPSHOT, NB_COL, };
|
2009-11-17 10:03:39 +00:00
|
|
|
|
2010-03-31 22:13:24 +00:00
|
|
|
GtkWidget *create_view();
|
2010-03-28 22:50:26 +00:00
|
|
|
|
2016-03-08 22:42:35 +00:00
|
|
|
void theme_list_append(const gchar *path, const gchar *suffix);
|
2009-11-17 10:03:39 +00:00
|
|
|
|
|
|
|
#endif
|