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