11 /*! Should new windows be focused */
12 extern gboolean config_focus_new
;
13 /*! Focus windows when the mouse enters them */
14 extern gboolean config_focus_follow
;
15 /*! Focus the last focused window as a fallback */
16 extern gboolean config_focus_last
;
17 /*! Focus the last focused window as a fallback when switching desktops */
18 extern gboolean config_focus_last_on_desktop
;
19 /*! Timeout for focusing windows on focus follows mouse, in milliseconds */
20 extern guint config_focus_delay
;
22 /*! When true windows' contents are refreshed while they are resized; otherwise
23 they are not updated until the resize is complete */
24 extern gboolean config_redraw_resize
;
26 /*! The stacking layer the dock will reside in */
27 extern ObStackingLayer config_dock_layer
;
28 /*! Is the dock floating */
29 extern gboolean config_dock_floating
;
30 /*! Where to place the dock if not floating */
31 extern ObDirection config_dock_pos
;
32 /*! If config_dock_floating, this is the top-left corner's
34 extern gint config_dock_x
;
35 /*! If config_dock_floating, this is the top-left corner's
37 extern gint config_dock_y
;
38 /*! Whether the dock places the dockapps in it horizontally or vertically */
39 extern ObOrientation config_dock_orient
;
40 /*! Whether to auto-hide the dock when the pointer is not over it */
41 extern gboolean config_dock_hide
;
42 /*! The number of milliseconds to wait before hiding the dock */
43 extern guint config_dock_hide_timeout
;
45 /* The name of the theme */
46 extern char *config_theme
;
48 /* Titlebar button layout */
49 extern gchar
*config_title_layout
;
51 /*! The number of desktops */
52 extern int config_desktops_num
;
53 /*! Names for the desktops */
54 extern GSList
*config_desktops_names
;
56 /*! The keycode of the key combo which resets the keybaord chains */
57 extern guint config_keyboard_reset_keycode
;
58 /*! The modifiers of the key combo which resets the keybaord chains */
59 extern guint config_keyboard_reset_state
;
61 /*! Number of pixels a drag must go before being considered a drag */
62 extern gint config_mouse_threshold
;
63 /*! Number of milliseconds within which 2 clicks must occur to be a
65 extern gint config_mouse_dclicktime
;
67 /*! Number of pixels to resist while crossing another window's edge */
68 extern gint config_resist_win
;
69 /*! Number of pixels to resist while crossing a screen's edge */
70 extern gint config_resist_edge
;
72 /*! User-specified menu files */
73 extern GSList
*config_menu_files
;
75 void config_startup(struct _ObParseInst
*i
);
76 void config_shutdown();