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