]> git.sur5r.net Git - i3/i3/blob - include/data.h
Merge branch 'master' into next
[i3/i3] / include / data.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/data.h: This file defines all data structures used by i3
8  *
9  */
10 #pragma once
11
12 #define SN_API_NOT_YET_FROZEN 1
13 #include <libsn/sn-launcher.h>
14
15 #include <xcb/randr.h>
16 #include <stdbool.h>
17 #include <pcre.h>
18 #include <sys/time.h>
19
20 #include "libi3.h"
21 #include "queue.h"
22
23 /*
24  * To get the big concept: There are helper structures like struct
25  * Workspace_Assignment. Every struct which is also defined as type (see
26  * forward definitions) is considered to be a major structure, thus important.
27  *
28  * The following things are all stored in a 'Con', from very high level (the
29  * biggest Cons) to very small (a single window):
30  *
31  * 1) X11 root window (as big as all your outputs combined)
32  * 2) output (like LVDS1)
33  * 3) content container, dockarea containers
34  * 4) workspaces
35  * 5) split containers
36  * ... (you can arbitrarily nest split containers)
37  * 6) X11 window containers
38  *
39  */
40
41 /* Forward definitions */
42 typedef struct Binding Binding;
43 typedef struct Rect Rect;
44 typedef struct xoutput Output;
45 typedef struct Con Con;
46 typedef struct Match Match;
47 typedef struct Assignment Assignment;
48 typedef struct Window i3Window;
49
50
51 /******************************************************************************
52  * Helper types
53  *****************************************************************************/
54 typedef enum { D_LEFT, D_RIGHT, D_UP, D_DOWN } direction_t;
55 typedef enum { NO_ORIENTATION = 0, HORIZ, VERT } orientation_t;
56 typedef enum { BS_NORMAL = 0, BS_NONE = 1, BS_PIXEL = 2 } border_style_t;
57
58 /** parameter to specify whether tree_close() and x_window_kill() should kill
59  * only this specific window or the whole X11 client */
60 typedef enum { DONT_KILL_WINDOW = 0, KILL_WINDOW = 1, KILL_CLIENT = 2 } kill_window_t;
61
62 /** describes if the window is adjacent to the output (physical screen) edges. */
63 typedef enum { ADJ_NONE = 0,
64                ADJ_LEFT_SCREEN_EDGE = (1 << 0),
65                ADJ_RIGHT_SCREEN_EDGE = (1 << 1),
66                ADJ_UPPER_SCREEN_EDGE = (1 << 2),
67                ADJ_LOWER_SCREEN_EDGE = (1 << 4)} adjacent_t;
68
69 enum {
70     BIND_NONE = 0,
71     BIND_SHIFT = XCB_MOD_MASK_SHIFT,        /* (1 << 0) */
72     BIND_CONTROL = XCB_MOD_MASK_CONTROL,    /* (1 << 2) */
73     BIND_MOD1 = XCB_MOD_MASK_1,             /* (1 << 3) */
74     BIND_MOD2 = XCB_MOD_MASK_2,             /* (1 << 4) */
75     BIND_MOD3 = XCB_MOD_MASK_3,             /* (1 << 5) */
76     BIND_MOD4 = XCB_MOD_MASK_4,             /* (1 << 6) */
77     BIND_MOD5 = XCB_MOD_MASK_5,             /* (1 << 7) */
78     BIND_MODE_SWITCH = (1 << 8)
79 };
80
81 /**
82  * Container layouts. See Con::layout.
83  */
84 typedef enum {
85     L_DEFAULT = 0,
86     L_STACKED = 1,
87     L_TABBED = 2,
88     L_DOCKAREA = 3,
89     L_OUTPUT = 4,
90     L_SPLITV = 5,
91     L_SPLITH = 6
92 } layout_t;
93
94 /**
95  * Stores a rectangle, for example the size of a window, the child window etc.
96  * It needs to be packed so that the compiler will not add any padding bytes.
97  * (it is used in src/ewmh.c for example)
98  *
99  * Note that x and y can contain signed values in some cases (for example when
100  * used for the coordinates of a window, which can be set outside of the
101  * visible area, but not when specifying the position of a workspace for the
102  * _NET_WM_WORKAREA hint). Not declaring x/y as int32_t saves us a lot of
103  * typecasts.
104  *
105  */
106 struct Rect {
107     uint32_t x;
108     uint32_t y;
109     uint32_t width;
110     uint32_t height;
111 } __attribute__((packed));
112
113 /**
114  * Stores the reserved pixels on each screen edge read from a
115  * _NET_WM_STRUT_PARTIAL.
116  *
117  */
118 struct reservedpx {
119     uint32_t left;
120     uint32_t right;
121     uint32_t top;
122     uint32_t bottom;
123 };
124
125 /**
126  * Stores a width/height pair, used as part of deco_render_params to check
127  * whether the rects width/height have changed.
128  *
129  */
130 struct width_height {
131     uint32_t w;
132     uint32_t h;
133 };
134
135 /**
136  * Stores the parameters for rendering a window decoration. This structure is
137  * cached in every Con and no re-rendering will be done if the parameters have
138  * not changed (only the pixmaps will be copied).
139  *
140  */
141 struct deco_render_params {
142     struct Colortriple *color;
143     int border_style;
144     struct width_height con_rect;
145     struct width_height con_window_rect;
146     Rect con_deco_rect;
147     uint32_t background;
148     layout_t parent_layout;
149     bool con_is_leaf;
150 };
151
152 /**
153  * Stores which workspace (by name) goes to which output.
154  *
155  */
156 struct Workspace_Assignment {
157     char *name;
158     char *output;
159
160     TAILQ_ENTRY(Workspace_Assignment) ws_assignments;
161 };
162
163 struct Ignore_Event {
164     int sequence;
165     int response_type;
166     time_t added;
167
168     SLIST_ENTRY(Ignore_Event) ignore_events;
169 };
170
171 /**
172  * Stores internal information about a startup sequence, like the workspace it
173  * was initiated on.
174  *
175  */
176 struct Startup_Sequence {
177     /** startup ID for this sequence, generated by libstartup-notification */
178     char *id;
179     /** workspace on which this startup was initiated */
180     char *workspace;
181     /** libstartup-notification context for this launch */
182     SnLauncherContext *context;
183     /** time at which this sequence should be deleted (after it was marked as
184      * completed) */
185     time_t delete_at;
186
187     TAILQ_ENTRY(Startup_Sequence) sequences;
188 };
189
190 /**
191  * Regular expression wrapper. It contains the pattern itself as a string (like
192  * ^foo[0-9]$) as well as a pointer to the compiled PCRE expression and the
193  * pcre_extra data returned by pcre_study().
194  *
195  * This makes it easier to have a useful logfile, including the matching or
196  * non-matching pattern.
197  *
198  */
199 struct regex {
200     char *pattern;
201     pcre *regex;
202     pcre_extra *extra;
203 };
204
205 /******************************************************************************
206  * Major types
207  *****************************************************************************/
208
209 /**
210  * Holds a keybinding, consisting of a keycode combined with modifiers and the
211  * command which is executed as soon as the key is pressed (see
212  * src/config_parser.c)
213  *
214  */
215 struct Binding {
216     /* The type of input this binding is for. (Mouse bindings are not yet
217      * implemented. All bindings are currently assumed to be keyboard bindings.) */
218     enum {
219         /* Created with "bindsym", "bindcode", and "bind" */
220         B_KEYBOARD = 0,
221         /* Created with "bindmouse" (not yet implemented). */
222         B_MOUSE = 1,
223     } input_type;
224
225     /** If true, the binding should be executed upon a KeyRelease event, not a
226      * KeyPress (the default). */
227     enum {
228         /* This binding will only be executed upon KeyPress events */
229         B_UPON_KEYPRESS = 0,
230         /* This binding will be executed either upon a KeyRelease event, or… */
231         B_UPON_KEYRELEASE = 1,
232         /* …upon a KeyRelease event, even if the modifiers don’t match. This
233          * state is triggered from get_binding() when the corresponding
234          * KeyPress (!) happens, so that users can release the modifier keys
235          * before releasing the actual key. */
236         B_UPON_KEYRELEASE_IGNORE_MODS = 2,
237     } release;
238
239     uint32_t number_keycodes;
240
241     /** Keycode to bind */
242     uint32_t keycode;
243
244     /** Bitmask consisting of BIND_MOD_1, BIND_MODE_SWITCH, … */
245     uint32_t mods;
246
247     /** Symbol the user specified in configfile, if any. This needs to be
248      * stored with the binding to be able to re-convert it into a keycode
249      * if the keyboard mapping changes (using Xmodmap for example) */
250     char *symbol;
251
252     /** Only in use if symbol != NULL. Gets set to the value to which the
253      * symbol got translated when binding. Useful for unbinding and
254      * checking which binding was used when a key press event comes in.
255      *
256      * This is an array of number_keycodes size. */
257     xcb_keycode_t *translated_to;
258
259
260     /** Command, like in command mode */
261     char *command;
262
263     TAILQ_ENTRY(Binding) bindings;
264 };
265
266 /**
267  * Holds a command specified by either an:
268  * - exec-line
269  * - exec_always-line
270  * in the config (see src/config.c)
271  *
272  */
273 struct Autostart {
274     /** Command, like in command mode */
275     char *command;
276     /** no_startup_id flag for start_application(). Determines whether a
277      * startup notification context/ID should be created. */
278     bool no_startup_id;
279     TAILQ_ENTRY(Autostart) autostarts;
280     TAILQ_ENTRY(Autostart) autostarts_always;
281 };
282
283 /**
284  * An Output is a physical output on your graphics driver. Outputs which
285  * are currently in use have (output->active == true). Each output has a
286  * position and a mode. An output usually corresponds to one connected
287  * screen (except if you are running multiple screens in clone mode).
288  *
289  */
290 struct xoutput {
291     /** Output id, so that we can requery the output directly later */
292     xcb_randr_output_t id;
293
294     /** Whether the output is currently active (has a CRTC attached with a
295      * valid mode) */
296     bool active;
297
298     /** Internal flags, necessary for querying RandR screens (happens in
299      * two stages) */
300     bool changed;
301     bool to_be_disabled;
302     bool primary;
303
304     /** Name of the output */
305     char *name;
306
307     /** Pointer to the Con which represents this output */
308     Con *con;
309
310     /** x, y, width, height */
311     Rect rect;
312
313     TAILQ_ENTRY(xoutput) outputs;
314 };
315
316 /**
317  * A 'Window' is a type which contains an xcb_window_t and all the related
318  * information (hints like _NET_WM_NAME for that window).
319  *
320  */
321 struct Window {
322     xcb_window_t id;
323
324     /** Holds the xcb_window_t (just an ID) for the leader window (logical
325      * parent for toolwindows and similar floating windows) */
326     xcb_window_t leader;
327     xcb_window_t transient_for;
328
329     /** Pointers to the Assignments which were already ran for this Window
330      * (assignments run only once) */
331     uint32_t nr_assignments;
332     Assignment **ran_assignments;
333
334     char *class_class;
335     char *class_instance;
336
337     /** The name of the window. */
338     i3String *name;
339
340     /** The WM_WINDOW_ROLE of this window (for example, the pidgin buddy window
341      * sets "buddy list"). Useful to match specific windows in assignments or
342      * for_window. */
343     char *role;
344
345     /** Flag to force re-rendering the decoration upon changes */
346     bool name_x_changed;
347
348     /** Whether the application used _NET_WM_NAME */
349     bool uses_net_wm_name;
350
351     /** Whether the application needs to receive WM_TAKE_FOCUS */
352     bool needs_take_focus;
353
354     /** Whether this window accepts focus. We store this inverted so that the
355      * default will be 'accepts focus'. */
356     bool doesnt_accept_focus;
357
358     /** Whether the window says it is a dock window */
359     enum { W_NODOCK = 0, W_DOCK_TOP = 1, W_DOCK_BOTTOM = 2 } dock;
360
361     /** When this window was marked urgent. 0 means not urgent */
362     struct timeval urgent;
363
364     /** Pixels the window reserves. left/right/top/bottom */
365     struct reservedpx reserved;
366
367     /** Depth of the window */
368     uint16_t depth;
369 };
370
371 /**
372  * A "match" is a data structure which acts like a mask or expression to match
373  * certain windows or not. For example, when using commands, you can specify a
374  * command like this: [title="*Firefox*"] kill. The title member of the match
375  * data structure will then be filled and i3 will check each window using
376  * match_matches_window() to find the windows affected by this command.
377  *
378  */
379 struct Match {
380     struct regex *title;
381     struct regex *application;
382     struct regex *class;
383     struct regex *instance;
384     struct regex *mark;
385     struct regex *window_role;
386     enum {
387         U_DONTCHECK = -1,
388         U_LATEST = 0,
389         U_OLDEST = 1
390     } urgent;
391     enum {
392         M_DONTCHECK = -1,
393         M_NODOCK = 0,
394         M_DOCK_ANY = 1,
395         M_DOCK_TOP = 2,
396         M_DOCK_BOTTOM = 3
397     } dock;
398     xcb_window_t id;
399     enum { M_ANY = 0, M_TILING, M_FLOATING } floating;
400     Con *con_id;
401
402     /* Where the window looking for a match should be inserted:
403      *
404      * M_HERE   = the matched container will be replaced by the window
405      *            (layout saving)
406      * M_ASSIGN_WS = the matched container will be inserted in the target_ws.
407      * M_BELOW  = the window will be inserted as a child of the matched container
408      *            (dockareas)
409      *
410      */
411     enum { M_HERE = 0, M_ASSIGN_WS, M_BELOW } insert_where;
412
413     TAILQ_ENTRY(Match) matches;
414
415     /* Whether this match was generated when restarting i3 inplace.
416      * Leads to not setting focus when managing a new window, because the old
417      * focus stack should be restored. */
418     bool restart_mode;
419 };
420
421 /**
422  * An Assignment makes specific windows go to a specific workspace/output or
423  * run a command for that window. With this mechanism, the user can -- for
424  * example -- assign his browser to workspace "www". Checking if a window is
425  * assigned works by comparing the Match data structure with the window (see
426  * match_matches_window()).
427  *
428  */
429 struct Assignment {
430     /** type of this assignment:
431      *
432      * A_COMMAND = run the specified command for the matching window
433      * A_TO_WORKSPACE = assign the matching window to the specified workspace
434      * A_TO_OUTPUT = assign the matching window to the specified output
435      *
436      * While the type is a bitmask, only one value can be set at a time. It is
437      * a bitmask to allow filtering for multiple types, for example in the
438      * assignment_for() function.
439      *
440      */
441     enum {
442         A_ANY          = 0,
443         A_COMMAND      = (1 << 0),
444         A_TO_WORKSPACE = (1 << 1),
445         A_TO_OUTPUT    = (1 << 2)
446     } type;
447
448     /** the criteria to check if a window matches */
449     Match match;
450
451     /** destination workspace/output/command, depending on the type */
452     union {
453         char *command;
454         char *workspace;
455         char *output;
456     } dest;
457
458     TAILQ_ENTRY(Assignment) assignments;
459 };
460
461 /** Fullscreen modes. Used by Con.fullscreen_mode. */
462 typedef enum { CF_NONE = 0, CF_OUTPUT = 1, CF_GLOBAL = 2 } fullscreen_mode_t;
463
464 /**
465  * A 'Con' represents everything from the X11 root window down to a single X11 window.
466  *
467  */
468 struct Con {
469     bool mapped;
470
471     /* Should this container be marked urgent? This gets set when the window
472      * inside this container (if any) sets the urgency hint, for example. */
473     bool urgent;
474
475     /** This counter contains the number of UnmapNotify events for this
476      * container (or, more precisely, for its ->frame) which should be ignored.
477      * UnmapNotify events need to be ignored when they are caused by i3 itself,
478      * for example when reparenting or when unmapping the window on a workspace
479      * change. */
480     uint8_t ignore_unmap;
481
482     /* ids/pixmap/graphics context for the frame window */
483     bool pixmap_recreated;
484     xcb_window_t frame;
485     xcb_pixmap_t pixmap;
486     xcb_gcontext_t pm_gc;
487
488     enum {
489         CT_ROOT = 0,
490         CT_OUTPUT = 1,
491         CT_CON = 2,
492         CT_FLOATING_CON = 3,
493         CT_WORKSPACE = 4,
494         CT_DOCKAREA = 5
495     } type;
496
497     /** the workspace number, if this Con is of type CT_WORKSPACE and the
498      * workspace is not a named workspace (for named workspaces, num == -1) */
499     int num;
500
501     struct Con *parent;
502
503     struct Rect rect;
504     struct Rect window_rect;
505     struct Rect deco_rect;
506     /** the geometry this window requested when getting mapped */
507     struct Rect geometry;
508
509     char *name;
510
511     /* a sticky-group is an identifier which bundles several containers to a
512      * group. The contents are shared between all of them, that is they are
513      * displayed on whichever of the containers is currently visible */
514     char *sticky_group;
515
516     /* user-definable mark to jump to this container later */
517     char *mark;
518
519     double percent;
520
521     /* aspect ratio from WM_NORMAL_HINTS (MPlayer uses this for example) */
522     double aspect_ratio;
523     /* the wanted size of the window, used in combination with size
524      * increments (see below). */
525     int base_width;
526     int base_height;
527
528     /* the x11 border pixel attribute */
529     int border_width;
530     int current_border_width;
531
532     /* minimum increment size specified for the window (in pixels) */
533     int width_increment;
534     int height_increment;
535
536     struct Window *window;
537
538     /* timer used for disabling urgency */
539     struct ev_timer *urgency_timer;
540
541     /** Cache for the decoration rendering */
542     struct deco_render_params *deco_render_params;
543
544     /* Only workspace-containers can have floating clients */
545     TAILQ_HEAD(floating_head, Con) floating_head;
546
547     TAILQ_HEAD(nodes_head, Con) nodes_head;
548     TAILQ_HEAD(focus_head, Con) focus_head;
549
550     TAILQ_HEAD(swallow_head, Match) swallow_head;
551
552     fullscreen_mode_t fullscreen_mode;
553     /* layout is the layout of this container: one of split[v|h], stacked or
554      * tabbed. Special containers in the tree (above workspaces) have special
555      * layouts like dockarea or output.
556      *
557      * last_split_layout is one of splitv or splith to support the old "layout
558      * default" command which by now should be "layout splitv" or "layout
559      * splith" explicitly.
560      *
561      * workspace_layout is only for type == CT_WORKSPACE cons. When you change
562      * the layout of a workspace without any children, i3 cannot just set the
563      * layout (because workspaces need to be splitv/splith to allow focus
564      * parent and opening new containers). Instead, it stores the requested
565      * layout in workspace_layout and creates a new split container with that
566      * layout whenever a new container is attached to the workspace. */
567     layout_t layout, last_split_layout, workspace_layout;
568     border_style_t border_style;
569     /** floating? (= not in tiling layout) This cannot be simply a bool
570      * because we want to keep track of whether the status was set by the
571      * application (by setting _NET_WM_WINDOW_TYPE appropriately) or by the
572      * user. The user’s choice overwrites automatic mode, of course. The
573      * order of the values is important because we check with >=
574      * FLOATING_AUTO_ON if a client is floating. */
575     enum {
576         FLOATING_AUTO_OFF = 0,
577         FLOATING_USER_OFF = 1,
578         FLOATING_AUTO_ON = 2,
579         FLOATING_USER_ON = 3
580     } floating;
581
582     TAILQ_ENTRY(Con) nodes;
583     TAILQ_ENTRY(Con) focused;
584     TAILQ_ENTRY(Con) all_cons;
585     TAILQ_ENTRY(Con) floating_windows;
586
587     /** callbacks */
588     void(*on_remove_child)(Con *);
589
590     enum {
591         /* Not a scratchpad window. */
592         SCRATCHPAD_NONE = 0,
593
594         /* Just moved to scratchpad, not resized by the user yet.
595          * Window will be auto-centered and sized appropriately. */
596         SCRATCHPAD_FRESH = 1,
597
598         /* The user changed position/size of the scratchpad window. */
599         SCRATCHPAD_CHANGED = 2
600     } scratchpad_state;
601
602     /* The ID of this container before restarting. Necessary to correctly
603      * interpret back-references in the JSON (such as the focus stack). */
604     int old_id;
605
606     /* Depth of the container window */
607     uint16_t depth;
608 };