2010-03-28 22:50:26 +00:00
|
|
|
|
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;
|
|
|
|
extern GtkListStore *g_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
|
|
|
|
2015-07-12 15:01:44 +00:00
|
|
|
void custom_list_append(const gchar *path);
|
2009-11-17 10:03:39 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2010-03-28 22:50:26 +00:00
|
|
|
|
|
|
|
|