]> git.sur5r.net Git - i3/i3/blob - src/floating.c
Merge pull request #2507 from stapelberg/autotools
[i3/i3] / src / floating.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * floating.c: Floating windows.
8  *
9  */
10 #include "all.h"
11
12 #ifndef MAX
13 #define MAX(x, y) ((x) > (y) ? (x) : (y))
14 #endif
15
16 /*
17  * Calculates sum of heights and sum of widths of all currently active outputs
18  *
19  */
20 static Rect total_outputs_dimensions(void) {
21     if (TAILQ_EMPTY(&outputs))
22         return (Rect){0, 0, root_screen->width_in_pixels, root_screen->height_in_pixels};
23
24     Output *output;
25     /* Use Rect to encapsulate dimensions, ignoring x/y */
26     Rect outputs_dimensions = {0, 0, 0, 0};
27     TAILQ_FOREACH(output, &outputs, outputs) {
28         outputs_dimensions.height += output->rect.height;
29         outputs_dimensions.width += output->rect.width;
30     }
31     return outputs_dimensions;
32 }
33
34 /*
35  * Updates I3_FLOATING_WINDOW by either setting or removing it on the con and
36  * all its children.
37  *
38  */
39 static void floating_set_hint_atom(Con *con, bool floating) {
40     if (!con_is_leaf(con)) {
41         Con *child;
42         TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
43             floating_set_hint_atom(child, floating);
44         }
45     }
46
47     if (con->window == NULL) {
48         return;
49     }
50
51     if (floating) {
52         uint32_t val = 1;
53         xcb_change_property(conn, XCB_PROP_MODE_REPLACE, con->window->id,
54                             A_I3_FLOATING_WINDOW, XCB_ATOM_CARDINAL, 32, 1, &val);
55     } else {
56         xcb_delete_property(conn, con->window->id, A_I3_FLOATING_WINDOW);
57     }
58
59     xcb_flush(conn);
60 }
61
62 /**
63  * Called when a floating window is created or resized.
64  * This function resizes the window if its size is higher or lower than the
65  * configured maximum/minimum size, respectively.
66  *
67  */
68 void floating_check_size(Con *floating_con) {
69     /* Define reasonable minimal and maximal sizes for floating windows */
70     const int floating_sane_min_height = 50;
71     const int floating_sane_min_width = 75;
72     Rect floating_sane_max_dimensions;
73     Con *focused_con = con_descend_focused(floating_con);
74
75     /* obey size increments */
76     if (focused_con->window != NULL && (focused_con->window->height_increment || focused_con->window->width_increment)) {
77         Rect border_rect = con_border_style_rect(focused_con);
78
79         /* We have to do the opposite calculations that render_con() do
80          * to get the exact size we want. */
81         border_rect.width = -border_rect.width;
82         border_rect.width += 2 * focused_con->border_width;
83         border_rect.height = -border_rect.height;
84         border_rect.height += 2 * focused_con->border_width;
85         if (con_border_style(focused_con) == BS_NORMAL)
86             border_rect.height += render_deco_height();
87
88         if (focused_con->window->height_increment &&
89             floating_con->rect.height >= focused_con->window->base_height + border_rect.height) {
90             floating_con->rect.height -= focused_con->window->base_height + border_rect.height;
91             floating_con->rect.height -= floating_con->rect.height % focused_con->window->height_increment;
92             floating_con->rect.height += focused_con->window->base_height + border_rect.height;
93         }
94
95         if (focused_con->window->width_increment &&
96             floating_con->rect.width >= focused_con->window->base_width + border_rect.width) {
97             floating_con->rect.width -= focused_con->window->base_width + border_rect.width;
98             floating_con->rect.width -= floating_con->rect.width % focused_con->window->width_increment;
99             floating_con->rect.width += focused_con->window->base_width + border_rect.width;
100         }
101     }
102
103     /* Unless user requests otherwise (-1), ensure width/height do not exceed
104      * configured maxima or, if unconfigured, limit to combined width of all
105      * outputs */
106     if (config.floating_minimum_height != -1) {
107         if (config.floating_minimum_height == 0)
108             floating_con->rect.height = max(floating_con->rect.height, floating_sane_min_height);
109         else
110             floating_con->rect.height = max(floating_con->rect.height, config.floating_minimum_height);
111     }
112     if (config.floating_minimum_width != -1) {
113         if (config.floating_minimum_width == 0)
114             floating_con->rect.width = max(floating_con->rect.width, floating_sane_min_width);
115         else
116             floating_con->rect.width = max(floating_con->rect.width, config.floating_minimum_width);
117     }
118
119     /* Unless user requests otherwise (-1), raise the width/height to
120      * reasonable minimum dimensions */
121     floating_sane_max_dimensions = total_outputs_dimensions();
122     if (config.floating_maximum_height != -1) {
123         if (config.floating_maximum_height == 0)
124             floating_con->rect.height = min(floating_con->rect.height, floating_sane_max_dimensions.height);
125         else
126             floating_con->rect.height = min(floating_con->rect.height, config.floating_maximum_height);
127     }
128     if (config.floating_maximum_width != -1) {
129         if (config.floating_maximum_width == 0)
130             floating_con->rect.width = min(floating_con->rect.width, floating_sane_max_dimensions.width);
131         else
132             floating_con->rect.width = min(floating_con->rect.width, config.floating_maximum_width);
133     }
134 }
135
136 void floating_enable(Con *con, bool automatic) {
137     bool set_focus = (con == focused);
138
139     if (con_is_docked(con)) {
140         LOG("Container is a dock window, not enabling floating mode.\n");
141         return;
142     }
143
144     if (con_is_floating(con)) {
145         LOG("Container is already in floating mode, not doing anything.\n");
146         return;
147     }
148
149     if (con->type == CT_WORKSPACE) {
150         LOG("Container is a workspace, not enabling floating mode.\n");
151         return;
152     }
153
154     /* 1: detach the container from its parent */
155     /* TODO: refactor this with tree_close_internal() */
156     TAILQ_REMOVE(&(con->parent->nodes_head), con, nodes);
157     TAILQ_REMOVE(&(con->parent->focus_head), con, focused);
158
159     con_fix_percent(con->parent);
160
161     /* 2: create a new container to render the decoration on, add
162      * it as a floating window to the workspace */
163     Con *nc = con_new(NULL, NULL);
164     /* we need to set the parent afterwards instead of passing it as an
165      * argument to con_new() because nc would be inserted into the tiling layer
166      * otherwise. */
167     Con *ws = con_get_workspace(con);
168     nc->parent = ws;
169     nc->type = CT_FLOATING_CON;
170     nc->layout = L_SPLITH;
171     /* We insert nc already, even though its rect is not yet calculated. This
172      * is necessary because otherwise the workspace might be empty (and get
173      * closed in tree_close_internal()) even though it’s not. */
174     TAILQ_INSERT_TAIL(&(ws->floating_head), nc, floating_windows);
175     TAILQ_INSERT_TAIL(&(ws->focus_head), nc, focused);
176
177     /* check if the parent container is empty and close it if so */
178     if ((con->parent->type == CT_CON || con->parent->type == CT_FLOATING_CON) &&
179         con_num_children(con->parent) == 0) {
180         DLOG("Old container empty after setting this child to floating, closing\n");
181         tree_close_internal(con->parent, DONT_KILL_WINDOW, false, false);
182     }
183
184     char *name;
185     sasprintf(&name, "[i3 con] floatingcon around %p", con);
186     x_set_name(nc, name);
187     free(name);
188
189     /* find the height for the decorations */
190     int deco_height = render_deco_height();
191
192     DLOG("Original rect: (%d, %d) with %d x %d\n", con->rect.x, con->rect.y, con->rect.width, con->rect.height);
193     DLOG("Geometry = (%d, %d) with %d x %d\n", con->geometry.x, con->geometry.y, con->geometry.width, con->geometry.height);
194     Rect zero = {0, 0, 0, 0};
195     nc->rect = con->geometry;
196     /* If the geometry was not set (split containers), we need to determine a
197      * sensible one by combining the geometry of all children */
198     if (memcmp(&(nc->rect), &zero, sizeof(Rect)) == 0) {
199         DLOG("Geometry not set, combining children\n");
200         Con *child;
201         TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
202             DLOG("child geometry: %d x %d\n", child->geometry.width, child->geometry.height);
203             nc->rect.width += child->geometry.width;
204             nc->rect.height = max(nc->rect.height, child->geometry.height);
205         }
206     }
207
208     floating_check_size(nc);
209
210     /* 3: attach the child to the new parent container. We need to do this
211      * because con_border_style_rect() needs to access con->parent. */
212     con->parent = nc;
213     con->percent = 1.0;
214     con->floating = FLOATING_USER_ON;
215
216     /* 4: set the border style as specified with new_float */
217     if (automatic)
218         con->border_style = config.default_floating_border;
219
220     /* Add pixels for the decoration. */
221     Rect border_style_rect = con_border_style_rect(con);
222
223     nc->rect.height -= border_style_rect.height;
224     nc->rect.width -= border_style_rect.width;
225
226     /* Add some more pixels for the title bar */
227     if (con_border_style(con) == BS_NORMAL)
228         nc->rect.height += deco_height;
229
230     /* Honor the X11 border */
231     nc->rect.height += con->border_width * 2;
232     nc->rect.width += con->border_width * 2;
233
234     /* Some clients (like GIMP’s color picker window) get mapped
235      * to (0, 0), so we push them to a reasonable position
236      * (centered over their leader) */
237     if (nc->rect.x == 0 && nc->rect.y == 0) {
238         Con *leader;
239         if (con->window && con->window->leader != XCB_NONE &&
240             (leader = con_by_window_id(con->window->leader)) != NULL) {
241             DLOG("Centering above leader\n");
242             floating_center(nc, leader->rect);
243         } else {
244             /* center the window on workspace as fallback */
245             floating_center(nc, ws->rect);
246         }
247     }
248
249     /* Sanity check: Are the coordinates on the appropriate output? If not, we
250      * need to change them */
251     Output *current_output = get_output_containing(nc->rect.x +
252                                                        (nc->rect.width / 2),
253                                                    nc->rect.y + (nc->rect.height / 2));
254
255     Con *correct_output = con_get_output(ws);
256     if (!current_output || current_output->con != correct_output) {
257         DLOG("This floating window is on the wrong output, fixing coordinates (currently (%d, %d))\n",
258              nc->rect.x, nc->rect.y);
259
260         /* If moving from one output to another, keep the relative position
261          * consistent (e.g. a centered dialog will remain centered). */
262         if (current_output)
263             floating_fix_coordinates(nc, &current_output->con->rect, &correct_output->rect);
264         else {
265             nc->rect.x = correct_output->rect.x;
266             nc->rect.y = correct_output->rect.y;
267         }
268     }
269
270     DLOG("Floating rect: (%d, %d) with %d x %d\n", nc->rect.x, nc->rect.y, nc->rect.width, nc->rect.height);
271
272     /* 5: Subtract the deco_height in order to make the floating window appear
273      * at precisely the position it specified in its original geometry (which
274      * is what applications might remember). */
275     deco_height = (con->border_style == BS_NORMAL ? render_deco_height() : 0);
276     nc->rect.y -= deco_height;
277
278     DLOG("Corrected y = %d (deco_height = %d)\n", nc->rect.y, deco_height);
279
280     TAILQ_INSERT_TAIL(&(nc->nodes_head), con, nodes);
281     TAILQ_INSERT_TAIL(&(nc->focus_head), con, focused);
282
283     /* render the cons to get initial window_rect correct */
284     render_con(nc, false);
285     render_con(con, false);
286
287     if (set_focus)
288         con_focus(con);
289
290     /* Check if we need to re-assign it to a different workspace because of its
291      * coordinates and exit if that was done successfully. */
292     if (floating_maybe_reassign_ws(nc)) {
293         goto done;
294     }
295
296     /* Sanitize coordinates: Check if they are on any output */
297     if (get_output_containing(nc->rect.x, nc->rect.y) != NULL) {
298         goto done;
299     }
300
301     ELOG("No output found at destination coordinates, centering floating window on current ws\n");
302     floating_center(nc, ws->rect);
303
304 done:
305     floating_set_hint_atom(nc, true);
306     ipc_send_window_event("floating", con);
307 }
308
309 void floating_disable(Con *con, bool automatic) {
310     if (!con_is_floating(con)) {
311         LOG("Container isn't floating, not doing anything.\n");
312         return;
313     }
314
315     const bool set_focus = (con == focused);
316
317     Con *ws = con_get_workspace(con);
318
319     /* 1: detach from parent container */
320     TAILQ_REMOVE(&(con->parent->nodes_head), con, nodes);
321     TAILQ_REMOVE(&(con->parent->focus_head), con, focused);
322
323     /* 2: kill parent container */
324     TAILQ_REMOVE(&(con->parent->parent->floating_head), con->parent, floating_windows);
325     TAILQ_REMOVE(&(con->parent->parent->focus_head), con->parent, focused);
326     tree_close_internal(con->parent, DONT_KILL_WINDOW, true, false);
327
328     /* 3: re-attach to the parent of the currently focused con on the workspace
329      * this floating con was on */
330     Con *focused = con_descend_tiling_focused(ws);
331
332     /* if there is no other container on this workspace, focused will be the
333      * workspace itself */
334     if (focused->type == CT_WORKSPACE)
335         con->parent = focused;
336     else
337         con->parent = focused->parent;
338
339     /* con_fix_percent will adjust the percent value */
340     con->percent = 0.0;
341
342     con->floating = FLOATING_USER_OFF;
343
344     con_attach(con, con->parent, false);
345
346     con_fix_percent(con->parent);
347
348     if (set_focus)
349         con_focus(con);
350
351     floating_set_hint_atom(con, false);
352     ipc_send_window_event("floating", con);
353 }
354
355 /*
356  * Toggles floating mode for the given container.
357  *
358  * If the automatic flag is set to true, this was an automatic update by a change of the
359  * window class from the application which can be overwritten by the user.
360  *
361  */
362 void toggle_floating_mode(Con *con, bool automatic) {
363     /* forbid the command to toggle floating on a CT_FLOATING_CON */
364     if (con->type == CT_FLOATING_CON) {
365         ELOG("Cannot toggle floating mode on con = %p because it is of type CT_FLOATING_CON.\n", con);
366         return;
367     }
368
369     /* see if the client is already floating */
370     if (con_is_floating(con)) {
371         LOG("already floating, re-setting to tiling\n");
372
373         floating_disable(con, automatic);
374         return;
375     }
376
377     floating_enable(con, automatic);
378 }
379
380 /*
381  * Raises the given container in the list of floating containers
382  *
383  */
384 void floating_raise_con(Con *con) {
385     DLOG("Raising floating con %p / %s\n", con, con->name);
386     TAILQ_REMOVE(&(con->parent->floating_head), con, floating_windows);
387     TAILQ_INSERT_TAIL(&(con->parent->floating_head), con, floating_windows);
388 }
389
390 /*
391  * Checks if con’s coordinates are within its workspace and re-assigns it to
392  * the actual workspace if not.
393  *
394  */
395 bool floating_maybe_reassign_ws(Con *con) {
396     Output *output = get_output_containing(
397         con->rect.x + (con->rect.width / 2),
398         con->rect.y + (con->rect.height / 2));
399
400     if (!output) {
401         ELOG("No output found at destination coordinates?\n");
402         return false;
403     }
404
405     if (con_get_output(con) == output->con) {
406         DLOG("still the same ws\n");
407         return false;
408     }
409
410     DLOG("Need to re-assign!\n");
411
412     Con *content = output_get_content(output->con);
413     Con *ws = TAILQ_FIRST(&(content->focus_head));
414     DLOG("Moving con %p / %s to workspace %p / %s\n", con, con->name, ws, ws->name);
415     con_move_to_workspace(con, ws, false, true, false);
416     con_focus(con_descend_focused(con));
417     return true;
418 }
419
420 /*
421  * Centers a floating con above the specified rect.
422  *
423  */
424 void floating_center(Con *con, Rect rect) {
425     con->rect.x = rect.x + (rect.width / 2) - (con->rect.width / 2);
426     con->rect.y = rect.y + (rect.height / 2) - (con->rect.height / 2);
427 }
428
429 /*
430  * Moves the given floating con to the current pointer position.
431  *
432  */
433 void floating_move_to_pointer(Con *con) {
434     assert(con->type == CT_FLOATING_CON);
435
436     xcb_query_pointer_reply_t *reply = xcb_query_pointer_reply(conn, xcb_query_pointer(conn, root), NULL);
437     if (reply == NULL) {
438         ELOG("could not query pointer position, not moving this container\n");
439         return;
440     }
441
442     Output *output = get_output_containing(reply->root_x, reply->root_y);
443     if (output == NULL) {
444         ELOG("The pointer is not on any output, cannot move the container here.\n");
445         return;
446     }
447
448     /* Determine where to put the window. */
449     int32_t x = reply->root_x - con->rect.width / 2;
450     int32_t y = reply->root_y - con->rect.height / 2;
451     FREE(reply);
452
453     /* Correct target coordinates to be in-bounds. */
454     x = MAX(x, (int32_t)output->rect.x);
455     y = MAX(y, (int32_t)output->rect.y);
456     if (x + con->rect.width > output->rect.x + output->rect.width)
457         x = output->rect.x + output->rect.width - con->rect.width;
458     if (y + con->rect.height > output->rect.y + output->rect.height)
459         y = output->rect.y + output->rect.height - con->rect.height;
460
461     /* Update container's coordinates to position it correctly. */
462     floating_reposition(con, (Rect){x, y, con->rect.width, con->rect.height});
463 }
464
465 DRAGGING_CB(drag_window_callback) {
466     const struct xcb_button_press_event_t *event = extra;
467
468     /* Reposition the client correctly while moving */
469     con->rect.x = old_rect->x + (new_x - event->root_x);
470     con->rect.y = old_rect->y + (new_y - event->root_y);
471
472     render_con(con, false);
473     x_push_node(con);
474     xcb_flush(conn);
475
476     /* Check if we cross workspace boundaries while moving */
477     if (!floating_maybe_reassign_ws(con))
478         return;
479     /* Ensure not to warp the pointer while dragging */
480     x_set_warp_to(NULL);
481     tree_render();
482 }
483
484 /*
485  * Called when the user clicked on the titlebar of a floating window.
486  * Calls the drag_pointer function with the drag_window callback
487  *
488  */
489 void floating_drag_window(Con *con, const xcb_button_press_event_t *event) {
490     DLOG("floating_drag_window\n");
491
492     /* Push changes before dragging, so that the window gets raised now and not
493      * after the user releases the mouse button */
494     tree_render();
495
496     /* Store the initial rect in case of user revert/cancel */
497     Rect initial_rect = con->rect;
498
499     /* Drag the window */
500     drag_result_t drag_result = drag_pointer(con, event, XCB_NONE, BORDER_TOP /* irrelevant */, XCURSOR_CURSOR_MOVE, drag_window_callback, event);
501
502     /* If the user cancelled, undo the changes. */
503     if (drag_result == DRAG_REVERT)
504         floating_reposition(con, initial_rect);
505
506     /* If this is a scratchpad window, don't auto center it from now on. */
507     if (con->scratchpad_state == SCRATCHPAD_FRESH)
508         con->scratchpad_state = SCRATCHPAD_CHANGED;
509
510     tree_render();
511 }
512
513 /*
514  * This is an ugly data structure which we need because there is no standard
515  * way of having nested functions (only available as a gcc extension at the
516  * moment, clang doesn’t support it) or blocks (only available as a clang
517  * extension and only on Mac OS X systems at the moment).
518  *
519  */
520 struct resize_window_callback_params {
521     const border_t corner;
522     const bool proportional;
523     const xcb_button_press_event_t *event;
524 };
525
526 DRAGGING_CB(resize_window_callback) {
527     const struct resize_window_callback_params *params = extra;
528     const xcb_button_press_event_t *event = params->event;
529     border_t corner = params->corner;
530
531     int32_t dest_x = con->rect.x;
532     int32_t dest_y = con->rect.y;
533     uint32_t dest_width;
534     uint32_t dest_height;
535
536     double ratio = (double)old_rect->width / old_rect->height;
537
538     /* First guess: We resize by exactly the amount the mouse moved,
539      * taking into account in which corner the client was grabbed */
540     if (corner & BORDER_LEFT)
541         dest_width = old_rect->width - (new_x - event->root_x);
542     else
543         dest_width = old_rect->width + (new_x - event->root_x);
544
545     if (corner & BORDER_TOP)
546         dest_height = old_rect->height - (new_y - event->root_y);
547     else
548         dest_height = old_rect->height + (new_y - event->root_y);
549
550     /* User wants to keep proportions, so we may have to adjust our values */
551     if (params->proportional) {
552         dest_width = max(dest_width, (int)(dest_height * ratio));
553         dest_height = max(dest_height, (int)(dest_width / ratio));
554     }
555
556     con->rect = (Rect){dest_x, dest_y, dest_width, dest_height};
557
558     /* Obey window size */
559     floating_check_size(con);
560
561     /* If not the lower right corner is grabbed, we must also reposition
562      * the client by exactly the amount we resized it */
563     if (corner & BORDER_LEFT)
564         dest_x = old_rect->x + (old_rect->width - con->rect.width);
565
566     if (corner & BORDER_TOP)
567         dest_y = old_rect->y + (old_rect->height - con->rect.height);
568
569     con->rect.x = dest_x;
570     con->rect.y = dest_y;
571
572     /* TODO: don’t re-render the whole tree just because we change
573      * coordinates of a floating window */
574     tree_render();
575     x_push_changes(croot);
576 }
577
578 /*
579  * Called when the user clicked on a floating window while holding the
580  * floating_modifier and the right mouse button.
581  * Calls the drag_pointer function with the resize_window callback
582  *
583  */
584 void floating_resize_window(Con *con, const bool proportional,
585                             const xcb_button_press_event_t *event) {
586     DLOG("floating_resize_window\n");
587
588     /* corner saves the nearest corner to the original click. It contains
589      * a bitmask of the nearest borders (BORDER_LEFT, BORDER_RIGHT, …) */
590     border_t corner = 0;
591
592     if (event->event_x <= (int16_t)(con->rect.width / 2))
593         corner |= BORDER_LEFT;
594     else
595         corner |= BORDER_RIGHT;
596
597     int cursor = 0;
598     if (event->event_y <= (int16_t)(con->rect.height / 2)) {
599         corner |= BORDER_TOP;
600         cursor = (corner & BORDER_LEFT) ? XCURSOR_CURSOR_TOP_LEFT_CORNER : XCURSOR_CURSOR_TOP_RIGHT_CORNER;
601     } else {
602         corner |= BORDER_BOTTOM;
603         cursor = (corner & BORDER_LEFT) ? XCURSOR_CURSOR_BOTTOM_LEFT_CORNER : XCURSOR_CURSOR_BOTTOM_RIGHT_CORNER;
604     }
605
606     struct resize_window_callback_params params = {corner, proportional, event};
607
608     /* get the initial rect in case of revert/cancel */
609     Rect initial_rect = con->rect;
610
611     drag_result_t drag_result = drag_pointer(con, event, XCB_NONE, BORDER_TOP /* irrelevant */, cursor, resize_window_callback, &params);
612
613     /* If the user cancels, undo the resize */
614     if (drag_result == DRAG_REVERT)
615         floating_reposition(con, initial_rect);
616
617     /* If this is a scratchpad window, don't auto center it from now on. */
618     if (con->scratchpad_state == SCRATCHPAD_FRESH)
619         con->scratchpad_state = SCRATCHPAD_CHANGED;
620 }
621
622 /* Custom data structure used to track dragging-related events. */
623 struct drag_x11_cb {
624     ev_check check;
625
626     /* Whether this modal event loop should be exited and with which result. */
627     drag_result_t result;
628
629     /* The container that is being dragged or resized, or NULL if this is a
630      * drag of the resize handle. */
631     Con *con;
632
633     /* The dimensions of con when the loop was started. */
634     Rect old_rect;
635
636     /* The callback to invoke after every pointer movement. */
637     callback_t callback;
638
639     /* User data pointer for callback. */
640     const void *extra;
641 };
642
643 static void xcb_drag_check_cb(EV_P_ ev_check *w, int revents) {
644     struct drag_x11_cb *dragloop = (struct drag_x11_cb *)w->data;
645     xcb_motion_notify_event_t *last_motion_notify = NULL;
646     xcb_generic_event_t *event;
647
648     while ((event = xcb_poll_for_event(conn)) != NULL) {
649         if (event->response_type == 0) {
650             xcb_generic_error_t *error = (xcb_generic_error_t *)event;
651             DLOG("X11 Error received (probably harmless)! sequence 0x%x, error_code = %d\n",
652                  error->sequence, error->error_code);
653             free(event);
654             continue;
655         }
656
657         /* Strip off the highest bit (set if the event is generated) */
658         int type = (event->response_type & 0x7F);
659
660         switch (type) {
661             case XCB_BUTTON_RELEASE:
662                 dragloop->result = DRAG_SUCCESS;
663                 break;
664
665             case XCB_KEY_PRESS:
666                 DLOG("A key was pressed during drag, reverting changes.\n");
667                 dragloop->result = DRAG_REVERT;
668                 handle_event(type, event);
669                 break;
670
671             case XCB_UNMAP_NOTIFY: {
672                 xcb_unmap_notify_event_t *unmap_event = (xcb_unmap_notify_event_t *)event;
673                 Con *con = con_by_window_id(unmap_event->window);
674
675                 if (con != NULL) {
676                     DLOG("UnmapNotify for window 0x%08x (container %p)\n", unmap_event->window, con);
677
678                     if (con_get_workspace(con) == con_get_workspace(focused)) {
679                         DLOG("UnmapNotify for a managed window on the current workspace, aborting\n");
680                         dragloop->result = DRAG_ABORT;
681                     }
682                 }
683
684                 handle_event(type, event);
685                 break;
686             }
687
688             case XCB_MOTION_NOTIFY:
689                 /* motion_notify events are saved for later */
690                 FREE(last_motion_notify);
691                 last_motion_notify = (xcb_motion_notify_event_t *)event;
692                 break;
693
694             default:
695                 DLOG("Passing to original handler\n");
696                 handle_event(type, event);
697                 break;
698         }
699
700         if (last_motion_notify != (xcb_motion_notify_event_t *)event)
701             free(event);
702
703         if (dragloop->result != DRAGGING)
704             return;
705     }
706
707     if (last_motion_notify == NULL)
708         return;
709
710     dragloop->callback(
711         dragloop->con,
712         &(dragloop->old_rect),
713         last_motion_notify->root_x,
714         last_motion_notify->root_y,
715         dragloop->extra);
716     free(last_motion_notify);
717 }
718
719 /*
720  * This function grabs your pointer and keyboard and lets you drag stuff around
721  * (borders). Every time you move your mouse, an XCB_MOTION_NOTIFY event will
722  * be received and the given callback will be called with the parameters
723  * specified (client, border on which the click originally was), the original
724  * rect of the client, the event and the new coordinates (x, y).
725  *
726  */
727 drag_result_t drag_pointer(Con *con, const xcb_button_press_event_t *event, xcb_window_t
728                                                                                 confine_to,
729                            border_t border, int cursor, callback_t callback, const void *extra) {
730     xcb_cursor_t xcursor = (cursor && xcursor_supported) ? xcursor_get_cursor(cursor) : XCB_NONE;
731
732     /* Grab the pointer */
733     xcb_grab_pointer_cookie_t cookie;
734     xcb_grab_pointer_reply_t *reply;
735     xcb_generic_error_t *error;
736
737     cookie = xcb_grab_pointer(conn,
738                               false,                                                         /* get all pointer events specified by the following mask */
739                               root,                                                          /* grab the root window */
740                               XCB_EVENT_MASK_BUTTON_RELEASE | XCB_EVENT_MASK_POINTER_MOTION, /* which events to let through */
741                               XCB_GRAB_MODE_ASYNC,                                           /* pointer events should continue as normal */
742                               XCB_GRAB_MODE_ASYNC,                                           /* keyboard mode */
743                               confine_to,                                                    /* confine_to = in which window should the cursor stay */
744                               xcursor,                                                       /* possibly display a special cursor */
745                               XCB_CURRENT_TIME);
746
747     if ((reply = xcb_grab_pointer_reply(conn, cookie, &error)) == NULL) {
748         ELOG("Could not grab pointer (error_code = %d)\n", error->error_code);
749         free(error);
750         return DRAG_ABORT;
751     }
752
753     free(reply);
754
755     /* Grab the keyboard */
756     xcb_grab_keyboard_cookie_t keyb_cookie;
757     xcb_grab_keyboard_reply_t *keyb_reply;
758
759     keyb_cookie = xcb_grab_keyboard(conn,
760                                     false, /* get all keyboard events */
761                                     root,  /* grab the root window */
762                                     XCB_CURRENT_TIME,
763                                     XCB_GRAB_MODE_ASYNC, /* continue processing pointer events as normal */
764                                     XCB_GRAB_MODE_ASYNC  /* keyboard mode */
765                                     );
766
767     if ((keyb_reply = xcb_grab_keyboard_reply(conn, keyb_cookie, &error)) == NULL) {
768         ELOG("Could not grab keyboard (error_code = %d)\n", error->error_code);
769         free(error);
770         xcb_ungrab_pointer(conn, XCB_CURRENT_TIME);
771         return DRAG_ABORT;
772     }
773
774     free(keyb_reply);
775
776     /* Go into our own event loop */
777     struct drag_x11_cb loop = {
778         .result = DRAGGING,
779         .con = con,
780         .callback = callback,
781         .extra = extra,
782     };
783     ev_check *check = &loop.check;
784     if (con)
785         loop.old_rect = con->rect;
786     ev_check_init(check, xcb_drag_check_cb);
787     check->data = &loop;
788     main_set_x11_cb(false);
789     ev_check_start(main_loop, check);
790
791     while (loop.result == DRAGGING)
792         ev_run(main_loop, EVRUN_ONCE);
793
794     ev_check_stop(main_loop, check);
795     main_set_x11_cb(true);
796
797     xcb_ungrab_keyboard(conn, XCB_CURRENT_TIME);
798     xcb_ungrab_pointer(conn, XCB_CURRENT_TIME);
799     xcb_flush(conn);
800
801     return loop.result;
802 }
803
804 /*
805  * Repositions the CT_FLOATING_CON to have the coordinates specified by
806  * newrect, but only if the coordinates are not out-of-bounds. Also reassigns
807  * the floating con to a different workspace if this move was across different
808  * outputs.
809  *
810  */
811 void floating_reposition(Con *con, Rect newrect) {
812     /* Sanity check: Are the new coordinates on any output? If not, we
813      * ignore that request. */
814     if (!contained_by_output(newrect)) {
815         ELOG("No output found at destination coordinates. Not repositioning.\n");
816         return;
817     }
818
819     con->rect = newrect;
820
821     floating_maybe_reassign_ws(con);
822
823     /* If this is a scratchpad window, don't auto center it from now on. */
824     if (con->scratchpad_state == SCRATCHPAD_FRESH)
825         con->scratchpad_state = SCRATCHPAD_CHANGED;
826
827     tree_render();
828 }
829
830 /*
831  * Sets size of the CT_FLOATING_CON to specified dimensions. Might limit the
832  * actual size with regard to size constraints taken from user settings.
833  * Additionally, the dimensions may be upscaled until they're divisible by the
834  * window's size hints.
835  *
836  */
837 void floating_resize(Con *floating_con, int x, int y) {
838     DLOG("floating resize to %dx%d px\n", x, y);
839     Rect *rect = &floating_con->rect;
840     Con *focused_con = con_descend_focused(floating_con);
841     if (focused_con->window == NULL) {
842         DLOG("No window is focused. Not resizing.\n");
843         return;
844     }
845     int wi = focused_con->window->width_increment;
846     int hi = focused_con->window->height_increment;
847     rect->width = x;
848     rect->height = y;
849     if (wi)
850         rect->width += (wi - 1 - rect->width) % wi;
851     if (hi)
852         rect->height += (hi - 1 - rect->height) % hi;
853
854     floating_check_size(floating_con);
855
856     /* If this is a scratchpad window, don't auto center it from now on. */
857     if (floating_con->scratchpad_state == SCRATCHPAD_FRESH)
858         floating_con->scratchpad_state = SCRATCHPAD_CHANGED;
859 }
860
861 /*
862  * Fixes the coordinates of the floating window whenever the window gets
863  * reassigned to a different output (or when the output’s rect changes).
864  *
865  */
866 void floating_fix_coordinates(Con *con, Rect *old_rect, Rect *new_rect) {
867     DLOG("Fixing coordinates of floating window %p (rect (%d, %d), %d x %d)\n",
868          con, con->rect.x, con->rect.y, con->rect.width, con->rect.height);
869     DLOG("old_rect = (%d, %d), %d x %d\n",
870          old_rect->x, old_rect->y, old_rect->width, old_rect->height);
871     DLOG("new_rect = (%d, %d), %d x %d\n",
872          new_rect->x, new_rect->y, new_rect->width, new_rect->height);
873     /* First we get the x/y coordinates relative to the x/y coordinates
874      * of the output on which the window is on */
875     int32_t rel_x = con->rect.x - old_rect->x + (int32_t)(con->rect.width / 2);
876     int32_t rel_y = con->rect.y - old_rect->y + (int32_t)(con->rect.height / 2);
877     /* Then we calculate a fraction, for example 0.63 for a window
878      * which is at y = 1212 of a 1920 px high output */
879     DLOG("rel_x = %d, rel_y = %d, fraction_x = %f, fraction_y = %f, output->w = %d, output->h = %d\n",
880          rel_x, rel_y, (double)rel_x / old_rect->width, (double)rel_y / old_rect->height,
881          old_rect->width, old_rect->height);
882     /* Here we have to multiply at first. Or we will lose precision when not compiled with -msse2 */
883     con->rect.x = (int32_t)new_rect->x + (double)(rel_x * (int32_t)new_rect->width) / (int32_t)old_rect->width - (int32_t)(con->rect.width / 2);
884     con->rect.y = (int32_t)new_rect->y + (double)(rel_y * (int32_t)new_rect->height) / (int32_t)old_rect->height - (int32_t)(con->rect.height / 2);
885     DLOG("Resulting coordinates: x = %d, y = %d\n", con->rect.x, con->rect.y);
886 }