]> git.sur5r.net Git - i3/i3/blob - include/data.h
refactor handlers.{c,h}: declare the handlers static, remove unnecessary parameters
[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     struct width_height 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     time_t added;
119
120     SLIST_ENTRY(Ignore_Event) ignore_events;
121 };
122
123 /******************************************************************************
124  * Major types
125  *****************************************************************************/
126
127 /**
128  * Holds a keybinding, consisting of a keycode combined with modifiers and the
129  * command which is executed as soon as the key is pressed (see src/command.c)
130  *
131  */
132 struct Binding {
133     /** Symbol the user specified in configfile, if any. This needs to be
134      * stored with the binding to be able to re-convert it into a keycode
135      * if the keyboard mapping changes (using Xmodmap for example) */
136     char *symbol;
137
138     /** Only in use if symbol != NULL. Gets set to the value to which the
139      * symbol got translated when binding. Useful for unbinding and
140      * checking which binding was used when a key press event comes in.
141      *
142      * This is an array of number_keycodes size. */
143     xcb_keycode_t *translated_to;
144
145     uint32_t number_keycodes;
146
147     /** Keycode to bind */
148     uint32_t keycode;
149
150     /** Bitmask consisting of BIND_MOD_1, BIND_MODE_SWITCH, … */
151     uint32_t mods;
152
153     /** Command, like in command mode */
154     char *command;
155
156     TAILQ_ENTRY(Binding) bindings;
157 };
158
159 /**
160  * Holds a command specified by an exec-line in the config (see src/config.c)
161  *
162  */
163 struct Autostart {
164     /** Command, like in command mode */
165     char *command;
166     TAILQ_ENTRY(Autostart) autostarts;
167 };
168
169 /**
170  * Data structure for cached font information:
171  * - font id in X11 (load it once)
172  * - font height (multiple calls needed to get it)
173  *
174  */
175 struct Font {
176     /** The height of the font, built from font_ascent + font_descent */
177     int height;
178     /** The xcb-id for the font */
179     xcb_font_t id;
180 };
181
182
183 /**
184  * An Output is a physical output on your graphics driver. Outputs which
185  * are currently in use have (output->active == true). Each output has a
186  * position and a mode. An output usually corresponds to one connected
187  * screen (except if you are running multiple screens in clone mode).
188  *
189  */
190 struct xoutput {
191     /** Output id, so that we can requery the output directly later */
192     xcb_randr_output_t id;
193     /** Name of the output */
194     char *name;
195
196     /** Pointer to the Con which represents this output */
197     Con *con;
198
199     /** Whether the output is currently active (has a CRTC attached with a
200      * valid mode) */
201     bool active;
202
203     /** Internal flags, necessary for querying RandR screens (happens in
204      * two stages) */
205     bool changed;
206     bool to_be_disabled;
207     bool primary;
208
209     /** x, y, width, height */
210     Rect rect;
211
212 #if 0
213     /** The bar window */
214     xcb_window_t bar;
215     xcb_gcontext_t bargc;
216
217     /** Contains all clients with _NET_WM_WINDOW_TYPE ==
218      * _NET_WM_WINDOW_TYPE_DOCK */
219     SLIST_HEAD(dock_clients_head, Client) dock_clients;
220 #endif
221
222     TAILQ_ENTRY(xoutput) outputs;
223 };
224
225 struct Window {
226     xcb_window_t id;
227
228     /** Holds the xcb_window_t (just an ID) for the leader window (logical
229      * parent for toolwindows and similar floating windows) */
230     xcb_window_t leader;
231     xcb_window_t transient_for;
232
233     char *class_class;
234     char *class_instance;
235
236     /** The name of the window as it will be passed to X11 (in UCS2 if the
237      * application supports _NET_WM_NAME, in COMPOUND_TEXT otherwise). */
238     char *name_x;
239
240     /** Flag to force re-rendering the decoration upon changes */
241     bool name_x_changed;
242
243     /** The name of the window as used in JSON (in UTF-8 if the application
244      * supports _NET_WM_NAME, in COMPOUND_TEXT otherwise) */
245     char *name_json;
246
247     /** The length of the name in glyphs (not bytes) */
248     int name_len;
249
250     /** Whether the application used _NET_WM_NAME */
251     bool uses_net_wm_name;
252
253     /** Whether the application needs to receive WM_TAKE_FOCUS */
254     bool needs_take_focus;
255
256     /** Whether the window says it is a dock window */
257     enum { W_NODOCK = 0, W_DOCK_TOP = 1, W_DOCK_BOTTOM = 2 } dock;
258
259     /** Pixels the window reserves. left/right/top/bottom */
260     struct reservedpx reserved;
261 };
262
263 struct Match {
264     enum { M_WINDOW, M_CON } what;
265
266     char *title;
267     int title_len;
268     char *application;
269     char *class;
270     char *instance;
271     char *mark;
272     enum {
273         M_DONTCHECK = -1,
274         M_NODOCK = 0,
275         M_DOCK_ANY = 1,
276         M_DOCK_TOP = 2,
277         M_DOCK_BOTTOM = 3
278     } dock;
279     xcb_window_t id;
280     Con *con_id;
281     enum { M_ANY = 0, M_TILING, M_FLOATING } floating;
282
283     enum { M_GLOBAL = 0, M_OUTPUT, M_WORKSPACE } levels;
284
285     enum { M_USER = 0, M_RESTART } source;
286
287     /* Where the window looking for a match should be inserted:
288      *
289      * M_HERE   = the matched container will be replaced by the window
290      *            (layout saving)
291      * M_ACTIVE = the window will be inserted next to the currently focused
292      *            container below the matched container
293      *            (assignments)
294      * M_BELOW  = the window will be inserted as a child of the matched container
295      *            (dockareas)
296      *
297      */
298     enum { M_HERE = 0, M_ACTIVE, M_BELOW } insert_where;
299
300     TAILQ_ENTRY(Match) matches;
301 };
302
303 struct Con {
304     bool mapped;
305     enum {
306         CT_ROOT = 0,
307         CT_OUTPUT = 1,
308         CT_CON = 2,
309         CT_FLOATING_CON = 3,
310         CT_WORKSPACE = 4,
311         CT_DOCKAREA = 5
312     } type;
313     orientation_t orientation;
314     struct Con *parent;
315
316     struct Rect rect;
317     struct Rect window_rect;
318     struct Rect deco_rect;
319     /** the geometry this window requested when getting mapped */
320     struct Rect geometry;
321
322     char *name;
323
324     /** the workspace number, if this Con is of type CT_WORKSPACE and the
325      * workspace is not a named workspace (for named workspaces, num == -1) */
326     int num;
327
328     /* a sticky-group is an identifier which bundles several containers to a
329      * group. The contents are shared between all of them, that is they are
330      * displayed on whichever of the containers is currently visible */
331     char *sticky_group;
332
333     /* user-definable mark to jump to this container later */
334     char *mark;
335
336     double percent;
337
338     /* proportional width/height, calculated from WM_NORMAL_HINTS, used to
339      * apply an aspect ratio to windows (think of MPlayer) */
340     int proportional_width;
341     int proportional_height;
342     /* the wanted size of the window, used in combination with size
343      * increments (see below). */
344     int base_width;
345     int base_height;
346
347     /* the x11 border pixel attribute */
348     int border_width;
349
350     /* minimum increment size specified for the window (in pixels) */
351     int width_increment;
352     int height_increment;
353
354     struct Window *window;
355
356     /* Should this container be marked urgent? This gets set when the window
357      * inside this container (if any) sets the urgency hint, for example. */
358     bool urgent;
359
360     /* ids/pixmap/graphics context for the frame window */
361     xcb_window_t frame;
362     xcb_pixmap_t pixmap;
363     xcb_gcontext_t pm_gc;
364     bool pixmap_recreated;
365
366     /** Cache for the decoration rendering */
367     struct deco_render_params *deco_render_params;
368
369     /* Only workspace-containers can have floating clients */
370     TAILQ_HEAD(floating_head, Con) floating_head;
371
372     TAILQ_HEAD(nodes_head, Con) nodes_head;
373     TAILQ_HEAD(focus_head, Con) focus_head;
374
375     TAILQ_HEAD(swallow_head, Match) swallow_head;
376
377     enum { CF_NONE = 0, CF_OUTPUT = 1, CF_GLOBAL = 2 } fullscreen_mode;
378     enum { L_DEFAULT = 0, L_STACKED = 1, L_TABBED = 2, L_DOCKAREA = 3, L_OUTPUT = 4 } layout;
379     border_style_t border_style;
380     /** floating? (= not in tiling layout) This cannot be simply a bool
381      * because we want to keep track of whether the status was set by the
382      * application (by setting _NET_WM_WINDOW_TYPE appropriately) or by the
383      * user. The user’s choice overwrites automatic mode, of course. The
384      * order of the values is important because we check with >=
385      * FLOATING_AUTO_ON if a client is floating. */
386     enum {
387         FLOATING_AUTO_OFF = 0,
388         FLOATING_USER_OFF = 1,
389         FLOATING_AUTO_ON = 2,
390         FLOATING_USER_ON = 3
391     } floating;
392
393     /** This counter contains the number of UnmapNotify events for this
394      * container (or, more precisely, for its ->frame) which should be ignored.
395      * UnmapNotify events need to be ignored when they are caused by i3 itself,
396      * for example when reparenting or when unmapping the window on a workspace
397      * change. */
398     uint8_t ignore_unmap;
399
400     TAILQ_ENTRY(Con) nodes;
401     TAILQ_ENTRY(Con) focused;
402     TAILQ_ENTRY(Con) all_cons;
403     TAILQ_ENTRY(Con) floating_windows;
404
405     /** callbacks */
406     void(*on_remove_child)(Con *);
407 };
408
409 #endif