tint2/src/tint2conf/theme_view.h
2010-04-03 22:52:52 +00:00

20 lines
288 B
C

#ifndef THEME_VIEW
#define THEME_VIEW
#include <gtk/gtk.h>
extern GtkWidget *g_theme_view;
extern GtkListStore *g_store;
enum { COL_THEME_FILE = 0, COL_SNAPSHOT, NB_COL, };
GtkWidget *create_view();
void custom_list_append(const gchar *name);
gboolean update_snapshot();
#endif