]> icculus.org git repositories - mikachu/openbox.git/blob - openbox/config.h
Clients Menus and Slits are all 'ObWindow's now.
[mikachu/openbox.git] / openbox / config.h
1 #ifndef __config_h
2 #define __config_h
3
4 #include <glib.h>
5
6 /*! Should new windows be focused */
7 extern gboolean config_focus_new;
8 /*! Focus windows when the mouse enters them */
9 extern gboolean config_focus_follow;
10 /*! Focus the last focused window as a fallback */
11 extern gboolean config_focus_last;
12 /*! Focus the last focused window as a fallback when switching desktops */
13 extern gboolean config_focus_last_on_desktop;
14 /*! Show a popup dialog while cycling focus */
15 extern gboolean config_focus_popup;
16 /*! The number of slits to create */
17 extern int config_slit_number;
18
19 /* The name of the theme */
20 char *config_theme;
21
22 /*! The number of desktops */
23 extern int config_desktops_num;
24 /*! Names for the desktops */
25 extern GSList *config_desktops_names;
26
27
28 void config_startup();
29 void config_shutdown();
30
31 #endif