]> git.sur5r.net Git - i3/i3/blob - src/handlers.c
4d3e88b9bc699d770b1735bf83180c6384ee3a7d
[i3/i3] / src / handlers.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2010 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  */
8 #include <time.h>
9
10 #include <xcb/xcb_atom.h>
11 #include <xcb/randr.h>
12
13 #include <X11/XKBlib.h>
14
15 #include "all.h"
16
17 /* After mapping/unmapping windows, a notify event is generated. However, we don’t want it,
18    since it’d trigger an infinite loop of switching between the different windows when
19    changing workspaces */
20 static SLIST_HEAD(ignore_head, Ignore_Event) ignore_events;
21
22 void add_ignore_event(const int sequence) {
23     struct Ignore_Event *event = smalloc(sizeof(struct Ignore_Event));
24
25     event->sequence = sequence;
26     event->added = time(NULL);
27
28     SLIST_INSERT_HEAD(&ignore_events, event, ignore_events);
29 }
30
31 /*
32  * Checks if the given sequence is ignored and returns true if so.
33  *
34  */
35 static bool event_is_ignored(const int sequence) {
36     struct Ignore_Event *event;
37     time_t now = time(NULL);
38     for (event = SLIST_FIRST(&ignore_events); event != SLIST_END(&ignore_events);) {
39         if ((now - event->added) > 5) {
40             struct Ignore_Event *save = event;
41             event = SLIST_NEXT(event, ignore_events);
42             SLIST_REMOVE(&ignore_events, save, Ignore_Event, ignore_events);
43             free(save);
44         } else event = SLIST_NEXT(event, ignore_events);
45     }
46
47     SLIST_FOREACH(event, &ignore_events, ignore_events) {
48         if (event->sequence != sequence)
49             continue;
50
51         /* instead of removing a sequence number we better wait until it gets
52          * garbage collected. it may generate multiple events (there are multiple
53          * enter_notifies for one configure_request, for example). */
54         //SLIST_REMOVE(&ignore_events, event, Ignore_Event, ignore_events);
55         //free(event);
56         return true;
57     }
58
59     return false;
60 }
61
62 /*
63  * There was a key press. We compare this key code with our bindings table and pass
64  * the bound action to parse_command().
65  *
66  */
67 int handle_key_press(void *ignored, xcb_connection_t *conn, xcb_key_press_event_t *event) {
68     DLOG("Keypress %d, state raw = %d\n", event->detail, event->state);
69
70     /* Remove the numlock bit, all other bits are modifiers we can bind to */
71     uint16_t state_filtered = event->state & ~(xcb_numlock_mask | XCB_MOD_MASK_LOCK);
72     DLOG("(removed numlock, state = %d)\n", state_filtered);
73     /* Only use the lower 8 bits of the state (modifier masks) so that mouse
74      * button masks are filtered out */
75     state_filtered &= 0xFF;
76     DLOG("(removed upper 8 bits, state = %d)\n", state_filtered);
77
78     if (xkb_current_group == XkbGroup2Index)
79         state_filtered |= BIND_MODE_SWITCH;
80
81     DLOG("(checked mode_switch, state %d)\n", state_filtered);
82
83     /* Find the binding */
84     Binding *bind = get_binding(state_filtered, event->detail);
85
86     /* No match? Then the user has Mode_switch enabled but does not have a
87      * specific keybinding. Fall back to the default keybindings (without
88      * Mode_switch). Makes it much more convenient for users of a hybrid
89      * layout (like us, ru). */
90     if (bind == NULL) {
91         state_filtered &= ~(BIND_MODE_SWITCH);
92         DLOG("no match, new state_filtered = %d\n", state_filtered);
93         if ((bind = get_binding(state_filtered, event->detail)) == NULL) {
94             ELOG("Could not lookup key binding (modifiers %d, keycode %d)\n",
95                  state_filtered, event->detail);
96             return 1;
97         }
98     }
99
100     parse_command(bind->command);
101     return 1;
102 }
103
104 #if 0
105
106 /*
107  * Called with coordinates of an enter_notify event or motion_notify event
108  * to check if the user crossed virtual screen boundaries and adjust the
109  * current workspace, if so.
110  *
111  */
112 static void check_crossing_screen_boundary(uint32_t x, uint32_t y) {
113         Output *output;
114
115         if ((output = get_output_containing(x, y)) == NULL) {
116                 ELOG("ERROR: No such screen\n");
117                 return;
118         }
119         if (output == c_ws->output)
120                 return;
121
122         c_ws->current_row = current_row;
123         c_ws->current_col = current_col;
124         c_ws = output->current_workspace;
125         current_row = c_ws->current_row;
126         current_col = c_ws->current_col;
127         DLOG("We're now on output %p\n", output);
128
129         /* While usually this function is only called when the user switches
130          * to a different output using his mouse (and thus the output is
131          * empty), it may be that the following race condition occurs:
132          * 1) the user actives a new output (say VGA1).
133          * 2) the cursor is sent to the first pixel of the new VGA1, thus
134          *    generating an enter_notify for the screen (the enter_notify
135          *    is not yet received by i3).
136          * 3) i3 requeries screen configuration and maps a workspace onto the
137          *    new output.
138          * 4) the enter_notify event arrives and c_ws is set to the new
139          *    workspace but the existing windows on the new workspace are not
140          *    focused.
141          *
142          * Therefore, we re-set the focus here to be sure it’s correct. */
143         Client *first_client = SLIST_FIRST(&(c_ws->focus_stack));
144         if (first_client != NULL)
145                 set_focus(global_conn, first_client, true);
146 }
147 #endif
148
149 /*
150  * When the user moves the mouse pointer onto a window, this callback gets called.
151  *
152  */
153 int handle_enter_notify(void *ignored, xcb_connection_t *conn,
154                         xcb_enter_notify_event_t *event) {
155     Con *con;
156
157     DLOG("enter_notify for %08x, mode = %d, detail %d, serial %d\n",
158          event->event, event->mode, event->detail, event->sequence);
159     DLOG("coordinates %x, %x\n", event->event_x, event->event_y);
160     if (event->mode != XCB_NOTIFY_MODE_NORMAL) {
161         DLOG("This was not a normal notify, ignoring\n");
162         return 1;
163     }
164     /* Some events are not interesting, because they were not generated
165      * actively by the user, but by reconfiguration of windows */
166     if (event_is_ignored(event->sequence))
167         return 1;
168
169     /* Get container by frame or by child window */
170     if ((con = con_by_frame_id(event->event)) == NULL)
171         con = con_by_window_id(event->event);
172
173     /* If not, then the user moved his cursor to the root window. In that case, we adjust c_ws */
174     if (con == NULL) {
175         DLOG("Getting screen at %d x %d\n", event->root_x, event->root_y);
176         //check_crossing_screen_boundary(event->root_x, event->root_y);
177         return 1;
178     }
179
180     /* see if the user entered the window on a certain window decoration */
181     int layout = con->layout;
182     Con *child;
183     TAILQ_FOREACH(child, &(con->nodes_head), nodes)
184         if (rect_contains(child->deco_rect, event->event_x, event->event_y)) {
185             LOG("using child %p / %s instead!\n", child, child->name);
186             con = child;
187             break;
188         }
189
190     /* for stacked/tabbed layout we do not want to change focus when the user
191      * enters the window at the decoration of any child window. */
192     if (layout == L_STACKED || layout == L_TABBED) {
193         con = TAILQ_FIRST(&(con->parent->focus_head));
194         LOG("using focused %p / %s instead\n", con, con->name);
195     }
196
197 #if 0
198     if (client->workspace != c_ws && client->workspace->output == c_ws->output) {
199             /* This can happen when a client gets assigned to a different workspace than
200              * the current one (see src/mainx.c:reparent_window). Shortly after it was created,
201              * an enter_notify will follow. */
202             DLOG("enter_notify for a client on a different workspace but the same screen, ignoring\n");
203             return 1;
204     }
205 #endif
206
207     if (config.disable_focus_follows_mouse)
208         return 1;
209     Con *next = con;
210     while (!TAILQ_EMPTY(&(next->focus_head)))
211         next = TAILQ_FIRST(&(next->focus_head));
212
213     con_focus(next);
214     x_push_changes(croot);
215
216     return 1;
217 }
218 #if 0
219
220 /*
221  * When the user moves the mouse but does not change the active window
222  * (e.g. when having no windows opened but moving mouse on the root screen
223  * and crossing virtual screen boundaries), this callback gets called.
224  *
225  */
226 int handle_motion_notify(void *ignored, xcb_connection_t *conn, xcb_motion_notify_event_t *event) {
227         /* Skip events where the pointer was over a child window, we are only
228          * interested in events on the root window. */
229         if (event->child != 0)
230                 return 1;
231
232         check_crossing_screen_boundary(event->root_x, event->root_y);
233
234         return 1;
235 }
236
237 /*
238  * Called when the keyboard mapping changes (for example by using Xmodmap),
239  * we need to update our key bindings then (re-translate symbols).
240  *
241  */
242 int handle_mapping_notify(void *ignored, xcb_connection_t *conn, xcb_mapping_notify_event_t *event) {
243         if (event->request != XCB_MAPPING_KEYBOARD &&
244             event->request != XCB_MAPPING_MODIFIER)
245                 return 0;
246
247         DLOG("Received mapping_notify for keyboard or modifier mapping, re-grabbing keys\n");
248         xcb_refresh_keyboard_mapping(keysyms, event);
249
250         xcb_get_numlock_mask(conn);
251
252         ungrab_all_keys(conn);
253         translate_keysyms();
254         grab_all_keys(conn, false);
255
256         return 0;
257 }
258
259 #endif
260 /*
261  * A new window appeared on the screen (=was mapped), so let’s manage it.
262  *
263  */
264 int handle_map_request(void *prophs, xcb_connection_t *conn, xcb_map_request_event_t *event) {
265     xcb_get_window_attributes_cookie_t cookie;
266
267     cookie = xcb_get_window_attributes_unchecked(conn, event->window);
268
269     DLOG("window = 0x%08x, serial is %d.\n", event->window, event->sequence);
270     add_ignore_event(event->sequence);
271
272     manage_window(event->window, cookie, false);
273     return 1;
274 }
275 #if 0
276 /*
277  * Configure requests are received when the application wants to resize windows on their own.
278  *
279  * We generate a synthethic configure notify event to signalize the client its "new" position.
280  *
281  */
282 int handle_configure_request(void *prophs, xcb_connection_t *conn, xcb_configure_request_event_t *event) {
283         DLOG("window 0x%08x wants to be at %dx%d with %dx%d\n",
284             event->window, event->x, event->y, event->width, event->height);
285
286         Client *client = table_get(&by_child, event->window);
287         if (client == NULL) {
288                 uint32_t mask = 0;
289                 uint32_t values[7];
290                 int c = 0;
291 #define COPY_MASK_MEMBER(mask_member, event_member) do { \
292                 if (event->value_mask & mask_member) { \
293                         mask |= mask_member; \
294                         values[c++] = event->event_member; \
295                 } \
296 } while (0)
297
298                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_X, x);
299                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_Y, y);
300                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_WIDTH, width);
301                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_HEIGHT, height);
302                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_BORDER_WIDTH, border_width);
303                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_SIBLING, sibling);
304                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_STACK_MODE, stack_mode);
305
306                 xcb_configure_window(conn, event->window, mask, values);
307                 xcb_flush(conn);
308
309                 return 1;
310         }
311
312         if (client->fullscreen) {
313                 DLOG("Client is in fullscreen mode\n");
314
315                 Rect child_rect = client->workspace->rect;
316                 child_rect.x = child_rect.y = 0;
317                 fake_configure_notify(conn, child_rect, client->child);
318
319                 return 1;
320         }
321
322         /* Floating clients can be reconfigured */
323         if (client_is_floating(client)) {
324                 i3Font *font = load_font(conn, config.font);
325                 int mode = (client->container != NULL ? client->container->mode : MODE_DEFAULT);
326                 /* TODO: refactor this code. we need a function to translate
327                  * coordinates of child_rect/rect. */
328
329                 if (event->value_mask & XCB_CONFIG_WINDOW_X) {
330                         if (mode == MODE_STACK || mode == MODE_TABBED) {
331                                 client->rect.x = event->x - 2;
332                         } else {
333                                 if (client->titlebar_position == TITLEBAR_OFF && client->borderless)
334                                         client->rect.x = event->x;
335                                 else if (client->titlebar_position == TITLEBAR_OFF && !client->borderless)
336                                         client->rect.x = event->x - 1;
337                                 else client->rect.x = event->x - 2;
338                         }
339                 }
340                 if (event->value_mask & XCB_CONFIG_WINDOW_Y) {
341                         if (mode == MODE_STACK || mode == MODE_TABBED) {
342                                 client->rect.y = event->y - 2;
343                         } else {
344                                 if (client->titlebar_position == TITLEBAR_OFF && client->borderless)
345                                         client->rect.y = event->y;
346                                 else if (client->titlebar_position == TITLEBAR_OFF && !client->borderless)
347                                         client->rect.y = event->y - 1;
348                                 else client->rect.y = event->y - font->height - 2 - 2;
349                         }
350                 }
351                 if (event->value_mask & XCB_CONFIG_WINDOW_WIDTH) {
352                         if (mode == MODE_STACK || mode == MODE_TABBED) {
353                                 client->rect.width = event->width + 2 + 2;
354                         } else {
355                                 if (client->titlebar_position == TITLEBAR_OFF && client->borderless)
356                                         client->rect.width = event->width;
357                                 else if (client->titlebar_position == TITLEBAR_OFF && !client->borderless)
358                                         client->rect.width = event->width + (1 + 1);
359                                 else client->rect.width = event->width + (2 + 2);
360                         }
361                 }
362                 if (event->value_mask & XCB_CONFIG_WINDOW_HEIGHT) {
363                         if (mode == MODE_STACK || mode == MODE_TABBED) {
364                                 client->rect.height = event->height + 2;
365                         } else {
366                                 if (client->titlebar_position == TITLEBAR_OFF && client->borderless)
367                                         client->rect.height = event->height;
368                                 else if (client->titlebar_position == TITLEBAR_OFF && !client->borderless)
369                                         client->rect.height = event->height + (1 + 1);
370                                 else client->rect.height = event->height + (font->height + 2 + 2) + 2;
371                         }
372                 }
373
374                 DLOG("Accepted new position/size for floating client: (%d, %d) size %d x %d\n",
375                     client->rect.x, client->rect.y, client->rect.width, client->rect.height);
376
377                 /* Push the new position/size to X11 */
378                 reposition_client(conn, client);
379                 resize_client(conn, client);
380                 xcb_flush(conn);
381
382                 return 1;
383         }
384
385         /* Dock clients can be reconfigured in their height */
386         if (client->dock) {
387                 DLOG("Reconfiguring height of this dock client\n");
388
389                 if (!(event->value_mask & XCB_CONFIG_WINDOW_HEIGHT)) {
390                         DLOG("Ignoring configure request, no height given\n");
391                         return 1;
392                 }
393
394                 client->desired_height = event->height;
395                 render_workspace(conn, c_ws->output, c_ws);
396                 xcb_flush(conn);
397
398                 return 1;
399         }
400
401         if (client->fullscreen) {
402                 DLOG("Client is in fullscreen mode\n");
403
404                 Rect child_rect = client->container->workspace->rect;
405                 child_rect.x = child_rect.y = 0;
406                 fake_configure_notify(conn, child_rect, client->child);
407
408                 return 1;
409         }
410
411         fake_absolute_configure_notify(conn, client);
412
413         return 1;
414 }
415
416 /*
417  * Configuration notifies are only handled because we need to set up ignore for
418  * the following enter notify events.
419  *
420  */
421 int handle_configure_event(void *prophs, xcb_connection_t *conn, xcb_configure_notify_event_t *event) {
422         /* We ignore this sequence twice because events for child and frame should be ignored */
423         add_ignore_event(event->sequence);
424         add_ignore_event(event->sequence);
425
426         return 1;
427 }
428
429 /*
430  * Gets triggered upon a RandR screen change event, that is when the user
431  * changes the screen configuration in any way (mode, position, …)
432  *
433  */
434 int handle_screen_change(void *prophs, xcb_connection_t *conn,
435                          xcb_generic_event_t *e) {
436         DLOG("RandR screen change\n");
437
438         randr_query_outputs(conn);
439
440         ipc_send_event("output", I3_IPC_EVENT_OUTPUT, "{\"change\":\"unspecified\"}");
441
442         return 1;
443 }
444 #endif
445
446 /*
447  * Our window decorations were unmapped. That means, the window will be killed
448  * now, so we better clean up before.
449  *
450  */
451 int handle_unmap_notify_event(void *data, xcb_connection_t *conn, xcb_unmap_notify_event_t *event) {
452
453     //add_ignore_event(event->sequence);
454
455     DLOG("UnmapNotify for 0x%08x (received from 0x%08x)\n", event->window, event->event);
456     Con *con = con_by_window_id(event->window);
457     if (con == NULL) {
458         LOG("Not a managed window, ignoring\n");
459         return 1;
460     }
461
462     tree_close(con);
463     tree_render();
464     x_push_changes(croot);
465     return 1;
466
467 #if 0
468         if (client == NULL) {
469                 DLOG("not a managed window. Ignoring.\n");
470
471                 /* This was most likely the destroyed frame of a client which is
472                  * currently being unmapped, so we add this sequence (again!) to
473                  * the ignore list (enter_notify events will get sent for both,
474                  * the child and its frame). */
475                 add_ignore_event(event->sequence);
476
477                 return 0;
478         }
479 #endif
480
481
482 #if 0
483         /* Let’s see how many clients there are left on the workspace to delete it if it’s empty */
484         bool workspace_empty = SLIST_EMPTY(&(client->workspace->focus_stack));
485         bool workspace_focused = (c_ws == client->workspace);
486         Client *to_focus = (!workspace_empty ? SLIST_FIRST(&(client->workspace->focus_stack)) : NULL);
487
488         /* If this workspace is currently visible, we don’t delete it */
489         if (workspace_is_visible(client->workspace))
490                 workspace_empty = false;
491
492         if (workspace_empty) {
493                 client->workspace->output = NULL;
494                 ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"empty\"}");
495         }
496
497         /* Remove the urgency flag if set */
498         client->urgent = false;
499         workspace_update_urgent_flag(client->workspace);
500
501         render_layout(conn);
502 #endif
503
504         return 1;
505 }
506
507 #if 0
508 /*
509  * A destroy notify event is sent when the window is not unmapped, but
510  * immediately destroyed (for example when starting a window and immediately
511  * killing the program which started it).
512  *
513  * We just pass on the event to the unmap notify handler (by copying the
514  * important fields in the event data structure).
515  *
516  */
517 int handle_destroy_notify_event(void *data, xcb_connection_t *conn, xcb_destroy_notify_event_t *event) {
518         DLOG("destroy notify for 0x%08x, 0x%08x\n", event->event, event->window);
519
520         xcb_unmap_notify_event_t unmap;
521         unmap.sequence = event->sequence;
522         unmap.event = event->event;
523         unmap.window = event->window;
524
525         return handle_unmap_notify_event(NULL, conn, &unmap);
526 }
527 #endif
528 /*
529  * Called when a window changes its title
530  *
531  */
532 int handle_windowname_change(void *data, xcb_connection_t *conn, uint8_t state,
533                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
534     Con *con;
535     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
536         return 1;
537
538     window_update_name(con->window, prop);
539
540     x_push_changes(croot);
541
542     return 1;
543 }
544
545 /*
546  * Handles legacy window name updates (WM_NAME), see also src/window.c,
547  * window_update_name_legacy().
548  *
549  */
550 int handle_windowname_change_legacy(void *data, xcb_connection_t *conn, uint8_t state,
551                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
552     Con *con;
553     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
554         return 1;
555
556     window_update_name_legacy(con->window, prop);
557
558     x_push_changes(croot);
559
560     return 1;
561 }
562
563 /*
564  * Updates the client’s WM_CLASS property
565  *
566  */
567 int handle_windowclass_change(void *data, xcb_connection_t *conn, uint8_t state,
568                              xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
569     Con *con;
570     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
571         return 1;
572
573     window_update_class(con->window, prop);
574
575     return 0;
576 }
577
578 /*
579  * Expose event means we should redraw our windows (= title bar)
580  *
581  */
582 int handle_expose_event(void *data, xcb_connection_t *conn, xcb_expose_event_t *event) {
583     Con *parent, *con;
584
585     /* event->count is the number of minimum remaining expose events for this
586      * window, so we skip all events but the last one */
587     if (event->count != 0)
588         return 1;
589
590     DLOG("window = %08x\n", event->window);
591
592     if ((parent = con_by_frame_id(event->window)) == NULL) {
593         LOG("expose event for unknown window, ignoring\n");
594         return 1;
595     }
596
597     TAILQ_FOREACH(con, &(parent->nodes_head), nodes) {
598         LOG("expose for con %p / %s\n", con, con->name);
599         if (con->window)
600             x_draw_decoration(con);
601     }
602     xcb_flush(conn);
603
604     return 1;
605
606 #if 0
607     else {
608             uint32_t background_color;
609             if (client->urgent)
610                     background_color = config.client.urgent.background;
611             /* Distinguish if the window is currently focused… */
612             else if (CUR_CELL != NULL && CUR_CELL->currently_focused == client)
613                     background_color = config.client.focused.background;
614             /* …or if it is the focused window in a not focused container */
615             else background_color = config.client.focused_inactive.background;
616
617             /* Set foreground color to current focused color, line width to 2 */
618             uint32_t values[] = {background_color, 2};
619             xcb_change_gc(conn, client->titlegc, XCB_GC_FOREGROUND | XCB_GC_LINE_WIDTH, values);
620
621             /* Draw the border, the ±1 is for line width = 2 */
622             xcb_point_t points[] = {{1, 0},                                           /* left upper edge */
623                                     {1, client->rect.height-1},                       /* left bottom edge */
624                                     {client->rect.width-1, client->rect.height-1},    /* right bottom edge */
625                                     {client->rect.width-1, 0}};                       /* right upper edge */
626             xcb_poly_line(conn, XCB_COORD_MODE_ORIGIN, client->frame, client->titlegc, 4, points);
627
628             /* Draw a black background */
629             xcb_change_gc_single(conn, client->titlegc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#000000"));
630             if (client->titlebar_position == TITLEBAR_OFF && !client->borderless) {
631                     xcb_rectangle_t crect = {1, 0, client->rect.width - (1 + 1), client->rect.height - 1};
632                     xcb_poly_fill_rectangle(conn, client->frame, client->titlegc, 1, &crect);
633             } else {
634                     xcb_rectangle_t crect = {2, 0, client->rect.width - (2 + 2), client->rect.height - 2};
635                     xcb_poly_fill_rectangle(conn, client->frame, client->titlegc, 1, &crect);
636             }
637     }
638     xcb_flush(conn);
639     return 1;
640 #endif
641 }
642
643 #if 0
644 /*
645  * Handle client messages (EWMH)
646  *
647  */
648 int handle_client_message(void *data, xcb_connection_t *conn, xcb_client_message_event_t *event) {
649         if (event->type == atoms[_NET_WM_STATE]) {
650                 if (event->format != 32 || event->data.data32[1] != atoms[_NET_WM_STATE_FULLSCREEN])
651                         return 0;
652
653                 Client *client = table_get(&by_child, event->window);
654                 if (client == NULL)
655                         return 0;
656
657                 /* Check if the fullscreen state should be toggled */
658                 if ((client->fullscreen &&
659                      (event->data.data32[0] == _NET_WM_STATE_REMOVE ||
660                       event->data.data32[0] == _NET_WM_STATE_TOGGLE)) ||
661                     (!client->fullscreen &&
662                      (event->data.data32[0] == _NET_WM_STATE_ADD ||
663                       event->data.data32[0] == _NET_WM_STATE_TOGGLE)))
664                         client_toggle_fullscreen(conn, client);
665         } else {
666                 ELOG("unhandled clientmessage\n");
667                 return 0;
668         }
669
670         return 1;
671 }
672
673 int handle_window_type(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
674                         xcb_atom_t atom, xcb_get_property_reply_t *property) {
675         /* TODO: Implement this one. To do this, implement a little test program which sleep(1)s
676          before changing this property. */
677         ELOG("_NET_WM_WINDOW_TYPE changed, this is not yet implemented.\n");
678         return 0;
679 }
680
681 /*
682  * Handles the size hints set by a window, but currently only the part necessary for displaying
683  * clients proportionally inside their frames (mplayer for example)
684  *
685  * See ICCCM 4.1.2.3 for more details
686  *
687  */
688 int handle_normal_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
689                         xcb_atom_t name, xcb_get_property_reply_t *reply) {
690         Client *client = table_get(&by_child, window);
691         if (client == NULL) {
692                 DLOG("Received WM_SIZE_HINTS for unknown client\n");
693                 return 1;
694         }
695         xcb_size_hints_t size_hints;
696
697         CLIENT_LOG(client);
698
699         /* If the hints were already in this event, use them, if not, request them */
700         if (reply != NULL)
701                 xcb_get_wm_size_hints_from_reply(&size_hints, reply);
702         else
703                 xcb_get_wm_normal_hints_reply(conn, xcb_get_wm_normal_hints_unchecked(conn, client->child), &size_hints, NULL);
704
705         if ((size_hints.flags & XCB_SIZE_HINT_P_MIN_SIZE)) {
706                 // TODO: Minimum size is not yet implemented
707                 DLOG("Minimum size: %d (width) x %d (height)\n", size_hints.min_width, size_hints.min_height);
708         }
709
710         bool changed = false;
711         if ((size_hints.flags & XCB_SIZE_HINT_P_RESIZE_INC)) {
712                 if (size_hints.width_inc > 0 && size_hints.width_inc < 0xFFFF)
713                         if (client->width_increment != size_hints.width_inc) {
714                                 client->width_increment = size_hints.width_inc;
715                                 changed = true;
716                         }
717                 if (size_hints.height_inc > 0 && size_hints.height_inc < 0xFFFF)
718                         if (client->height_increment != size_hints.height_inc) {
719                                 client->height_increment = size_hints.height_inc;
720                                 changed = true;
721                         }
722
723                 if (changed)
724                         DLOG("resize increments changed\n");
725         }
726
727         int base_width = 0, base_height = 0;
728
729         /* base_width/height are the desired size of the window.
730            We check if either the program-specified size or the program-specified
731            min-size is available */
732         if (size_hints.flags & XCB_SIZE_HINT_BASE_SIZE) {
733                 base_width = size_hints.base_width;
734                 base_height = size_hints.base_height;
735         } else if (size_hints.flags & XCB_SIZE_HINT_P_MIN_SIZE) {
736                 /* TODO: is this right? icccm says not */
737                 base_width = size_hints.min_width;
738                 base_height = size_hints.min_height;
739         }
740
741         if (base_width != client->base_width ||
742             base_height != client->base_height) {
743                 client->base_width = base_width;
744                 client->base_height = base_height;
745                 DLOG("client's base_height changed to %d\n", base_height);
746                 DLOG("client's base_width changed to %d\n", base_width);
747                 changed = true;
748         }
749
750         if (changed) {
751                 if (client->fullscreen)
752                         DLOG("Not resizing client, it is in fullscreen mode\n");
753                 else {
754                         resize_client(conn, client);
755                         xcb_flush(conn);
756                 }
757         }
758
759         /* If no aspect ratio was set or if it was invalid, we ignore the hints */
760         if (!(size_hints.flags & XCB_SIZE_HINT_P_ASPECT) ||
761             (size_hints.min_aspect_num <= 0) ||
762             (size_hints.min_aspect_den <= 0)) {
763                 return 1;
764         }
765
766         double width = client->rect.width - base_width;
767         double height = client->rect.height - base_height;
768         /* Convert numerator/denominator to a double */
769         double min_aspect = (double)size_hints.min_aspect_num / size_hints.min_aspect_den;
770         double max_aspect = (double)size_hints.max_aspect_num / size_hints.min_aspect_den;
771
772         DLOG("Aspect ratio set: minimum %f, maximum %f\n", min_aspect, max_aspect);
773         DLOG("width = %f, height = %f\n", width, height);
774
775         /* Sanity checks, this is user-input, in a way */
776         if (max_aspect <= 0 || min_aspect <= 0 || height == 0 || (width / height) <= 0)
777                 return 1;
778
779         /* Check if we need to set proportional_* variables using the correct ratio */
780         if ((width / height) < min_aspect) {
781                 client->proportional_width = width;
782                 client->proportional_height = width / min_aspect;
783         } else if ((width / height) > max_aspect) {
784                 client->proportional_width = width;
785                 client->proportional_height = width / max_aspect;
786         } else return 1;
787
788         client->force_reconfigure = true;
789
790         if (client->container != NULL) {
791                 render_container(conn, client->container);
792                 xcb_flush(conn);
793         }
794
795         return 1;
796 }
797
798 /*
799  * Handles the WM_HINTS property for extracting the urgency state of the window.
800  *
801  */
802 int handle_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
803                   xcb_atom_t name, xcb_get_property_reply_t *reply) {
804         Client *client = table_get(&by_child, window);
805         if (client == NULL) {
806                 DLOG("Received WM_HINTS for unknown client\n");
807                 return 1;
808         }
809         xcb_wm_hints_t hints;
810
811         if (reply != NULL) {
812                 if (!xcb_get_wm_hints_from_reply(&hints, reply))
813                         return 1;
814         } else {
815                 if (!xcb_get_wm_hints_reply(conn, xcb_get_wm_hints_unchecked(conn, client->child), &hints, NULL))
816                         return 1;
817         }
818
819         Client *last_focused = SLIST_FIRST(&(c_ws->focus_stack));
820         if (!client->urgent && client == last_focused) {
821                 DLOG("Ignoring urgency flag for current client\n");
822                 return 1;
823         }
824
825         /* Update the flag on the client directly */
826         client->urgent = (xcb_wm_hints_get_urgency(&hints) != 0);
827         CLIENT_LOG(client);
828         LOG("Urgency flag changed to %d\n", client->urgent);
829
830         workspace_update_urgent_flag(client->workspace);
831         redecorate_window(conn, client);
832
833         /* If the workspace this client is on is not visible, we need to redraw
834          * the workspace bar */
835         if (!workspace_is_visible(client->workspace)) {
836                 Output *output = client->workspace->output;
837                 render_workspace(conn, output, output->current_workspace);
838                 xcb_flush(conn);
839         }
840
841         return 1;
842 }
843
844 /*
845  * Handles the transient for hints set by a window, signalizing that this window is a popup window
846  * for some other window.
847  *
848  * See ICCCM 4.1.2.6 for more details
849  *
850  */
851 int handle_transient_for(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         Client *client = table_get(&by_child, window);
854         if (client == NULL) {
855                 DLOG("No such client\n");
856                 return 1;
857         }
858
859         xcb_window_t transient_for;
860
861         if (reply != NULL) {
862                 if (!xcb_get_wm_transient_for_from_reply(&transient_for, reply))
863                         return 1;
864         } else {
865                 if (!xcb_get_wm_transient_for_reply(conn, xcb_get_wm_transient_for_unchecked(conn, window),
866                                                     &transient_for, NULL))
867                         return 1;
868         }
869
870         if (client->floating == FLOATING_AUTO_OFF) {
871                 DLOG("This is a popup window, putting into floating\n");
872                 toggle_floating_mode(conn, client, true);
873         }
874
875         return 1;
876 }
877
878 /*
879  * Handles changes of the WM_CLIENT_LEADER atom which specifies if this is a
880  * toolwindow (or similar) and to which window it belongs (logical parent).
881  *
882  */
883 int handle_clientleader_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
884                         xcb_atom_t name, xcb_get_property_reply_t *prop) {
885         if (prop == NULL) {
886                 prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn,
887                                         false, window, WM_CLIENT_LEADER, WINDOW, 0, 32), NULL);
888                 if (prop == NULL)
889                         return 1;
890         }
891
892         Client *client = table_get(&by_child, window);
893         if (client == NULL)
894                 return 1;
895
896         xcb_window_t *leader = xcb_get_property_value(prop);
897         if (leader == NULL)
898                 return 1;
899
900         DLOG("Client leader changed to %08x\n", *leader);
901
902         client->leader = *leader;
903
904         return 1;
905 }
906 #endif