]> icculus.org git repositories - mikachu/openbox.git/blob - openbox/config.h
move the openbox engine into librender and the kernel. the theme is loaded and stored...
[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
15 /*! The number of desktops */
16 extern int config_desktops_num;
17 /*! Names for the desktops */
18 extern GSList *config_desktops_names;
19
20
21 void config_startup();
22 void config_shutdown();
23
24 #endif