]> git.sur5r.net Git - i3/i3/blob - include/config.h
Bugfix: Correctly hide/show workspaces when enabling new outputs, correctly handle...
[i3/i3] / include / config.h
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * © 2009-2010 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  * include/config.h: Contains all structs/variables for the configurable
11  * part of i3 as well as functions handling the configuration file (calling
12  * the parser (src/cfgparse.y) with the correct path, switching key bindings
13  * mode).
14  *
15  */
16
17 #ifndef _CONFIG_H
18 #define _CONFIG_H
19
20 #include <stdbool.h>
21 #include "queue.h"
22 #include "i3.h"
23
24 typedef struct Config Config;
25 extern Config config;
26 extern SLIST_HEAD(modes_head, Mode) modes;
27
28 /**
29  * Used during the config file lexing/parsing to keep the state of the lexer
30  * in order to provide useful error messages in yyerror().
31  *
32  */
33 struct context {
34         int line_number;
35         char *line_copy;
36         const char *filename;
37
38         /* These are the same as in YYLTYPE */
39         int first_column;
40         int last_column;
41 };
42
43 /**
44  * Part of the struct Config. It makes sense to group colors for background,
45  * border and text as every element in i3 has them (window decorations, bar).
46  *
47  */
48 struct Colortriple {
49         uint32_t border;
50         uint32_t background;
51         uint32_t text;
52 };
53
54 /**
55  * Holds a user-assigned variable for parsing the configuration file. The key
56  * is replaced by value in every following line of the file.
57  *
58  */
59 struct Variable {
60         char *key;
61         char *value;
62         char *next_match;
63
64         SLIST_ENTRY(Variable) variables;
65 };
66
67 /**
68  * The configuration file can contain multiple sets of bindings. Apart from the
69  * default set (name == "default"), you can specify other sets and change the
70  * currently active set of bindings by using the "mode <name>" command.
71  *
72  */
73 struct Mode {
74         char *name;
75         struct bindings_head *bindings;
76
77         SLIST_ENTRY(Mode) modes;
78 };
79
80 /**
81  * Holds part of the configuration (the part which is not already in dedicated
82  * structures in include/data.h).
83  *
84  */
85 struct Config {
86         const char *terminal;
87         const char *font;
88
89         const char *ipc_socket_path;
90
91         int container_mode;
92         int container_stack_limit;
93         int container_stack_limit_value;
94
95         /** By default, focus follows mouse. If the user explicitly wants to
96          * turn this off (and instead rely only on the keyboard for changing
97          * focus), we allow him to do this with this relatively special option.
98          * It is not planned to add any different focus models. */
99         bool disable_focus_follows_mouse;
100
101         const char *default_border;
102
103         /** The modifier which needs to be pressed in combination with your mouse
104          * buttons to do things with floating windows (move, resize) */
105         uint32_t floating_modifier;
106
107         /* Color codes are stored here */
108         struct config_client {
109                 struct Colortriple focused;
110                 struct Colortriple focused_inactive;
111                 struct Colortriple unfocused;
112                 struct Colortriple urgent;
113         } client;
114         struct config_bar {
115                 struct Colortriple focused;
116                 struct Colortriple unfocused;
117                 struct Colortriple urgent;
118         } bar;
119 };
120
121 /**
122  * Reads the configuration from ~/.i3/config or /etc/i3/config if not found.
123  *
124  * If you specify override_configpath, only this path is used to look for a
125  * configuration file.
126  *
127  */
128 void load_configuration(xcb_connection_t *conn, const char *override_configfile, bool reload);
129
130 /**
131  * Ungrabs all keys, to be called before re-grabbing the keys because of a
132  * mapping_notify event or a configuration file reload
133  *
134  */
135 void ungrab_all_keys(xcb_connection_t *conn);
136
137 /**
138  * Grab the bound keys (tell X to send us keypress events for those keycodes)
139  *
140  */
141 void grab_all_keys(xcb_connection_t *conn);
142
143 /**
144  * Switches the key bindings to the given mode, if the mode exists
145  *
146  */
147 void switch_mode(xcb_connection_t *conn, const char *new_mode);
148
149 /* prototype for src/cfgparse.y */
150 void parse_file(const char *f);
151
152 #endif