]> git.sur5r.net Git - i3/i3/blob - src/con.c
Re-implement support for the urgency hint, extend t/13-urgent.t
[i3/i3] / src / con.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2010 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * con.c contains all functions which deal with containers directly (creating
8  * containers, searching containers, getting specific properties from
9  * containers, …).
10  *
11  */
12 #include "all.h"
13
14 char *colors[] = {
15     "#ff0000",
16     "#00FF00",
17     "#0000FF",
18     "#ff00ff",
19     "#00ffff",
20     "#ffff00",
21     "#aa0000",
22     "#00aa00",
23     "#0000aa",
24     "#aa00aa"
25 };
26
27
28 Con *con_new(Con *parent) {
29     Con *new = scalloc(sizeof(Con));
30     TAILQ_INSERT_TAIL(&all_cons, new, all_cons);
31     new->type = CT_CON;
32     new->name = strdup("");
33     static int cnt = 0;
34     LOG("opening window %d\n", cnt);
35
36     /* TODO: remove window coloring after test-phase */
37     LOG("color %s\n", colors[cnt]);
38     new->name = strdup(colors[cnt]);
39     uint32_t cp = get_colorpixel(colors[cnt]);
40     cnt++;
41     if ((cnt % (sizeof(colors) / sizeof(char*))) == 0)
42         cnt = 0;
43
44     x_con_init(new);
45
46     xcb_change_window_attributes(conn, new->frame, XCB_CW_BACK_PIXEL, &cp);
47
48     TAILQ_INIT(&(new->floating_head));
49     TAILQ_INIT(&(new->nodes_head));
50     TAILQ_INIT(&(new->focus_head));
51     TAILQ_INIT(&(new->swallow_head));
52
53     if (parent != NULL)
54         con_attach(new, parent);
55
56     return new;
57 }
58
59 void con_attach(Con *con, Con *parent) {
60     con->parent = parent;
61     TAILQ_INSERT_TAIL(&(parent->nodes_head), con, nodes);
62     /* We insert to the TAIL because con_focus() will correct this.
63      * This way, we have the option to insert Cons without having
64      * to focus them. */
65     TAILQ_INSERT_TAIL(&(parent->focus_head), con, focused);
66 }
67
68 void con_detach(Con *con) {
69     if (con->type == CT_FLOATING_CON) {
70         TAILQ_REMOVE(&(con->parent->floating_head), con, floating_windows);
71         TAILQ_REMOVE(&(con->parent->focus_head), con, focused);
72     } else {
73         TAILQ_REMOVE(&(con->parent->nodes_head), con, nodes);
74         TAILQ_REMOVE(&(con->parent->focus_head), con, focused);
75     }
76 }
77
78 /*
79  * Sets input focus to the given container. Will be updated in X11 in the next
80  * run of x_push_changes().
81  *
82  */
83 void con_focus(Con *con) {
84     assert(con != NULL);
85
86     /* 1: set focused-pointer to the new con */
87     /* 2: exchange the position of the container in focus stack of the parent all the way up */
88     TAILQ_REMOVE(&(con->parent->focus_head), con, focused);
89     TAILQ_INSERT_HEAD(&(con->parent->focus_head), con, focused);
90     if (con->parent->parent != NULL)
91         con_focus(con->parent);
92
93     focused = con;
94     if (con->urgent) {
95         con->urgent = false;
96         workspace_update_urgent_flag(con_get_workspace(con));
97     }
98 }
99
100 /*
101  * Returns true when this node is a leaf node (has no children)
102  *
103  */
104 bool con_is_leaf(Con *con) {
105     return TAILQ_EMPTY(&(con->nodes_head));
106 }
107
108 /*
109  * Returns true if this node accepts a window (if the node swallows windows,
110  * it might already have swallowed enough and cannot hold any more).
111  *
112  */
113 bool con_accepts_window(Con *con) {
114     /* 1: workspaces never accept direct windows */
115     if (con->type == CT_WORKSPACE)
116         return false;
117
118     /* TODO: if this is a swallowing container, we need to check its max_clients */
119     return (con->window == NULL);
120 }
121
122 /*
123  * Gets the output container (first container with CT_OUTPUT in hierarchy) this
124  * node is on.
125  *
126  */
127 Con *con_get_output(Con *con) {
128     Con *result = con;
129     while (result != NULL && result->type != CT_OUTPUT)
130         result = result->parent;
131     /* We must be able to get an output because focus can never be set higher
132      * in the tree (root node cannot be focused). */
133     assert(result != NULL);
134     return result;
135 }
136
137 /*
138  * Gets the workspace container this node is on.
139  *
140  */
141 Con *con_get_workspace(Con *con) {
142     Con *result = con;
143     while (result != NULL && result->type != CT_WORKSPACE)
144         result = result->parent;
145     assert(result != NULL);
146     return result;
147 }
148
149 /*
150  * helper data structure for the breadth-first-search in
151  * con_get_fullscreen_con()
152  *
153  */
154 struct bfs_entry {
155     Con *con;
156
157     TAILQ_ENTRY(bfs_entry) entries;
158 };
159
160 /*
161  * Returns the first fullscreen node below this node.
162  *
163  */
164 Con *con_get_fullscreen_con(Con *con) {
165     Con *current, *child;
166
167     LOG("looking for fullscreen node\n");
168     /* TODO: is breadth-first-search really appropriate? (check as soon as
169      * fullscreen levels and fullscreen for containers is implemented) */
170     TAILQ_HEAD(bfs_head, bfs_entry) bfs_head = TAILQ_HEAD_INITIALIZER(bfs_head);
171     struct bfs_entry *entry = smalloc(sizeof(struct bfs_entry));
172     entry->con = con;
173     TAILQ_INSERT_TAIL(&bfs_head, entry, entries);
174
175     while (!TAILQ_EMPTY(&bfs_head)) {
176         entry = TAILQ_FIRST(&bfs_head);
177         current = entry->con;
178         LOG("checking %p\n", current);
179         if (current != con && current->fullscreen_mode != CF_NONE) {
180             /* empty the queue */
181             while (!TAILQ_EMPTY(&bfs_head)) {
182                 entry = TAILQ_FIRST(&bfs_head);
183                 TAILQ_REMOVE(&bfs_head, entry, entries);
184                 free(entry);
185             }
186             return current;
187         }
188
189         LOG("deleting from queue\n");
190         TAILQ_REMOVE(&bfs_head, entry, entries);
191         free(entry);
192
193         TAILQ_FOREACH(child, &(current->nodes_head), nodes) {
194             entry = smalloc(sizeof(struct bfs_entry));
195             entry->con = child;
196             TAILQ_INSERT_TAIL(&bfs_head, entry, entries);
197         }
198     }
199
200     return NULL;
201 }
202
203 /*
204  * Returns true if the node is floating.
205  *
206  */
207 bool con_is_floating(Con *con) {
208     assert(con != NULL);
209     LOG("checking if con %p is floating\n", con);
210     return (con->floating >= FLOATING_AUTO_ON);
211 }
212
213 Con *con_by_window_id(xcb_window_t window) {
214     Con *con;
215     TAILQ_FOREACH(con, &all_cons, all_cons)
216         if (con->window != NULL && con->window->id == window)
217             return con;
218     return NULL;
219 }
220
221 Con *con_by_frame_id(xcb_window_t frame) {
222     Con *con;
223     TAILQ_FOREACH(con, &all_cons, all_cons)
224         if (con->frame == frame)
225             return con;
226     return NULL;
227 }
228
229 /*
230  * Returns the first container which wants to swallow this window
231  * TODO: priority
232  *
233  */
234 Con *con_for_window(i3Window *window, Match **store_match) {
235     Con *con;
236     Match *match;
237     LOG("searching con for window %p\n", window);
238     LOG("class == %s\n", window->class_class);
239
240     TAILQ_FOREACH(con, &all_cons, all_cons)
241         TAILQ_FOREACH(match, &(con->swallow_head), matches) {
242             if (!match_matches_window(match, window))
243                 continue;
244             if (store_match != NULL)
245                 *store_match = match;
246             return con;
247         }
248
249     return NULL;
250 }
251
252 /*
253  * Updates the percent attribute of the children of the given container. This
254  * function needs to be called when a window is added or removed from a
255  * container.
256  *
257  */
258 void con_fix_percent(Con *con, int action) {
259     Con *child;
260     int children = 0;
261     TAILQ_FOREACH(child, &(con->nodes_head), nodes)
262         children++;
263     /* TODO: better document why this math works */
264     double fix;
265     if (action == WINDOW_ADD)
266         fix = (1.0 - (1.0 / (children+1)));
267     else
268         fix = 1.0 / (1.0 - (1.0 / (children+1)));
269
270     TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
271         if (child->percent <= 0.0)
272             continue;
273         child->percent *= fix;
274     }
275 }
276
277 void con_toggle_fullscreen(Con *con) {
278     Con *workspace, *fullscreen;
279     LOG("toggling fullscreen for %p / %s\n", con, con->name);
280     if (con->fullscreen_mode == CF_NONE) {
281         /* 1: check if there already is a fullscreen con */
282         workspace = con_get_workspace(con);
283         if ((fullscreen = con_get_fullscreen_con(workspace)) != NULL) {
284             LOG("Not entering fullscreen mode, container (%p/%s) "
285                 "already is in fullscreen mode\n",
286                 fullscreen, fullscreen->name);
287             return;
288         }
289
290         /* 2: enable fullscreen */
291         con->fullscreen_mode = CF_OUTPUT;
292     } else {
293         /* 1: disable fullscreen */
294         con->fullscreen_mode = CF_NONE;
295     }
296     LOG("mode now: %d\n", con->fullscreen_mode);
297
298     /* update _NET_WM_STATE if this container has a window */
299     /* TODO: when a window is assigned to a container which is already
300      * fullscreened, this state needs to be pushed to the client, too */
301     if (con->window == NULL)
302         return;
303
304     uint32_t values[1];
305     unsigned int num = 0;
306
307     if (con->fullscreen_mode != CF_NONE)
308         values[num++] = atoms[_NET_WM_STATE_FULLSCREEN];
309
310     xcb_change_property(conn, XCB_PROP_MODE_REPLACE, con->window->id,
311                         atoms[_NET_WM_STATE], ATOM, 32, num, values);
312 }