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