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