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