]> git.sur5r.net Git - i3/i3/blob - src/floating.c
17fe74cce35e7f7830360ff8947f56c1c220a868
[i3/i3] / src / floating.c
1 #undef I3__FILE__
2 #define I3__FILE__ "floating.c"
3 /*
4  * vim:ts=4:sw=4:expandtab
5  *
6  * i3 - an improved dynamic tiling window manager
7  * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
8  *
9  * floating.c: Floating windows.
10  *
11  */
12 #include "all.h"
13
14 extern xcb_connection_t *conn;
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     Output *output;
22     /* Use Rect to encapsulate dimensions, ignoring x/y */
23     Rect outputs_dimensions = {0, 0, 0, 0};
24     TAILQ_FOREACH(output, &outputs, outputs) {
25         outputs_dimensions.height += output->rect.height;
26         outputs_dimensions.width += output->rect.width;
27     }
28     return outputs_dimensions;
29 }
30
31 void floating_enable(Con *con, bool automatic) {
32     bool set_focus = (con == focused);
33
34     if (con->parent && con->parent->type == CT_DOCKAREA) {
35         LOG("Container is a dock window, not enabling floating mode.\n");
36         return;
37     }
38
39     if (con_is_floating(con)) {
40         LOG("Container is already in floating mode, not doing anything.\n");
41         return;
42     }
43
44     /* 1: If the container is a workspace container, we need to create a new
45      * split-container with the same layout and make that one floating. We
46      * cannot touch the workspace container itself because floating containers
47      * are children of the workspace. */
48     if (con->type == CT_WORKSPACE) {
49         LOG("This is a workspace, creating new container around content\n");
50         if (con_num_children(con) == 0) {
51             LOG("Workspace is empty, aborting\n");
52             return;
53         }
54         /* TODO: refactor this with src/con.c:con_set_layout */
55         Con *new = con_new(NULL, NULL);
56         new->parent = con;
57         new->layout = con->layout;
58
59         /* since the new container will be set into floating mode directly
60          * afterwards, we need to copy the workspace rect. */
61         memcpy(&(new->rect), &(con->rect), sizeof(Rect));
62
63         Con *old_focused = TAILQ_FIRST(&(con->focus_head));
64         if (old_focused == TAILQ_END(&(con->focus_head)))
65             old_focused = NULL;
66
67         /* 4: move the existing cons of this workspace below the new con */
68         DLOG("Moving cons\n");
69         Con *child;
70         while (!TAILQ_EMPTY(&(con->nodes_head))) {
71             child = TAILQ_FIRST(&(con->nodes_head));
72             con_detach(child);
73             con_attach(child, new, true);
74         }
75
76         /* 4: attach the new split container to the workspace */
77         DLOG("Attaching new split to ws\n");
78         con_attach(new, con, false);
79
80         if (old_focused)
81             con_focus(old_focused);
82
83         con = new;
84         set_focus = false;
85     }
86
87     /* 1: detach the container from its parent */
88     /* TODO: refactor this with tree_close() */
89     TAILQ_REMOVE(&(con->parent->nodes_head), con, nodes);
90     TAILQ_REMOVE(&(con->parent->focus_head), con, focused);
91
92     con_fix_percent(con->parent);
93
94     /* 2: create a new container to render the decoration on, add
95      * it as a floating window to the workspace */
96     Con *nc = con_new(NULL, NULL);
97     /* we need to set the parent afterwards instead of passing it as an
98      * argument to con_new() because nc would be inserted into the tiling layer
99      * otherwise. */
100     Con *ws = con_get_workspace(con);
101     nc->parent = ws;
102     nc->split = true;
103     nc->type = CT_FLOATING_CON;
104     nc->layout = L_SPLITH;
105     /* We insert nc already, even though its rect is not yet calculated. This
106      * is necessary because otherwise the workspace might be empty (and get
107      * closed in tree_close()) even though it’s not. */
108     TAILQ_INSERT_TAIL(&(ws->floating_head), nc, floating_windows);
109     TAILQ_INSERT_TAIL(&(ws->focus_head), nc, focused);
110
111     /* check if the parent container is empty and close it if so */
112     if ((con->parent->type == CT_CON || con->parent->type == CT_FLOATING_CON) &&
113         con_num_children(con->parent) == 0) {
114         DLOG("Old container empty after setting this child to floating, closing\n");
115         tree_close(con->parent, DONT_KILL_WINDOW, false, false);
116     }
117
118     char *name;
119     sasprintf(&name, "[i3 con] floatingcon around %p", con);
120     x_set_name(nc, name);
121     free(name);
122
123     /* find the height for the decorations */
124     int deco_height = config.font.height + 5;
125
126     DLOG("Original rect: (%d, %d) with %d x %d\n", con->rect.x, con->rect.y, con->rect.width, con->rect.height);
127     DLOG("Geometry = (%d, %d) with %d x %d\n", con->geometry.x, con->geometry.y, con->geometry.width, con->geometry.height);
128     Rect zero = { 0, 0, 0, 0 };
129     nc->rect = con->geometry;
130     /* If the geometry was not set (split containers), we need to determine a
131      * sensible one by combining the geometry of all children */
132     if (memcmp(&(nc->rect), &zero, sizeof(Rect)) == 0) {
133         DLOG("Geometry not set, combining children\n");
134         Con *child;
135         TAILQ_FOREACH(child, &(con->nodes_head), nodes) {
136             DLOG("child geometry: %d x %d\n", child->geometry.width, child->geometry.height);
137             nc->rect.width += child->geometry.width;
138             nc->rect.height = max(nc->rect.height, child->geometry.height);
139         }
140     }
141
142     /* Define reasonable minimal and maximal sizes for floating windows */
143     const int floating_sane_min_height = 50;
144     const int floating_sane_min_width = 75;
145
146     Rect floating_sane_max_dimensions;
147     floating_sane_max_dimensions = total_outputs_dimensions();
148
149     /* Unless user requests otherwise (-1), ensure width/height do not exceed
150      * configured maxima or, if unconfigured, limit to combined width of all
151      * outputs */
152     if (config.floating_maximum_height != -1) {
153         if (config.floating_maximum_height == 0)
154             nc->rect.height = min(nc->rect.height, floating_sane_max_dimensions.height);
155         else
156             nc->rect.height = min(nc->rect.height, config.floating_maximum_height);
157     }
158     if (config.floating_maximum_width != -1) {
159         if (config.floating_maximum_width == 0)
160             nc->rect.width = min(nc->rect.width, floating_sane_max_dimensions.width);
161         else
162             nc->rect.width = min(nc->rect.width, config.floating_maximum_width);
163     }
164
165     /* Unless user requests otherwise (-1), raise the width/height to
166      * reasonable minimum dimensions */
167     if (config.floating_minimum_height != -1) {
168         if (config.floating_minimum_height == 0)
169             nc->rect.height = max(nc->rect.height, floating_sane_min_height);
170         else
171             nc->rect.height = max(nc->rect.height, config.floating_minimum_height);
172     }
173     if (config.floating_minimum_width != -1) {
174         if (config.floating_minimum_width == 0)
175             nc->rect.width = max(nc->rect.width, floating_sane_min_width);
176         else
177             nc->rect.width = max(nc->rect.width, config.floating_minimum_width);
178     }
179
180     /* 3: attach the child to the new parent container. We need to do this
181      * because con_border_style_rect() needs to access con->parent. */
182     con->parent = nc;
183     con->percent = 1.0;
184     con->floating = FLOATING_USER_ON;
185
186     /* 4: set the border style as specified with new_float */
187     if (automatic)
188         con->border_style = config.default_floating_border;
189
190     /* Add pixels for the decoration. */
191     Rect border_style_rect = con_border_style_rect(con);
192
193     nc->rect.height -= border_style_rect.height;
194     nc->rect.width -= border_style_rect.width;
195
196     /* Add some more pixels for the title bar */
197     if(con_border_style(con) == BS_NORMAL)
198         nc->rect.height += deco_height;
199
200     /* Honor the X11 border */
201     nc->rect.height += con->border_width * 2;
202     nc->rect.width += con->border_width * 2;
203
204     /* Some clients (like GIMP’s color picker window) get mapped
205      * to (0, 0), so we push them to a reasonable position
206      * (centered over their leader) */
207     if (nc->rect.x == 0 && nc->rect.y == 0) {
208         Con *leader;
209         if (con->window && con->window->leader != XCB_NONE &&
210             (leader = con_by_window_id(con->window->leader)) != NULL) {
211             DLOG("Centering above leader\n");
212             nc->rect.x = leader->rect.x + (leader->rect.width / 2) - (nc->rect.width / 2);
213             nc->rect.y = leader->rect.y + (leader->rect.height / 2) - (nc->rect.height / 2);
214         } else {
215             /* center the window on workspace as fallback */
216             nc->rect.x = ws->rect.x + (ws->rect.width / 2) - (nc->rect.width / 2);
217             nc->rect.y = ws->rect.y + (ws->rect.height / 2) - (nc->rect.height / 2);
218         }
219     }
220
221     /* Sanity check: Are the coordinates on the appropriate output? If not, we
222      * need to change them */
223     Output *current_output = get_output_containing(nc->rect.x +
224         (nc->rect.width / 2), nc->rect.y + (nc->rect.height / 2));
225
226     Con *correct_output = con_get_output(ws);
227     if (!current_output || current_output->con != correct_output) {
228         DLOG("This floating window is on the wrong output, fixing coordinates (currently (%d, %d))\n",
229              nc->rect.x, nc->rect.y);
230
231         /* If moving from one output to another, keep the relative position
232          * consistent (e.g. a centered dialog will remain centered). */
233         if (current_output)
234             floating_fix_coordinates(nc, &current_output->con->rect, &correct_output->rect);
235         else {
236             nc->rect.x = correct_output->rect.x;
237             nc->rect.y = correct_output->rect.y;
238         }
239     }
240
241     DLOG("Floating rect: (%d, %d) with %d x %d\n", nc->rect.x, nc->rect.y, nc->rect.width, nc->rect.height);
242
243     /* 5: Subtract the deco_height in order to make the floating window appear
244      * at precisely the position it specified in its original geometry (which
245      * is what applications might remember). */
246     deco_height = (con->border_style == BS_NORMAL ? config.font.height + 5 : 0);
247     nc->rect.y -= deco_height;
248
249     DLOG("Corrected y = %d (deco_height = %d)\n", nc->rect.y, deco_height);
250
251     TAILQ_INSERT_TAIL(&(nc->nodes_head), con, nodes);
252     TAILQ_INSERT_TAIL(&(nc->focus_head), con, focused);
253
254     /* render the cons to get initial window_rect correct */
255     render_con(nc, false);
256     render_con(con, false);
257
258     if (set_focus)
259         con_focus(con);
260
261     /* Check if we need to re-assign it to a different workspace because of its
262      * coordinates and exit if that was done successfully. */
263     if (floating_maybe_reassign_ws(nc))
264         return;
265
266     /* Sanitize coordinates: Check if they are on any output */
267     if (get_output_containing(nc->rect.x, nc->rect.y) != NULL)
268         return;
269
270     ELOG("No output found at destination coordinates, centering floating window on current ws\n");
271     nc->rect.x = ws->rect.x + (ws->rect.width / 2) - (nc->rect.width / 2);
272     nc->rect.y = ws->rect.y + (ws->rect.height / 2) - (nc->rect.height / 2);
273 }
274
275 void floating_disable(Con *con, bool automatic) {
276     if (!con_is_floating(con)) {
277         LOG("Container isn't floating, not doing anything.\n");
278         return;
279     }
280
281     Con *ws = con_get_workspace(con);
282
283     /* 1: detach from parent container */
284     TAILQ_REMOVE(&(con->parent->nodes_head), con, nodes);
285     TAILQ_REMOVE(&(con->parent->focus_head), con, focused);
286
287     /* 2: kill parent container */
288     TAILQ_REMOVE(&(con->parent->parent->floating_head), con->parent, floating_windows);
289     TAILQ_REMOVE(&(con->parent->parent->focus_head), con->parent, focused);
290     tree_close(con->parent, DONT_KILL_WINDOW, true, false);
291
292     /* 3: re-attach to the parent of the currently focused con on the workspace
293      * this floating con was on */
294     Con *focused = con_descend_tiling_focused(ws);
295
296     /* if there is no other container on this workspace, focused will be the
297      * workspace itself */
298     if (focused->type == CT_WORKSPACE)
299         con->parent = focused;
300     else con->parent = focused->parent;
301
302     /* con_fix_percent will adjust the percent value */
303     con->percent = 0.0;
304
305     con->floating = FLOATING_USER_OFF;
306
307     con_attach(con, con->parent, false);
308
309     con_fix_percent(con->parent);
310     // TODO: don’t influence focus handling when Con was not focused before.
311     con_focus(con);
312 }
313
314 /*
315  * Toggles floating mode for the given container.
316  *
317  * If the automatic flag is set to true, this was an automatic update by a change of the
318  * window class from the application which can be overwritten by the user.
319  *
320  */
321 void toggle_floating_mode(Con *con, bool automatic) {
322     /* see if the client is already floating */
323     if (con_is_floating(con)) {
324         LOG("already floating, re-setting to tiling\n");
325
326         floating_disable(con, automatic);
327         return;
328     }
329
330     floating_enable(con, automatic);
331 }
332
333 /*
334  * Raises the given container in the list of floating containers
335  *
336  */
337 void floating_raise_con(Con *con) {
338     DLOG("Raising floating con %p / %s\n", con, con->name);
339     TAILQ_REMOVE(&(con->parent->floating_head), con, floating_windows);
340     TAILQ_INSERT_TAIL(&(con->parent->floating_head), con, floating_windows);
341 }
342
343 /*
344  * Checks if con’s coordinates are within its workspace and re-assigns it to
345  * the actual workspace if not.
346  *
347  */
348 bool floating_maybe_reassign_ws(Con *con) {
349     Output *output = get_output_containing(
350         con->rect.x + (con->rect.width / 2),
351         con->rect.y + (con->rect.height / 2));
352
353     if (!output) {
354         ELOG("No output found at destination coordinates?\n");
355         return false;
356     }
357
358     if (con_get_output(con) == output->con) {
359         DLOG("still the same ws\n");
360         return false;
361     }
362
363     DLOG("Need to re-assign!\n");
364
365     Con *content = output_get_content(output->con);
366     Con *ws = TAILQ_FIRST(&(content->focus_head));
367     DLOG("Moving con %p / %s to workspace %p / %s\n", con, con->name, ws, ws->name);
368     con_move_to_workspace(con, ws, false, true);
369     con_focus(con_descend_focused(con));
370     return true;
371 }
372
373 DRAGGING_CB(drag_window_callback) {
374     const struct xcb_button_press_event_t *event = extra;
375
376     /* Reposition the client correctly while moving */
377     con->rect.x = old_rect->x + (new_x - event->root_x);
378     con->rect.y = old_rect->y + (new_y - event->root_y);
379
380     render_con(con, false);
381     x_push_node(con);
382     xcb_flush(conn);
383
384     /* Check if we cross workspace boundaries while moving */
385     if (!floating_maybe_reassign_ws(con))
386         return;
387     tree_render();
388 }
389
390 /*
391  * Called when the user clicked on the titlebar of a floating window.
392  * Calls the drag_pointer function with the drag_window callback
393  *
394  */
395 void floating_drag_window(Con *con, const xcb_button_press_event_t *event) {
396     DLOG("floating_drag_window\n");
397
398     /* Push changes before dragging, so that the window gets raised now and not
399      * after the user releases the mouse button */
400     tree_render();
401
402     /* Drag the window */
403     drag_pointer(con, event, XCB_NONE, BORDER_TOP /* irrelevant */, XCURSOR_CURSOR_MOVE, drag_window_callback, event);
404     tree_render();
405 }
406
407 /*
408  * This is an ugly data structure which we need because there is no standard
409  * way of having nested functions (only available as a gcc extension at the
410  * moment, clang doesn’t support it) or blocks (only available as a clang
411  * extension and only on Mac OS X systems at the moment).
412  *
413  */
414 struct resize_window_callback_params {
415     const border_t corner;
416     const bool proportional;
417     const xcb_button_press_event_t *event;
418 };
419
420 DRAGGING_CB(resize_window_callback) {
421     const struct resize_window_callback_params *params = extra;
422     const xcb_button_press_event_t *event = params->event;
423     border_t corner = params->corner;
424
425     int32_t dest_x = con->rect.x;
426     int32_t dest_y = con->rect.y;
427     uint32_t dest_width;
428     uint32_t dest_height;
429
430     double ratio = (double) old_rect->width / old_rect->height;
431
432     /* First guess: We resize by exactly the amount the mouse moved,
433      * taking into account in which corner the client was grabbed */
434     if (corner & BORDER_LEFT)
435         dest_width = old_rect->width - (new_x - event->root_x);
436     else dest_width = old_rect->width + (new_x - event->root_x);
437
438     if (corner & BORDER_TOP)
439         dest_height = old_rect->height - (new_y - event->root_y);
440     else dest_height = old_rect->height + (new_y - event->root_y);
441
442     /* Obey minimum window size */
443     Rect minimum = con_minimum_size(con);
444     dest_width = max(dest_width, minimum.width);
445     dest_height = max(dest_height, minimum.height);
446
447     /* User wants to keep proportions, so we may have to adjust our values */
448     if (params->proportional) {
449         dest_width = max(dest_width, (int) (dest_height * ratio));
450         dest_height = max(dest_height, (int) (dest_width / ratio));
451     }
452
453     /* If not the lower right corner is grabbed, we must also reposition
454      * the client by exactly the amount we resized it */
455     if (corner & BORDER_LEFT)
456         dest_x = old_rect->x + (old_rect->width - dest_width);
457
458     if (corner & BORDER_TOP)
459         dest_y = old_rect->y + (old_rect->height - dest_height);
460
461     con->rect = (Rect) { dest_x, dest_y, dest_width, dest_height };
462
463     /* TODO: don’t re-render the whole tree just because we change
464      * coordinates of a floating window */
465     tree_render();
466     x_push_changes(croot);
467 }
468
469 /*
470  * Called when the user clicked on a floating window while holding the
471  * floating_modifier and the right mouse button.
472  * Calls the drag_pointer function with the resize_window callback
473  *
474  */
475 void floating_resize_window(Con *con, const bool proportional,
476                             const xcb_button_press_event_t *event) {
477     DLOG("floating_resize_window\n");
478
479     /* corner saves the nearest corner to the original click. It contains
480      * a bitmask of the nearest borders (BORDER_LEFT, BORDER_RIGHT, …) */
481     border_t corner = 0;
482
483     if (event->event_x <= (con->rect.width / 2))
484         corner |= BORDER_LEFT;
485     else corner |= BORDER_RIGHT;
486
487     int cursor = 0;
488     if (event->event_y <= (con->rect.height / 2)) {
489         corner |= BORDER_TOP;
490         cursor = (corner & BORDER_LEFT) ?
491             XCURSOR_CURSOR_TOP_LEFT_CORNER : XCURSOR_CURSOR_TOP_RIGHT_CORNER;
492     }
493     else {
494         corner |= BORDER_BOTTOM;
495         cursor = (corner & BORDER_LEFT) ?
496             XCURSOR_CURSOR_BOTTOM_LEFT_CORNER : XCURSOR_CURSOR_BOTTOM_RIGHT_CORNER;
497     }
498
499     struct resize_window_callback_params params = { corner, proportional, event };
500
501     drag_pointer(con, event, XCB_NONE, BORDER_TOP /* irrelevant */, cursor, resize_window_callback, &params);
502 }
503
504 /*
505  * This function grabs your pointer and lets you drag stuff around (borders).
506  * Every time you move your mouse, an XCB_MOTION_NOTIFY event will be received
507  * and the given callback will be called with the parameters specified (client,
508  * border on which the click originally was), the original rect of the client,
509  * the event and the new coordinates (x, y).
510  *
511  */
512 void drag_pointer(Con *con, const xcb_button_press_event_t *event, xcb_window_t
513                 confine_to, border_t border, int cursor, callback_t callback, const void *extra)
514 {
515     uint32_t new_x, new_y;
516     Rect old_rect = { 0, 0, 0, 0 };
517     if (con != NULL)
518         memcpy(&old_rect, &(con->rect), sizeof(Rect));
519
520     Cursor xcursor = (cursor && xcursor_supported) ?
521         xcursor_get_cursor(cursor) : XCB_NONE;
522
523     /* Grab the pointer */
524     xcb_grab_pointer_cookie_t cookie;
525     xcb_grab_pointer_reply_t *reply;
526     cookie = xcb_grab_pointer(conn,
527         false,               /* get all pointer events specified by the following mask */
528         root,                /* grab the root window */
529         XCB_EVENT_MASK_BUTTON_RELEASE | XCB_EVENT_MASK_POINTER_MOTION, /* which events to let through */
530         XCB_GRAB_MODE_ASYNC, /* pointer events should continue as normal */
531         XCB_GRAB_MODE_ASYNC, /* keyboard mode */
532         confine_to,          /* confine_to = in which window should the cursor stay */
533         xcursor,             /* possibly display a special cursor */
534         XCB_CURRENT_TIME);
535
536     if ((reply = xcb_grab_pointer_reply(conn, cookie, NULL)) == NULL) {
537         ELOG("Could not grab pointer\n");
538         return;
539     }
540
541     free(reply);
542
543     /* Go into our own event loop */
544     xcb_flush(conn);
545
546     xcb_generic_event_t *inside_event, *last_motion_notify = NULL;
547     bool loop_done = false;
548     /* I’ve always wanted to have my own eventhandler… */
549     while (!loop_done && (inside_event = xcb_wait_for_event(conn))) {
550         /* We now handle all events we can get using xcb_poll_for_event */
551         do {
552             /* skip x11 errors */
553             if (inside_event->response_type == 0) {
554                 free(inside_event);
555                 continue;
556             }
557             /* Strip off the highest bit (set if the event is generated) */
558             int type = (inside_event->response_type & 0x7F);
559
560             switch (type) {
561                 case XCB_BUTTON_RELEASE:
562                     loop_done = true;
563                     break;
564
565                 case XCB_MOTION_NOTIFY:
566                     /* motion_notify events are saved for later */
567                     FREE(last_motion_notify);
568                     last_motion_notify = inside_event;
569                     break;
570
571                 case XCB_UNMAP_NOTIFY:
572                 case XCB_KEY_PRESS:
573                 case XCB_KEY_RELEASE:
574                     DLOG("Unmap-notify, aborting\n");
575                     handle_event(type, inside_event);
576                     loop_done = true;
577                     break;
578
579                 default:
580                     DLOG("Passing to original handler\n");
581                     /* Use original handler */
582                     handle_event(type, inside_event);
583                     break;
584             }
585             if (last_motion_notify != inside_event)
586                 free(inside_event);
587         } while ((inside_event = xcb_poll_for_event(conn)) != NULL);
588
589         if (last_motion_notify == NULL || loop_done)
590             continue;
591
592         new_x = ((xcb_motion_notify_event_t*)last_motion_notify)->root_x;
593         new_y = ((xcb_motion_notify_event_t*)last_motion_notify)->root_y;
594
595         callback(con, &old_rect, new_x, new_y, extra);
596         FREE(last_motion_notify);
597     }
598
599     xcb_ungrab_pointer(conn, XCB_CURRENT_TIME);
600     xcb_flush(conn);
601 }
602
603 /*
604  * Repositions the CT_FLOATING_CON to have the coordinates specified by
605  * newrect, but only if the coordinates are not out-of-bounds. Also reassigns
606  * the floating con to a different workspace if this move was across different
607  * outputs.
608  *
609  */
610 void floating_reposition(Con *con, Rect newrect) {
611     /* Sanity check: Are the new coordinates on any output? If not, we
612      * ignore that request. */
613     Output *output = get_output_containing(
614         newrect.x + (newrect.width / 2),
615         newrect.y + (newrect.height / 2));
616
617     if (!output) {
618         ELOG("No output found at destination coordinates. Not repositioning.\n");
619         return;
620     }
621
622     con->rect = newrect;
623
624     floating_maybe_reassign_ws(con);
625     tree_render();
626 }
627
628 /*
629  * Fixes the coordinates of the floating window whenever the window gets
630  * reassigned to a different output (or when the output’s rect changes).
631  *
632  */
633 void floating_fix_coordinates(Con *con, Rect *old_rect, Rect *new_rect) {
634     DLOG("Fixing coordinates of floating window %p (rect (%d, %d), %d x %d)\n",
635          con, con->rect.x, con->rect.y, con->rect.width, con->rect.height);
636     DLOG("old_rect = (%d, %d), %d x %d\n",
637          old_rect->x, old_rect->y, old_rect->width, old_rect->height);
638     DLOG("new_rect = (%d, %d), %d x %d\n",
639          new_rect->x, new_rect->y, new_rect->width, new_rect->height);
640     /* First we get the x/y coordinates relative to the x/y coordinates
641      * of the output on which the window is on */
642     int32_t rel_x = con->rect.x - old_rect->x + (int32_t)(con->rect.width  / 2);
643     int32_t rel_y = con->rect.y - old_rect->y + (int32_t)(con->rect.height / 2);
644     /* Then we calculate a fraction, for example 0.63 for a window
645      * which is at y = 1212 of a 1920 px high output */
646     DLOG("rel_x = %d, rel_y = %d, fraction_x = %f, fraction_y = %f, output->w = %d, output->h = %d\n",
647           rel_x, rel_y, (double)rel_x / old_rect->width, (double)rel_y / old_rect->height,
648           old_rect->width, old_rect->height);
649     /* Here we have to multiply at first. Or we will lose precision when not compiled with -msse2 */
650     con->rect.x = (int32_t)new_rect->x + (double)(rel_x * (int32_t)new_rect->width)
651         / (int32_t)old_rect->width - (int32_t)(con->rect.width / 2);
652     con->rect.y = (int32_t)new_rect->y + (double)(rel_y * (int32_t)new_rect->height)
653         / (int32_t)old_rect->height - (int32_t)(con->rect.height / 2);
654     DLOG("Resulting coordinates: x = %d, y = %d\n", con->rect.x, con->rect.y);
655 }
656
657 #if 0
658 /*
659  * Moves the client 10px to the specified direction.
660  *
661  */
662 void floating_move(xcb_connection_t *conn, Client *currently_focused, direction_t direction) {
663         DLOG("floating move\n");
664
665         Rect destination = currently_focused->rect;
666         Rect *screen = &(currently_focused->workspace->output->rect);
667
668         switch (direction) {
669                 case D_LEFT:
670                         destination.x -= 10;
671                         break;
672                 case D_RIGHT:
673                         destination.x += 10;
674                         break;
675                 case D_UP:
676                         destination.y -= 10;
677                         break;
678                 case D_DOWN:
679                         destination.y += 10;
680                         break;
681                 /* to make static analyzers happy */
682                 default:
683                         break;
684         }
685
686         /* Prevent windows from vanishing completely */
687         if ((int32_t)(destination.x + destination.width - 5) <= (int32_t)screen->x ||
688             (int32_t)(destination.x + 5) >= (int32_t)(screen->x + screen->width) ||
689             (int32_t)(destination.y + destination.height - 5) <= (int32_t)screen->y ||
690             (int32_t)(destination.y + 5) >= (int32_t)(screen->y + screen->height)) {
691                 DLOG("boundary check failed, not moving\n");
692                 return;
693         }
694
695         currently_focused->rect = destination;
696         reposition_client(conn, currently_focused);
697
698         /* Because reposition_client does not send a faked configure event (only resize does),
699          * we need to initiate that on our own */
700         fake_absolute_configure_notify(conn, currently_focused);
701         /* fake_absolute_configure_notify flushes */
702 }
703
704 /*
705  * Hides all floating clients (or show them if they are currently hidden) on
706  * the specified workspace.
707  *
708  */
709 void floating_toggle_hide(xcb_connection_t *conn, Workspace *workspace) {
710         Client *client;
711
712         workspace->floating_hidden = !workspace->floating_hidden;
713         DLOG("floating_hidden is now: %d\n", workspace->floating_hidden);
714         TAILQ_FOREACH(client, &(workspace->floating_clients), floating_clients) {
715                 if (workspace->floating_hidden)
716                         client_unmap(conn, client);
717                 else client_map(conn, client);
718         }
719
720         /* If we just unmapped all floating windows we should ensure that the focus
721          * is set correctly, that ist, to the first non-floating client in stack */
722         if (workspace->floating_hidden)
723                 SLIST_FOREACH(client, &(workspace->focus_stack), focus_clients) {
724                         if (client_is_floating(client))
725                                 continue;
726                         set_focus(conn, client, true);
727                         return;
728                 }
729
730         xcb_flush(conn);
731 }
732 #endif