]> git.sur5r.net Git - i3/i3/blob - include/config.h
fd9c73032ef2506372439c637792e7d2f56ffe27
[i3/i3] / include / config.h
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2012 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * include/config.h: Contains all structs/variables for the configurable
8  * part of i3 as well as functions handling the configuration file (calling
9  * the parser (src/cfgparse.y) with the correct path, switching key bindings
10  * mode).
11  *
12  */
13 #ifndef I3_CONFIG_H
14 #define I3_CONFIG_H
15
16 #include <stdbool.h>
17 #include "queue.h"
18 #include "i3.h"
19 #include "libi3.h"
20
21 typedef struct Config Config;
22 typedef struct Barconfig Barconfig;
23 extern char *current_configpath;
24 extern Config config;
25 extern SLIST_HEAD(modes_head, Mode) modes;
26 extern TAILQ_HEAD(barconfig_head, Barconfig) barconfigs;
27 /* defined in src/cfgparse.y */
28 extern bool force_old_config_parser;
29
30 /**
31  * Used during the config file lexing/parsing to keep the state of the lexer
32  * in order to provide useful error messages in yyerror().
33  *
34  */
35 struct context {
36     bool has_errors;
37     bool has_warnings;
38
39     int line_number;
40     char *line_copy;
41     const char *filename;
42
43     char *compact_error;
44
45     /* These are the same as in YYLTYPE */
46     int first_column;
47     int last_column;
48 };
49
50 /**
51  * Part of the struct Config. It makes sense to group colors for background,
52  * border and text as every element in i3 has them (window decorations, bar).
53  *
54  */
55 struct Colortriple {
56     uint32_t border;
57     uint32_t background;
58     uint32_t text;
59     uint32_t indicator;
60 };
61
62 /**
63  * Holds a user-assigned variable for parsing the configuration file. The key
64  * is replaced by value in every following line of the file.
65  *
66  */
67 struct Variable {
68     char *key;
69     char *value;
70     char *next_match;
71
72     SLIST_ENTRY(Variable) variables;
73 };
74
75 /**
76  * The configuration file can contain multiple sets of bindings. Apart from the
77  * default set (name == "default"), you can specify other sets and change the
78  * currently active set of bindings by using the "mode <name>" command.
79  *
80  */
81 struct Mode {
82     char *name;
83     struct bindings_head *bindings;
84
85     SLIST_ENTRY(Mode) modes;
86 };
87
88 /**
89  * Holds part of the configuration (the part which is not already in dedicated
90  * structures in include/data.h).
91  *
92  */
93 struct Config {
94     const char *terminal;
95     i3Font font;
96
97     char *ipc_socket_path;
98     const char *restart_state_path;
99
100     int default_layout;
101     int container_stack_limit;
102     int container_stack_limit_value;
103     int default_border_width;
104
105     /** Default orientation for new containers */
106     int default_orientation;
107
108     /** By default, focus follows mouse. If the user explicitly wants to
109      * turn this off (and instead rely only on the keyboard for changing
110      * focus), we allow him to do this with this relatively special option.
111      * It is not planned to add any different focus models. */
112     bool disable_focus_follows_mouse;
113
114     /** Remove borders if they are adjacent to the screen edge.
115      * This is useful if you are reaching scrollbar on the edge of the
116      * screen or do not want to waste a single pixel of displayspace.
117      * By default, this is disabled. */
118     adjacent_t hide_edge_borders;
119
120     /** By default, a workspace bar is drawn at the bottom of the screen.
121      * If you want to have a more fancy bar, it is recommended to replace
122      * the whole bar by dzen2, for example using the i3-wsbar script which
123      * comes with i3. Thus, you can turn it off entirely. */
124     bool disable_workspace_bar;
125
126     /** Think of the following layout: Horizontal workspace with a tabbed
127      * con on the left of the screen and a terminal on the right of the
128      * screen. You are in the second container in the tabbed container and
129      * focus to the right. By default, i3 will set focus to the terminal on
130      * the right. If you are in the first container in the tabbed container
131      * however, focusing to the left will wrap. This option forces i3 to
132      * always wrap, which will result in you having to use "focus parent"
133      * more often. */
134     bool force_focus_wrapping;
135
136     /** By default, use the RandR API for multi-monitor setups.
137      * Unfortunately, the nVidia binary graphics driver doesn't support
138      * this API. Instead, it only support the less powerful Xinerama API,
139      * which can be enabled by this option.
140      *
141      * Note: this option takes only effect on the initial startup (eg.
142      * reconfiguration is not possible). On startup, the list of screens
143      * is fetched once and never updated. */
144     bool force_xinerama;
145
146     /** Overwrites output detection (for testing), see src/fake_outputs.c */
147     char *fake_outputs;
148
149     /** Automatic workspace back and forth switching. If this is set, a
150      * switch to the currently active workspace will switch to the
151      * previously focused one instead, making it possible to fast toggle
152      * between two workspaces. */
153     bool workspace_auto_back_and_forth;
154
155     /** By default, urgency is cleared immediately when switching to another
156      * workspace leads to focusing the con with the urgency hint. When having
157      * multiple windows on that workspace, the user needs to guess which
158      * application raised the event. To prevent this, the reset of the urgency
159      * flag can be delayed using an urgency timer. */
160     float workspace_urgency_timer;
161
162     /** The default border style for new windows. */
163     border_style_t default_border;
164
165     /** The default border style for new floating windows. */
166     border_style_t default_floating_border;
167
168     /** The modifier which needs to be pressed in combination with your mouse
169      * buttons to do things with floating windows (move, resize) */
170     uint32_t floating_modifier;
171
172     /** Maximum and minimum dimensions of a floating window */
173     int32_t floating_maximum_width;
174     int32_t floating_maximum_height;
175     int32_t floating_minimum_width;
176     int32_t floating_minimum_height;
177
178     /* Color codes are stored here */
179     struct config_client {
180         uint32_t background;
181         struct Colortriple focused;
182         struct Colortriple focused_inactive;
183         struct Colortriple unfocused;
184         struct Colortriple urgent;
185     } client;
186     struct config_bar {
187         struct Colortriple focused;
188         struct Colortriple unfocused;
189         struct Colortriple urgent;
190     } bar;
191
192     /** What should happen when a new popup is opened during fullscreen mode */
193     enum {
194         PDF_LEAVE_FULLSCREEN = 0,
195         PDF_IGNORE = 1
196     } popup_during_fullscreen;
197 };
198
199 /**
200  * Holds the status bar configuration (i3bar). One of these structures is
201  * created for each 'bar' block in the config.
202  *
203  */
204 struct Barconfig {
205     /** Automatically generated ID for this bar config. Used by the bar process
206      * to request a specific configuration. */
207     char *id;
208
209     /** Number of outputs in the outputs array */
210     int num_outputs;
211     /** Outputs on which this bar should show up on. We use an array for
212      * simplicity (since we store just strings). */
213     char **outputs;
214
215     /** Output on which the tray should be shown. The special value of 'no'
216      * disables the tray (it’s enabled by default). */
217     char *tray_output;
218
219     /** Path to the i3 IPC socket. This option is discouraged since programs
220      * can find out the path by looking for the I3_SOCKET_PATH property on the
221      * root window! */
222     char *socket_path;
223
224     /** Bar display mode (hide unless modifier is pressed or show in dock mode) */
225     enum { M_DOCK = 0, M_HIDE = 1 } mode;
226
227     /** Bar modifier (to show bar when in hide mode). */
228     enum {
229         M_NONE = 0,
230         M_CONTROL = 1,
231         M_SHIFT = 2,
232         M_MOD1 = 3,
233         M_MOD2 = 4,
234         M_MOD3 = 5,
235         M_MOD4 = 6,
236         M_MOD5 = 7
237     } modifier;
238
239     /** Bar position (bottom by default). */
240     enum { P_BOTTOM = 0, P_TOP = 1 } position;
241
242     /** Command that should be run to execute i3bar, give a full path if i3bar is not
243      * in your $PATH.
244      * By default just 'i3bar' is executed. */
245     char *i3bar_command;
246
247     /** Command that should be run to get a statusline, for example 'i3status'.
248      * Will be passed to the shell. */
249     char *status_command;
250
251     /** Font specification for all text rendered on the bar. */
252     char *font;
253
254     /** Hide workspace buttons? Configuration option is 'workspace_buttons no'
255      * but we invert the bool to get the correct default when initializing with
256      * zero. */
257     bool hide_workspace_buttons;
258
259     /** Enable verbose mode? Useful for debugging purposes. */
260     bool verbose;
261
262     struct bar_colors {
263         char *background;
264         char *statusline;
265
266         char *focused_workspace_border;
267         char *focused_workspace_bg;
268         char *focused_workspace_text;
269
270         char *active_workspace_border;
271         char *active_workspace_bg;
272         char *active_workspace_text;
273
274         char *inactive_workspace_border;
275         char *inactive_workspace_bg;
276         char *inactive_workspace_text;
277
278         char *urgent_workspace_border;
279         char *urgent_workspace_bg;
280         char *urgent_workspace_text;
281     } colors;
282
283     TAILQ_ENTRY(Barconfig) configs;
284 };
285
286 /**
287  * Reads the configuration from ~/.i3/config or /etc/i3/config if not found.
288  *
289  * If you specify override_configpath, only this path is used to look for a
290  * configuration file.
291  *
292  */
293 void load_configuration(xcb_connection_t *conn, const char *override_configfile, bool reload);
294
295 /**
296  * Translates keysymbols to keycodes for all bindings which use keysyms.
297  *
298  */
299 void translate_keysyms(void);
300
301 /**
302  * Ungrabs all keys, to be called before re-grabbing the keys because of a
303  * mapping_notify event or a configuration file reload
304  *
305  */
306 void ungrab_all_keys(xcb_connection_t *conn);
307
308 /**
309  * Grab the bound keys (tell X to send us keypress events for those keycodes)
310  *
311  */
312 void grab_all_keys(xcb_connection_t *conn, bool bind_mode_switch);
313
314 /**
315  * Switches the key bindings to the given mode, if the mode exists
316  *
317  */
318 void switch_mode(const char *new_mode);
319
320 /**
321  * Returns a pointer to the Binding with the specified modifiers and keycode
322  * or NULL if no such binding exists.
323  *
324  */
325 Binding *get_binding(uint16_t modifiers, bool key_release, xcb_keycode_t keycode);
326
327 /**
328  * Kills the configerror i3-nagbar process, if any.
329  *
330  * Called when reloading/restarting.
331  *
332  * If wait_for_it is set (restarting), this function will waitpid(), otherwise,
333  * ev is assumed to handle it (reloading).
334  *
335  */
336 void kill_configerror_nagbar(bool wait_for_it);
337
338 /* prototype for src/cfgparse.y */
339 void parse_file(const char *f);
340
341 #endif