]> git.sur5r.net Git - i3/i3/blob - src/handlers.c
174b56c380bb6e55e37e96c2bf65c9f58729f2ac
[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_wm.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
35 /* After mapping/unmapping windows, a notify event is generated. However, we don’t want it,
36    since it’d trigger an infinite loop of switching between the different windows when
37    changing workspaces */
38 static SLIST_HEAD(ignore_head, Ignore_Event) ignore_events;
39
40 static void add_ignore_event(const int sequence) {
41         struct Ignore_Event *event = smalloc(sizeof(struct Ignore_Event));
42
43         event->sequence = sequence;
44         event->added = time(NULL);
45
46         LOG("Adding sequence %d to ignorelist\n", sequence);
47
48         SLIST_INSERT_HEAD(&ignore_events, event, ignore_events);
49 }
50
51 /*
52  * Checks if the given sequence is ignored and returns true if so.
53  *
54  */
55 static bool event_is_ignored(const int sequence) {
56         struct Ignore_Event *event;
57         time_t now = time(NULL);
58         for (event = SLIST_FIRST(&ignore_events); event != SLIST_END(&ignore_events);) {
59                 if ((now - event->added) > 5) {
60                         LOG("Entry is older than five seconds, cleaning up\n");
61                         struct Ignore_Event *save = event;
62                         event = SLIST_NEXT(event, ignore_events);
63                         SLIST_REMOVE(&ignore_events, save, Ignore_Event, ignore_events);
64                         free(save);
65                 } else event = SLIST_NEXT(event, ignore_events);
66         }
67
68         SLIST_FOREACH(event, &ignore_events, ignore_events) {
69                 if (event->sequence == sequence) {
70                         LOG("Ignoring event (sequence %d)\n", sequence);
71                         SLIST_REMOVE(&ignore_events, event, Ignore_Event, ignore_events);
72                         return true;
73                 }
74         }
75
76         return false;
77 }
78
79 /*
80  * Due to bindings like Mode_switch + <a>, we need to bind some keys in XCB_GRAB_MODE_SYNC.
81  * Therefore, we just replay all key presses.
82  *
83  */
84 int handle_key_release(void *ignored, xcb_connection_t *conn, xcb_key_release_event_t *event) {
85         LOG("got key release, just passing\n");
86         xcb_allow_events(conn, XCB_ALLOW_REPLAY_KEYBOARD, event->time);
87         xcb_flush(conn);
88         return 1;
89 }
90
91 /*
92  * There was a key press. We compare this key code with our bindings table and pass
93  * the bound action to parse_command().
94  *
95  */
96 int handle_key_press(void *ignored, xcb_connection_t *conn, xcb_key_press_event_t *event) {
97         LOG("Keypress %d\n", event->detail);
98
99         /* We need to get the keysym group (There are group 1 to group 4, each holding
100            two keysyms (without shift and with shift) using Xkb because X fails to
101            provide them reliably (it works in Xephyr, it does not in real X) */
102         XkbStateRec state;
103         if (XkbGetState(xkbdpy, XkbUseCoreKbd, &state) == Success && (state.group+1) == 2)
104                 event->state |= 0x2;
105
106         LOG("state %d\n", event->state);
107
108         /* Remove the numlock bit, all other bits are modifiers we can bind to */
109         uint16_t state_filtered = event->state & ~XCB_MOD_MASK_LOCK;
110
111         /* Find the binding */
112         Binding *bind;
113         TAILQ_FOREACH(bind, &bindings, bindings)
114                 if (bind->keycode == event->detail && bind->mods == state_filtered)
115                         break;
116
117         /* No match? Then it was an actively grabbed key, that is with Mode_switch, and
118            the user did not press Mode_switch, so just pass it… */
119         if (bind == TAILQ_END(&bindings)) {
120                 xcb_allow_events(conn, ReplayKeyboard, event->time);
121                 xcb_flush(conn);
122                 return 1;
123         }
124
125         parse_command(conn, bind->command);
126         if (event->state & 0x2) {
127                 LOG("Mode_switch -> allow_events(SyncKeyboard)\n");
128                 xcb_allow_events(conn, SyncKeyboard, event->time);
129                 xcb_flush(conn);
130         }
131         return 1;
132 }
133
134
135 /*
136  * When the user moves the mouse pointer onto a window, this callback gets called.
137  *
138  */
139 int handle_enter_notify(void *ignored, xcb_connection_t *conn, xcb_enter_notify_event_t *event) {
140         LOG("enter_notify for %08x, mode = %d, detail %d, serial %d\n", event->event, event->mode, event->detail, event->sequence);
141         if (event->mode != XCB_NOTIFY_MODE_NORMAL) {
142                 LOG("This was not a normal notify, ignoring\n");
143                 return 1;
144         }
145         /* Some events are not interesting, because they were not generated actively by the
146            user, but be reconfiguration of windows */
147         if (event_is_ignored(event->sequence))
148                 return 1;
149
150         /* This was either a focus for a client’s parent (= titlebar)… */
151         Client *client = table_get(byParent, event->event);
152         /* …or the client itself */
153         if (client == NULL)
154                 client = table_get(byChild, event->event);
155
156         /* If not, then the user moved his cursor to the root window. In that case, we adjust c_ws */
157         if (client == NULL) {
158                 LOG("Getting screen at %d x %d\n", event->root_x, event->root_y);
159                 i3Screen *screen = get_screen_containing(event->root_x, event->root_y);
160                 if (screen == NULL) {
161                         LOG("ERROR: No such screen\n");
162                         return 0;
163                 }
164                 c_ws = &workspaces[screen->current_workspace];
165                 LOG("We're now on virtual screen number %d\n", screen->num);
166                 return 1;
167         }
168
169         /* Do plausibility checks: This event may be useless for us if it occurs on a window
170            which is in a stacked container but not the focused one */
171         if (client->container != NULL &&
172             client->container->mode == MODE_STACK &&
173             client->container->currently_focused != client) {
174                 LOG("Plausibility check says: no\n");
175                 return 1;
176         }
177
178         set_focus(conn, client);
179
180         return 1;
181 }
182
183 /*
184  * Checks if the button press was on a stack window, handles focus setting and returns true
185  * if so, or false otherwise.
186  *
187  */
188 static bool button_press_stackwin(xcb_connection_t *conn, xcb_button_press_event_t *event) {
189         struct Stack_Window *stack_win;
190         SLIST_FOREACH(stack_win, &stack_wins, stack_windows)
191                 if (stack_win->window == event->event) {
192                         /* A stack window was clicked. We calculate the destination client by
193                            dividing the Y position of the event through the height of a window
194                            decoration and then set the focus to this client. */
195                         i3Font *font = load_font(conn, config.font);
196                         int decoration_height = (font->height + 2 + 2);
197                         int destination = (event->event_y / decoration_height),
198                             c = 0;
199                         Client *client;
200
201                         LOG("Click on stack_win for client %d\n", destination);
202                         CIRCLEQ_FOREACH(client, &(stack_win->container->clients), clients)
203                                 if (c++ == destination) {
204                                         set_focus(conn, client);
205                                         return true;
206                                 }
207
208                         return true;
209                 }
210
211         return false;
212 }
213
214 /*
215  * Checks if the button press was on a bar, switches to the workspace and returns true
216  * if so, or false otherwise.
217  *
218  */
219 static bool button_press_bar(xcb_connection_t *conn, xcb_button_press_event_t *event) {
220         i3Screen *screen;
221         TAILQ_FOREACH(screen, virtual_screens, screens)
222                 if (screen->bar == event->event) {
223                         LOG("Click on a bar\n");
224                         i3Font *font = load_font(conn, config.font);
225                         int workspace = event->event_x / (font->height + 6),
226                             c = 0;
227                         /* Because workspaces can be on different screens, we need to loop
228                            through all of them and decide to count it based on its ->screen */
229                         for (int i = 0; i < 10; i++)
230                                 if ((workspaces[i].screen == screen) && (c++ == workspace)) {
231                                         show_workspace(conn, i+1);
232                                         return true;
233                                 }
234                         return true;
235                 }
236
237         return false;
238 }
239
240 int handle_button_press(void *ignored, xcb_connection_t *conn, xcb_button_press_event_t *event) {
241         LOG("button press!\n");
242         /* This was either a focus for a client’s parent (= titlebar)… */
243         Client *client = table_get(byChild, event->event);
244         bool border_click = false;
245         if (client == NULL) {
246                 client = table_get(byParent, event->event);
247                 border_click = true;
248         }
249         if (client == NULL) {
250                 /* The client was neither on a client’s titlebar nor on a client itself, maybe on a stack_window? */
251                 if (button_press_stackwin(conn, event))
252                         return 1;
253
254                 /* Or on a bar? */
255                 if (button_press_bar(conn, event))
256                         return 1;
257
258                 LOG("Could not handle this button press\n");
259                 return 1;
260         }
261
262         xcb_window_t root = xcb_setup_roots_iterator(xcb_get_setup(conn)).data->root;
263         xcb_screen_t *root_screen = xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
264
265         /* Set focus in any case */
266         set_focus(conn, client);
267
268         /* Let’s see if this was on the borders (= resize). If not, we’re done */
269         LOG("press button on x=%d, y=%d\n", event->event_x, event->event_y);
270
271         Container *con = client->container,
272                   *first = NULL,
273                   *second = NULL;
274         enum { O_HORIZONTAL, O_VERTICAL } orientation = O_VERTICAL;
275         int new_position;
276
277         if (con == NULL) {
278                 LOG("dock. done.\n");
279                 xcb_allow_events(conn, XCB_ALLOW_REPLAY_POINTER, event->time);
280                 xcb_flush(conn);
281                 return 1;
282         }
283
284         LOG("event->event_x = %d, client->rect.width = %d\n", event->event_x, client->rect.width);
285
286         if (!border_click) {
287                 LOG("client. done.\n");
288                 xcb_allow_events(conn, XCB_ALLOW_REPLAY_POINTER, event->time);
289                 xcb_flush(conn);
290                 return 1;
291         }
292
293         /* Don’t handle events inside the titlebar, only borders are interesting */
294         i3Font *font = load_font(conn, config.font);
295         if (event->event_y >= 2 && event->event_y <= (font->height + 2 + 2)) {
296                 LOG("click on titlebar\n");
297                 return 1;
298         }
299
300         if (event->event_y < 2) {
301                 /* This was a press on the top border */
302                 if (con->row == 0)
303                         return 1;
304                 first = con->workspace->table[con->col][con->row-1];
305                 second = con;
306                 orientation = O_HORIZONTAL;
307         } else if (event->event_y >= (client->rect.height - 2)) {
308                 /* …bottom border */
309                 if (con->row == (con->workspace->rows-1))
310                         return 1;
311                 first = con;
312                 second = con->workspace->table[con->col][con->row+1];
313                 orientation = O_HORIZONTAL;
314         } else if (event->event_x <= 2) {
315                 /* …left border */
316                 if (con->col == 0)
317                         return 1;
318                 first = con->workspace->table[con->col-1][con->row];
319                 second = con;
320         } else if (event->event_x > 2) {
321                 /* …right border */
322                 if (con->col == (con->workspace->cols-1))
323                         return 1;
324                 first = con;
325                 second = con->workspace->table[con->col+1][con->row];
326         }
327
328         /* FIXME: horizontal resizing causes empty spaces to exist */
329         if (orientation == O_HORIZONTAL) {
330                 LOG("Sorry, horizontal resizing is not yet activated due to creating layout bugs."
331                     "If you are brave, enable the code for yourself and try fixing it.\n");
332                 return 1;
333         }
334
335         uint32_t mask = 0;
336         uint32_t values[2];
337
338         mask = XCB_CW_OVERRIDE_REDIRECT;
339         values[0] = 1;
340
341         /* Open a new window, the resizebar. Grab the pointer and move the window around
342            as the user moves the pointer. */
343         Rect grabrect = {0, 0, root_screen->width_in_pixels, root_screen->height_in_pixels};
344         xcb_window_t grabwin = create_window(conn, grabrect, XCB_WINDOW_CLASS_INPUT_ONLY, -1, mask, values);
345
346         Rect helprect;
347         if (orientation == O_VERTICAL) {
348                 helprect.x = event->root_x;
349                 helprect.y = 0;
350                 helprect.width = 2;
351                 helprect.height = root_screen->height_in_pixels; /* this has to be the cell’s height */
352                 new_position = event->root_x;
353         } else {
354                 helprect.x = 0;
355                 helprect.y = event->root_y;
356                 helprect.width = root_screen->width_in_pixels; /* this has to be the cell’s width */
357                 helprect.height = 2;
358                 new_position = event->root_y;
359         }
360
361         mask = XCB_CW_BACK_PIXEL;
362         values[0] = get_colorpixel(conn, "#4c7899");
363
364         mask |= XCB_CW_OVERRIDE_REDIRECT;
365         values[1] = 1;
366
367         xcb_window_t helpwin = create_window(conn, helprect, XCB_WINDOW_CLASS_INPUT_OUTPUT,
368                                              (orientation == O_VERTICAL ?
369                                               XCB_CURSOR_SB_V_DOUBLE_ARROW :
370                                               XCB_CURSOR_SB_H_DOUBLE_ARROW), mask, values);
371
372         xcb_circulate_window(conn, XCB_CIRCULATE_RAISE_LOWEST, helpwin);
373
374         xcb_grab_pointer(conn, false, root, XCB_EVENT_MASK_BUTTON_RELEASE | XCB_EVENT_MASK_POINTER_MOTION,
375                         XCB_GRAB_MODE_ASYNC, XCB_GRAB_MODE_ASYNC, grabwin, XCB_NONE, XCB_CURRENT_TIME);
376
377         xcb_flush(conn);
378
379         xcb_generic_event_t *inside_event;
380         /* I’ve always wanted to have my own eventhandler… */
381         while ((inside_event = xcb_wait_for_event(conn))) {
382                 /* Same as get_event_handler in xcb */
383                 int nr = inside_event->response_type;
384                 if (nr == 0) {
385                         /* An error occured */
386                         handle_event(NULL, conn, inside_event);
387                         free(inside_event);
388                         continue;
389                 }
390                 assert(nr < 256);
391                 nr &= XCB_EVENT_RESPONSE_TYPE_MASK;
392                 assert(nr >= 2);
393
394                 /* Check if we need to escape this loop */
395                 if (nr == XCB_BUTTON_RELEASE)
396                         break;
397
398                 switch (nr) {
399                         case XCB_MOTION_NOTIFY:
400                                 if (orientation == O_VERTICAL) {
401                                         values[0] = new_position = ((xcb_motion_notify_event_t*)inside_event)->root_x;
402                                         xcb_configure_window(conn, helpwin, XCB_CONFIG_WINDOW_X, values);
403                                 } else {
404                                         values[0] = new_position = ((xcb_motion_notify_event_t*)inside_event)->root_y;
405                                         xcb_configure_window(conn, helpwin, XCB_CONFIG_WINDOW_Y, values);
406                                 }
407
408                                 xcb_flush(conn);
409                                 break;
410                         default:
411                                 LOG("Passing to original handler\n");
412                                 /* Use original handler */
413                                 xcb_event_handle(&evenths, inside_event);
414                                 break;
415                 }
416                 free(inside_event);
417         }
418
419         xcb_ungrab_pointer(conn, XCB_CURRENT_TIME);
420         xcb_destroy_window(conn, helpwin);
421         xcb_destroy_window(conn, grabwin);
422         xcb_flush(conn);
423
424         Workspace *ws = con->workspace;
425         if (orientation == O_VERTICAL) {
426                 LOG("Resize was from X = %d to X = %d\n", event->root_x, new_position);
427                 if (event->root_x == new_position) {
428                         LOG("Nothing changed, not updating anything\n");
429                         return 1;
430                 }
431
432                 /* Convert 0 (for default width_factor) to actual numbers */
433                 if (first->width_factor == 0)
434                         first->width_factor = ((float)ws->rect.width / ws->cols) / ws->rect.width;
435                 if (second->width_factor == 0)
436                         second->width_factor = ((float)ws->rect.width / ws->cols) / ws->rect.width;
437
438                 first->width_factor *= (float)(first->width + (new_position - event->root_x)) / first->width;
439                 second->width_factor *= (float)(second->width - (new_position - event->root_x)) / second->width;
440         } else {
441                 LOG("Resize was from Y = %d to Y = %d\n", event->root_y, new_position);
442                 if (event->root_y == new_position) {
443                         LOG("Nothing changed, not updating anything\n");
444                         return 1;
445                 }
446
447                 /* Convert 0 (for default height_factor) to actual numbers */
448                 if (first->height_factor == 0)
449                         first->height_factor = ((float)ws->rect.height / ws->rows) / ws->rect.height;
450                 if (second->height_factor == 0)
451                         second->height_factor = ((float)ws->rect.height / ws->rows) / ws->rect.height;
452
453                 first->height_factor *= (float)(first->height + (new_position - event->root_y)) / first->height;
454                 second->height_factor *= (float)(second->height - (new_position - event->root_y)) / second->height;
455         }
456
457         render_layout(conn);
458
459         return 1;
460 }
461
462 /*
463  * A new window appeared on the screen (=was mapped), so let’s manage it.
464  *
465  */
466 int handle_map_request(void *prophs, xcb_connection_t *conn, xcb_map_request_event_t *event) {
467         xcb_get_window_attributes_cookie_t cookie;
468         xcb_get_window_attributes_reply_t *reply;
469
470         cookie = xcb_get_window_attributes_unchecked(conn, event->window);
471
472         if ((reply = xcb_get_window_attributes_reply(conn, cookie, NULL)) == NULL) {
473                 LOG("Could not get window attributes\n");
474                 return -1;
475         }
476
477         window_attributes_t wa = { TAG_VALUE };
478         LOG("override_redirect = %d\n", reply->override_redirect);
479         wa.u.override_redirect = reply->override_redirect;
480         LOG("window = 0x%08x, serial is %d.\n", event->window, event->sequence);
481         add_ignore_event(event->sequence);
482
483         manage_window(prophs, conn, event->window, wa);
484         return 1;
485 }
486
487 /*
488  * Configure requests are received when the application wants to resize windows on their own.
489  *
490  * We generate a synthethic configure notify event to signalize the client its "new" position.
491  *
492  */
493 int handle_configure_request(void *prophs, xcb_connection_t *conn, xcb_configure_request_event_t *event) {
494         LOG("configure-request, serial %d\n", event->sequence);
495         LOG("event->window = %08x\n", event->window);
496         LOG("application wants to be at %dx%d with %dx%d\n", event->x, event->y, event->width, event->height);
497
498         Client *client = table_get(byChild, event->window);
499         if (client == NULL) {
500                 LOG("This client is not mapped, so we don't care and just tell the client that he will get its size\n");
501                 Rect rect = {event->x, event->y, event->width, event->height};
502                 fake_configure_notify(conn, rect, event->window);
503                 return 1;
504         }
505
506         fake_configure_notify(conn, client->child_rect, client->child);
507
508         return 1;
509 }
510
511 /*
512  * Configuration notifies are only handled because we need to set up ignore for the following
513  * enter notify events
514  *
515  */
516 int handle_configure_event(void *prophs, xcb_connection_t *conn, xcb_configure_notify_event_t *event) {
517         xcb_window_t root = xcb_setup_roots_iterator(xcb_get_setup(conn)).data->root;
518
519         LOG("handle_configure_event for window %08x\n", event->window);
520         LOG("event->type = %d, \n", event->response_type);
521         LOG("event->x = %d, ->y = %d, ->width = %d, ->height = %d\n", event->x, event->y, event->width, event->height);
522         add_ignore_event(event->sequence);
523
524         if (event->event == root) {
525                 LOG("reconfigure of the root window, need to xinerama\n");
526                 /* FIXME: Somehow, this is occuring too often. Therefore, we check for 0/0,
527                    but is there a better way? */
528                 if (event->x == 0 && event->y == 0)
529                         xinerama_requery_screens(conn);
530                 return 1;
531         }
532
533         return 1;
534 }
535
536 /*
537  * Our window decorations were unmapped. That means, the window will be killed now,
538  * so we better clean up before.
539  *
540  */
541 int handle_unmap_notify_event(void *data, xcb_connection_t *conn, xcb_unmap_notify_event_t *event) {
542         xcb_window_t root = xcb_setup_roots_iterator(xcb_get_setup(conn)).data->root;
543
544         add_ignore_event(event->sequence);
545
546         Client *client = table_get(byChild, event->window);
547         /* First, we need to check if the client is awaiting an unmap-request which
548            was generated by us reparenting the window. In that case, we just ignore it. */
549         if (client != NULL && client->awaiting_useless_unmap) {
550                 LOG("Dropping this unmap request, it was generated by reparenting\n");
551                 client->awaiting_useless_unmap = false;
552                 return 1;
553         }
554
555         LOG("event->window = %08x, event->event = %08x\n", event->window, event->event);
556         LOG("UnmapNotify for 0x%08x (received from 0x%08x)\n", event->window, event->event);
557         if (client == NULL) {
558                 LOG("not a managed window. Ignoring.\n");
559                 return 0;
560         }
561
562         client = table_remove(byChild, event->window);
563
564         if (client->name != NULL)
565                 free(client->name);
566
567         if (client->container != NULL) {
568                 Container *con = client->container;
569
570                 /* If this was the fullscreen client, we need to unset it */
571                 if (client->fullscreen)
572                         con->workspace->fullscreen_client = NULL;
573
574                 /* Remove the client from the list of clients */
575                 remove_client_from_container(conn, client, con);
576
577                 /* Remove from the focus stack */
578                 LOG("Removing from focus stack\n");
579                 SLIST_REMOVE(&(con->workspace->focus_stack), client, Client, focus_clients);
580
581                 /* Set focus to the last focused client in this container */
582                 con->currently_focused = NULL;
583                 Client *focus_client;
584                 SLIST_FOREACH(focus_client, &(con->workspace->focus_stack), focus_clients)
585                         if (focus_client->container == con) {
586                                 con->currently_focused = focus_client;
587                                 /* Only if this is the active container, we need to really change focus */
588                                 if (con == CUR_CELL)
589                                         set_focus(conn, focus_client);
590                                 break;
591                         }
592         }
593
594         if (client->dock) {
595                 LOG("Removing from dock clients\n");
596                 SLIST_REMOVE(&(client->workspace->dock_clients), client, Client, dock_clients);
597         }
598
599         LOG("child of 0x%08x.\n", client->frame);
600         xcb_reparent_window(conn, client->child, root, 0, 0);
601         xcb_destroy_window(conn, client->frame);
602         xcb_flush(conn);
603         table_remove(byParent, client->frame);
604
605         if (client->container != NULL)
606                 cleanup_table(conn, client->container->workspace);
607
608         free(client);
609
610         render_layout(conn);
611
612         return 1;
613 }
614
615 /*
616  * Called when a window changes its title
617  *
618  */
619 int handle_windowname_change(void *data, xcb_connection_t *conn, uint8_t state,
620                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
621         LOG("window's name changed.\n");
622         if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
623                 LOG("_NET_WM_NAME not specified, not changing\n");
624                 return 1;
625         }
626         Client *client = table_get(byChild, window);
627         if (client == NULL)
628                 return 1;
629
630         /* Save the old pointer to make the update atomic */
631         char *new_name;
632         int new_len;
633         asprintf(&new_name, "%.*s", xcb_get_property_value_length(prop), (char*)xcb_get_property_value(prop));
634         /* Convert it to UCS-2 here for not having to convert it later every time we want to pass it to X */
635         char *ucs2_name = convert_utf8_to_ucs2(new_name, &new_len);
636         LOG("Name should change to \"%s\"\n", new_name);
637         free(new_name);
638
639         /* Check if they are the same and don’t update if so.
640            Note the use of new_len * 2 to check all bytes as each glyph takes 2 bytes.
641            Also note the use of memcmp() instead of strncmp() because the latter stops on nullbytes,
642            but UCS-2 uses nullbytes to fill up glyphs which only use one byte. */
643         if ((new_len == client->name_len) &&
644             (client->name != NULL) &&
645             (memcmp(client->name, ucs2_name, new_len * 2) == 0)) {
646                 LOG("Name did not change, not updating\n");
647                 free(ucs2_name);
648                 return 1;
649         }
650
651         char *old_name = client->name;
652         client->name = ucs2_name;
653         client->name_len = new_len;
654         client->uses_net_wm_name = true;
655
656         if (old_name != NULL)
657                 free(old_name);
658
659         /* If the client is a dock window, we don’t need to render anything */
660         if (client->dock)
661                 return 1;
662
663         if (client->container->mode == MODE_STACK)
664                 render_container(conn, client->container);
665         else decorate_window(conn, client, client->frame, client->titlegc, 0);
666         xcb_flush(conn);
667
668         return 1;
669 }
670
671 /*
672  * We handle legacy window names (titles) which are in COMPOUND_TEXT encoding. However, we
673  * just pass them along, so when containing non-ASCII characters, those will be rendering
674  * incorrectly. In order to correctly render unicode window titles in i3, an application
675  * has to set _NET_WM_NAME, which is in UTF-8 encoding.
676  *
677  * On every update, a message is put out to the user, so he may improve the situation and
678  * update applications which display filenames in their title to correctly use
679  * _NET_WM_NAME and therefore support unicode.
680  *
681  */
682 int handle_windowname_change_legacy(void *data, xcb_connection_t *conn, uint8_t state,
683                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
684         LOG("window's name changed (legacy).\n");
685         if (prop == NULL || xcb_get_property_value_length(prop) == 0) {
686                 LOG("prop == NULL\n");
687                 return 1;
688         }
689         Client *client = table_get(byChild, window);
690         if (client == NULL)
691                 return 1;
692
693         if (client->uses_net_wm_name) {
694                 LOG("This client is capable of _NET_WM_NAME, ignoring legacy name\n");
695                 return 1;
696         }
697
698         /* Save the old pointer to make the update atomic */
699         char *new_name;
700         asprintf(&new_name, "%.*s", xcb_get_property_value_length(prop), (char*)xcb_get_property_value(prop));
701         /* Convert it to UCS-2 here for not having to convert it later every time we want to pass it to X */
702         LOG("Name should change to \"%s\"\n", new_name);
703
704         /* Check if they are the same and don’t update if so. */
705         if (client->name != NULL &&
706             strlen(new_name) == strlen(client->name) &&
707             strcmp(client->name, new_name) == 0) {
708                 LOG("Name did not change, not updating\n");
709                 free(new_name);
710                 return 1;
711         }
712
713         LOG("Using legacy window title. Note that in order to get Unicode window titles in i3,"
714             "the application has to set _NET_WM_NAME which is in UTF-8 encoding.\n");
715
716         char *old_name = client->name;
717         client->name = new_name;
718         client->name_len = -1;
719
720         if (old_name != NULL)
721                 free(old_name);
722
723         /* If the client is a dock window, we don’t need to render anything */
724         if (client->dock)
725                 return 1;
726
727         if (client->container->mode == MODE_STACK)
728                 render_container(conn, client->container);
729         else decorate_window(conn, client, client->frame, client->titlegc, 0);
730         xcb_flush(conn);
731
732         return 1;
733 }
734
735 /*
736  * Expose event means we should redraw our windows (= title bar)
737  *
738  */
739 int handle_expose_event(void *data, xcb_connection_t *conn, xcb_expose_event_t *event) {
740         /* event->count is the number of minimum remaining expose events for this window, so we
741            skip all events but the last one */
742         if (event->count != 0)
743                 return 1;
744         LOG("window = %08x\n", event->window);
745
746         Client *client = table_get(byParent, event->window);
747         if (client == NULL) {
748                 /* There was no client in the table, so this is probably an expose event for
749                    one of our stack_windows. */
750                 struct Stack_Window *stack_win;
751                 SLIST_FOREACH(stack_win, &stack_wins, stack_windows)
752                         if (stack_win->window == event->window) {
753                                 render_container(conn, stack_win->container);
754                                 return 1;
755                         }
756
757                 /* …or one of the bars? */
758                 i3Screen *screen;
759                 TAILQ_FOREACH(screen, virtual_screens, screens) {
760                         if (screen->bar == event->window) {
761                                 render_layout(conn);
762                         }
763                 }
764                 return 1;
765         }
766
767         LOG("got client %s\n", client->name);
768         if (client->dock) {
769                 LOG("this is a dock\n");
770                 return 1;
771         }
772
773         if (client->container->mode != MODE_STACK)
774                 decorate_window(conn, client, client->frame, client->titlegc, 0);
775         else {
776                 uint32_t background_color;
777                 /* Distinguish if the window is currently focused… */
778                 if (CUR_CELL->currently_focused == client)
779                         background_color = get_colorpixel(conn, "#285577");
780                 /* …or if it is the focused window in a not focused container */
781                 else background_color = get_colorpixel(conn, "#555555");
782
783                 /* Set foreground color to current focused color, line width to 2 */
784                 uint32_t values[] = {background_color, 2};
785                 xcb_change_gc(conn, client->titlegc, XCB_GC_FOREGROUND | XCB_GC_LINE_WIDTH, values);
786
787                 /* Draw the border, the ±1 is for line width = 2 */
788                 xcb_point_t points[] = {{1, 0},                                           /* left upper edge */
789                                         {1, client->rect.height-1},                       /* left bottom edge */
790                                         {client->rect.width-1, client->rect.height-1},    /* right bottom edge */
791                                         {client->rect.width-1, 0}};                       /* right upper edge */
792                 xcb_poly_line(conn, XCB_COORD_MODE_ORIGIN, client->frame, client->titlegc, 4, points);
793
794                 /* Draw a black background */
795                 xcb_change_gc_single(conn, client->titlegc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#000000"));
796                 xcb_rectangle_t crect = {2, 0, client->rect.width - (2 + 2), client->rect.height - 2};
797                 xcb_poly_fill_rectangle(conn, client->frame, client->titlegc, 1, &crect);
798         }
799         xcb_flush(conn);
800         return 1;
801 }
802
803 /*
804  * Handle client messages (EWMH)
805  *
806  */
807 int handle_client_message(void *data, xcb_connection_t *conn, xcb_client_message_event_t *event) {
808         LOG("client_message\n");
809
810         if (event->type == atoms[_NET_WM_STATE]) {
811                 if (event->format != 32 || event->data.data32[1] != atoms[_NET_WM_STATE_FULLSCREEN])
812                         return 0;
813
814                 LOG("fullscreen\n");
815
816                 Client *client = table_get(byChild, event->window);
817                 if (client == NULL)
818                         return 0;
819
820                 /* Check if the fullscreen state should be toggled */
821                 if ((client->fullscreen &&
822                      (event->data.data32[0] == _NET_WM_STATE_REMOVE ||
823                       event->data.data32[0] == _NET_WM_STATE_TOGGLE)) ||
824                     (!client->fullscreen &&
825                      (event->data.data32[0] == _NET_WM_STATE_ADD ||
826                       event->data.data32[0] == _NET_WM_STATE_TOGGLE)))
827                         toggle_fullscreen(conn, client);
828         } else {
829                 LOG("unhandled clientmessage\n");
830                 return 0;
831         }
832
833         return 1;
834 }
835
836 int handle_window_type(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
837                         xcb_atom_t atom, xcb_get_property_reply_t *property) {
838         /* TODO: Implement this one. To do this, implement a little test program which sleep(1)s
839          before changing this property. */
840         LOG("_NET_WM_WINDOW_TYPE changed, this is not yet implemented.\n");
841         return 0;
842 }
843
844 /*
845  * Handles the size hints set by a window, but currently only the part necessary for displaying
846  * clients proportionally inside their frames (mplayer for example)
847  *
848  * See ICCCM 4.1.2.3 for more details
849  *
850  */
851 int handle_normal_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
852                         xcb_atom_t name, xcb_get_property_reply_t *reply) {
853         LOG("handle_normal_hints\n");
854         Client *client = table_get(byChild, window);
855         if (client == NULL) {
856                 LOG("No such client\n");
857                 return 1;
858         }
859         xcb_size_hints_t size_hints;
860
861         /* If the hints were already in this event, use them, if not, request them */
862         if (reply != NULL)
863                 xcb_get_wm_size_hints_from_reply(&size_hints, reply);
864         else
865                 xcb_get_wm_normal_hints_reply(conn, xcb_get_wm_normal_hints_unchecked(conn, client->child), &size_hints, NULL);
866
867         /* If no aspect ratio was set or if it was invalid, we ignore the hints */
868         if (!(size_hints.flags & XCB_SIZE_HINT_P_ASPECT) ||
869             (size_hints.min_aspect_num <= 0) ||
870             (size_hints.min_aspect_den <= 0)) {
871                 LOG("No aspect ratio set, ignoring\n");
872                 return 1;
873         }
874
875         LOG("window is %08x / %s\n", client->child, client->name);
876
877         int base_width = 0, base_height = 0,
878             min_width = 0, min_height = 0;
879
880         /* base_width/height are the desired size of the window.
881            We check if either the program-specified size or the program-specified
882            min-size is available */
883         if (size_hints.flags & XCB_SIZE_HINT_P_SIZE) {
884                 base_width = size_hints.base_width;
885                 base_height = size_hints.base_height;
886         } else if (size_hints.flags & XCB_SIZE_HINT_P_MIN_SIZE) {
887                 base_width = size_hints.min_width;
888                 base_height = size_hints.min_height;
889         }
890
891         if (size_hints.flags & XCB_SIZE_HINT_P_MIN_SIZE) {
892                 min_width = size_hints.min_width;
893                 min_height = size_hints.min_height;
894         } else if (size_hints.flags & XCB_SIZE_HINT_P_SIZE) {
895                 min_width = size_hints.base_width;
896                 min_height = size_hints.base_height;
897         }
898
899         double width = client->rect.width - base_width;
900         double height = client->rect.height - base_height;
901         /* Convert numerator/denominator to a double */
902         double min_aspect = (double)size_hints.min_aspect_num / size_hints.min_aspect_den;
903         double max_aspect = (double)size_hints.max_aspect_num / size_hints.min_aspect_den;
904
905         LOG("min_aspect = %f, max_aspect = %f\n", min_aspect, max_aspect);
906         LOG("width = %f, height = %f\n", width, height);
907
908         /* Sanity checks, this is user-input, in a way */
909         if (max_aspect <= 0 || min_aspect <= 0 || height == 0 || (width / height) <= 0)
910                 return 1;
911
912         /* Check if we need to set proportional_* variables using the correct ratio */
913         if ((width / height) < min_aspect) {
914                 client->proportional_width = width;
915                 client->proportional_height = width / min_aspect;
916         } else if ((width / height) > max_aspect) {
917                 client->proportional_width = width;
918                 client->proportional_height = width / max_aspect;
919         } else return 1;
920
921         client->force_reconfigure = true;
922
923         if (client->container != NULL) {
924                 render_container(conn, client->container);
925                 xcb_flush(conn);
926         }
927
928         return 1;
929 }