]> git.sur5r.net Git - i3/i3/blob - src/handlers.c
Bugfix: Correctly restore the focus to the root screen after unmapping the last clien...
[i3/i3] / src / handlers.c
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * © 2009 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  */
11 #include <stdio.h>
12 #include <assert.h>
13 #include <string.h>
14 #include <stdlib.h>
15 #include <time.h>
16
17 #include <xcb/xcb.h>
18 #include <xcb/xcb_atom.h>
19 #include <xcb/xcb_icccm.h>
20
21 #include <X11/XKBlib.h>
22
23 #include "i3.h"
24 #include "debug.h"
25 #include "table.h"
26 #include "layout.h"
27 #include "commands.h"
28 #include "data.h"
29 #include "xcb.h"
30 #include "util.h"
31 #include "xinerama.h"
32 #include "config.h"
33 #include "queue.h"
34 #include "resize.h"
35 #include "client.h"
36 #include "manage.h"
37 #include "floating.h"
38 #include "workspace.h"
39
40 /* After mapping/unmapping windows, a notify event is generated. However, we don’t want it,
41    since it’d trigger an infinite loop of switching between the different windows when
42    changing workspaces */
43 static SLIST_HEAD(ignore_head, Ignore_Event) ignore_events;
44
45 static void add_ignore_event(const int sequence) {
46         struct Ignore_Event *event = smalloc(sizeof(struct Ignore_Event));
47
48         event->sequence = sequence;
49         event->added = time(NULL);
50
51         SLIST_INSERT_HEAD(&ignore_events, event, ignore_events);
52 }
53
54 /*
55  * Checks if the given sequence is ignored and returns true if so.
56  *
57  */
58 static bool event_is_ignored(const int sequence) {
59         struct Ignore_Event *event;
60         time_t now = time(NULL);
61         for (event = SLIST_FIRST(&ignore_events); event != SLIST_END(&ignore_events);) {
62                 if ((now - event->added) > 5) {
63                         struct Ignore_Event *save = event;
64                         event = SLIST_NEXT(event, ignore_events);
65                         SLIST_REMOVE(&ignore_events, save, Ignore_Event, ignore_events);
66                         free(save);
67                 } else event = SLIST_NEXT(event, ignore_events);
68         }
69
70         SLIST_FOREACH(event, &ignore_events, ignore_events) {
71                 if (event->sequence == sequence) {
72                         SLIST_REMOVE(&ignore_events, event, Ignore_Event, ignore_events);
73                         free(event);
74                         return true;
75                 }
76         }
77
78         return false;
79 }
80
81 /*
82  * Due to bindings like Mode_switch + <a>, we need to bind some keys in XCB_GRAB_MODE_SYNC.
83  * Therefore, we just replay all key presses.
84  *
85  */
86 int handle_key_release(void *ignored, xcb_connection_t *conn, xcb_key_release_event_t *event) {
87         xcb_allow_events(conn, XCB_ALLOW_REPLAY_KEYBOARD, event->time);
88         xcb_flush(conn);
89         return 1;
90 }
91
92 /*
93  * There was a key press. We compare this key code with our bindings table and pass
94  * the bound action to parse_command().
95  *
96  */
97 int handle_key_press(void *ignored, xcb_connection_t *conn, xcb_key_press_event_t *event) {
98         LOG("Keypress %d, state raw = %d\n", event->detail, event->state);
99
100         /* Remove the numlock bit, all other bits are modifiers we can bind to */
101         uint16_t state_filtered = event->state & ~(xcb_numlock_mask | XCB_MOD_MASK_LOCK);
102         LOG("(removed numlock, state = %d)\n", state_filtered);
103         /* Only use the lower 8 bits of the state (modifier masks) so that mouse
104          * button masks are filtered out */
105         state_filtered &= 0xFF;
106         LOG("(removed upper 8 bits, state = %d)\n", state_filtered);
107
108         /* We need to get the keysym group (There are group 1 to group 4, each holding
109            two keysyms (without shift and with shift) using Xkb because X fails to
110            provide them reliably (it works in Xephyr, it does not in real X) */
111         XkbStateRec state;
112         if (XkbGetState(xkbdpy, XkbUseCoreKbd, &state) == Success && (state.group+1) == 2)
113                 state_filtered |= BIND_MODE_SWITCH;
114
115         LOG("(checked mode_switch, state %d)\n", state_filtered);
116
117         /* Find the binding */
118         Binding *bind;
119         TAILQ_FOREACH(bind, &bindings, bindings) {
120                 /* First compare the modifiers */
121                 if (bind->mods != state_filtered)
122                         continue;
123
124                 /* If a symbol was specified by the user, we need to look in
125                  * the array of translated keycodes for the event’s keycode */
126                 if (bind->symbol != NULL) {
127                         if (memmem(bind->translated_to,
128                                    bind->number_keycodes * sizeof(xcb_keycode_t),
129                                    &(event->detail), sizeof(xcb_keycode_t)) != NULL)
130                                 break;
131                 } else {
132                         /* This case is easier: The user specified a keycode */
133                         if (bind->keycode == event->detail)
134                                 break;
135                 }
136         }
137
138         /* No match? Then it was an actively grabbed key, that is with Mode_switch, and
139            the user did not press Mode_switch, so just pass it… */
140         if (bind == TAILQ_END(&bindings)) {
141                 xcb_allow_events(conn, ReplayKeyboard, event->time);
142                 xcb_flush(conn);
143                 return 1;
144         }
145
146         parse_command(conn, bind->command);
147         if (state_filtered & BIND_MODE_SWITCH) {
148                 LOG("Mode_switch -> allow_events(SyncKeyboard)\n");
149                 xcb_allow_events(conn, SyncKeyboard, event->time);
150                 xcb_flush(conn);
151         }
152         return 1;
153 }
154
155 /*
156  * Called with coordinates of an enter_notify event or motion_notify event
157  * to check if the user crossed virtual screen boundaries and adjust the
158  * current workspace, if so.
159  *
160  */
161 static void check_crossing_screen_boundary(uint32_t x, uint32_t y) {
162         i3Screen *screen;
163
164         if ((screen = get_screen_containing(x, y)) == NULL) {
165                 LOG("ERROR: No such screen\n");
166                 return;
167         }
168         if (screen == c_ws->screen)
169                 return;
170
171         c_ws->current_row = current_row;
172         c_ws->current_col = current_col;
173         c_ws = &workspaces[screen->current_workspace];
174         current_row = c_ws->current_row;
175         current_col = c_ws->current_col;
176         LOG("We're now on virtual screen number %d\n", screen->num);
177 }
178
179 /*
180  * When the user moves the mouse pointer onto a window, this callback gets called.
181  *
182  */
183 int handle_enter_notify(void *ignored, xcb_connection_t *conn, xcb_enter_notify_event_t *event) {
184         LOG("enter_notify for %08x, mode = %d, detail %d, serial %d\n", event->event, event->mode, event->detail, event->sequence);
185         if (event->mode != XCB_NOTIFY_MODE_NORMAL) {
186                 LOG("This was not a normal notify, ignoring\n");
187                 return 1;
188         }
189         /* Some events are not interesting, because they were not generated actively by the
190            user, but by reconfiguration of windows */
191         if (event_is_ignored(event->sequence))
192                 return 1;
193
194         /* This was either a focus for a client’s parent (= titlebar)… */
195         Client *client = table_get(&by_parent, event->event);
196         /* …or the client itself */
197         if (client == NULL)
198                 client = table_get(&by_child, event->event);
199
200         /* Check for stack windows */
201         if (client == NULL) {
202                 struct Stack_Window *stack_win;
203                 SLIST_FOREACH(stack_win, &stack_wins, stack_windows)
204                         if (stack_win->window == event->event) {
205                                 client = stack_win->container->currently_focused;
206                                 break;
207                         }
208         }
209
210
211         /* If not, then the user moved his cursor to the root window. In that case, we adjust c_ws */
212         if (client == NULL) {
213                 LOG("Getting screen at %d x %d\n", event->root_x, event->root_y);
214                 check_crossing_screen_boundary(event->root_x, event->root_y);
215                 return 1;
216         }
217
218         /* Do plausibility checks: This event may be useless for us if it occurs on a window
219            which is in a stacked container but not the focused one */
220         if (client->container != NULL &&
221             client->container->mode == MODE_STACK &&
222             client->container->currently_focused != client) {
223                 LOG("Plausibility check says: no\n");
224                 return 1;
225         }
226
227         if (client->workspace != c_ws && client->workspace->screen == c_ws->screen) {
228                 /* This can happen when a client gets assigned to a different workspace than
229                  * the current one (see src/mainx.c:reparent_window). Shortly after it was created,
230                  * an enter_notify will follow. */
231                 LOG("enter_notify for a client on a different workspace but the same screen, ignoring\n");
232                 return 1;
233         }
234
235         set_focus(conn, client, false);
236
237         return 1;
238 }
239
240 /*
241  * When the user moves the mouse but does not change the active window
242  * (e.g. when having no windows opened but moving mouse on the root screen
243  * and crossing virtual screen boundaries), this callback gets called.
244  *
245  */
246 int handle_motion_notify(void *ignored, xcb_connection_t *conn, xcb_motion_notify_event_t *event) {
247         /* Skip events where the pointer was over a child window, we are only
248          * interested in events on the root window. */
249         if (event->child != 0)
250                 return 1;
251
252         check_crossing_screen_boundary(event->root_x, event->root_y);
253
254         return 1;
255 }
256
257 /*
258  * Called when the keyboard mapping changes (for example by using Xmodmap),
259  * we need to update our key bindings then (re-translate symbols).
260  *
261  */
262 int handle_mapping_notify(void *ignored, xcb_connection_t *conn, xcb_mapping_notify_event_t *event) {
263         if (event->request != XCB_MAPPING_KEYBOARD &&
264             event->request != XCB_MAPPING_MODIFIER)
265                 return 0;
266
267         LOG("Received mapping_notify for keyboard or modifier mapping, re-grabbing keys\n");
268         xcb_refresh_keyboard_mapping(keysyms, event);
269
270         xcb_get_numlock_mask(conn);
271
272         ungrab_all_keys(conn);
273         grab_all_keys(conn);
274
275         return 0;
276 }
277
278 /*
279  * Checks if the button press was on a stack window, handles focus setting and returns true
280  * if so, or false otherwise.
281  *
282  */
283 static bool button_press_stackwin(xcb_connection_t *conn, xcb_button_press_event_t *event) {
284         struct Stack_Window *stack_win;
285         SLIST_FOREACH(stack_win, &stack_wins, stack_windows) {
286                 if (stack_win->window != event->event)
287                         continue;
288
289                 /* A stack window was clicked, we check if it was button4 or button5
290                    which are scroll up / scroll down. */
291                 if (event->detail == XCB_BUTTON_INDEX_4 || event->detail == XCB_BUTTON_INDEX_5) {
292                         direction_t direction = (event->detail == XCB_BUTTON_INDEX_4 ? D_UP : D_DOWN);
293                         focus_window_in_container(conn, CUR_CELL, direction);
294                         return true;
295                 }
296
297                 /* It was no scrolling, so we calculate the destination client by
298                    dividing the Y position of the event through the height of a window
299                    decoration and then set the focus to this client. */
300                 i3Font *font = load_font(conn, config.font);
301                 int decoration_height = (font->height + 2 + 2);
302                 int destination = (event->event_y / decoration_height),
303                     c = 0;
304                 Client *client;
305
306                 LOG("Click on stack_win for client %d\n", destination);
307                 CIRCLEQ_FOREACH(client, &(stack_win->container->clients), clients)
308                         if (c++ == destination) {
309                                 set_focus(conn, client, true);
310                                 return true;
311                         }
312
313                 return true;
314         }
315
316         return false;
317 }
318
319 /*
320  * Checks if the button press was on a bar, switches to the workspace and returns true
321  * if so, or false otherwise.
322  *
323  */
324 static bool button_press_bar(xcb_connection_t *conn, xcb_button_press_event_t *event) {
325         i3Screen *screen;
326         TAILQ_FOREACH(screen, virtual_screens, screens) {
327                 if (screen->bar != event->event)
328                         continue;
329
330                 LOG("Click on a bar\n");
331
332                 /* Check if the button was one of button4 or button5 (scroll up / scroll down) */
333                 if (event->detail == XCB_BUTTON_INDEX_4 || event->detail == XCB_BUTTON_INDEX_5) {
334                         int add = (event->detail == XCB_BUTTON_INDEX_4 ? -1 : 1);
335                         for (int i = c_ws->num + add; (i >= 0) && (i < 10); i += add)
336                                 if (workspaces[i].screen == screen) {
337                                         workspace_show(conn, i+1);
338                                         return true;
339                                 }
340                         return true;
341                 }
342                 int drawn = 0;
343                 /* Because workspaces can be on different screens, we need to loop
344                    through all of them and decide to count it based on its ->screen */
345                 for (int i = 0; i < 10; i++) {
346                         if (workspaces[i].screen != screen)
347                                 continue;
348                         LOG("Checking if click was on workspace %d with drawn = %d, tw = %d\n",
349                                         i, drawn, workspaces[i].text_width);
350                         if (event->event_x > (drawn + 1) &&
351                             event->event_x <= (drawn + 1 + workspaces[i].text_width + 5 + 5)) {
352                                 workspace_show(conn, i+1);
353                                 return true;
354                         }
355
356                         drawn += workspaces[i].text_width + 5 + 5 + 2;
357                 }
358                 return true;
359         }
360
361         return false;
362 }
363
364 int handle_button_press(void *ignored, xcb_connection_t *conn, xcb_button_press_event_t *event) {
365         LOG("Button %d pressed\n", event->state);
366         /* This was either a focus for a client’s parent (= titlebar)… */
367         Client *client = table_get(&by_child, event->event);
368         bool border_click = false;
369         if (client == NULL) {
370                 client = table_get(&by_parent, event->event);
371                 border_click = true;
372         }
373         /* See if this was a click with the configured modifier. If so, we need
374          * to move around the client if it was floating. if not, we just process
375          * as usual. */
376         if (config.floating_modifier != 0 &&
377             (event->state & config.floating_modifier) != 0) {
378                 if (client == NULL) {
379                         LOG("Not handling, floating_modifier was pressed and no client found\n");
380                         return 1;
381                 }
382                 if (client_is_floating(client)) {
383                         floating_drag_window(conn, client, event);
384                         return 1;
385                 }
386         }
387
388         if (client == NULL) {
389                 /* The client was neither on a client’s titlebar nor on a client itself, maybe on a stack_window? */
390                 if (button_press_stackwin(conn, event))
391                         return 1;
392
393                 /* Or on a bar? */
394                 if (button_press_bar(conn, event))
395                         return 1;
396
397                 LOG("Could not handle this button press\n");
398                 return 1;
399         }
400
401         /* Set focus in any case */
402         set_focus(conn, client, true);
403
404         /* Let’s see if this was on the borders (= resize). If not, we’re done */
405         LOG("press button on x=%d, y=%d\n", event->event_x, event->event_y);
406         resize_orientation_t orientation = O_VERTICAL;
407         Container *con = client->container;
408         int first, second;
409
410         if (client->dock) {
411                 LOG("dock. done.\n");
412                 xcb_allow_events(conn, XCB_ALLOW_REPLAY_POINTER, event->time);
413                 xcb_flush(conn);
414                 return 1;
415         }
416
417         LOG("event->event_x = %d, client->rect.width = %d\n", event->event_x, client->rect.width);
418
419         /* Some clients (xfontsel for example) seem to pass clicks on their
420          * window to the parent window, thus we receive an event here which in
421          * reality is a border_click. Check for the position and fix state. */
422         if (border_click &&
423             event->event_x >= client->child_rect.x &&
424             event->event_x <= (client->child_rect.x + client->child_rect.width) &&
425             event->event_y >= client->child_rect.y &&
426             event->event_y <= (client->child_rect.y + client->child_rect.height)) {
427                 LOG("Fixing border_click = false because of click in child\n");
428                 border_click = false;
429         }
430
431         if (!border_click) {
432                 LOG("client. done.\n");
433                 xcb_allow_events(conn, XCB_ALLOW_REPLAY_POINTER, event->time);
434                 /* Floating clients should be raised on click */
435                 if (client_is_floating(client))
436                         xcb_raise_window(conn, client->frame);
437                 xcb_flush(conn);
438                 return 1;
439         }
440
441         /* Don’t handle events inside the titlebar, only borders are interesting */
442         i3Font *font = load_font(conn, config.font);
443         if (event->event_y >= 2 && event->event_y <= (font->height + 2 + 2)) {
444                 LOG("click on titlebar\n");
445
446                 /* Floating clients can be dragged by grabbing their titlebar */
447                 if (client_is_floating(client)) {
448                         /* Firstly, we raise it. Maybe the user just wanted to raise it without grabbing */
449                         xcb_raise_window(conn, client->frame);
450                         xcb_flush(conn);
451
452                         floating_drag_window(conn, client, event);
453                 }
454                 return 1;
455         }
456
457         if (client_is_floating(client))
458                 return floating_border_click(conn, client, event);
459
460         if (event->event_y < 2) {
461                 /* This was a press on the top border */
462                 if (con->row == 0)
463                         return 1;
464                 first = con->row - 1;
465                 second = con->row;
466                 orientation = O_HORIZONTAL;
467         } else if (event->event_y >= (client->rect.height - 2)) {
468                 /* …bottom border */
469                 first = con->row + (con->rowspan - 1);
470                 if (!cell_exists(con->col, first) ||
471                     (first == (con->workspace->rows-1)))
472                         return 1;
473
474                 second = first + 1;
475                 orientation = O_HORIZONTAL;
476         } else if (event->event_x <= 2) {
477                 /* …left border */
478                 if (con->col == 0)
479                         return 1;
480
481                 first = con->col - 1;
482                 second = con->col;
483         } else if (event->event_x > 2) {
484                 /* …right border */
485                 first = con->col + (con->colspan - 1);
486                 LOG("column %d\n", first);
487
488                 if (!cell_exists(first, con->row) ||
489                     (first == (con->workspace->cols-1)))
490                         return 1;
491
492                 second = first + 1;
493         }
494
495         return resize_graphical_handler(conn, con->workspace, first, second, orientation, event);
496 }
497
498 /*
499  * A new window appeared on the screen (=was mapped), so let’s manage it.
500  *
501  */
502 int handle_map_request(void *prophs, xcb_connection_t *conn, xcb_map_request_event_t *event) {
503         xcb_get_window_attributes_cookie_t cookie;
504
505         cookie = xcb_get_window_attributes_unchecked(conn, event->window);
506
507         LOG("window = 0x%08x, serial is %d.\n", event->window, event->sequence);
508         add_ignore_event(event->sequence);
509
510         manage_window(prophs, conn, event->window, cookie, false);
511         return 1;
512 }
513
514 /*
515  * Configure requests are received when the application wants to resize windows on their own.
516  *
517  * We generate a synthethic configure notify event to signalize the client its "new" position.
518  *
519  */
520 int handle_configure_request(void *prophs, xcb_connection_t *conn, xcb_configure_request_event_t *event) {
521         LOG("window 0x%08x wants to be at %dx%d with %dx%d\n",
522             event->window, event->x, event->y, event->width, event->height);
523
524         Client *client = table_get(&by_child, event->window);
525         if (client == NULL) {
526                 uint32_t mask = 0;
527                 uint32_t values[7];
528                 int c = 0;
529 #define COPY_MASK_MEMBER(mask_member, event_member) do { \
530                 if (event->value_mask & mask_member) { \
531                         mask |= mask_member; \
532                         values[c++] = event->event_member; \
533                 } \
534 } while (0)
535
536                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_X, x);
537                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_Y, y);
538                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_WIDTH, width);
539                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_HEIGHT, height);
540                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_BORDER_WIDTH, border_width);
541                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_SIBLING, sibling);
542                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_STACK_MODE, stack_mode);
543
544                 xcb_configure_window(conn, event->window, mask, values);
545                 xcb_flush(conn);
546
547                 return 1;
548         }
549
550         if (client->fullscreen) {
551                 LOG("Client is in fullscreen mode\n");
552
553                 Rect child_rect = client->workspace->rect;
554                 child_rect.x = child_rect.y = 0;
555                 fake_configure_notify(conn, child_rect, client->child);
556
557                 return 1;
558         }
559
560         /* Floating clients can be reconfigured */
561         if (client_is_floating(client)) {
562                 i3Font *font = load_font(conn, config.font);
563
564                 if (event->value_mask & XCB_CONFIG_WINDOW_X)
565                         client->rect.x = event->x;
566                 if (event->value_mask & XCB_CONFIG_WINDOW_Y)
567                         client->rect.y = event->y;
568                 if (event->value_mask & XCB_CONFIG_WINDOW_WIDTH)
569                         client->rect.width = event->width + 2 + 2;
570                 if (event->value_mask & XCB_CONFIG_WINDOW_HEIGHT)
571                         client->rect.height = event->height + (font->height + 2 + 2) + 2;
572
573                 LOG("Accepted new position/size for floating client: (%d, %d) size %d x %d\n",
574                     client->rect.x, client->rect.y, client->rect.width, client->rect.height);
575
576                 /* Push the new position/size to X11 */
577                 reposition_client(conn, client);
578                 resize_client(conn, client);
579                 xcb_flush(conn);
580
581                 return 1;
582         }
583
584         if (client->fullscreen) {
585                 LOG("Client is in fullscreen mode\n");
586
587                 Rect child_rect = client->container->workspace->rect;
588                 child_rect.x = child_rect.y = 0;
589                 fake_configure_notify(conn, child_rect, client->child);
590
591                 return 1;
592         }
593
594         fake_absolute_configure_notify(conn, client);
595
596         return 1;
597 }
598
599 /*
600  * Configuration notifies are only handled because we need to set up ignore for the following
601  * enter notify events
602  *
603  */
604 int handle_configure_event(void *prophs, xcb_connection_t *conn, xcb_configure_notify_event_t *event) {
605         xcb_window_t root = xcb_setup_roots_iterator(xcb_get_setup(conn)).data->root;
606
607         /* We ignore this sequence twice because events for child and frame should be ignored */
608         add_ignore_event(event->sequence);
609         add_ignore_event(event->sequence);
610
611         if (event->event == root) {
612                 LOG("event->x = %d, ->y = %d, ->width = %d, ->height = %d\n", event->x, event->y, event->width, event->height);
613                 LOG("reconfigure of the root window, need to xinerama\n");
614                 /* FIXME: Somehow, this is occuring too often. Therefore, we check for 0/0,
615                    but is there a better way? */
616                 if (event->x == 0 && event->y == 0)
617                         xinerama_requery_screens(conn);
618                 return 1;
619         }
620
621         return 1;
622 }
623
624 /*
625  * Our window decorations were unmapped. That means, the window will be killed now,
626  * so we better clean up before.
627  *
628  */
629 int handle_unmap_notify_event(void *data, xcb_connection_t *conn, xcb_unmap_notify_event_t *event) {
630         xcb_window_t root = xcb_setup_roots_iterator(xcb_get_setup(conn)).data->root;
631
632         add_ignore_event(event->sequence);
633
634         Client *client = table_get(&by_child, event->window);
635         /* First, we need to check if the client is awaiting an unmap-request which
636            was generated by us reparenting the window. In that case, we just ignore it. */
637         if (client != NULL && client->awaiting_useless_unmap) {
638                 client->awaiting_useless_unmap = false;
639                 return 1;
640         }
641
642         LOG("event->window = %08x, event->event = %08x\n", event->window, event->event);
643         LOG("UnmapNotify for 0x%08x (received from 0x%08x)\n", event->window, event->event);
644         if (client == NULL) {
645                 LOG("not a managed window. Ignoring.\n");
646
647                 /* This was most likely the destroyed frame of a client which is
648                  * currently being unmapped, so we add this sequence (again!) to
649                  * the ignore list (enter_notify events will get sent for both,
650                  * the child and its frame). */
651                 add_ignore_event(event->sequence);
652
653                 return 0;
654         }
655
656         client = table_remove(&by_child, event->window);
657
658         /* If this was the fullscreen client, we need to unset it */
659         if (client->fullscreen)
660                 client->workspace->fullscreen_client = NULL;
661
662         /* Clients without a container are either floating or dock windows */
663         if (client->container != NULL) {
664                 Container *con = client->container;
665
666                 /* Remove the client from the list of clients */
667                 client_remove_from_container(conn, client, con, true);
668
669                 /* Set focus to the last focused client in this container */
670                 con->currently_focused = get_last_focused_client(conn, con, NULL);
671
672                 /* Only if this is the active container, we need to really change focus */
673                 if ((con->currently_focused != NULL) && ((con == CUR_CELL) || client->fullscreen))
674                         set_focus(conn, con->currently_focused, true);
675         } else if (client_is_floating(client)) {
676                 LOG("Removing from floating clients\n");
677                 TAILQ_REMOVE(&(client->workspace->floating_clients), client, floating_clients);
678                 SLIST_REMOVE(&(client->workspace->focus_stack), client, Client, focus_clients);
679         }
680
681         if (client->dock) {
682                 LOG("Removing from dock clients\n");
683                 SLIST_REMOVE(&(client->workspace->screen->dock_clients), client, Client, dock_clients);
684         }
685
686         LOG("child of 0x%08x.\n", client->frame);
687         xcb_reparent_window(conn, client->child, root, 0, 0);
688
689         client_unmap(conn, client);
690
691         xcb_destroy_window(conn, client->frame);
692         xcb_flush(conn);
693         table_remove(&by_parent, client->frame);
694
695         if (client->container != NULL) {
696                 Workspace *workspace = client->container->workspace;
697                 cleanup_table(conn, workspace);
698                 fix_colrowspan(conn, workspace);
699         }
700
701         /* Let’s see how many clients there are left on the workspace to delete it if it’s empty */
702         bool workspace_empty = SLIST_EMPTY(&(client->workspace->focus_stack));
703         bool workspace_active = false;
704         Client *to_focus = (!workspace_empty ? SLIST_FIRST(&(client->workspace->focus_stack)) : NULL);
705
706         /* If this workspace is currently active, we don’t delete it */
707         i3Screen *screen;
708         TAILQ_FOREACH(screen, virtual_screens, screens)
709                 if (screen->current_workspace == client->workspace->num) {
710                         workspace_active = true;
711                         workspace_empty = false;
712                         break;
713                 }
714
715         if (workspace_empty)
716                 client->workspace->screen = NULL;
717
718         FREE(client->window_class);
719         FREE(client->name);
720         free(client);
721
722         render_layout(conn);
723
724         /* Ensure the focus is set to the next client in the focus stack or to
725          * the screen itself (if we do not focus the screen, it can happen that
726          * the focus is "nowhere" and thus keypress events will not be received
727          * by i3, thus the user cannot use any hotkeys). */
728         if (workspace_active) {
729                 if (to_focus != NULL)
730                         set_focus(conn, to_focus, true);
731                 else {
732                         LOG("Restoring focus to root screen\n");
733                         xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, root, XCB_CURRENT_TIME);
734                         xcb_flush(conn);
735                 }
736         }
737
738         return 1;
739 }
740
741 /*
742  * Called when a window changes its title
743  *
744  */
745 int handle_windowname_change(void *data, xcb_connection_t *conn, uint8_t state,
746                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
747         if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
748                 LOG("_NET_WM_NAME not specified, not changing\n");
749                 return 1;
750         }
751         Client *client = table_get(&by_child, window);
752         if (client == NULL)
753                 return 1;
754
755         /* Save the old pointer to make the update atomic */
756         char *new_name;
757         int new_len;
758         asprintf(&new_name, "%.*s", xcb_get_property_value_length(prop), (char*)xcb_get_property_value(prop));
759         /* Convert it to UCS-2 here for not having to convert it later every time we want to pass it to X */
760         char *ucs2_name = convert_utf8_to_ucs2(new_name, &new_len);
761         LOG("_NET_WM_NAME changed to \"%s\"\n", new_name);
762         free(new_name);
763
764         /* Check if they are the same and don’t update if so.
765            Note the use of new_len * 2 to check all bytes as each glyph takes 2 bytes.
766            Also note the use of memcmp() instead of strncmp() because the latter stops on nullbytes,
767            but UCS-2 uses nullbytes to fill up glyphs which only use one byte. */
768         if ((new_len == client->name_len) &&
769             (client->name != NULL) &&
770             (memcmp(client->name, ucs2_name, new_len * 2) == 0)) {
771                 free(ucs2_name);
772                 return 1;
773         }
774
775         char *old_name = client->name;
776         client->name = ucs2_name;
777         client->name_len = new_len;
778         client->uses_net_wm_name = true;
779
780         FREE(old_name);
781
782         /* If the client is a dock window, we don’t need to render anything */
783         if (client->dock)
784                 return 1;
785
786         if (client->container != NULL && client->container->mode == MODE_STACK)
787                 render_container(conn, client->container);
788         else decorate_window(conn, client, client->frame, client->titlegc, 0);
789         xcb_flush(conn);
790
791         return 1;
792 }
793
794 /*
795  * We handle legacy window names (titles) which are in COMPOUND_TEXT encoding. However, we
796  * just pass them along, so when containing non-ASCII characters, those will be rendering
797  * incorrectly. In order to correctly render unicode window titles in i3, an application
798  * has to set _NET_WM_NAME, which is in UTF-8 encoding.
799  *
800  * On every update, a message is put out to the user, so he may improve the situation and
801  * update applications which display filenames in their title to correctly use
802  * _NET_WM_NAME and therefore support unicode.
803  *
804  */
805 int handle_windowname_change_legacy(void *data, xcb_connection_t *conn, uint8_t state,
806                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
807         if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
808                 LOG("prop == NULL\n");
809                 return 1;
810         }
811         Client *client = table_get(&by_child, window);
812         if (client == NULL)
813                 return 1;
814
815         /* Client capable of _NET_WM_NAME, ignore legacy name changes */
816         if (client->uses_net_wm_name)
817                 return 1;
818
819         /* Save the old pointer to make the update atomic */
820         char *new_name;
821         if (asprintf(&new_name, "%.*s", xcb_get_property_value_length(prop), (char*)xcb_get_property_value(prop)) == -1) {
822                 perror("Could not get old name");
823                 LOG("Could not get old name\n");
824                 return 1;
825         }
826         /* Convert it to UCS-2 here for not having to convert it later every time we want to pass it to X */
827         LOG("WM_NAME changed to \"%s\"\n", new_name);
828
829         /* Check if they are the same and don’t update if so. */
830         if (client->name != NULL &&
831             strlen(new_name) == strlen(client->name) &&
832             strcmp(client->name, new_name) == 0) {
833                 free(new_name);
834                 return 1;
835         }
836
837         LOG("Using legacy window title. Note that in order to get Unicode window titles in i3, "
838             "the application has to set _NET_WM_NAME which is in UTF-8 encoding.\n");
839
840         char *old_name = client->name;
841         client->name = new_name;
842         client->name_len = -1;
843
844         if (old_name != NULL)
845                 free(old_name);
846
847         /* If the client is a dock window, we don’t need to render anything */
848         if (client->dock)
849                 return 1;
850
851         if (client->container != NULL && client->container->mode == MODE_STACK)
852                 render_container(conn, client->container);
853         else decorate_window(conn, client, client->frame, client->titlegc, 0);
854         xcb_flush(conn);
855
856         return 1;
857 }
858
859 /*
860  * Updates the client’s WM_CLASS property
861  *
862  */
863 int handle_windowclass_change(void *data, xcb_connection_t *conn, uint8_t state,
864                              xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
865         if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
866                 LOG("prop == NULL\n");
867                 return 1;
868         }
869         Client *client = table_get(&by_child, window);
870         if (client == NULL)
871                 return 1;
872         char *new_class;
873         if (asprintf(&new_class, "%.*s", xcb_get_property_value_length(prop), (char*)xcb_get_property_value(prop)) == -1) {
874                 perror("Could not get window class");
875                 LOG("Could not get window class\n");
876                 return 1;
877         }
878
879         LOG("WM_CLASS changed to %s\n", new_class);
880         char *old_class = client->window_class;
881         client->window_class = new_class;
882         FREE(old_class);
883
884         if (!client->initialized)
885                 return 1;
886
887         if (strcmp(new_class, "tools") == 0 || strcmp(new_class, "Dialog") == 0) {
888                 LOG("tool/dialog window, should we put it floating?\n");
889                 if (client->floating == FLOATING_AUTO_OFF)
890                         toggle_floating_mode(conn, client, true);
891         }
892
893         return 1;
894 }
895
896 /*
897  * Expose event means we should redraw our windows (= title bar)
898  *
899  */
900 int handle_expose_event(void *data, xcb_connection_t *conn, xcb_expose_event_t *event) {
901         /* event->count is the number of minimum remaining expose events for this window, so we
902            skip all events but the last one */
903         if (event->count != 0)
904                 return 1;
905         LOG("window = %08x\n", event->window);
906
907         Client *client = table_get(&by_parent, event->window);
908         if (client == NULL) {
909                 /* There was no client in the table, so this is probably an expose event for
910                    one of our stack_windows. */
911                 struct Stack_Window *stack_win;
912                 SLIST_FOREACH(stack_win, &stack_wins, stack_windows)
913                         if (stack_win->window == event->window) {
914                                 render_container(conn, stack_win->container);
915                                 return 1;
916                         }
917
918                 /* …or one of the bars? */
919                 i3Screen *screen;
920                 TAILQ_FOREACH(screen, virtual_screens, screens)
921                         if (screen->bar == event->window)
922                                 render_layout(conn);
923                 return 1;
924         }
925
926         if (client->dock)
927                 return 1;
928
929         if (client->container == NULL || client->container->mode != MODE_STACK)
930                 decorate_window(conn, client, client->frame, client->titlegc, 0);
931         else {
932                 uint32_t background_color;
933                 /* Distinguish if the window is currently focused… */
934                 if (CUR_CELL->currently_focused == client)
935                         background_color = config.client.focused.background;
936                 /* …or if it is the focused window in a not focused container */
937                 else background_color = config.client.focused_inactive.background;
938
939                 /* Set foreground color to current focused color, line width to 2 */
940                 uint32_t values[] = {background_color, 2};
941                 xcb_change_gc(conn, client->titlegc, XCB_GC_FOREGROUND | XCB_GC_LINE_WIDTH, values);
942
943                 /* Draw the border, the ±1 is for line width = 2 */
944                 xcb_point_t points[] = {{1, 0},                                           /* left upper edge */
945                                         {1, client->rect.height-1},                       /* left bottom edge */
946                                         {client->rect.width-1, client->rect.height-1},    /* right bottom edge */
947                                         {client->rect.width-1, 0}};                       /* right upper edge */
948                 xcb_poly_line(conn, XCB_COORD_MODE_ORIGIN, client->frame, client->titlegc, 4, points);
949
950                 /* Draw a black background */
951                 xcb_change_gc_single(conn, client->titlegc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#000000"));
952                 xcb_rectangle_t crect = {2, 0, client->rect.width - (2 + 2), client->rect.height - 2};
953                 xcb_poly_fill_rectangle(conn, client->frame, client->titlegc, 1, &crect);
954         }
955         xcb_flush(conn);
956         return 1;
957 }
958
959 /*
960  * Handle client messages (EWMH)
961  *
962  */
963 int handle_client_message(void *data, xcb_connection_t *conn, xcb_client_message_event_t *event) {
964         if (event->type == atoms[_NET_WM_STATE]) {
965                 if (event->format != 32 || event->data.data32[1] != atoms[_NET_WM_STATE_FULLSCREEN])
966                         return 0;
967
968                 Client *client = table_get(&by_child, event->window);
969                 if (client == NULL)
970                         return 0;
971
972                 /* Check if the fullscreen state should be toggled */
973                 if ((client->fullscreen &&
974                      (event->data.data32[0] == _NET_WM_STATE_REMOVE ||
975                       event->data.data32[0] == _NET_WM_STATE_TOGGLE)) ||
976                     (!client->fullscreen &&
977                      (event->data.data32[0] == _NET_WM_STATE_ADD ||
978                       event->data.data32[0] == _NET_WM_STATE_TOGGLE)))
979                         client_toggle_fullscreen(conn, client);
980         } else {
981                 LOG("unhandled clientmessage\n");
982                 return 0;
983         }
984
985         return 1;
986 }
987
988 int handle_window_type(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
989                         xcb_atom_t atom, xcb_get_property_reply_t *property) {
990         /* TODO: Implement this one. To do this, implement a little test program which sleep(1)s
991          before changing this property. */
992         LOG("_NET_WM_WINDOW_TYPE changed, this is not yet implemented.\n");
993         return 0;
994 }
995
996 /*
997  * Handles the size hints set by a window, but currently only the part necessary for displaying
998  * clients proportionally inside their frames (mplayer for example)
999  *
1000  * See ICCCM 4.1.2.3 for more details
1001  *
1002  */
1003 int handle_normal_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
1004                         xcb_atom_t name, xcb_get_property_reply_t *reply) {
1005         Client *client = table_get(&by_child, window);
1006         if (client == NULL) {
1007                 LOG("Received WM_SIZE_HINTS for unknown client\n");
1008                 return 1;
1009         }
1010         xcb_size_hints_t size_hints;
1011
1012         CLIENT_LOG(client);
1013
1014         /* If the hints were already in this event, use them, if not, request them */
1015         if (reply != NULL)
1016                 xcb_get_wm_size_hints_from_reply(&size_hints, reply);
1017         else
1018                 xcb_get_wm_normal_hints_reply(conn, xcb_get_wm_normal_hints_unchecked(conn, client->child), &size_hints, NULL);
1019
1020         if ((size_hints.flags & XCB_SIZE_HINT_P_MIN_SIZE)) {
1021                 // TODO: Minimum size is not yet implemented
1022                 //LOG("Minimum size: %d (width) x %d (height)\n", size_hints.min_width, size_hints.min_height);
1023         }
1024
1025         if ((size_hints.flags & XCB_SIZE_HINT_P_RESIZE_INC)) {
1026                 bool changed = false;
1027
1028                 if (size_hints.width_inc > 0)
1029                         if (client->width_increment != size_hints.width_inc) {
1030                                 client->width_increment = size_hints.width_inc;
1031                                 changed = true;
1032                         }
1033                 if (size_hints.height_inc > 0)
1034                         if (client->height_increment != size_hints.height_inc) {
1035                                 client->height_increment = size_hints.height_inc;
1036                                 changed = true;
1037                         }
1038
1039                 if (changed) {
1040                         resize_client(conn, client);
1041                         xcb_flush(conn);
1042                 }
1043         }
1044
1045         int base_width = 0, base_height = 0;
1046
1047         /* base_width/height are the desired size of the window.
1048            We check if either the program-specified size or the program-specified
1049            min-size is available */
1050         if (size_hints.flags & XCB_SIZE_HINT_P_SIZE) {
1051                 base_width = size_hints.base_width;
1052                 base_height = size_hints.base_height;
1053         } else if (size_hints.flags & XCB_SIZE_HINT_P_MIN_SIZE) {
1054                 base_width = size_hints.min_width;
1055                 base_height = size_hints.min_height;
1056         }
1057
1058         client->base_width = base_width;
1059         client->base_height = base_height;
1060
1061         /* If no aspect ratio was set or if it was invalid, we ignore the hints */
1062         if (!(size_hints.flags & XCB_SIZE_HINT_P_ASPECT) ||
1063             (size_hints.min_aspect_num <= 0) ||
1064             (size_hints.min_aspect_den <= 0)) {
1065                 return 1;
1066         }
1067
1068         double width = client->rect.width - base_width;
1069         double height = client->rect.height - base_height;
1070         /* Convert numerator/denominator to a double */
1071         double min_aspect = (double)size_hints.min_aspect_num / size_hints.min_aspect_den;
1072         double max_aspect = (double)size_hints.max_aspect_num / size_hints.min_aspect_den;
1073
1074         LOG("Aspect ratio set: minimum %f, maximum %f\n", min_aspect, max_aspect);
1075         LOG("width = %f, height = %f\n", width, height);
1076
1077         /* Sanity checks, this is user-input, in a way */
1078         if (max_aspect <= 0 || min_aspect <= 0 || height == 0 || (width / height) <= 0)
1079                 return 1;
1080
1081         /* Check if we need to set proportional_* variables using the correct ratio */
1082         if ((width / height) < min_aspect) {
1083                 client->proportional_width = width;
1084                 client->proportional_height = width / min_aspect;
1085         } else if ((width / height) > max_aspect) {
1086                 client->proportional_width = width;
1087                 client->proportional_height = width / max_aspect;
1088         } else return 1;
1089
1090         client->force_reconfigure = true;
1091
1092         if (client->container != NULL) {
1093                 render_container(conn, client->container);
1094                 xcb_flush(conn);
1095         }
1096
1097         return 1;
1098 }
1099
1100 /*
1101  * Handles the transient for hints set by a window, signalizing that this window is a popup window
1102  * for some other window.
1103  *
1104  * See ICCCM 4.1.2.6 for more details
1105  *
1106  */
1107 int handle_transient_for(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
1108                          xcb_atom_t name, xcb_get_property_reply_t *reply) {
1109         Client *client = table_get(&by_child, window);
1110         if (client == NULL) {
1111                 LOG("No such client\n");
1112                 return 1;
1113         }
1114
1115         xcb_window_t transient_for;
1116
1117         if (reply != NULL) {
1118                 if (!xcb_get_wm_transient_for_from_reply(&transient_for, reply))
1119                         return 1;
1120         } else {
1121                 if (!xcb_get_wm_transient_for_reply(conn, xcb_get_wm_transient_for_unchecked(conn, window),
1122                                                     &transient_for, NULL))
1123                         return 1;
1124         }
1125
1126         if (client->floating == FLOATING_AUTO_OFF) {
1127                 LOG("This is a popup window, putting into floating\n");
1128                 toggle_floating_mode(conn, client, true);
1129         }
1130
1131         return 1;
1132 }
1133
1134 /*
1135  * Handles changes of the WM_CLIENT_LEADER atom which specifies if this is a
1136  * toolwindow (or similar) and to which window it belongs (logical parent).
1137  *
1138  */
1139 int handle_clientleader_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
1140                         xcb_atom_t name, xcb_get_property_reply_t *prop) {
1141         if (prop == NULL) {
1142                 prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn,
1143                                         false, window, WM_CLIENT_LEADER, WINDOW, 0, 32), NULL);
1144                 if (prop == NULL)
1145                         return 1;
1146         }
1147
1148         Client *client = table_get(&by_child, window);
1149         if (client == NULL)
1150                 return 1;
1151
1152         xcb_window_t *leader = xcb_get_property_value(prop);
1153         if (leader == NULL || *leader == 0)
1154                 return 1;
1155
1156         LOG("Client leader changed to %08x\n", *leader);
1157
1158         client->leader = *leader;
1159
1160         return 1;
1161 }