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 /*! Timeout for focusing windows on focus follows mouse, in microseconds */
16 extern guint config_focus_delay
;
18 /*! When true windows' contents are refreshed while they are resized; otherwise
19 they are not updated until the resize is complete */
20 extern gboolean config_redraw_resize
;
22 /*! The stacking layer the dock will reside in */
23 extern ObStackingLayer config_dock_layer
;
24 /*! Is the dock floating */
25 extern gboolean config_dock_floating
;
26 /*! Where to place the dock if not floating */
27 extern ObDirection config_dock_pos
;
28 /*! If config_dock_floating, this is the top-left corner's
30 extern gint config_dock_x
;
31 /*! If config_dock_floating, this is the top-left corner's
33 extern gint config_dock_y
;
34 /*! Whether the dock places the dockapps in it horizontally or vertically */
35 extern ObOrientation config_dock_orient
;
36 /*! Whether to auto-hide the dock when the pointer is not over it */
37 extern gboolean config_dock_hide
;
38 /*! The number of microseconds to wait before hiding the dock */
39 extern guint config_dock_hide_timeout
;
41 /* The name of the theme */
42 extern char *config_theme
;
44 /* Titlebar button layout */
45 extern gchar
*config_title_layout
;
47 /*! The number of desktops */
48 extern int config_desktops_num
;
49 /*! Names for the desktops */
50 extern GSList
*config_desktops_names
;
52 /*! The keycode of the key combo which resets the keybaord chains */
53 extern guint config_keyboard_reset_keycode
;
54 /*! The modifiers of the key combo which resets the keybaord chains */
55 extern guint config_keyboard_reset_state
;
57 /*! Number of pixels a drag must go before being considered a drag */
58 extern gint config_mouse_threshold
;
59 /*! Number of milliseconds within which 2 clicks must occur to be a
61 extern gint config_mouse_dclicktime
;
63 /*! Number of pixels to resist while crossing another window's edge */
64 extern gint config_resist_win
;
65 /*! Number of pixels to resist while crossing a screen's edge */
66 extern gint config_resist_edge
;
68 /*! User-specified menu files */
69 extern GSList
*config_menu_files
;
71 void config_startup(struct _ObParseInst
*i
);
72 void config_shutdown();