]> git.sur5r.net Git - i3/i3/blob - src/randr.c
Merge pull request #1959 from hwangcc23/fix-1926
[i3/i3] / src / randr.c
1 #undef I3__FILE__
2 #define I3__FILE__ "randr.c"
3 /*
4  * vim:ts=4:sw=4:expandtab
5  *
6  * i3 - an improved dynamic tiling window manager
7  * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
8  *
9  * For more information on RandR, please see the X.org RandR specification at
10  * http://cgit.freedesktop.org/xorg/proto/randrproto/tree/randrproto.txt
11  * (take your time to read it completely, it answers all questions).
12  *
13  */
14 #include "all.h"
15
16 #include <time.h>
17 #include <xcb/randr.h>
18
19 /* While a clean namespace is usually a pretty good thing, we really need
20  * to use shorter names than the whole xcb_randr_* default names. */
21 typedef xcb_randr_get_crtc_info_reply_t crtc_info;
22 typedef xcb_randr_get_screen_resources_current_reply_t resources_reply;
23
24 /* Pointer to the result of the query for primary output */
25 xcb_randr_get_output_primary_reply_t *primary;
26
27 /* Stores all outputs available in your current session. */
28 struct outputs_head outputs = TAILQ_HEAD_INITIALIZER(outputs);
29
30 /* This is the output covering the root window */
31 static Output *root_output;
32
33 /*
34  * Get a specific output by its internal X11 id. Used by randr_query_outputs
35  * to check if the output is new (only in the first scan) or if we are
36  * re-scanning.
37  *
38  */
39 static Output *get_output_by_id(xcb_randr_output_t id) {
40     Output *output;
41     TAILQ_FOREACH(output, &outputs, outputs)
42     if (output->id == id)
43         return output;
44
45     return NULL;
46 }
47
48 /*
49  * Returns the output with the given name if it is active (!) or NULL.
50  *
51  */
52 Output *get_output_by_name(const char *name) {
53     Output *output;
54     TAILQ_FOREACH(output, &outputs, outputs)
55     if (output->active &&
56         strcasecmp(output->name, name) == 0)
57         return output;
58
59     return NULL;
60 }
61
62 /*
63  * Returns the first output which is active.
64  *
65  */
66 Output *get_first_output(void) {
67     Output *output;
68
69     TAILQ_FOREACH(output, &outputs, outputs)
70     if (output->active)
71         return output;
72
73     die("No usable outputs available.\n");
74 }
75
76 /*
77  * Check whether there are any active outputs (excluding the root output).
78  *
79  */
80 static bool any_randr_output_active(void) {
81     Output *output;
82
83     TAILQ_FOREACH(output, &outputs, outputs) {
84         if (output != root_output && !output->to_be_disabled && output->active)
85             return true;
86     }
87
88     return false;
89 }
90
91 /*
92  * Returns the active (!) output which contains the coordinates x, y or NULL
93  * if there is no output which contains these coordinates.
94  *
95  */
96 Output *get_output_containing(unsigned int x, unsigned int y) {
97     Output *output;
98     TAILQ_FOREACH(output, &outputs, outputs) {
99         if (!output->active)
100             continue;
101         DLOG("comparing x=%d y=%d with x=%d and y=%d width %d height %d\n",
102              x, y, output->rect.x, output->rect.y, output->rect.width, output->rect.height);
103         if (x >= output->rect.x && x < (output->rect.x + output->rect.width) &&
104             y >= output->rect.y && y < (output->rect.y + output->rect.height))
105             return output;
106     }
107
108     return NULL;
109 }
110
111 /*
112  * In contained_by_output, we check if any active output contains part of the container.
113  * We do this by checking if the output rect is intersected by the Rect.
114  * This is the 2-dimensional counterpart of get_output_containing.
115  * Since we don't actually need the outputs intersected by the given Rect (There could
116  * be many), we just return true or false for convenience.
117  *
118  */
119 bool contained_by_output(Rect rect) {
120     Output *output;
121     int lx = rect.x, uy = rect.y;
122     int rx = rect.x + rect.width, by = rect.y + rect.height;
123     TAILQ_FOREACH(output, &outputs, outputs) {
124         if (!output->active)
125             continue;
126         DLOG("comparing x=%d y=%d with x=%d and y=%d width %d height %d\n",
127              rect.x, rect.y, output->rect.x, output->rect.y, output->rect.width, output->rect.height);
128         if (rx >= (int)output->rect.x && lx <= (int)(output->rect.x + output->rect.width) &&
129             by >= (int)output->rect.y && uy <= (int)(output->rect.y + output->rect.height))
130             return true;
131     }
132     return false;
133 }
134
135 /*
136  * Like get_output_next with close_far == CLOSEST_OUTPUT, but wraps.
137  *
138  * For example if get_output_next(D_DOWN, x, FARTHEST_OUTPUT) = NULL, then
139  * get_output_next_wrap(D_DOWN, x) will return the topmost output.
140  *
141  * This function always returns a output: if no active outputs can be found,
142  * current itself is returned.
143  *
144  */
145 Output *get_output_next_wrap(direction_t direction, Output *current) {
146     Output *best = get_output_next(direction, current, CLOSEST_OUTPUT);
147     /* If no output can be found, wrap */
148     if (!best) {
149         direction_t opposite;
150         if (direction == D_RIGHT)
151             opposite = D_LEFT;
152         else if (direction == D_LEFT)
153             opposite = D_RIGHT;
154         else if (direction == D_DOWN)
155             opposite = D_UP;
156         else
157             opposite = D_DOWN;
158         best = get_output_next(opposite, current, FARTHEST_OUTPUT);
159     }
160     if (!best)
161         best = current;
162     DLOG("current = %s, best = %s\n", current->name, best->name);
163     return best;
164 }
165
166 /*
167  * Gets the output which is the next one in the given direction.
168  *
169  * If close_far == CLOSEST_OUTPUT, then the output next to the current one will
170  * selected. If close_far == FARTHEST_OUTPUT, the output which is the last one
171  * in the given direction will be selected.
172  *
173  * NULL will be returned when no active outputs are present in the direction
174  * specified (note that “current” counts as such an output).
175  *
176  */
177 Output *get_output_next(direction_t direction, Output *current, output_close_far_t close_far) {
178     Rect *cur = &(current->rect),
179          *other;
180     Output *output,
181         *best = NULL;
182     TAILQ_FOREACH(output, &outputs, outputs) {
183         if (!output->active)
184             continue;
185
186         other = &(output->rect);
187
188         if ((direction == D_RIGHT && other->x > cur->x) ||
189             (direction == D_LEFT && other->x < cur->x)) {
190             /* Skip the output when it doesn’t overlap the other one’s y
191              * coordinate at all. */
192             if ((other->y + other->height) <= cur->y ||
193                 (cur->y + cur->height) <= other->y)
194                 continue;
195         } else if ((direction == D_DOWN && other->y > cur->y) ||
196                    (direction == D_UP && other->y < cur->y)) {
197             /* Skip the output when it doesn’t overlap the other one’s x
198              * coordinate at all. */
199             if ((other->x + other->width) <= cur->x ||
200                 (cur->x + cur->width) <= other->x)
201                 continue;
202         } else
203             continue;
204
205         /* No candidate yet? Start with this one. */
206         if (!best) {
207             best = output;
208             continue;
209         }
210
211         if (close_far == CLOSEST_OUTPUT) {
212             /* Is this output better (closer to the current output) than our
213              * current best bet? */
214             if ((direction == D_RIGHT && other->x < best->rect.x) ||
215                 (direction == D_LEFT && other->x > best->rect.x) ||
216                 (direction == D_DOWN && other->y < best->rect.y) ||
217                 (direction == D_UP && other->y > best->rect.y)) {
218                 best = output;
219                 continue;
220             }
221         } else {
222             /* Is this output better (farther to the current output) than our
223              * current best bet? */
224             if ((direction == D_RIGHT && other->x > best->rect.x) ||
225                 (direction == D_LEFT && other->x < best->rect.x) ||
226                 (direction == D_DOWN && other->y > best->rect.y) ||
227                 (direction == D_UP && other->y < best->rect.y)) {
228                 best = output;
229                 continue;
230             }
231         }
232     }
233
234     DLOG("current = %s, best = %s\n", current->name, (best ? best->name : "NULL"));
235     return best;
236 }
237
238 /*
239  * Creates an output covering the root window.
240  *
241  */
242 Output *create_root_output(xcb_connection_t *conn) {
243     Output *s = scalloc(1, sizeof(Output));
244
245     s->active = false;
246     s->rect.x = 0;
247     s->rect.y = 0;
248     s->rect.width = root_screen->width_in_pixels;
249     s->rect.height = root_screen->height_in_pixels;
250     s->name = "xroot-0";
251
252     return s;
253 }
254
255 /*
256  * Initializes a CT_OUTPUT Con (searches existing ones from inplace restart
257  * before) to use for the given Output.
258  *
259  */
260 void output_init_con(Output *output) {
261     Con *con = NULL, *current;
262     bool reused = false;
263
264     DLOG("init_con for output %s\n", output->name);
265
266     /* Search for a Con with that name directly below the root node. There
267      * might be one from a restored layout. */
268     TAILQ_FOREACH(current, &(croot->nodes_head), nodes) {
269         if (strcmp(current->name, output->name) != 0)
270             continue;
271
272         con = current;
273         reused = true;
274         DLOG("Using existing con %p / %s\n", con, con->name);
275         break;
276     }
277
278     if (con == NULL) {
279         con = con_new(croot, NULL);
280         FREE(con->name);
281         con->name = sstrdup(output->name);
282         con->type = CT_OUTPUT;
283         con->layout = L_OUTPUT;
284         con_fix_percent(croot);
285     }
286     con->rect = output->rect;
287     output->con = con;
288
289     char *name;
290     sasprintf(&name, "[i3 con] output %s", con->name);
291     x_set_name(con, name);
292     FREE(name);
293
294     if (reused) {
295         DLOG("Not adding workspace, this was a reused con\n");
296         return;
297     }
298
299     DLOG("Changing layout, adding top/bottom dockarea\n");
300     Con *topdock = con_new(NULL, NULL);
301     topdock->type = CT_DOCKAREA;
302     topdock->layout = L_DOCKAREA;
303     /* this container swallows dock clients */
304     Match *match = scalloc(1, sizeof(Match));
305     match_init(match);
306     match->dock = M_DOCK_TOP;
307     match->insert_where = M_BELOW;
308     TAILQ_INSERT_TAIL(&(topdock->swallow_head), match, matches);
309
310     FREE(topdock->name);
311     topdock->name = sstrdup("topdock");
312
313     sasprintf(&name, "[i3 con] top dockarea %s", con->name);
314     x_set_name(topdock, name);
315     FREE(name);
316     DLOG("attaching\n");
317     con_attach(topdock, con, false);
318
319     /* content container */
320
321     DLOG("adding main content container\n");
322     Con *content = con_new(NULL, NULL);
323     content->type = CT_CON;
324     content->layout = L_SPLITH;
325     FREE(content->name);
326     content->name = sstrdup("content");
327
328     sasprintf(&name, "[i3 con] content %s", con->name);
329     x_set_name(content, name);
330     FREE(name);
331     con_attach(content, con, false);
332
333     /* bottom dock container */
334     Con *bottomdock = con_new(NULL, NULL);
335     bottomdock->type = CT_DOCKAREA;
336     bottomdock->layout = L_DOCKAREA;
337     /* this container swallows dock clients */
338     match = scalloc(1, sizeof(Match));
339     match_init(match);
340     match->dock = M_DOCK_BOTTOM;
341     match->insert_where = M_BELOW;
342     TAILQ_INSERT_TAIL(&(bottomdock->swallow_head), match, matches);
343
344     FREE(bottomdock->name);
345     bottomdock->name = sstrdup("bottomdock");
346
347     sasprintf(&name, "[i3 con] bottom dockarea %s", con->name);
348     x_set_name(bottomdock, name);
349     FREE(name);
350     DLOG("attaching\n");
351     con_attach(bottomdock, con, false);
352 }
353
354 /*
355  * Initializes at least one workspace for this output, trying the following
356  * steps until there is at least one workspace:
357  *
358  * • Move existing workspaces, which are assigned to be on the given output, to
359  *   the output.
360  * • Create the first assigned workspace for this output.
361  * • Create the first unused workspace.
362  *
363  */
364 void init_ws_for_output(Output *output, Con *content) {
365     /* go through all assignments and move the existing workspaces to this output */
366     struct Workspace_Assignment *assignment;
367     TAILQ_FOREACH(assignment, &ws_assignments, ws_assignments) {
368         if (strcmp(assignment->output, output->name) != 0)
369             continue;
370
371         /* check if this workspace actually exists */
372         Con *workspace = NULL, *out;
373         TAILQ_FOREACH(out, &(croot->nodes_head), nodes)
374         GREP_FIRST(workspace, output_get_content(out),
375                    !strcasecmp(child->name, assignment->name));
376         if (workspace == NULL)
377             continue;
378
379         /* check that this workspace is not already attached (that means the
380          * user configured this assignment twice) */
381         Con *workspace_out = con_get_output(workspace);
382         if (workspace_out == output->con) {
383             LOG("Workspace \"%s\" assigned to output \"%s\", but it is already "
384                 "there. Do you have two assignment directives for the same "
385                 "workspace in your configuration file?\n",
386                 workspace->name, output->name);
387             continue;
388         }
389
390         /* if so, move it over */
391         LOG("Moving workspace \"%s\" from output \"%s\" to \"%s\" due to assignment\n",
392             workspace->name, workspace_out->name, output->name);
393
394         /* if the workspace is currently visible on that output, we need to
395          * switch to a different workspace - otherwise the output would end up
396          * with no active workspace */
397         bool visible = workspace_is_visible(workspace);
398         Con *previous = NULL;
399         if (visible && (previous = TAILQ_NEXT(workspace, focused))) {
400             LOG("Switching to previously used workspace \"%s\" on output \"%s\"\n",
401                 previous->name, workspace_out->name);
402             workspace_show(previous);
403         }
404
405         /* Render the output on which the workspace was to get correct Rects.
406          * Then, we need to work with the "content" container, since we cannot
407          * be sure that the workspace itself was rendered at all (in case it’s
408          * invisible, it won’t be rendered). */
409         render_con(workspace_out, false);
410         Con *ws_out_content = output_get_content(workspace_out);
411
412         Con *floating_con;
413         TAILQ_FOREACH(floating_con, &(workspace->floating_head), floating_windows)
414         /* NB: We use output->con here because content is not yet rendered,
415              * so it has a rect of {0, 0, 0, 0}. */
416         floating_fix_coordinates(floating_con, &(ws_out_content->rect), &(output->con->rect));
417
418         con_detach(workspace);
419         con_attach(workspace, content, false);
420
421         /* In case the workspace we just moved was visible but there was no
422          * other workspace to switch to, we need to initialize the source
423          * output aswell */
424         if (visible && previous == NULL) {
425             LOG("There is no workspace left on \"%s\", re-initializing\n",
426                 workspace_out->name);
427             init_ws_for_output(get_output_by_name(workspace_out->name),
428                                output_get_content(workspace_out));
429             DLOG("Done re-initializing, continuing with \"%s\"\n", output->name);
430         }
431     }
432
433     /* if a workspace exists, we are done now */
434     if (!TAILQ_EMPTY(&(content->nodes_head))) {
435         /* ensure that one of the workspaces is actually visible (in fullscreen
436          * mode), if they were invisible before, this might not be the case. */
437         Con *visible = NULL;
438         GREP_FIRST(visible, content, child->fullscreen_mode == CF_OUTPUT);
439         if (!visible) {
440             visible = TAILQ_FIRST(&(content->nodes_head));
441             focused = content;
442             workspace_show(visible);
443         }
444         return;
445     }
446
447     /* otherwise, we create the first assigned ws for this output */
448     TAILQ_FOREACH(assignment, &ws_assignments, ws_assignments) {
449         if (strcmp(assignment->output, output->name) != 0)
450             continue;
451
452         LOG("Initializing first assigned workspace \"%s\" for output \"%s\"\n",
453             assignment->name, assignment->output);
454         focused = content;
455         workspace_show_by_name(assignment->name);
456         return;
457     }
458
459     /* if there is still no workspace, we create the first free workspace */
460     DLOG("Now adding a workspace\n");
461     Con *ws = create_workspace_on_output(output, content);
462
463     /* TODO: Set focus in main.c */
464     con_focus(ws);
465 }
466
467 /*
468  * This function needs to be called when changing the mode of an output when
469  * it already has some workspaces (or a bar window) assigned.
470  *
471  * It reconfigures the bar window for the new mode, copies the new rect into
472  * each workspace on this output and forces all windows on the affected
473  * workspaces to be reconfigured.
474  *
475  * It is necessary to call render_layout() afterwards.
476  *
477  */
478 static void output_change_mode(xcb_connection_t *conn, Output *output) {
479     DLOG("Output mode changed, updating rect\n");
480     assert(output->con != NULL);
481     output->con->rect = output->rect;
482
483     Con *content, *workspace, *child;
484
485     /* Point content to the container of the workspaces */
486     content = output_get_content(output->con);
487
488     /* Fix the position of all floating windows on this output.
489      * The 'rect' of each workspace will be updated in src/render.c. */
490     TAILQ_FOREACH(workspace, &(content->nodes_head), nodes) {
491         TAILQ_FOREACH(child, &(workspace->floating_head), floating_windows) {
492             floating_fix_coordinates(child, &(workspace->rect), &(output->con->rect));
493         }
494     }
495
496     /* If default_orientation is NO_ORIENTATION, we change the orientation of
497      * the workspaces and their childs depending on output resolution. This is
498      * only done for workspaces with maximum one child. */
499     if (config.default_orientation == NO_ORIENTATION) {
500         TAILQ_FOREACH(workspace, &(content->nodes_head), nodes) {
501             /* Workspaces with more than one child are left untouched because
502              * we do not want to change an existing layout. */
503             if (con_num_children(workspace) > 1)
504                 continue;
505
506             workspace->layout = (output->rect.height > output->rect.width) ? L_SPLITV : L_SPLITH;
507             DLOG("Setting workspace [%d,%s]'s layout to %d.\n", workspace->num, workspace->name, workspace->layout);
508             if ((child = TAILQ_FIRST(&(workspace->nodes_head)))) {
509                 if (child->layout == L_SPLITV || child->layout == L_SPLITH)
510                     child->layout = workspace->layout;
511                 DLOG("Setting child [%d,%s]'s layout to %d.\n", child->num, child->name, child->layout);
512             }
513         }
514     }
515 }
516
517 /*
518  * Gets called by randr_query_outputs() for each output. The function adds new
519  * outputs to the list of outputs, checks if the mode of existing outputs has
520  * been changed or if an existing output has been disabled. It will then change
521  * either the "changed" or the "to_be_deleted" flag of the output, if
522  * appropriate.
523  *
524  */
525 static void handle_output(xcb_connection_t *conn, xcb_randr_output_t id,
526                           xcb_randr_get_output_info_reply_t *output,
527                           xcb_timestamp_t cts, resources_reply *res) {
528     /* each CRT controller has a position in which we are interested in */
529     crtc_info *crtc;
530
531     Output *new = get_output_by_id(id);
532     bool existing = (new != NULL);
533     if (!existing)
534         new = scalloc(1, sizeof(Output));
535     new->id = id;
536     new->primary = (primary && primary->output == id);
537     FREE(new->name);
538     sasprintf(&new->name, "%.*s",
539               xcb_randr_get_output_info_name_length(output),
540               xcb_randr_get_output_info_name(output));
541
542     DLOG("found output with name %s\n", new->name);
543
544     /* Even if no CRTC is used at the moment, we store the output so that
545      * we do not need to change the list ever again (we only update the
546      * position/size) */
547     if (output->crtc == XCB_NONE) {
548         if (!existing) {
549             if (new->primary)
550                 TAILQ_INSERT_HEAD(&outputs, new, outputs);
551             else
552                 TAILQ_INSERT_TAIL(&outputs, new, outputs);
553         } else if (new->active)
554             new->to_be_disabled = true;
555         return;
556     }
557
558     xcb_randr_get_crtc_info_cookie_t icookie;
559     icookie = xcb_randr_get_crtc_info(conn, output->crtc, cts);
560     if ((crtc = xcb_randr_get_crtc_info_reply(conn, icookie, NULL)) == NULL) {
561         DLOG("Skipping output %s: could not get CRTC (%p)\n",
562              new->name, crtc);
563         free(new);
564         return;
565     }
566
567     bool updated = update_if_necessary(&(new->rect.x), crtc->x) |
568                    update_if_necessary(&(new->rect.y), crtc->y) |
569                    update_if_necessary(&(new->rect.width), crtc->width) |
570                    update_if_necessary(&(new->rect.height), crtc->height);
571     free(crtc);
572     new->active = (new->rect.width != 0 && new->rect.height != 0);
573     if (!new->active) {
574         DLOG("width/height 0/0, disabling output\n");
575         return;
576     }
577
578     DLOG("mode: %dx%d+%d+%d\n", new->rect.width, new->rect.height,
579          new->rect.x, new->rect.y);
580
581     /* If we don’t need to change an existing output or if the output
582      * does not exist in the first place, the case is simple: we either
583      * need to insert the new output or we are done. */
584     if (!updated || !existing) {
585         if (!existing) {
586             if (new->primary)
587                 TAILQ_INSERT_HEAD(&outputs, new, outputs);
588             else
589                 TAILQ_INSERT_TAIL(&outputs, new, outputs);
590         }
591         return;
592     }
593
594     new->changed = true;
595 }
596
597 /*
598  * (Re-)queries the outputs via RandR and stores them in the list of outputs.
599  *
600  * If no outputs are found use the root window.
601  *
602  */
603 void randr_query_outputs(void) {
604     Output *output, *other, *first;
605     xcb_randr_get_output_primary_cookie_t pcookie;
606     xcb_randr_get_screen_resources_current_cookie_t rcookie;
607     resources_reply *res;
608
609     /* timestamp of the configuration so that we get consistent replies to all
610      * requests (if the configuration changes between our different calls) */
611     xcb_timestamp_t cts;
612
613     /* an output is VGA-1, LVDS-1, etc. (usually physical video outputs) */
614     xcb_randr_output_t *randr_outputs;
615
616     /* Get screen resources (primary output, crtcs, outputs, modes) */
617     rcookie = xcb_randr_get_screen_resources_current(conn, root);
618     pcookie = xcb_randr_get_output_primary(conn, root);
619
620     if ((primary = xcb_randr_get_output_primary_reply(conn, pcookie, NULL)) == NULL)
621         ELOG("Could not get RandR primary output\n");
622     else
623         DLOG("primary output is %08x\n", primary->output);
624     if ((res = xcb_randr_get_screen_resources_current_reply(conn, rcookie, NULL)) == NULL)
625         return;
626
627     cts = res->config_timestamp;
628
629     int len = xcb_randr_get_screen_resources_current_outputs_length(res);
630     randr_outputs = xcb_randr_get_screen_resources_current_outputs(res);
631
632     /* Request information for each output */
633     xcb_randr_get_output_info_cookie_t ocookie[len];
634     for (int i = 0; i < len; i++)
635         ocookie[i] = xcb_randr_get_output_info(conn, randr_outputs[i], cts);
636
637     /* Loop through all outputs available for this X11 screen */
638     for (int i = 0; i < len; i++) {
639         xcb_randr_get_output_info_reply_t *output;
640
641         if ((output = xcb_randr_get_output_info_reply(conn, ocookie[i], NULL)) == NULL)
642             continue;
643
644         handle_output(conn, randr_outputs[i], output, cts, res);
645         free(output);
646     }
647
648     /* If there's no randr output, enable the output covering the root window. */
649     if (any_randr_output_active()) {
650         DLOG("Active RandR output found. Disabling root output.\n");
651         if (root_output->active)
652             root_output->to_be_disabled = true;
653     } else {
654         DLOG("No active RandR output found. Enabling root output.\n");
655         root_output->active = true;
656     }
657
658     /* Check for clones, disable the clones and reduce the mode to the
659      * lowest common mode */
660     TAILQ_FOREACH(output, &outputs, outputs) {
661         if (!output->active || output->to_be_disabled)
662             continue;
663         DLOG("output %p / %s, position (%d, %d), checking for clones\n",
664              output, output->name, output->rect.x, output->rect.y);
665
666         for (other = output;
667              other != TAILQ_END(&outputs);
668              other = TAILQ_NEXT(other, outputs)) {
669             if (other == output || !other->active || other->to_be_disabled)
670                 continue;
671
672             if (other->rect.x != output->rect.x ||
673                 other->rect.y != output->rect.y)
674                 continue;
675
676             DLOG("output %p has the same position, his mode = %d x %d\n",
677                  other, other->rect.width, other->rect.height);
678             uint32_t width = min(other->rect.width, output->rect.width);
679             uint32_t height = min(other->rect.height, output->rect.height);
680
681             if (update_if_necessary(&(output->rect.width), width) |
682                 update_if_necessary(&(output->rect.height), height))
683                 output->changed = true;
684
685             update_if_necessary(&(other->rect.width), width);
686             update_if_necessary(&(other->rect.height), height);
687
688             DLOG("disabling output %p (%s)\n", other, other->name);
689             other->to_be_disabled = true;
690
691             DLOG("new output mode %d x %d, other mode %d x %d\n",
692                  output->rect.width, output->rect.height,
693                  other->rect.width, other->rect.height);
694         }
695     }
696
697     /* Ensure that all outputs which are active also have a con. This is
698      * necessary because in the next step, a clone might get disabled. Example:
699      * LVDS1 active, VGA1 gets activated as a clone of LVDS1 (has no con).
700      * LVDS1 gets disabled. */
701     TAILQ_FOREACH(output, &outputs, outputs) {
702         if (output->active && output->con == NULL) {
703             DLOG("Need to initialize a Con for output %s\n", output->name);
704             output_init_con(output);
705             output->changed = false;
706         }
707     }
708
709     /* Handle outputs which have a new mode or are disabled now (either
710      * because the user disabled them or because they are clones) */
711     TAILQ_FOREACH(output, &outputs, outputs) {
712         if (output->to_be_disabled) {
713             output->active = false;
714             DLOG("Output %s disabled, re-assigning workspaces/docks\n", output->name);
715
716             first = get_first_output();
717
718             /* TODO: refactor the following code into a nice function. maybe
719              * use an on_destroy callback which is implement differently for
720              * different container types (CT_CONTENT vs. CT_DOCKAREA)? */
721             Con *first_content = output_get_content(first->con);
722
723             if (output->con != NULL) {
724                 /* We need to move the workspaces from the disappearing output to the first output */
725                 /* 1: Get the con to focus next, if the disappearing ws is focused */
726                 Con *next = NULL;
727                 if (TAILQ_FIRST(&(croot->focus_head)) == output->con) {
728                     DLOG("This output (%p) was focused! Getting next\n", output->con);
729                     next = focused;
730                     DLOG("next = %p\n", next);
731                 }
732
733                 /* 2: iterate through workspaces and re-assign them, fixing the coordinates
734                  * of floating containers as we go */
735                 Con *current;
736                 Con *old_content = output_get_content(output->con);
737                 while (!TAILQ_EMPTY(&(old_content->nodes_head))) {
738                     current = TAILQ_FIRST(&(old_content->nodes_head));
739                     if (current != next && TAILQ_EMPTY(&(current->focus_head))) {
740                         /* the workspace is empty and not focused, get rid of it */
741                         DLOG("Getting rid of current = %p / %s (empty, unfocused)\n", current, current->name);
742                         tree_close(current, DONT_KILL_WINDOW, false, false);
743                         continue;
744                     }
745                     DLOG("Detaching current = %p / %s\n", current, current->name);
746                     con_detach(current);
747                     DLOG("Re-attaching current = %p / %s\n", current, current->name);
748                     con_attach(current, first_content, false);
749                     DLOG("Fixing the coordinates of floating containers\n");
750                     Con *floating_con;
751                     TAILQ_FOREACH(floating_con, &(current->floating_head), floating_windows)
752                     floating_fix_coordinates(floating_con, &(output->con->rect), &(first->con->rect));
753                     DLOG("Done, next\n");
754                 }
755                 DLOG("re-attached all workspaces\n");
756
757                 if (next) {
758                     DLOG("now focusing next = %p\n", next);
759                     con_focus(next);
760                     workspace_show(con_get_workspace(next));
761                 }
762
763                 /* 3: move the dock clients to the first output */
764                 Con *child;
765                 TAILQ_FOREACH(child, &(output->con->nodes_head), nodes) {
766                     if (child->type != CT_DOCKAREA)
767                         continue;
768                     DLOG("Handling dock con %p\n", child);
769                     Con *dock;
770                     while (!TAILQ_EMPTY(&(child->nodes_head))) {
771                         dock = TAILQ_FIRST(&(child->nodes_head));
772                         Con *nc;
773                         Match *match;
774                         nc = con_for_window(first->con, dock->window, &match);
775                         DLOG("Moving dock client %p to nc %p\n", dock, nc);
776                         con_detach(dock);
777                         DLOG("Re-attaching\n");
778                         con_attach(dock, nc, false);
779                         DLOG("Done\n");
780                     }
781                 }
782
783                 DLOG("destroying disappearing con %p\n", output->con);
784                 tree_close(output->con, DONT_KILL_WINDOW, true, false);
785                 DLOG("Done. Should be fine now\n");
786                 output->con = NULL;
787             }
788
789             output->to_be_disabled = false;
790             output->changed = false;
791         }
792
793         if (output->changed) {
794             output_change_mode(conn, output);
795             output->changed = false;
796         }
797     }
798
799     /* Just go through each active output and assign one workspace */
800     TAILQ_FOREACH(output, &outputs, outputs) {
801         if (!output->active)
802             continue;
803         Con *content = output_get_content(output->con);
804         if (!TAILQ_EMPTY(&(content->nodes_head)))
805             continue;
806         DLOG("Should add ws for output %s\n", output->name);
807         init_ws_for_output(output, content);
808     }
809
810     /* Focus the primary screen, if possible */
811     TAILQ_FOREACH(output, &outputs, outputs) {
812         if (!output->primary || !output->con)
813             continue;
814
815         DLOG("Focusing primary output %s\n", output->name);
816         con_focus(con_descend_focused(output->con));
817     }
818
819     /* render_layout flushes */
820     tree_render();
821
822     FREE(res);
823     FREE(primary);
824 }
825
826 /*
827  * We have just established a connection to the X server and need the initial
828  * XRandR information to setup workspaces for each screen.
829  *
830  */
831 void randr_init(int *event_base) {
832     const xcb_query_extension_reply_t *extreply;
833
834     root_output = create_root_output(conn);
835     TAILQ_INSERT_TAIL(&outputs, root_output, outputs);
836
837     extreply = xcb_get_extension_data(conn, &xcb_randr_id);
838     if (!extreply->present) {
839         DLOG("RandR is not present, activating root output.\n");
840         root_output->active = true;
841         output_init_con(root_output);
842         init_ws_for_output(root_output, output_get_content(root_output->con));
843
844         return;
845     }
846
847     randr_query_outputs();
848
849     if (event_base != NULL)
850         *event_base = extreply->first_event;
851
852     xcb_randr_select_input(conn, root,
853                            XCB_RANDR_NOTIFY_MASK_SCREEN_CHANGE |
854                                XCB_RANDR_NOTIFY_MASK_OUTPUT_CHANGE |
855                                XCB_RANDR_NOTIFY_MASK_CRTC_CHANGE |
856                                XCB_RANDR_NOTIFY_MASK_OUTPUT_PROPERTY);
857
858     xcb_flush(conn);
859 }