]> git.sur5r.net Git - i3/i3/blob - src/randr.c
Bugfix: Correctly hide/show workspaces when enabling new outputs, correctly handle...
[i3/i3] / src / randr.c
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * © 2009-2010 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  * For more information on RandR, please see the X.org RandR specification at
11  * http://cgit.freedesktop.org/xorg/proto/randrproto/tree/randrproto.txt
12  * (take your time to read it completely, it answers all questions).
13  *
14  */
15 #include <stdio.h>
16 #include <stdlib.h>
17 #include <string.h>
18 #include <stdbool.h>
19 #include <assert.h>
20 #include <time.h>
21 #include <unistd.h>
22
23 #include <xcb/xcb.h>
24 #include <xcb/randr.h>
25
26 #include "queue.h"
27 #include "i3.h"
28 #include "data.h"
29 #include "table.h"
30 #include "util.h"
31 #include "layout.h"
32 #include "xcb.h"
33 #include "config.h"
34 #include "workspace.h"
35 #include "log.h"
36 #include "ewmh.h"
37
38 /* While a clean namespace is usually a pretty good thing, we really need
39  * to use shorter names than the whole xcb_randr_* default names. */
40 typedef xcb_randr_get_crtc_info_reply_t crtc_info;
41 typedef xcb_randr_mode_info_t mode_info;
42 typedef xcb_randr_get_screen_resources_current_reply_t resources_reply;
43
44 /* Stores all outputs available in your current session. */
45 struct outputs_head outputs = TAILQ_HEAD_INITIALIZER(outputs);
46
47 /*
48  * Get a specific output by its internal X11 id. Used by randr_query_screens
49  * to check if the output is new (only in the first scan) or if we are
50  * re-scanning.
51  *
52  */
53 static Output *get_output_by_id(xcb_randr_output_t id) {
54         Output *output;
55         TAILQ_FOREACH(output, &outputs, outputs)
56                 if (output->id == id)
57                         return output;
58
59         return NULL;
60 }
61
62 /*
63  * Returns the output with the given name if it is active (!) or NULL.
64  *
65  */
66 Output *get_output_by_name(const char *name) {
67         Output *output;
68         TAILQ_FOREACH(output, &outputs, outputs)
69                 if (output->active &&
70                     strcasecmp(output->name, name) == 0)
71                         return output;
72
73         return NULL;
74 }
75
76 /*
77  * Returns the first output which is active.
78  *
79  */
80 Output *get_first_output() {
81         Output *screen;
82
83         TAILQ_FOREACH(screen, &outputs, outputs) {
84                 if (screen->active)
85                         return screen;
86         }
87
88         return NULL;
89 }
90
91 /*
92  * Looks in virtual_screens for the Output which contains coordinates x, y
93  *
94  */
95 Output *get_screen_containing(int x, int y) {
96         Output *screen;
97         TAILQ_FOREACH(screen, &outputs, outputs) {
98                 if (!screen->active)
99                         continue;
100                 DLOG("comparing x=%d y=%d with x=%d and y=%d width %d height %d\n",
101                                 x, y, screen->rect.x, screen->rect.y, screen->rect.width, screen->rect.height);
102                 if (x >= screen->rect.x && x < (screen->rect.x + screen->rect.width) &&
103                     y >= screen->rect.y && y < (screen->rect.y + screen->rect.height))
104                         return screen;
105         }
106
107         return NULL;
108 }
109
110 /*
111  * Gets the screen which is the last one in the given direction, for example the screen
112  * on the most bottom when direction == D_DOWN, the screen most right when direction == D_RIGHT
113  * and so on.
114  *
115  * This function always returns a screen.
116  *
117  */
118 Output *get_screen_most(direction_t direction, Output *current) {
119         Output *screen, *candidate = NULL;
120         int position = 0;
121         TAILQ_FOREACH(screen, &outputs, outputs) {
122                 if (!screen->active)
123                         continue;
124
125                 /* Repeated calls of WIN determine the winner of the comparison */
126                 #define WIN(variable, condition) \
127                         if (variable condition) { \
128                                 candidate = screen; \
129                                 position = variable; \
130                         } \
131                         break;
132
133                 if (((direction == D_UP) || (direction == D_DOWN)) &&
134                     (current->rect.x != screen->rect.x))
135                         continue;
136
137                 if (((direction == D_LEFT) || (direction == D_RIGHT)) &&
138                     (current->rect.y != screen->rect.y))
139                         continue;
140
141                 switch (direction) {
142                         case D_UP:
143                                 WIN(screen->rect.y, <= position);
144                         case D_DOWN:
145                                 WIN(screen->rect.y, >= position);
146                         case D_LEFT:
147                                 WIN(screen->rect.x, <= position);
148                         case D_RIGHT:
149                                 WIN(screen->rect.x, >= position);
150                 }
151         }
152
153         assert(candidate != NULL);
154
155         return candidate;
156 }
157
158 static void initialize_output(xcb_connection_t *conn, Output *output,
159                               Workspace *workspace) {
160         i3Font *font = load_font(conn, config.font);
161
162         workspace->output = output;
163         output->current_workspace = workspace;
164
165         /* Copy rect for the workspace */
166         memcpy(&(workspace->rect), &(output->rect), sizeof(Rect));
167
168         /* Map clients on the workspace, if any */
169         workspace_map_clients(conn, workspace);
170
171         /* Create a xoutput for each output */
172         Rect bar_rect = {output->rect.x,
173                          output->rect.y + output->rect.height - (font->height + 6),
174                          output->rect.x + output->rect.width,
175                          font->height + 6};
176         uint32_t mask = XCB_CW_OVERRIDE_REDIRECT | XCB_CW_EVENT_MASK;
177         uint32_t values[] = {1, XCB_EVENT_MASK_EXPOSURE | XCB_EVENT_MASK_BUTTON_PRESS};
178         output->bar = create_window(conn, bar_rect, XCB_WINDOW_CLASS_INPUT_OUTPUT, XCB_CURSOR_LEFT_PTR, true, mask, values);
179         output->bargc = xcb_generate_id(conn);
180         xcb_create_gc(conn, output->bargc, output->bar, 0, 0);
181
182         SLIST_INIT(&(output->dock_clients));
183
184         DLOG("initialized output at (%d, %d) with %d x %d\n",
185                         output->rect.x, output->rect.y, output->rect.width, output->rect.height);
186 }
187
188 /*
189  * Fills virtual_screens with exactly one screen with width/height of the
190  * whole X screen.
191  *
192  */
193 static void disable_randr(xcb_connection_t *conn) {
194         xcb_screen_t *root_screen = xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
195
196         DLOG("RandR extension not found, disabling.\n");
197
198         Output *s = scalloc(sizeof(Output));
199
200         s->active = true;
201         s->rect.x = 0;
202         s->rect.y = 0;
203         s->rect.width = root_screen->width_in_pixels;
204         s->rect.height = root_screen->height_in_pixels;
205
206         TAILQ_INSERT_TAIL(&outputs, s, outputs);
207 }
208
209 /*
210  * Searches for a mode in the current RandR configuration by the mode id.
211  * Returns NULL if no such mode could be found (should never happen).
212  *
213  */
214 static mode_info *get_mode_by_id(resources_reply *reply, xcb_randr_mode_t mode) {
215         xcb_randr_mode_info_iterator_t it;
216
217         for (it = xcb_randr_get_screen_resources_current_modes_iterator(reply);
218                 it.rem > 0;
219                 xcb_randr_mode_info_next(&it)) {
220                 if (it.data->id == mode)
221                         return it.data;
222         }
223
224         return NULL;
225 }
226
227 /*
228  * This function needs to be called when changing the mode of an output when
229  * it already has some workspaces (or a bar window) assigned.
230  *
231  * It reconfigures the bar window for the new mode, copies the new rect into
232  * each workspace on this output and forces all windows on the affected
233  * workspaces to be reconfigured.
234  *
235  * It is necessary to call render_layout() afterwards.
236  *
237  */
238 static void output_change_mode(xcb_connection_t *conn, Output *output) {
239         i3Font *font = load_font(conn, config.font);
240         Workspace *ws;
241         Client *client;
242
243         DLOG("Output mode changed, reconfiguring bar, updating workspaces\n");
244         Rect bar_rect = {output->rect.x,
245                          output->rect.y + output->rect.height - (font->height + 6),
246                          output->rect.x + output->rect.width,
247                          font->height + 6};
248
249         xcb_set_window_rect(conn, output->bar, bar_rect);
250
251         /* go through all workspaces and set force_reconfigure */
252         TAILQ_FOREACH(ws, workspaces, workspaces) {
253                 if (ws->output != output)
254                         continue;
255
256                 /* Update dimensions from output */
257                 memcpy(&(ws->rect), &(ws->output->rect), sizeof(Rect));
258
259                 SLIST_FOREACH(client, &(ws->focus_stack), focus_clients)
260                         client->force_reconfigure = true;
261
262                 /* Update the dimensions of a fullscreen client, if any */
263                 if (ws->fullscreen_client != NULL) {
264                         DLOG("Updating fullscreen client size\n");
265                         client = ws->fullscreen_client;
266                         Rect r = ws->rect;
267                         xcb_set_window_rect(conn, client->frame, r);
268
269                         r.x = 0;
270                         r.y = 0;
271                         xcb_set_window_rect(conn, client->child, r);
272                 }
273         }
274 }
275
276 /*
277  * Gets called by randr_query_screens() for each output. The function adds new
278  * outputs to the list of outputs, checks if the mode of existing outputs has
279  * been changed or if an existing output has been disabled. It will then change
280  * either the "changed" or the "to_be_deleted" flag of the output, if
281  * appropriate.
282  *
283  */
284 static void handle_output(xcb_connection_t *conn, xcb_randr_output_t id,
285                           xcb_randr_get_output_info_reply_t *output,
286                           xcb_timestamp_t cts, resources_reply *res) {
287         /* each CRT controller has a position in which we are interested in */
288         crtc_info *crtc;
289
290         /* the CRTC runs in a specific mode, while the position is stored in
291          * the output itself */
292         mode_info *mode;
293
294         Output *new = get_output_by_id(id);
295         bool existing = (new != NULL);
296         if (!existing)
297                 new = scalloc(sizeof(Output));
298         new->id = id;
299         asprintf(&new->name, "%.*s",
300                         xcb_randr_get_output_info_name_length(output),
301                         xcb_randr_get_output_info_name(output));
302
303         DLOG("found output with name %s\n", new->name);
304
305         /* Even if no CRTC is used at the moment, we store the output so that
306          * we do not need to change the list ever again (we only update the
307          * position/size) */
308         if (output->crtc == XCB_NONE) {
309                 if (!existing)
310                         TAILQ_INSERT_TAIL(&outputs, new, outputs);
311                 else if (new->active) {
312                         new->to_be_disabled = true;
313
314                 }
315                 free(output);
316                 return;
317         }
318
319         xcb_randr_get_crtc_info_cookie_t icookie;
320         icookie = xcb_randr_get_crtc_info(conn, output->crtc, cts);
321         if ((crtc = xcb_randr_get_crtc_info_reply(conn, icookie, NULL)) == NULL ||
322             (mode = get_mode_by_id(res, crtc->mode)) == NULL) {
323                 DLOG("Skipping output %s: could not get CRTC/mode (%p/%p)\n",
324                      new->name, crtc, mode);
325                 free(new);
326                 free(output);
327                 return;
328         }
329
330         new->active = true;
331         bool updated = update_if_necessary(&(new->rect.x), crtc->x) |
332                        update_if_necessary(&(new->rect.y), crtc->y) |
333                        update_if_necessary(&(new->rect.width), mode->width) |
334                        update_if_necessary(&(new->rect.height), mode->height);
335
336         DLOG("mode: %dx%d+%d+%d\n", new->rect.width, new->rect.height,
337                                     new->rect.x, new->rect.y);
338
339         /* If we don’t need to change an existing output or if the output
340          * does not exist in the first place, the case is simple: we either
341          * need to insert the new output or we are done. */
342         if (!updated || !existing) {
343                 if (!existing)
344                         TAILQ_INSERT_TAIL(&outputs, new, outputs);
345                 free(output);
346                 return;
347         }
348
349         new->changed = true;
350 }
351
352 /*
353  * (Re-)queries the outputs via RandR and stores them in the list of outputs.
354  *
355  */
356 void randr_query_screens(xcb_connection_t *conn) {
357         Workspace *ws;
358         xcb_randr_get_screen_resources_current_cookie_t rcookie;
359         resources_reply *res;
360         /* timestamp of the configuration so that we get consistent replies to all
361          * requests (if the configuration changes between our different calls) */
362         xcb_timestamp_t cts;
363
364         /* an output is VGA-1, LVDS-1, etc. (usually physical video outputs) */
365         xcb_randr_output_t *randr_outputs;
366
367         /* Get screen resources (crtcs, outputs, modes) */
368         rcookie = xcb_randr_get_screen_resources_current(conn, root);
369         if ((res = xcb_randr_get_screen_resources_current_reply(conn, rcookie, NULL)) == NULL)
370                 die("Could not get RandR screen resources\n");
371         cts = res->config_timestamp;
372
373         int len = xcb_randr_get_screen_resources_current_outputs_length(res);
374         randr_outputs = xcb_randr_get_screen_resources_current_outputs(res);
375
376         /* Request information for each output */
377         xcb_randr_get_output_info_cookie_t ocookie[len];
378         for (int i = 0; i < len; i++)
379                 ocookie[i] = xcb_randr_get_output_info(conn, randr_outputs[i], cts);
380
381         /* Loop through all outputs available for this X11 screen */
382         for (int i = 0; i < len; i++) {
383                 xcb_randr_get_output_info_reply_t *output;
384
385                 if ((output = xcb_randr_get_output_info_reply(conn, ocookie[i], NULL)) == NULL)
386                         continue;
387
388                 handle_output(conn, randr_outputs[i], output, cts, res);
389         }
390
391         free(res);
392         Output *screen, *oscreen;
393         /* Check for clones and reduce the mode to the lowest common mode */
394         TAILQ_FOREACH(screen, &outputs, outputs) {
395                 if (!screen->active || screen->to_be_disabled)
396                         continue;
397                 DLOG("screen %p, position (%d, %d), checking for clones\n",
398                         screen, screen->rect.x, screen->rect.y);
399
400                 for (oscreen = screen;
401                      oscreen != TAILQ_END(&outputs);
402                      oscreen = TAILQ_NEXT(oscreen, outputs)) {
403                         if (oscreen == screen || !oscreen->active || oscreen->to_be_disabled)
404                                 continue;
405
406                         if (oscreen->rect.x != screen->rect.x ||
407                             oscreen->rect.y != screen->rect.y)
408                                 continue;
409
410                         DLOG("screen %p has the same position, his mode = %d x %d\n",
411                                         oscreen, oscreen->rect.width, oscreen->rect.height);
412                         uint32_t width = min(oscreen->rect.width, screen->rect.width);
413                         uint32_t height = min(oscreen->rect.height, screen->rect.height);
414
415                         if (update_if_necessary(&(screen->rect.width), width) |
416                             update_if_necessary(&(screen->rect.height), height))
417                                 screen->changed = true;
418
419                         update_if_necessary(&(oscreen->rect.width), width);
420                         update_if_necessary(&(oscreen->rect.height), height);
421
422                         DLOG("disabling screen %p (%s)\n", oscreen, oscreen->name);
423                         oscreen->to_be_disabled = true;
424
425                         DLOG("new screen mode %d x %d, oscreen mode %d x %d\n",
426                                         screen->rect.width, screen->rect.height,
427                                         oscreen->rect.width, oscreen->rect.height);
428                 }
429         }
430
431         Output *output, *first;
432         TAILQ_FOREACH(output, &outputs, outputs) {
433                 if (output->to_be_disabled) {
434                         output->active = false;
435                         DLOG("Output %s disabled, re-assigning workspaces/docks\n", output->name);
436
437                         if ((first = get_first_output()) == NULL)
438                                 die("No usable outputs available\n");
439
440                         bool needs_init = (first->current_workspace == NULL);
441
442                         TAILQ_FOREACH(ws, workspaces, workspaces) {
443                                 if (ws->output != output)
444                                         continue;
445
446                                 workspace_assign_to(ws, first, true);
447                                 if (!needs_init)
448                                         continue;
449                                 initialize_output(conn, first, ws);
450                                 needs_init = false;
451                         }
452
453                         Client *dock;
454                         while (!SLIST_EMPTY(&(output->dock_clients))) {
455                                 dock = SLIST_FIRST(&(output->dock_clients));
456                                 SLIST_INSERT_HEAD(&(first->dock_clients), dock, dock_clients);
457                                 SLIST_REMOVE_HEAD(&(output->dock_clients), dock_clients);
458                         }
459                         output->current_workspace = NULL;
460                         output->to_be_disabled = false;
461                 } else if (output->changed) {
462                         output_change_mode(conn, output);
463                         output->changed = false;
464                 }
465         }
466
467         ewmh_update_workarea();
468
469         /* Just go through each active output and associate one workspace */
470         TAILQ_FOREACH(screen, &outputs, outputs) {
471                 if (!screen->active || screen->current_workspace != NULL)
472                         continue;
473                 ws = get_first_workspace_for_screen(screen);
474                 initialize_output(conn, screen, ws);
475         }
476
477         /* render_layout flushes */
478         render_layout(conn);
479 }
480
481 /*
482  * We have just established a connection to the X server and need the initial
483  * XRandR information to setup workspaces for each screen.
484  *
485  */
486 void initialize_randr(xcb_connection_t *conn, int *event_base) {
487         const xcb_query_extension_reply_t *extreply;
488
489         extreply = xcb_get_extension_data(conn, &xcb_randr_id);
490         if (!extreply->present)
491                 disable_randr(conn);
492         else randr_query_screens(conn);
493
494         if (event_base != NULL)
495                 *event_base = extreply->first_event;
496
497         xcb_randr_select_input(conn, root,
498                 XCB_RANDR_NOTIFY_MASK_SCREEN_CHANGE |
499                 XCB_RANDR_NOTIFY_MASK_OUTPUT_CHANGE |
500                 XCB_RANDR_NOTIFY_MASK_CRTC_CHANGE |
501                 XCB_RANDR_NOTIFY_MASK_OUTPUT_PROPERTY);
502
503         xcb_flush(conn);
504 }