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