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