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