tint2/src/tint2conf/theme_view.h

23 lines
349 B
C
Raw Normal View History

#ifndef THEME_VIEW
#define THEME_VIEW
#include <gtk/gtk.h>
extern GtkWidget *g_theme_view;
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,
};
GtkWidget *create_view();
2016-03-24 22:20:00 +00:00
void theme_list_append(const gchar *path);
#endif