1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 config.h for the Openbox window manager
4 Copyright (c) 2003 Ben Jansens
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 See the COPYING file for a copy of the GNU General Public License.
29 /*! Should new windows be focused */
30 extern gboolean config_focus_new
;
31 /*! Focus windows when the mouse enters them */
32 extern gboolean config_focus_follow
;
33 /*! Should focus stay under the mouse when there is nothing focused or go to
34 the last used window */
35 extern gboolean config_focus_last
;
36 /*! Timeout for focusing windows on focus follows mouse, in microseconds */
37 extern guint config_focus_delay
;
38 /*! If windows should automatically be raised when they are focused in
39 focus follows mouse */
40 extern guint config_focus_raise
;
42 /*! When true windows' contents are refreshed while they are resized; otherwise
43 they are not updated until the resize is complete */
44 extern gboolean config_redraw_resize
;
46 /*! The stacking layer the dock will reside in */
47 extern ObStackingLayer config_dock_layer
;
48 /*! Is the dock floating */
49 extern gboolean config_dock_floating
;
50 /*! Where to place the dock if not floating */
51 extern ObDirection config_dock_pos
;
52 /*! If config_dock_floating, this is the top-left corner's
54 extern gint config_dock_x
;
55 /*! If config_dock_floating, this is the top-left corner's
57 extern gint config_dock_y
;
58 /*! Whether the dock places the dockapps in it horizontally or vertically */
59 extern ObOrientation config_dock_orient
;
60 /*! Whether to auto-hide the dock when the pointer is not over it */
61 extern gboolean config_dock_hide
;
62 /*! The number of microseconds to wait before hiding the dock */
63 extern guint config_dock_hide_delay
;
64 /*! The mouse button to be used to move dock apps */
65 extern guint config_dock_app_move_button
;
66 /*! The modifiers to be used with the button to move dock apps */
67 extern guint config_dock_app_move_modifiers
;
69 /* The name of the theme */
70 extern char *config_theme
;
72 /* Titlebar button layout */
73 extern gchar
*config_title_layout
;
75 /*! The number of desktops */
76 extern int config_desktops_num
;
77 /*! Names for the desktops */
78 extern GSList
*config_desktops_names
;
80 /*! The keycode of the key combo which resets the keybaord chains */
81 extern guint config_keyboard_reset_keycode
;
82 /*! The modifiers of the key combo which resets the keybaord chains */
83 extern guint config_keyboard_reset_state
;
85 /*! Number of pixels a drag must go before being considered a drag */
86 extern gint config_mouse_threshold
;
87 /*! Number of milliseconds within which 2 clicks must occur to be a
89 extern gint config_mouse_dclicktime
;
91 /*! Number of pixels to resist while crossing another window's edge */
92 extern gint config_resist_win
;
93 /*! Number of pixels to resist while crossing a screen's edge */
94 extern gint config_resist_edge
;
96 /*! User-specified menu files */
97 extern GSList
*config_menu_files
;
99 void config_startup(struct _ObParseInst
*i
);
100 void config_shutdown();