]> git.sur5r.net Git - i3/i3/blob - include/data.h
Bugfix: Ignore EnterNotifies generated by UnmapNotifies
[i3/i3] / include / data.h
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2010 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * include/data.h: This file defines all data structures used by i3
8  *
9  */
10 #include <xcb/randr.h>
11 #include <xcb/xcb_atom.h>
12 #include <stdbool.h>
13
14 #ifndef _DATA_H
15 #define _DATA_H
16 #include "queue.h"
17
18 /*
19  * To get the big concept: There are helper structures like struct Colorpixel
20  * or struct Stack_Window. Everything which is also defined as type (see
21  * forward definitions) is considered to be a major structure, thus important.
22  *
23  * Let’s start from the biggest to the smallest:
24  *
25  * TODO
26  *
27  */
28
29 /* Forward definitions */
30 typedef struct Font i3Font;
31 typedef struct Binding Binding;
32 typedef struct Rect Rect;
33 typedef struct xoutput Output;
34 typedef struct Con Con;
35 typedef struct Match Match;
36 typedef struct Window i3Window;
37
38
39 /******************************************************************************
40  * Helper types
41  *****************************************************************************/
42 typedef enum { D_LEFT, D_RIGHT, D_UP, D_DOWN } direction_t;
43 typedef enum { NO_ORIENTATION = 0, HORIZ, VERT } orientation_t;
44 typedef enum { BS_NORMAL = 0, BS_NONE = 1, BS_1PIXEL = 2 } border_style_t;
45
46 enum {
47     BIND_NONE = 0,
48     BIND_SHIFT = XCB_MOD_MASK_SHIFT,        /* (1 << 0) */
49     BIND_CONTROL = XCB_MOD_MASK_CONTROL,    /* (1 << 2) */
50     BIND_MOD1 = XCB_MOD_MASK_1,             /* (1 << 3) */
51     BIND_MOD2 = XCB_MOD_MASK_2,             /* (1 << 4) */
52     BIND_MOD3 = XCB_MOD_MASK_3,             /* (1 << 5) */
53     BIND_MOD4 = XCB_MOD_MASK_4,             /* (1 << 6) */
54     BIND_MOD5 = XCB_MOD_MASK_5,             /* (1 << 7) */
55     BIND_MODE_SWITCH = (1 << 8)
56 };
57
58 /**
59  * Stores a rectangle, for example the size of a window, the child window etc.
60  * It needs to be packed so that the compiler will not add any padding bytes.
61  * (it is used in src/ewmh.c for example)
62  *
63  * Note that x and y can contain signed values in some cases (for example when
64  * used for the coordinates of a window, which can be set outside of the
65  * visible area, but not when specifying the position of a workspace for the
66  * _NET_WM_WORKAREA hint). Not declaring x/y as int32_t saves us a lot of
67  * typecasts.
68  *
69  */
70 struct Rect {
71     uint32_t x;
72     uint32_t y;
73     uint32_t width;
74     uint32_t height;
75 } __attribute__((packed));
76
77 /**
78  * Stores the reserved pixels on each screen edge read from a
79  * _NET_WM_STRUT_PARTIAL.
80  *
81  */
82 struct reservedpx {
83     uint32_t left;
84     uint32_t right;
85     uint32_t top;
86     uint32_t bottom;
87 };
88
89 /**
90  * Stores a width/height pair, used as part of deco_render_params to check
91  * whether the rects width/height have changed.
92  *
93  */
94 struct width_height {
95     uint32_t w;
96     uint32_t h;
97 };
98
99 /**
100  * Stores the parameters for rendering a window decoration. This structure is
101  * cached in every Con and no re-rendering will be done if the parameters have
102  * not changed (only the pixmaps will be copied).
103  *
104  */
105 struct deco_render_params {
106     struct Colortriple *color;
107     int border_style;
108     struct width_height con_rect;
109     struct width_height con_window_rect;
110     Rect con_deco_rect;
111     uint32_t background;
112     bool con_is_leaf;
113     xcb_font_t font;
114 };
115
116 struct Ignore_Event {
117     int sequence;
118     int response_type;
119     time_t added;
120
121     SLIST_ENTRY(Ignore_Event) ignore_events;
122 };
123
124 /******************************************************************************
125  * Major types
126  *****************************************************************************/
127
128 /**
129  * Holds a keybinding, consisting of a keycode combined with modifiers and the
130  * command which is executed as soon as the key is pressed (see src/command.c)
131  *
132  */
133 struct Binding {
134     /** Symbol the user specified in configfile, if any. This needs to be
135      * stored with the binding to be able to re-convert it into a keycode
136      * if the keyboard mapping changes (using Xmodmap for example) */
137     char *symbol;
138
139     /** Only in use if symbol != NULL. Gets set to the value to which the
140      * symbol got translated when binding. Useful for unbinding and
141      * checking which binding was used when a key press event comes in.
142      *
143      * This is an array of number_keycodes size. */
144     xcb_keycode_t *translated_to;
145
146     uint32_t number_keycodes;
147
148     /** Keycode to bind */
149     uint32_t keycode;
150
151     /** Bitmask consisting of BIND_MOD_1, BIND_MODE_SWITCH, … */
152     uint32_t mods;
153
154     /** Command, like in command mode */
155     char *command;
156
157     TAILQ_ENTRY(Binding) bindings;
158 };
159
160 /**
161  * Holds a command specified by an exec-line in the config (see src/config.c)
162  *
163  */
164 struct Autostart {
165     /** Command, like in command mode */
166     char *command;
167     TAILQ_ENTRY(Autostart) autostarts;
168 };
169
170 /**
171  * Data structure for cached font information:
172  * - font id in X11 (load it once)
173  * - font height (multiple calls needed to get it)
174  *
175  */
176 struct Font {
177     /** The height of the font, built from font_ascent + font_descent */
178     int height;
179     /** The xcb-id for the font */
180     xcb_font_t id;
181 };
182
183
184 /**
185  * An Output is a physical output on your graphics driver. Outputs which
186  * are currently in use have (output->active == true). Each output has a
187  * position and a mode. An output usually corresponds to one connected
188  * screen (except if you are running multiple screens in clone mode).
189  *
190  */
191 struct xoutput {
192     /** Output id, so that we can requery the output directly later */
193     xcb_randr_output_t id;
194     /** Name of the output */
195     char *name;
196
197     /** Pointer to the Con which represents this output */
198     Con *con;
199
200     /** Whether the output is currently active (has a CRTC attached with a
201      * valid mode) */
202     bool active;
203
204     /** Internal flags, necessary for querying RandR screens (happens in
205      * two stages) */
206     bool changed;
207     bool to_be_disabled;
208     bool primary;
209
210     /** x, y, width, height */
211     Rect rect;
212
213 #if 0
214     /** The bar window */
215     xcb_window_t bar;
216     xcb_gcontext_t bargc;
217
218     /** Contains all clients with _NET_WM_WINDOW_TYPE ==
219      * _NET_WM_WINDOW_TYPE_DOCK */
220     SLIST_HEAD(dock_clients_head, Client) dock_clients;
221 #endif
222
223     TAILQ_ENTRY(xoutput) outputs;
224 };
225
226 struct Window {
227     xcb_window_t id;
228
229     /** Holds the xcb_window_t (just an ID) for the leader window (logical
230      * parent for toolwindows and similar floating windows) */
231     xcb_window_t leader;
232     xcb_window_t transient_for;
233
234     char *class_class;
235     char *class_instance;
236
237     /** The name of the window as it will be passed to X11 (in UCS2 if the
238      * application supports _NET_WM_NAME, in COMPOUND_TEXT otherwise). */
239     char *name_x;
240
241     /** Flag to force re-rendering the decoration upon changes */
242     bool name_x_changed;
243
244     /** The name of the window as used in JSON (in UTF-8 if the application
245      * supports _NET_WM_NAME, in COMPOUND_TEXT otherwise) */
246     char *name_json;
247
248     /** The length of the name in glyphs (not bytes) */
249     int name_len;
250
251     /** Whether the application used _NET_WM_NAME */
252     bool uses_net_wm_name;
253
254     /** Whether the application needs to receive WM_TAKE_FOCUS */
255     bool needs_take_focus;
256
257     /** Whether the window says it is a dock window */
258     enum { W_NODOCK = 0, W_DOCK_TOP = 1, W_DOCK_BOTTOM = 2 } dock;
259
260     /** Pixels the window reserves. left/right/top/bottom */
261     struct reservedpx reserved;
262 };
263
264 struct Match {
265     enum { M_WINDOW, M_CON } what;
266
267     char *title;
268     int title_len;
269     char *application;
270     char *class;
271     char *instance;
272     char *mark;
273     enum {
274         M_DONTCHECK = -1,
275         M_NODOCK = 0,
276         M_DOCK_ANY = 1,
277         M_DOCK_TOP = 2,
278         M_DOCK_BOTTOM = 3
279     } dock;
280     xcb_window_t id;
281     Con *con_id;
282     enum { M_ANY = 0, M_TILING, M_FLOATING } floating;
283
284     enum { M_GLOBAL = 0, M_OUTPUT, M_WORKSPACE } levels;
285
286     enum { M_USER = 0, M_RESTART } source;
287
288     /* Where the window looking for a match should be inserted:
289      *
290      * M_HERE   = the matched container will be replaced by the window
291      *            (layout saving)
292      * M_ACTIVE = the window will be inserted next to the currently focused
293      *            container below the matched container
294      *            (assignments)
295      * M_BELOW  = the window will be inserted as a child of the matched container
296      *            (dockareas)
297      *
298      */
299     enum { M_HERE = 0, M_ACTIVE, M_BELOW } insert_where;
300
301     TAILQ_ENTRY(Match) matches;
302 };
303
304 struct Con {
305     bool mapped;
306     enum {
307         CT_ROOT = 0,
308         CT_OUTPUT = 1,
309         CT_CON = 2,
310         CT_FLOATING_CON = 3,
311         CT_WORKSPACE = 4,
312         CT_DOCKAREA = 5
313     } type;
314     orientation_t orientation;
315     struct Con *parent;
316
317     struct Rect rect;
318     struct Rect window_rect;
319     struct Rect deco_rect;
320     /** the geometry this window requested when getting mapped */
321     struct Rect geometry;
322
323     char *name;
324
325     /** the workspace number, if this Con is of type CT_WORKSPACE and the
326      * workspace is not a named workspace (for named workspaces, num == -1) */
327     int num;
328
329     /* a sticky-group is an identifier which bundles several containers to a
330      * group. The contents are shared between all of them, that is they are
331      * displayed on whichever of the containers is currently visible */
332     char *sticky_group;
333
334     /* user-definable mark to jump to this container later */
335     char *mark;
336
337     double percent;
338
339     /* proportional width/height, calculated from WM_NORMAL_HINTS, used to
340      * apply an aspect ratio to windows (think of MPlayer) */
341     int proportional_width;
342     int proportional_height;
343     /* the wanted size of the window, used in combination with size
344      * increments (see below). */
345     int base_width;
346     int base_height;
347
348     /* the x11 border pixel attribute */
349     int border_width;
350
351     /* minimum increment size specified for the window (in pixels) */
352     int width_increment;
353     int height_increment;
354
355     struct Window *window;
356
357     /* Should this container be marked urgent? This gets set when the window
358      * inside this container (if any) sets the urgency hint, for example. */
359     bool urgent;
360
361     /* ids/pixmap/graphics context for the frame window */
362     xcb_window_t frame;
363     xcb_pixmap_t pixmap;
364     xcb_gcontext_t pm_gc;
365     bool pixmap_recreated;
366
367     /** Cache for the decoration rendering */
368     struct deco_render_params *deco_render_params;
369
370     /* Only workspace-containers can have floating clients */
371     TAILQ_HEAD(floating_head, Con) floating_head;
372
373     TAILQ_HEAD(nodes_head, Con) nodes_head;
374     TAILQ_HEAD(focus_head, Con) focus_head;
375
376     TAILQ_HEAD(swallow_head, Match) swallow_head;
377
378     enum { CF_NONE = 0, CF_OUTPUT = 1, CF_GLOBAL = 2 } fullscreen_mode;
379     enum { L_DEFAULT = 0, L_STACKED = 1, L_TABBED = 2, L_DOCKAREA = 3, L_OUTPUT = 4 } layout;
380     border_style_t border_style;
381     /** floating? (= not in tiling layout) This cannot be simply a bool
382      * because we want to keep track of whether the status was set by the
383      * application (by setting _NET_WM_WINDOW_TYPE appropriately) or by the
384      * user. The user’s choice overwrites automatic mode, of course. The
385      * order of the values is important because we check with >=
386      * FLOATING_AUTO_ON if a client is floating. */
387     enum {
388         FLOATING_AUTO_OFF = 0,
389         FLOATING_USER_OFF = 1,
390         FLOATING_AUTO_ON = 2,
391         FLOATING_USER_ON = 3
392     } floating;
393
394     /** This counter contains the number of UnmapNotify events for this
395      * container (or, more precisely, for its ->frame) which should be ignored.
396      * UnmapNotify events need to be ignored when they are caused by i3 itself,
397      * for example when reparenting or when unmapping the window on a workspace
398      * change. */
399     uint8_t ignore_unmap;
400
401     TAILQ_ENTRY(Con) nodes;
402     TAILQ_ENTRY(Con) focused;
403     TAILQ_ENTRY(Con) all_cons;
404     TAILQ_ENTRY(Con) floating_windows;
405
406     /** callbacks */
407     void(*on_remove_child)(Con *);
408 };
409
410 #endif