]> git.sur5r.net Git - i3/i3/blob - include/x.h
3e81bc3646f36225a8d4f24d3495b5efa9654b7f
[i3/i3] / include / x.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  * x.c: Interface to X11, transfers our in-memory state to X11 (see also
8  *      render.c). Basically a big state machine.
9  *
10  */
11 #pragma once
12
13 #include <config.h>
14
15 /** Stores the X11 window ID of the currently focused window */
16 extern xcb_window_t focused_id;
17
18 /**
19  * Initializes the X11 part for the given container. Called exactly once for
20  * every container from con_new().
21  *
22  */
23 void x_con_init(Con *con);
24
25 /**
26  * Moves a child window from Container src to Container dest.
27  *
28  */
29 void x_move_win(Con *src, Con *dest);
30
31 /**
32  * Reparents the child window of the given container (necessary for sticky
33  * containers). The reparenting happens in the next call of x_push_changes().
34  *
35  */
36 void x_reparent_child(Con *con, Con *old);
37
38 /**
39  * Re-initializes the associated X window state for this container. You have
40  * to call this when you assign a client to an empty container to ensure that
41  * its state gets updated correctly.
42  *
43  */
44 void x_reinit(Con *con);
45
46 /**
47  * Kills the window decoration associated with the given container.
48  *
49  */
50 void x_con_kill(Con *con);
51
52 /**
53  * Returns true if the client supports the given protocol atom (like WM_DELETE_WINDOW)
54  *
55  */
56 bool window_supports_protocol(xcb_window_t window, xcb_atom_t atom);
57
58 /**
59  * Kills the given X11 window using WM_DELETE_WINDOW (if supported).
60  *
61  */
62 void x_window_kill(xcb_window_t window, kill_window_t kill_window);
63
64 /**
65  * Draws the decoration of the given container onto its parent.
66  *
67  */
68 void x_draw_decoration(Con *con);
69
70 /**
71  * Recursively calls x_draw_decoration. This cannot be done in x_push_node
72  * because x_push_node uses focus order to recurse (see the comment above)
73  * while drawing the decoration needs to happen in the actual order.
74  *
75  */
76 void x_deco_recurse(Con *con);
77
78 /**
79  * This function pushes the properties of each node of the layout tree to
80  * X11 if they have changed (like the map state, position of the window, …).
81  * It recursively traverses all children of the given node.
82  *
83  */
84 void x_push_node(Con *con);
85
86 /**
87  * Pushes all changes (state of each node, see x_push_node() and the window
88  * stack) to X11.
89  *
90  */
91 void x_push_changes(Con *con);
92
93 /**
94  * Raises the specified container in the internal stack of X windows. The
95  * next call to x_push_changes() will make the change visible in X11.
96  *
97  */
98 void x_raise_con(Con *con);
99
100 /**
101  * Sets the WM_NAME property (so, no UTF8, but used only for debugging anyways)
102  * of the given name. Used for properly tagging the windows for easily spotting
103  * i3 windows in xwininfo -root -all.
104  *
105  */
106 void x_set_name(Con *con, const char *name);
107
108 /**
109  * Set up the SHMLOG_PATH atom.
110  *
111  */
112 void update_shmlog_atom(void);
113
114 /**
115  * Sets up i3 specific atoms (I3_SOCKET_PATH and I3_CONFIG_PATH)
116  *
117  */
118 void x_set_i3_atoms(void);
119
120 /**
121  * Set warp_to coordinates.  This will trigger on the next call to
122  * x_push_changes().
123  *
124  */
125 void x_set_warp_to(Rect *rect);
126
127 /**
128  * Applies the given mask to the event mask of every i3 window decoration X11
129  * window. This is useful to disable EnterNotify while resizing so that focus
130  * is untouched.
131  *
132  */
133 void x_mask_event_mask(uint32_t mask);