]> git.sur5r.net Git - i3/i3/blob - src/randr.c
randr: use root window in case of no randr outputs
[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 void create_root_output(xcb_connection_t *conn) {
243     root_output = scalloc(1, sizeof(Output));
244
245     root_output->active = true;
246     root_output->rect.x = 0;
247     root_output->rect.y = 0;
248     root_output->rect.width = root_screen->width_in_pixels;
249     root_output->rect.height = root_screen->height_in_pixels;
250     root_output->name = "xroot-0";
251     output_init_con(root_output);
252     init_ws_for_output(root_output, output_get_content(root_output->con));
253
254     TAILQ_INSERT_TAIL(&outputs, root_output, outputs);
255 }
256
257 /*
258  * Initializes a CT_OUTPUT Con (searches existing ones from inplace restart
259  * before) to use for the given Output.
260  *
261  */
262 void output_init_con(Output *output) {
263     Con *con = NULL, *current;
264     bool reused = false;
265
266     DLOG("init_con for output %s\n", output->name);
267
268     /* Search for a Con with that name directly below the root node. There
269      * might be one from a restored layout. */
270     TAILQ_FOREACH(current, &(croot->nodes_head), nodes) {
271         if (strcmp(current->name, output->name) != 0)
272             continue;
273
274         con = current;
275         reused = true;
276         DLOG("Using existing con %p / %s\n", con, con->name);
277         break;
278     }
279
280     if (con == NULL) {
281         con = con_new(croot, NULL);
282         FREE(con->name);
283         con->name = sstrdup(output->name);
284         con->type = CT_OUTPUT;
285         con->layout = L_OUTPUT;
286         con_fix_percent(croot);
287     }
288     con->rect = output->rect;
289     output->con = con;
290
291     char *name;
292     sasprintf(&name, "[i3 con] output %s", con->name);
293     x_set_name(con, name);
294     FREE(name);
295
296     if (reused) {
297         DLOG("Not adding workspace, this was a reused con\n");
298         return;
299     }
300
301     DLOG("Changing layout, adding top/bottom dockarea\n");
302     Con *topdock = con_new(NULL, NULL);
303     topdock->type = CT_DOCKAREA;
304     topdock->layout = L_DOCKAREA;
305     /* this container swallows dock clients */
306     Match *match = scalloc(1, sizeof(Match));
307     match_init(match);
308     match->dock = M_DOCK_TOP;
309     match->insert_where = M_BELOW;
310     TAILQ_INSERT_TAIL(&(topdock->swallow_head), match, matches);
311
312     FREE(topdock->name);
313     topdock->name = sstrdup("topdock");
314
315     sasprintf(&name, "[i3 con] top dockarea %s", con->name);
316     x_set_name(topdock, name);
317     FREE(name);
318     DLOG("attaching\n");
319     con_attach(topdock, con, false);
320
321     /* content container */
322
323     DLOG("adding main content container\n");
324     Con *content = con_new(NULL, NULL);
325     content->type = CT_CON;
326     content->layout = L_SPLITH;
327     FREE(content->name);
328     content->name = sstrdup("content");
329
330     sasprintf(&name, "[i3 con] content %s", con->name);
331     x_set_name(content, name);
332     FREE(name);
333     con_attach(content, con, false);
334
335     /* bottom dock container */
336     Con *bottomdock = con_new(NULL, NULL);
337     bottomdock->type = CT_DOCKAREA;
338     bottomdock->layout = L_DOCKAREA;
339     /* this container swallows dock clients */
340     match = scalloc(1, sizeof(Match));
341     match_init(match);
342     match->dock = M_DOCK_BOTTOM;
343     match->insert_where = M_BELOW;
344     TAILQ_INSERT_TAIL(&(bottomdock->swallow_head), match, matches);
345
346     FREE(bottomdock->name);
347     bottomdock->name = sstrdup("bottomdock");
348
349     sasprintf(&name, "[i3 con] bottom dockarea %s", con->name);
350     x_set_name(bottomdock, name);
351     FREE(name);
352     DLOG("attaching\n");
353     con_attach(bottomdock, con, false);
354 }
355
356 /*
357  * Initializes at least one workspace for this output, trying the following
358  * steps until there is at least one workspace:
359  *
360  * • Move existing workspaces, which are assigned to be on the given output, to
361  *   the output.
362  * • Create the first assigned workspace for this output.
363  * • Create the first unused workspace.
364  *
365  */
366 void init_ws_for_output(Output *output, Con *content) {
367     /* go through all assignments and move the existing workspaces to this output */
368     struct Workspace_Assignment *assignment;
369     TAILQ_FOREACH(assignment, &ws_assignments, ws_assignments) {
370         if (strcmp(assignment->output, output->name) != 0)
371             continue;
372
373         /* check if this workspace actually exists */
374         Con *workspace = NULL, *out;
375         TAILQ_FOREACH(out, &(croot->nodes_head), nodes)
376         GREP_FIRST(workspace, output_get_content(out),
377                    !strcasecmp(child->name, assignment->name));
378         if (workspace == NULL)
379             continue;
380
381         /* check that this workspace is not already attached (that means the
382          * user configured this assignment twice) */
383         Con *workspace_out = con_get_output(workspace);
384         if (workspace_out == output->con) {
385             LOG("Workspace \"%s\" assigned to output \"%s\", but it is already "
386                 "there. Do you have two assignment directives for the same "
387                 "workspace in your configuration file?\n",
388                 workspace->name, output->name);
389             continue;
390         }
391
392         /* if so, move it over */
393         LOG("Moving workspace \"%s\" from output \"%s\" to \"%s\" due to assignment\n",
394             workspace->name, workspace_out->name, output->name);
395
396         /* if the workspace is currently visible on that output, we need to
397          * switch to a different workspace - otherwise the output would end up
398          * with no active workspace */
399         bool visible = workspace_is_visible(workspace);
400         Con *previous = NULL;
401         if (visible && (previous = TAILQ_NEXT(workspace, focused))) {
402             LOG("Switching to previously used workspace \"%s\" on output \"%s\"\n",
403                 previous->name, workspace_out->name);
404             workspace_show(previous);
405         }
406
407         /* Render the output on which the workspace was to get correct Rects.
408          * Then, we need to work with the "content" container, since we cannot
409          * be sure that the workspace itself was rendered at all (in case it’s
410          * invisible, it won’t be rendered). */
411         render_con(workspace_out, false);
412         Con *ws_out_content = output_get_content(workspace_out);
413
414         Con *floating_con;
415         TAILQ_FOREACH(floating_con, &(workspace->floating_head), floating_windows)
416         /* NB: We use output->con here because content is not yet rendered,
417              * so it has a rect of {0, 0, 0, 0}. */
418         floating_fix_coordinates(floating_con, &(ws_out_content->rect), &(output->con->rect));
419
420         con_detach(workspace);
421         con_attach(workspace, content, false);
422
423         /* In case the workspace we just moved was visible but there was no
424          * other workspace to switch to, we need to initialize the source
425          * output aswell */
426         if (visible && previous == NULL) {
427             LOG("There is no workspace left on \"%s\", re-initializing\n",
428                 workspace_out->name);
429             init_ws_for_output(get_output_by_name(workspace_out->name),
430                                output_get_content(workspace_out));
431             DLOG("Done re-initializing, continuing with \"%s\"\n", output->name);
432         }
433     }
434
435     /* if a workspace exists, we are done now */
436     if (!TAILQ_EMPTY(&(content->nodes_head))) {
437         /* ensure that one of the workspaces is actually visible (in fullscreen
438          * mode), if they were invisible before, this might not be the case. */
439         Con *visible = NULL;
440         GREP_FIRST(visible, content, child->fullscreen_mode == CF_OUTPUT);
441         if (!visible) {
442             visible = TAILQ_FIRST(&(content->nodes_head));
443             focused = content;
444             workspace_show(visible);
445         }
446         return;
447     }
448
449     /* otherwise, we create the first assigned ws for this output */
450     TAILQ_FOREACH(assignment, &ws_assignments, ws_assignments) {
451         if (strcmp(assignment->output, output->name) != 0)
452             continue;
453
454         LOG("Initializing first assigned workspace \"%s\" for output \"%s\"\n",
455             assignment->name, assignment->output);
456         focused = content;
457         workspace_show_by_name(assignment->name);
458         return;
459     }
460
461     /* if there is still no workspace, we create the first free workspace */
462     DLOG("Now adding a workspace\n");
463     Con *ws = create_workspace_on_output(output, content);
464
465     /* TODO: Set focus in main.c */
466     con_focus(ws);
467 }
468
469 /*
470  * This function needs to be called when changing the mode of an output when
471  * it already has some workspaces (or a bar window) assigned.
472  *
473  * It reconfigures the bar window for the new mode, copies the new rect into
474  * each workspace on this output and forces all windows on the affected
475  * workspaces to be reconfigured.
476  *
477  * It is necessary to call render_layout() afterwards.
478  *
479  */
480 static void output_change_mode(xcb_connection_t *conn, Output *output) {
481     DLOG("Output mode changed, updating rect\n");
482     assert(output->con != NULL);
483     output->con->rect = output->rect;
484
485     Con *content, *workspace, *child;
486
487     /* Point content to the container of the workspaces */
488     content = output_get_content(output->con);
489
490     /* Fix the position of all floating windows on this output.
491      * The 'rect' of each workspace will be updated in src/render.c. */
492     TAILQ_FOREACH(workspace, &(content->nodes_head), nodes) {
493         TAILQ_FOREACH(child, &(workspace->floating_head), floating_windows) {
494             floating_fix_coordinates(child, &(workspace->rect), &(output->con->rect));
495         }
496     }
497
498     /* If default_orientation is NO_ORIENTATION, we change the orientation of
499      * the workspaces and their childs depending on output resolution. This is
500      * only done for workspaces with maximum one child. */
501     if (config.default_orientation == NO_ORIENTATION) {
502         TAILQ_FOREACH(workspace, &(content->nodes_head), nodes) {
503             /* Workspaces with more than one child are left untouched because
504              * we do not want to change an existing layout. */
505             if (con_num_children(workspace) > 1)
506                 continue;
507
508             workspace->layout = (output->rect.height > output->rect.width) ? L_SPLITV : L_SPLITH;
509             DLOG("Setting workspace [%d,%s]'s layout to %d.\n", workspace->num, workspace->name, workspace->layout);
510             if ((child = TAILQ_FIRST(&(workspace->nodes_head)))) {
511                 if (child->layout == L_SPLITV || child->layout == L_SPLITH)
512                     child->layout = workspace->layout;
513                 DLOG("Setting child [%d,%s]'s layout to %d.\n", child->num, child->name, child->layout);
514             }
515         }
516     }
517 }
518
519 /*
520  * Gets called by randr_query_outputs() for each output. The function adds new
521  * outputs to the list of outputs, checks if the mode of existing outputs has
522  * been changed or if an existing output has been disabled. It will then change
523  * either the "changed" or the "to_be_deleted" flag of the output, if
524  * appropriate.
525  *
526  */
527 static void handle_output(xcb_connection_t *conn, xcb_randr_output_t id,
528                           xcb_randr_get_output_info_reply_t *output,
529                           xcb_timestamp_t cts, resources_reply *res) {
530     /* each CRT controller has a position in which we are interested in */
531     crtc_info *crtc;
532
533     Output *new = get_output_by_id(id);
534     bool existing = (new != NULL);
535     if (!existing)
536         new = scalloc(1, sizeof(Output));
537     new->id = id;
538     new->primary = (primary && primary->output == id);
539     FREE(new->name);
540     sasprintf(&new->name, "%.*s",
541               xcb_randr_get_output_info_name_length(output),
542               xcb_randr_get_output_info_name(output));
543
544     DLOG("found output with name %s\n", new->name);
545
546     /* Even if no CRTC is used at the moment, we store the output so that
547      * we do not need to change the list ever again (we only update the
548      * position/size) */
549     if (output->crtc == XCB_NONE) {
550         if (!existing) {
551             if (new->primary)
552                 TAILQ_INSERT_HEAD(&outputs, new, outputs);
553             else
554                 TAILQ_INSERT_TAIL(&outputs, new, outputs);
555         } else if (new->active)
556             new->to_be_disabled = true;
557         return;
558     }
559
560     xcb_randr_get_crtc_info_cookie_t icookie;
561     icookie = xcb_randr_get_crtc_info(conn, output->crtc, cts);
562     if ((crtc = xcb_randr_get_crtc_info_reply(conn, icookie, NULL)) == NULL) {
563         DLOG("Skipping output %s: could not get CRTC (%p)\n",
564              new->name, crtc);
565         free(new);
566         return;
567     }
568
569     bool updated = update_if_necessary(&(new->rect.x), crtc->x) |
570                    update_if_necessary(&(new->rect.y), crtc->y) |
571                    update_if_necessary(&(new->rect.width), crtc->width) |
572                    update_if_necessary(&(new->rect.height), crtc->height);
573     free(crtc);
574     new->active = (new->rect.width != 0 && new->rect.height != 0);
575     if (!new->active) {
576         DLOG("width/height 0/0, disabling output\n");
577         return;
578     }
579
580     DLOG("mode: %dx%d+%d+%d\n", new->rect.width, new->rect.height,
581          new->rect.x, new->rect.y);
582
583     /* If we don’t need to change an existing output or if the output
584      * does not exist in the first place, the case is simple: we either
585      * need to insert the new output or we are done. */
586     if (!updated || !existing) {
587         if (!existing) {
588             if (new->primary)
589                 TAILQ_INSERT_HEAD(&outputs, new, outputs);
590             else
591                 TAILQ_INSERT_TAIL(&outputs, new, outputs);
592         }
593         return;
594     }
595
596     new->changed = true;
597 }
598
599 /*
600  * (Re-)queries the outputs via RandR and stores them in the list of outputs.
601  *
602  * If no outputs are found use the root window.
603  *
604  */
605 void randr_query_outputs(void) {
606     Output *output, *other, *first;
607     xcb_randr_get_output_primary_cookie_t pcookie;
608     xcb_randr_get_screen_resources_current_cookie_t rcookie;
609     resources_reply *res;
610
611     /* timestamp of the configuration so that we get consistent replies to all
612      * requests (if the configuration changes between our different calls) */
613     xcb_timestamp_t cts;
614
615     /* an output is VGA-1, LVDS-1, etc. (usually physical video outputs) */
616     xcb_randr_output_t *randr_outputs;
617
618     /* Get screen resources (primary output, crtcs, outputs, modes) */
619     rcookie = xcb_randr_get_screen_resources_current(conn, root);
620     pcookie = xcb_randr_get_output_primary(conn, root);
621
622     if ((primary = xcb_randr_get_output_primary_reply(conn, pcookie, NULL)) == NULL)
623         ELOG("Could not get RandR primary output\n");
624     else
625         DLOG("primary output is %08x\n", primary->output);
626     if ((res = xcb_randr_get_screen_resources_current_reply(conn, rcookie, NULL)) == NULL)
627         return;
628
629     cts = res->config_timestamp;
630
631     int len = xcb_randr_get_screen_resources_current_outputs_length(res);
632     randr_outputs = xcb_randr_get_screen_resources_current_outputs(res);
633
634     /* Request information for each output */
635     xcb_randr_get_output_info_cookie_t ocookie[len];
636     for (int i = 0; i < len; i++)
637         ocookie[i] = xcb_randr_get_output_info(conn, randr_outputs[i], cts);
638
639     /* Loop through all outputs available for this X11 screen */
640     for (int i = 0; i < len; i++) {
641         xcb_randr_get_output_info_reply_t *output;
642
643         if ((output = xcb_randr_get_output_info_reply(conn, ocookie[i], NULL)) == NULL)
644             continue;
645
646         handle_output(conn, randr_outputs[i], output, cts, res);
647         free(output);
648     }
649
650     /* If there's no randr output, enable the output covering the root window. */
651     if (any_randr_output_active()) {
652         DLOG("Active RandR output found. Disabling root output.\n");
653         if (root_output->active)
654             root_output->to_be_disabled = true;
655     } else {
656         DLOG("No active RandR output found. Enabling root output.\n");
657         root_output->active = true;
658     }
659
660     /* Check for clones, disable the clones and reduce the mode to the
661      * lowest common mode */
662     TAILQ_FOREACH(output, &outputs, outputs) {
663         if (!output->active || output->to_be_disabled)
664             continue;
665         DLOG("output %p / %s, position (%d, %d), checking for clones\n",
666              output, output->name, output->rect.x, output->rect.y);
667
668         for (other = output;
669              other != TAILQ_END(&outputs);
670              other = TAILQ_NEXT(other, outputs)) {
671             if (other == output || !other->active || other->to_be_disabled)
672                 continue;
673
674             if (other->rect.x != output->rect.x ||
675                 other->rect.y != output->rect.y)
676                 continue;
677
678             DLOG("output %p has the same position, his mode = %d x %d\n",
679                  other, other->rect.width, other->rect.height);
680             uint32_t width = min(other->rect.width, output->rect.width);
681             uint32_t height = min(other->rect.height, output->rect.height);
682
683             if (update_if_necessary(&(output->rect.width), width) |
684                 update_if_necessary(&(output->rect.height), height))
685                 output->changed = true;
686
687             update_if_necessary(&(other->rect.width), width);
688             update_if_necessary(&(other->rect.height), height);
689
690             DLOG("disabling output %p (%s)\n", other, other->name);
691             other->to_be_disabled = true;
692
693             DLOG("new output mode %d x %d, other mode %d x %d\n",
694                  output->rect.width, output->rect.height,
695                  other->rect.width, other->rect.height);
696         }
697     }
698
699     /* Ensure that all outputs which are active also have a con. This is
700      * necessary because in the next step, a clone might get disabled. Example:
701      * LVDS1 active, VGA1 gets activated as a clone of LVDS1 (has no con).
702      * LVDS1 gets disabled. */
703     TAILQ_FOREACH(output, &outputs, outputs) {
704         if (output->active && output->con == NULL) {
705             DLOG("Need to initialize a Con for output %s\n", output->name);
706             output_init_con(output);
707             output->changed = false;
708         }
709     }
710
711     /* Handle outputs which have a new mode or are disabled now (either
712      * because the user disabled them or because they are clones) */
713     TAILQ_FOREACH(output, &outputs, outputs) {
714         if (output->to_be_disabled) {
715             output->active = false;
716             DLOG("Output %s disabled, re-assigning workspaces/docks\n", output->name);
717
718             first = get_first_output();
719
720             /* TODO: refactor the following code into a nice function. maybe
721              * use an on_destroy callback which is implement differently for
722              * different container types (CT_CONTENT vs. CT_DOCKAREA)? */
723             Con *first_content = output_get_content(first->con);
724
725             if (output->con != NULL) {
726                 /* We need to move the workspaces from the disappearing output to the first output */
727                 /* 1: Get the con to focus next, if the disappearing ws is focused */
728                 Con *next = NULL;
729                 if (TAILQ_FIRST(&(croot->focus_head)) == output->con) {
730                     DLOG("This output (%p) was focused! Getting next\n", output->con);
731                     next = focused;
732                     DLOG("next = %p\n", next);
733                 }
734
735                 /* 2: iterate through workspaces and re-assign them, fixing the coordinates
736                  * of floating containers as we go */
737                 Con *current;
738                 Con *old_content = output_get_content(output->con);
739                 while (!TAILQ_EMPTY(&(old_content->nodes_head))) {
740                     current = TAILQ_FIRST(&(old_content->nodes_head));
741                     if (current != next && TAILQ_EMPTY(&(current->focus_head))) {
742                         /* the workspace is empty and not focused, get rid of it */
743                         DLOG("Getting rid of current = %p / %s (empty, unfocused)\n", current, current->name);
744                         tree_close(current, DONT_KILL_WINDOW, false, false);
745                         continue;
746                     }
747                     DLOG("Detaching current = %p / %s\n", current, current->name);
748                     con_detach(current);
749                     DLOG("Re-attaching current = %p / %s\n", current, current->name);
750                     con_attach(current, first_content, false);
751                     DLOG("Fixing the coordinates of floating containers\n");
752                     Con *floating_con;
753                     TAILQ_FOREACH(floating_con, &(current->floating_head), floating_windows)
754                     floating_fix_coordinates(floating_con, &(output->con->rect), &(first->con->rect));
755                     DLOG("Done, next\n");
756                 }
757                 DLOG("re-attached all workspaces\n");
758
759                 if (next) {
760                     DLOG("now focusing next = %p\n", next);
761                     con_focus(next);
762                     workspace_show(con_get_workspace(next));
763                 }
764
765                 /* 3: move the dock clients to the first output */
766                 Con *child;
767                 TAILQ_FOREACH(child, &(output->con->nodes_head), nodes) {
768                     if (child->type != CT_DOCKAREA)
769                         continue;
770                     DLOG("Handling dock con %p\n", child);
771                     Con *dock;
772                     while (!TAILQ_EMPTY(&(child->nodes_head))) {
773                         dock = TAILQ_FIRST(&(child->nodes_head));
774                         Con *nc;
775                         Match *match;
776                         nc = con_for_window(first->con, dock->window, &match);
777                         DLOG("Moving dock client %p to nc %p\n", dock, nc);
778                         con_detach(dock);
779                         DLOG("Re-attaching\n");
780                         con_attach(dock, nc, false);
781                         DLOG("Done\n");
782                     }
783                 }
784
785                 DLOG("destroying disappearing con %p\n", output->con);
786                 tree_close(output->con, DONT_KILL_WINDOW, true, false);
787                 DLOG("Done. Should be fine now\n");
788                 output->con = NULL;
789             }
790
791             output->to_be_disabled = false;
792             output->changed = false;
793         }
794
795         if (output->changed) {
796             output_change_mode(conn, output);
797             output->changed = false;
798         }
799     }
800
801     /* Just go through each active output and assign one workspace */
802     TAILQ_FOREACH(output, &outputs, outputs) {
803         if (!output->active)
804             continue;
805         Con *content = output_get_content(output->con);
806         if (!TAILQ_EMPTY(&(content->nodes_head)))
807             continue;
808         DLOG("Should add ws for output %s\n", output->name);
809         init_ws_for_output(output, content);
810     }
811
812     /* Focus the primary screen, if possible */
813     TAILQ_FOREACH(output, &outputs, outputs) {
814         if (!output->primary || !output->con)
815             continue;
816
817         DLOG("Focusing primary output %s\n", output->name);
818         con_focus(con_descend_focused(output->con));
819     }
820
821     /* render_layout flushes */
822     tree_render();
823
824     FREE(res);
825     FREE(primary);
826 }
827
828 /*
829  * We have just established a connection to the X server and need the initial
830  * XRandR information to setup workspaces for each screen.
831  *
832  */
833 void randr_init(int *event_base) {
834     const xcb_query_extension_reply_t *extreply;
835
836     create_root_output(conn);
837
838     extreply = xcb_get_extension_data(conn, &xcb_randr_id);
839     if (!extreply->present)
840         return;
841
842     randr_query_outputs();
843
844     if (event_base != NULL)
845         *event_base = extreply->first_event;
846
847     xcb_randr_select_input(conn, root,
848                            XCB_RANDR_NOTIFY_MASK_SCREEN_CHANGE |
849                                XCB_RANDR_NOTIFY_MASK_OUTPUT_CHANGE |
850                                XCB_RANDR_NOTIFY_MASK_CRTC_CHANGE |
851                                XCB_RANDR_NOTIFY_MASK_OUTPUT_PROPERTY);
852
853     xcb_flush(conn);
854 }