]> git.sur5r.net Git - i3/i3/blob - src/floating.c
b82d5f17a49bf40e30011bb4f4f4b757e5e9e91e
[i3/i3] / src / floating.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  * 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 /*
20  * Toggles floating mode for the given container.
21  *
22  * If the automatic flag is set to true, this was an automatic update by a change of the
23  * window class from the application which can be overwritten by the user.
24  *
25  */
26 void toggle_floating_mode(Con *con, bool automatic) {
27         //i3Font *font = load_font(conn, config.font);
28
29         /* see if the client is already floating */
30         if (con_is_floating(con)) {
31                 LOG("already floating, re-setting to tiling\n");
32                 assert(con->old_parent != NULL);
33
34                 /* 1: detach from parent container */
35                 TAILQ_REMOVE(&(con->parent->nodes_head), con, nodes);
36                 TAILQ_REMOVE(&(con->parent->focus_head), con, focused);
37
38                 /* 2: kill parent container */
39                 TAILQ_REMOVE(&(con->parent->parent->floating_head), con->parent, floating_windows);
40                 TAILQ_REMOVE(&(con->parent->parent->focus_head), con->parent, focused);
41                 tree_close(con->parent, false);
42
43                 /* 3: re-attach to previous parent */
44                 con->parent = con->old_parent;
45                 TAILQ_INSERT_TAIL(&(con->parent->nodes_head), con, nodes);
46                 TAILQ_INSERT_TAIL(&(con->parent->focus_head), con, focused);
47
48                 con->floating = FLOATING_USER_OFF;
49
50                 return;
51         }
52
53         /* 1: detach the container from its parent */
54         /* TODO: refactor this with tree_close() */
55         TAILQ_REMOVE(&(con->parent->nodes_head), con, nodes);
56         TAILQ_REMOVE(&(con->parent->focus_head), con, focused);
57
58         Con *child;
59     int children = 0;
60     TAILQ_FOREACH(child, &(con->parent->nodes_head), nodes)
61         children++;
62     /* TODO: better document why this math works */
63     double fix = 1.0 / (1.0 - (1.0 / (children+1)));
64     TAILQ_FOREACH(child, &(con->parent->nodes_head), nodes) {
65         if (child->percent <= 0.0)
66             continue;
67         child->percent *= fix;
68     }
69
70         /* 2: create a new container to render the decoration on, add
71          * it as a floating window to the workspace */
72         Con *nc = con_new(NULL);
73         nc->parent = con_get_workspace(con);
74         nc->rect = con->rect;
75         nc->orientation = NO_ORIENTATION;
76         nc->type = CT_FLOATING_CON;
77         TAILQ_INSERT_TAIL(&(nc->parent->floating_head), nc, floating_windows);
78         TAILQ_INSERT_TAIL(&(nc->parent->focus_head), nc, focused);
79
80         /* 3: attach the child to the new parent container */
81         con->old_parent = con->parent;
82         con->parent = nc;
83         con->floating = FLOATING_USER_ON;
84         nc->rect.x = 400;
85         nc->rect.y = 400;
86         TAILQ_INSERT_TAIL(&(nc->nodes_head), con, nodes);
87         TAILQ_INSERT_TAIL(&(nc->focus_head), con, focused);
88
89
90
91 #if 0
92         if (client->dock) {
93                 DLOG("Not putting dock client into floating mode\n");
94                 return;
95         }
96
97         if (con == NULL) {
98                 DLOG("This client is already in floating (container == NULL), re-inserting\n");
99                 Client *next_tiling;
100                 Workspace *ws = client->workspace;
101                 SLIST_FOREACH(next_tiling, &(ws->focus_stack), focus_clients)
102                         if (!client_is_floating(next_tiling))
103                                 break;
104                 /* If there are no tiling clients on this workspace, there can only be one
105                  * container: the first one */
106                 if (next_tiling == TAILQ_END(&(ws->focus_stack)))
107                         con = ws->table[0][0];
108                 else con = next_tiling->container;
109
110                 /* Remove the client from the list of floating clients */
111                 TAILQ_REMOVE(&(ws->floating_clients), client, floating_clients);
112
113                 DLOG("destination container = %p\n", con);
114                 Client *old_focused = con->currently_focused;
115                 /* Preserve position/size */
116                 memcpy(&(client->floating_rect), &(client->rect), sizeof(Rect));
117
118                 client->floating = FLOATING_USER_OFF;
119                 client->container = con;
120
121                 if (old_focused != NULL && !old_focused->dock)
122                         CIRCLEQ_INSERT_AFTER(&(con->clients), old_focused, client, clients);
123                 else CIRCLEQ_INSERT_TAIL(&(con->clients), client, clients);
124
125                 DLOG("Re-inserted the window.\n");
126                 con->currently_focused = client;
127
128                 client_set_below_floating(conn, client);
129
130                 render_container(conn, con);
131                 xcb_flush(conn);
132
133                 return;
134         }
135
136         DLOG("Entering floating for client %08x\n", client->child);
137
138         /* Remove the client of its container */
139         client_remove_from_container(conn, client, con, false);
140         client->container = NULL;
141
142         /* Add the client to the list of floating clients for its workspace */
143         TAILQ_INSERT_TAIL(&(client->workspace->floating_clients), client, floating_clients);
144
145         if (con->currently_focused == client) {
146                 DLOG("Need to re-adjust currently_focused\n");
147                 /* Get the next client in the focus stack for this particular container */
148                 con->currently_focused = get_last_focused_client(conn, con, NULL);
149         }
150
151         if (automatic)
152                 client->floating = FLOATING_AUTO_ON;
153         else client->floating = FLOATING_USER_ON;
154
155         /* Initialize the floating position from the position in tiling mode, if this
156          * client never was floating (x == -1) */
157         if (client->floating_rect.x == -1) {
158                 /* Copy over the position */
159                 client->floating_rect.x = client->rect.x;
160                 client->floating_rect.y = client->rect.y;
161
162                 /* Copy size the other direction */
163                 client->child_rect.width = client->floating_rect.width;
164                 client->child_rect.height = client->floating_rect.height;
165
166                 client->rect.width = client->child_rect.width + 2 + 2;
167                 client->rect.height = client->child_rect.height + (font->height + 2 + 2) + 2;
168
169                 DLOG("copying size from tiling (%d, %d) size (%d, %d)\n", client->floating_rect.x, client->floating_rect.y,
170                                 client->floating_rect.width, client->floating_rect.height);
171         } else {
172                 /* If the client was already in floating before we restore the old position / size */
173                 DLOG("using: (%d, %d) size (%d, %d)\n", client->floating_rect.x, client->floating_rect.y,
174                         client->floating_rect.width, client->floating_rect.height);
175                 memcpy(&(client->rect), &(client->floating_rect), sizeof(Rect));
176         }
177
178         /* Raise the client */
179         xcb_raise_window(conn, client->frame);
180         reposition_client(conn, client);
181         resize_client(conn, client);
182         /* redecorate_window flushes */
183         redecorate_window(conn, client);
184
185         /* Re-render the tiling layout of this container */
186         render_container(conn, con);
187         xcb_flush(conn);
188 #endif
189 }
190
191 #if 0
192 /*
193  * Removes the floating client from its workspace and attaches it to the new workspace.
194  * This is centralized here because it may happen if you move it via keyboard and
195  * if you move it using your mouse.
196  *
197  */
198 void floating_assign_to_workspace(Client *client, Workspace *new_workspace) {
199         /* Remove from focus stack and list of floating clients */
200         SLIST_REMOVE(&(client->workspace->focus_stack), client, Client, focus_clients);
201         TAILQ_REMOVE(&(client->workspace->floating_clients), client, floating_clients);
202
203         if (client->workspace->fullscreen_client == client)
204                 client->workspace->fullscreen_client = NULL;
205
206         /* Insert into destination focus stack and list of floating clients */
207         client->workspace = new_workspace;
208         SLIST_INSERT_HEAD(&(client->workspace->focus_stack), client, focus_clients);
209         TAILQ_INSERT_TAIL(&(client->workspace->floating_clients), client, floating_clients);
210         if (client->fullscreen)
211                 client->workspace->fullscreen_client = client;
212 }
213
214 /*
215  * This is an ugly data structure which we need because there is no standard
216  * way of having nested functions (only available as a gcc extension at the
217  * moment, clang doesn’t support it) or blocks (only available as a clang
218  * extension and only on Mac OS X systems at the moment).
219  *
220  */
221 struct resize_callback_params {
222         border_t border;
223         xcb_button_press_event_t *event;
224 };
225
226 DRAGGING_CB(resize_callback) {
227         struct resize_callback_params *params = extra;
228         xcb_button_press_event_t *event = params->event;
229         switch (params->border) {
230                 case BORDER_RIGHT: {
231                         int new_width = old_rect->width + (new_x - event->root_x);
232                         if ((new_width < 0) ||
233                             (new_width < client_min_width(client) && client->rect.width >= new_width))
234                                 return;
235                         client->rect.width = new_width;
236                         break;
237                 }
238
239                 case BORDER_BOTTOM: {
240                         int new_height = old_rect->height + (new_y - event->root_y);
241                         if ((new_height < 0) ||
242                             (new_height < client_min_height(client) && client->rect.height >= new_height))
243                                 return;
244                         client->rect.height = old_rect->height + (new_y - event->root_y);
245                         break;
246                 }
247
248                 case BORDER_TOP: {
249                         int new_height = old_rect->height + (event->root_y - new_y);
250                         if ((new_height < 0) ||
251                             (new_height < client_min_height(client) && client->rect.height >= new_height))
252                                 return;
253
254                         client->rect.y = old_rect->y + (new_y - event->root_y);
255                         client->rect.height = new_height;
256                         break;
257                 }
258
259                 case BORDER_LEFT: {
260                         int new_width = old_rect->width + (event->root_x - new_x);
261                         if ((new_width < 0) ||
262                             (new_width < client_min_width(client) && client->rect.width >= new_width))
263                                 return;
264                         client->rect.x = old_rect->x + (new_x - event->root_x);
265                         client->rect.width = new_width;
266                         break;
267                 }
268         }
269
270         /* Push the new position/size to X11 */
271         reposition_client(conn, client);
272         resize_client(conn, client);
273         xcb_flush(conn);
274 }
275
276
277 /*
278  * Called whenever the user clicks on a border (not the titlebar!) of a floating window.
279  * Determines on which border the user clicked and launches the drag_pointer function
280  * with the resize_callback.
281  *
282  */
283 int floating_border_click(xcb_connection_t *conn, Client *client, xcb_button_press_event_t *event) {
284         DLOG("floating border click\n");
285
286         border_t border;
287
288         if (event->event_y < 2)
289                 border = BORDER_TOP;
290         else if (event->event_y >= (client->rect.height - 2))
291                 border = BORDER_BOTTOM;
292         else if (event->event_x <= 2)
293                 border = BORDER_LEFT;
294         else if (event->event_x >= (client->rect.width - 2))
295                 border = BORDER_RIGHT;
296         else {
297                 DLOG("Not on any border, not doing anything.\n");
298                 return 1;
299         }
300
301         DLOG("border = %d\n", border);
302
303         struct resize_callback_params params = { border, event };
304
305         drag_pointer(conn, client, event, XCB_NONE, border, resize_callback, &params);
306
307         return 1;
308 }
309
310 #endif
311 DRAGGING_CB(drag_window_callback) {
312         struct xcb_button_press_event_t *event = extra;
313
314         /* Reposition the client correctly while moving */
315         con->rect.x = old_rect->x + (new_x - event->root_x);
316         con->rect.y = old_rect->y + (new_y - event->root_y);
317         /* TODO: don’t re-render the whole tree just because we change
318          * coordinates of a floating window */
319         tree_render();
320         x_push_changes(croot);
321 }
322
323 /*
324  * Called when the user clicked on the titlebar of a floating window.
325  * Calls the drag_pointer function with the drag_window callback
326  *
327  */
328 void floating_drag_window(Con *con, xcb_button_press_event_t *event) {
329         DLOG("floating_drag_window\n");
330
331         drag_pointer(con, event, XCB_NONE, BORDER_TOP /* irrelevant */, drag_window_callback, event);
332         tree_render();
333 }
334
335 #if 0
336 /*
337  * This is an ugly data structure which we need because there is no standard
338  * way of having nested functions (only available as a gcc extension at the
339  * moment, clang doesn’t support it) or blocks (only available as a clang
340  * extension and only on Mac OS X systems at the moment).
341  *
342  */
343 struct resize_window_callback_params {
344         border_t corner;
345         bool proportional;
346         xcb_button_press_event_t *event;
347 };
348
349 DRAGGING_CB(resize_window_callback) {
350         struct resize_window_callback_params *params = extra;
351         xcb_button_press_event_t *event = params->event;
352         border_t corner = params->corner;
353
354         int32_t dest_x = client->rect.x;
355         int32_t dest_y = client->rect.y;
356         uint32_t dest_width;
357         uint32_t dest_height;
358
359         double ratio = (double) old_rect->width / old_rect->height;
360
361         /* First guess: We resize by exactly the amount the mouse moved,
362          * taking into account in which corner the client was grabbed */
363         if (corner & BORDER_LEFT)
364                 dest_width = old_rect->width - (new_x - event->root_x);
365         else dest_width = old_rect->width + (new_x - event->root_x);
366
367         if (corner & BORDER_TOP)
368                 dest_height = old_rect->height - (new_y - event->root_y);
369         else dest_height = old_rect->height + (new_y - event->root_y);
370
371         /* Obey minimum window size */
372         dest_width = max(dest_width, client_min_width(client));
373         dest_height = max(dest_height, client_min_height(client));
374
375         /* User wants to keep proportions, so we may have to adjust our values */
376         if (params->proportional) {
377                 dest_width = max(dest_width, (int) (dest_height * ratio));
378                 dest_height = max(dest_height, (int) (dest_width / ratio));
379         }
380
381         /* If not the lower right corner is grabbed, we must also reposition
382          * the client by exactly the amount we resized it */
383         if (corner & BORDER_LEFT)
384                 dest_x = old_rect->x + (old_rect->width - dest_width);
385
386         if (corner & BORDER_TOP)
387                 dest_y = old_rect->y + (old_rect->height - dest_height);
388
389         client->rect = (Rect) { dest_x, dest_y, dest_width, dest_height };
390
391         /* resize_client flushes */
392         resize_client(conn, client);
393 }
394
395 /*
396  * Called when the user clicked on a floating window while holding the
397  * floating_modifier and the right mouse button.
398  * Calls the drag_pointer function with the resize_window callback
399  *
400  */
401 void floating_resize_window(xcb_connection_t *conn, Client *client,
402                             bool proportional, xcb_button_press_event_t *event) {
403         DLOG("floating_resize_window\n");
404
405         /* corner saves the nearest corner to the original click. It contains
406          * a bitmask of the nearest borders (BORDER_LEFT, BORDER_RIGHT, …) */
407         border_t corner = 0;
408
409         if (event->event_x <= (client->rect.width / 2))
410                 corner |= BORDER_LEFT;
411         else corner |= BORDER_RIGHT;
412
413         if (event->event_y <= (client->rect.height / 2))
414                 corner |= BORDER_TOP;
415         else corner |= BORDER_RIGHT;
416
417         struct resize_window_callback_params params = { corner, proportional, event };
418
419         drag_pointer(conn, client, event, XCB_NONE, BORDER_TOP /* irrelevant */, resize_window_callback, &params);
420 }
421
422 #endif
423 /*
424  * This function grabs your pointer and lets you drag stuff around (borders).
425  * Every time you move your mouse, an XCB_MOTION_NOTIFY event will be received
426  * and the given callback will be called with the parameters specified (client,
427  * border on which the click originally was), the original rect of the client,
428  * the event and the new coordinates (x, y).
429  *
430  */
431 void drag_pointer(Con *con, xcb_button_press_event_t *event, xcb_window_t
432                 confine_to, border_t border, callback_t callback, void *extra)
433 {
434         xcb_window_t root = xcb_setup_roots_iterator(xcb_get_setup(conn)).data->root;
435         uint32_t new_x, new_y;
436         Rect old_rect;
437         if (con != NULL)
438                 memcpy(&old_rect, &(con->rect), sizeof(Rect));
439
440         /* Grab the pointer */
441         /* TODO: returncode */
442         xcb_grab_pointer(conn, 
443                         false,               /* get all pointer events specified by the following mask */
444                         root,                /* grab the root window */
445                         XCB_EVENT_MASK_BUTTON_RELEASE | XCB_EVENT_MASK_POINTER_MOTION, /* which events to let through */
446                         XCB_GRAB_MODE_ASYNC, /* pointer events should continue as normal */
447                         XCB_GRAB_MODE_ASYNC, /* keyboard mode */
448                         confine_to,          /* confine_to = in which window should the cursor stay */
449                         XCB_NONE,            /* don’t display a special cursor */
450                         XCB_CURRENT_TIME);
451
452         /* Go into our own event loop */
453         xcb_flush(conn);
454
455         xcb_generic_event_t *inside_event, *last_motion_notify = NULL;
456         /* I’ve always wanted to have my own eventhandler… */
457         while ((inside_event = xcb_wait_for_event(conn))) {
458                 /* We now handle all events we can get using xcb_poll_for_event */
459                 do {
460                         /* Same as get_event_handler in xcb */
461                         int nr = inside_event->response_type;
462                         if (nr == 0) {
463                                 /* An error occured */
464                                 //handle_event(NULL, conn, inside_event);
465                                 free(inside_event);
466                                 continue;
467                         }
468                         assert(nr < 256);
469                         nr &= XCB_EVENT_RESPONSE_TYPE_MASK;
470                         assert(nr >= 2);
471
472                         switch (nr) {
473                                 case XCB_BUTTON_RELEASE:
474                                         goto done;
475
476                                 case XCB_MOTION_NOTIFY:
477                                         /* motion_notify events are saved for later */
478                                         FREE(last_motion_notify);
479                                         last_motion_notify = inside_event;
480                                         break;
481
482                                 case XCB_UNMAP_NOTIFY:
483                                         DLOG("Unmap-notify, aborting\n");
484                                         xcb_event_handle(&evenths, inside_event);
485                                         goto done;
486
487                                 default:
488                                         DLOG("Passing to original handler\n");
489                                         /* Use original handler */
490                                         xcb_event_handle(&evenths, inside_event);
491                                         break;
492                         }
493                         if (last_motion_notify != inside_event)
494                                 free(inside_event);
495                 } while ((inside_event = xcb_poll_for_event(conn)) != NULL);
496
497                 if (last_motion_notify == NULL)
498                         continue;
499
500                 new_x = ((xcb_motion_notify_event_t*)last_motion_notify)->root_x;
501                 new_y = ((xcb_motion_notify_event_t*)last_motion_notify)->root_y;
502
503                 callback(con, &old_rect, new_x, new_y, extra);
504                 FREE(last_motion_notify);
505         }
506 done:
507         xcb_ungrab_pointer(conn, XCB_CURRENT_TIME);
508         xcb_flush(conn);
509 }
510
511 #if 0
512 /*
513  * Changes focus in the given direction for floating clients.
514  *
515  * Changing to the left/right means going to the previous/next floating client,
516  * changing to top/bottom means cycling through the Z-index.
517  *
518  */
519 void floating_focus_direction(xcb_connection_t *conn, Client *currently_focused, direction_t direction) {
520         DLOG("floating focus\n");
521
522         if (direction == D_LEFT || direction == D_RIGHT) {
523                 /* Go to the next/previous floating client */
524                 Client *client;
525
526                 while ((client = (direction == D_LEFT ? TAILQ_PREV(currently_focused, floating_clients_head, floating_clients) :
527                                                         TAILQ_NEXT(currently_focused, floating_clients))) !=
528                        TAILQ_END(&(currently_focused->workspace->floating_clients))) {
529                         if (!client->floating)
530                                 continue;
531                         set_focus(conn, client, true);
532                         return;
533                 }
534         }
535 }
536
537 /*
538  * Moves the client 10px to the specified direction.
539  *
540  */
541 void floating_move(xcb_connection_t *conn, Client *currently_focused, direction_t direction) {
542         DLOG("floating move\n");
543
544         Rect destination = currently_focused->rect;
545         Rect *screen = &(currently_focused->workspace->output->rect);
546
547         switch (direction) {
548                 case D_LEFT:
549                         destination.x -= 10;
550                         break;
551                 case D_RIGHT:
552                         destination.x += 10;
553                         break;
554                 case D_UP:
555                         destination.y -= 10;
556                         break;
557                 case D_DOWN:
558                         destination.y += 10;
559                         break;
560                 /* to make static analyzers happy */
561                 default:
562                         break;
563         }
564
565         /* Prevent windows from vanishing completely */
566         if ((int32_t)(destination.x + destination.width - 5) <= (int32_t)screen->x ||
567             (int32_t)(destination.x + 5) >= (int32_t)(screen->x + screen->width) ||
568             (int32_t)(destination.y + destination.height - 5) <= (int32_t)screen->y ||
569             (int32_t)(destination.y + 5) >= (int32_t)(screen->y + screen->height)) {
570                 DLOG("boundary check failed, not moving\n");
571                 return;
572         }
573
574         currently_focused->rect = destination;
575         reposition_client(conn, currently_focused);
576
577         /* Because reposition_client does not send a faked configure event (only resize does),
578          * we need to initiate that on our own */
579         fake_absolute_configure_notify(conn, currently_focused);
580         /* fake_absolute_configure_notify flushes */
581 }
582
583 /*
584  * Hides all floating clients (or show them if they are currently hidden) on
585  * the specified workspace.
586  *
587  */
588 void floating_toggle_hide(xcb_connection_t *conn, Workspace *workspace) {
589         Client *client;
590
591         workspace->floating_hidden = !workspace->floating_hidden;
592         DLOG("floating_hidden is now: %d\n", workspace->floating_hidden);
593         TAILQ_FOREACH(client, &(workspace->floating_clients), floating_clients) {
594                 if (workspace->floating_hidden)
595                         client_unmap(conn, client);
596                 else client_map(conn, client);
597         }
598
599         /* If we just unmapped all floating windows we should ensure that the focus
600          * is set correctly, that ist, to the first non-floating client in stack */
601         if (workspace->floating_hidden)
602                 SLIST_FOREACH(client, &(workspace->focus_stack), focus_clients) {
603                         if (client_is_floating(client))
604                                 continue;
605                         set_focus(conn, client, true);
606                         return;
607                 }
608
609         xcb_flush(conn);
610 }
611 #endif