1 typedef struct _config {
2 	gdouble delay;
3 	gboolean restart_selectwm;
4 	gchar *default_wm;
5 	gint goback_btn;
6 
7 	gint timer;
8 	gdouble elapsed_delay;
9 
10 	GtkWidget *window;
11 	GtkWidget *treeview;
12 	GtkTreeModel *model;
13 	GtkWidget *label;
14 
15 	GString *ConfigFile;
16 	gboolean SaveOnExit;
17 } config;
18 
19 typedef struct _ch_options {
20 	GtkWidget *window;
21 	GtkWidget *spin;
22 	config *selectwm_config;
23 
24 } ch_options;
25 
26 enum
27 {
28 	C_ICON,
29 	C_DESC,
30 	C_CMD,
31 	C_DEFAULT,
32 	C_COLOR,
33 	C_EDITABLE,
34 	N_COLUMNS
35 };
36 
37