tint2/src/tint2conf/theme_view.h

19 lines
275 B
C
Raw Normal View History

#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_THEME_NAME, COL_SNAPSHOT, NB_COL, };
GtkWidget *create_view();
2015-07-12 15:01:44 +00:00
void custom_list_append(const gchar *path);
#endif