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;
|
2017-04-13 12:07:23 +00:00
|
|
|
enum {
|
|
|
|
COL_THEME_FILE = 0,
|
|
|
|
COL_THEME_NAME,
|
|
|
|
COL_SNAPSHOT,
|
|
|
|
COL_WIDTH,
|
|
|
|
COL_HEIGHT,
|
|
|
|
COL_FORCE_REFRESH,
|
|
|
|
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-24 22:20:00 +00:00
|
|
|
void theme_list_append(const gchar *path);
|
2009-11-17 10:03:39 +00:00
|
|
|
|
|
|
|
#endif
|