]> icculus.org git repositories - dana/openbox.git/blob - openbox/config.h
move config option loading for the kernel into config.c/h
[dana/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 engine to load */
16 extern char *config_engine_name;
17 /*! The theme to load */
18 extern char *config_engine_theme;
19 /*! The titlebar layout */
20 extern char *config_engine_layout;
21 /*! The titlebar font */
22 extern char *config_engine_font;
23 /*! The titlebar font's shadow */
24 extern gboolean config_engine_shadow;
25 /*! The titlebar font's shadow offset */
26 extern int config_engine_shadow_offset;
27 /*! The titlebar font's shadow transparency */
28 extern int config_engine_shadow_tint;
29
30 /*! The number of desktops */
31 extern int config_desktops_num;
32 /*! Names for the desktops */
33 extern GSList *config_desktops_names;
34
35
36 void config_startup();
37 void config_shutdown();
38
39 #endif