Ignore enters on windows that are raised over focused window while being mapped.
[dana/openbox.git] / openbox / event.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    event.c for the Openbox window manager
4    Copyright (c) 2006        Mikael Magnusson
5    Copyright (c) 2003-2007   Dana Jansens
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    See the COPYING file for a copy of the GNU General Public License.
18 */
19
20 #include "event.h"
21 #include "debug.h"
22 #include "window.h"
23 #include "openbox.h"
24 #include "dock.h"
25 #include "actions.h"
26 #include "client.h"
27 #include "config.h"
28 #include "screen.h"
29 #include "frame.h"
30 #include "grab.h"
31 #include "menu.h"
32 #include "prompt.h"
33 #include "menuframe.h"
34 #include "keyboard.h"
35 #include "mouse.h"
36 #include "focus.h"
37 #include "focus_cycle.h"
38 #include "moveresize.h"
39 #include "group.h"
40 #include "stacking.h"
41 #include "ping.h"
42 #include "obt/display.h"
43 #include "obt/xqueue.h"
44 #include "obt/prop.h"
45 #include "obt/keyboard.h"
46
47 #include <X11/Xlib.h>
48 #include <X11/Xatom.h>
49 #include <glib.h>
50
51 #ifdef HAVE_SYS_SELECT_H
52 #  include <sys/select.h>
53 #endif
54 #ifdef HAVE_SIGNAL_H
55 #  include <signal.h>
56 #endif
57 #ifdef HAVE_UNISTD_H
58 #  include <unistd.h> /* for usleep() */
59 #endif
60
61 #ifdef USE_SM
62 #include <X11/ICE/ICElib.h>
63 #endif
64
65 typedef struct
66 {
67     gboolean ignored;
68 } ObEventData;
69
70 typedef struct
71 {
72     ObClient *client;
73     Time time;
74     gulong serial;
75 } ObFocusDelayData;
76
77 typedef struct
78 {
79     gulong start; /* inclusive */
80     gulong end;   /* inclusive */
81 } ObSerialRange;
82
83 static void event_process(const XEvent *e, gpointer data);
84 static void event_handle_root(XEvent *e);
85 static gboolean event_handle_menu_input(XEvent *e);
86 static void event_handle_menu(ObMenuFrame *frame, XEvent *e);
87 static gboolean event_handle_prompt(ObPrompt *p, XEvent *e);
88 static void event_handle_dock(ObDock *s, XEvent *e);
89 static void event_handle_dockapp(ObDockApp *app, XEvent *e);
90 static void event_handle_client(ObClient *c, XEvent *e);
91 static gboolean event_handle_user_input(ObClient *client, XEvent *e);
92 static gboolean is_enter_focus_event_ignored(gulong serial);
93 static void event_ignore_enter_range(gulong start, gulong end);
94
95 static void focus_delay_dest(gpointer data);
96 static void unfocus_delay_dest(gpointer data);
97 static gboolean focus_delay_func(gpointer data);
98 static gboolean unfocus_delay_func(gpointer data);
99 static void focus_delay_client_dest(ObClient *client, gpointer data);
100
101 Time event_last_user_time = CurrentTime;
102
103 /*! The time of the current X event (if it had a timestamp) */
104 static Time event_curtime = CurrentTime;
105 /*! The source time that started the current X event (user-provided, so not
106   to be trusted) */
107 static Time event_sourcetime = CurrentTime;
108
109 /*! The serial of the current X event */
110 static gulong event_curserial;
111 static gboolean focus_left_screen = FALSE;
112 static gboolean waiting_for_focusin = FALSE;
113 /*! A list of ObSerialRanges which are to be ignored for mouse enter events */
114 static GSList *ignore_serials = NULL;
115 static guint focus_delay_timeout_id = 0;
116 static ObClient *focus_delay_timeout_client = NULL;
117 static guint unfocus_delay_timeout_id = 0;
118 static ObClient *unfocus_delay_timeout_client = NULL;
119
120 #ifdef USE_SM
121 static gboolean ice_handler(GIOChannel *source, GIOCondition cond,
122                             gpointer conn)
123 {
124     Bool b;
125     IceProcessMessages(conn, NULL, &b);
126     return TRUE; /* don't remove the event source */
127 }
128
129 static void ice_watch(IceConn conn, IcePointer data, Bool opening,
130                       IcePointer *watch_data)
131 {
132     static guint id = 0;
133
134     if (opening) {
135         GIOChannel *ch;
136
137         ch = g_io_channel_unix_new(IceConnectionNumber(conn));
138         id = g_io_add_watch(ch, G_IO_IN, ice_handler, conn);
139         g_io_channel_unref(ch);
140     } else if (id) {
141         g_source_remove(id);
142         id = 0;
143     }
144 }
145 #endif
146
147 void event_startup(gboolean reconfig)
148 {
149     if (reconfig) return;
150
151     xqueue_add_callback(event_process, NULL);
152
153 #ifdef USE_SM
154     IceAddConnectionWatch(ice_watch, NULL);
155 #endif
156
157     client_add_destroy_notify(focus_delay_client_dest, NULL);
158 }
159
160 void event_shutdown(gboolean reconfig)
161 {
162     if (reconfig) return;
163
164 #ifdef USE_SM
165     IceRemoveConnectionWatch(ice_watch, NULL);
166 #endif
167
168     client_remove_destroy_notify(focus_delay_client_dest);
169 }
170
171 static Window event_get_window(XEvent *e)
172 {
173     Window window;
174
175     /* pick a window */
176     switch (e->type) {
177     case SelectionClear:
178         window = obt_root(ob_screen);
179         break;
180     case CreateNotify:
181         window = e->xcreatewindow.window;
182         break;
183     case MapRequest:
184         window = e->xmaprequest.window;
185         break;
186     case MapNotify:
187         window = e->xmap.window;
188         break;
189     case UnmapNotify:
190         window = e->xunmap.window;
191         break;
192     case DestroyNotify:
193         window = e->xdestroywindow.window;
194         break;
195     case ConfigureRequest:
196         window = e->xconfigurerequest.window;
197         break;
198     case ConfigureNotify:
199         window = e->xconfigure.window;
200         break;
201     default:
202 #ifdef XKB
203         if (obt_display_extension_xkb &&
204             e->type == obt_display_extension_xkb_basep)
205         {
206             switch (((XkbAnyEvent*)e)->xkb_type) {
207             case XkbBellNotify:
208                 window = ((XkbBellNotifyEvent*)e)->window;
209             default:
210                 window = None;
211             }
212         } else
213 #endif
214 #ifdef SYNC
215         if (obt_display_extension_sync &&
216             e->type == obt_display_extension_sync_basep + XSyncAlarmNotify)
217         {
218             window = None;
219         } else
220 #endif
221             window = e->xany.window;
222     }
223     return window;
224 }
225
226 static inline Time event_get_timestamp(const XEvent *e)
227 {
228     Time t = CurrentTime;
229
230     /* grab the lasttime and hack up the state */
231     switch (e->type) {
232     case ButtonPress:
233     case ButtonRelease:
234         t = e->xbutton.time;
235         break;
236     case KeyPress:
237         t = e->xkey.time;
238         break;
239     case KeyRelease:
240         t = e->xkey.time;
241         break;
242     case MotionNotify:
243         t = e->xmotion.time;
244         break;
245     case PropertyNotify:
246         t = e->xproperty.time;
247         break;
248     case EnterNotify:
249     case LeaveNotify:
250         t = e->xcrossing.time;
251         break;
252     default:
253 #ifdef SYNC
254         if (obt_display_extension_sync &&
255             e->type == obt_display_extension_sync_basep + XSyncAlarmNotify)
256         {
257             t = ((const XSyncAlarmNotifyEvent*)e)->time;
258         }
259 #endif
260         /* if more event types are anticipated, get their timestamp
261            explicitly */
262         break;
263     }
264
265     return t;
266 }
267
268 static void event_set_curtime(XEvent *e)
269 {
270     Time t = event_get_timestamp(e);
271
272     /* watch that if we get an event earlier than the last specified user_time,
273        which can happen if the clock goes backwards, we erase the last
274        specified user_time */
275     if (t && event_last_user_time && event_time_after(event_last_user_time, t))
276         event_reset_user_time();
277
278     event_sourcetime = CurrentTime;
279     event_curtime = t;
280 }
281
282 static void event_hack_mods(XEvent *e)
283 {
284     switch (e->type) {
285     case ButtonPress:
286     case ButtonRelease:
287         e->xbutton.state = obt_keyboard_only_modmasks(e->xbutton.state);
288         break;
289     case KeyPress:
290         break;
291     case KeyRelease:
292         break;
293     case MotionNotify:
294         e->xmotion.state = obt_keyboard_only_modmasks(e->xmotion.state);
295         /* compress events */
296         {
297             XEvent ce;
298             ObtXQueueWindowType wt;
299
300             wt.window = e->xmotion.window;
301             wt.type = MotionNotify;
302             while (xqueue_remove_local(&ce, xqueue_match_window_type, &wt)) {
303                 e->xmotion.x = ce.xmotion.x;
304                 e->xmotion.y = ce.xmotion.y;
305                 e->xmotion.x_root = ce.xmotion.x_root;
306                 e->xmotion.y_root = ce.xmotion.y_root;
307             }
308         }
309         break;
310     }
311 }
312
313 static gboolean wanted_focusevent(XEvent *e, gboolean in_client_only)
314 {
315     gint mode = e->xfocus.mode;
316     gint detail = e->xfocus.detail;
317     Window win = e->xany.window;
318
319     if (e->type == FocusIn) {
320         /* These are ones we never want.. */
321
322         /* This means focus was given by a keyboard/mouse grab. */
323         if (mode == NotifyGrab)
324             return FALSE;
325         /* This means focus was given back from a keyboard/mouse grab. */
326         if (mode == NotifyUngrab)
327             return FALSE;
328
329         /* These are the ones we want.. */
330
331         if (win == obt_root(ob_screen)) {
332             /* If looking for a focus in on a client, then always return
333                FALSE for focus in's to the root window */
334             if (in_client_only)
335                 return FALSE;
336             /* This means focus reverted off of a client */
337             else if (detail == NotifyPointerRoot ||
338                      detail == NotifyDetailNone ||
339                      detail == NotifyInferior ||
340                      /* This means focus got here from another screen */
341                      detail == NotifyNonlinear)
342                 return TRUE;
343             else
344                 return FALSE;
345         }
346
347         /* It was on a client, was it a valid one?
348            It's possible to get a FocusIn event for a client that was managed
349            but has disappeared.
350         */
351         if (in_client_only) {
352             ObWindow *w = window_find(e->xfocus.window);
353             if (!w || !WINDOW_IS_CLIENT(w))
354                 return FALSE;
355         }
356         else {
357             /* This means focus reverted to parent from the client (this
358                happens often during iconify animation) */
359             if (detail == NotifyInferior)
360                 return TRUE;
361         }
362
363         /* This means focus moved from the root window to a client */
364         if (detail == NotifyVirtual)
365             return TRUE;
366         /* This means focus moved from one client to another */
367         if (detail == NotifyNonlinearVirtual)
368             return TRUE;
369
370         /* Otherwise.. */
371         return FALSE;
372     } else {
373         g_assert(e->type == FocusOut);
374
375         /* These are ones we never want.. */
376
377         /* This means focus was taken by a keyboard/mouse grab. */
378         if (mode == NotifyGrab)
379             return FALSE;
380         /* This means focus was grabbed on a window and it was released. */
381         if (mode == NotifyUngrab)
382             return FALSE;
383
384         /* Focus left the root window revertedto state */
385         if (win == obt_root(ob_screen))
386             return FALSE;
387
388         /* These are the ones we want.. */
389
390         /* This means focus moved from a client to the root window */
391         if (detail == NotifyVirtual)
392             return TRUE;
393         /* This means focus moved from one client to another */
394         if (detail == NotifyNonlinearVirtual)
395             return TRUE;
396
397         /* Otherwise.. */
398         return FALSE;
399     }
400 }
401
402 static gboolean event_look_for_focusin(XEvent *e, gpointer data)
403 {
404     return e->type == FocusIn && wanted_focusevent(e, FALSE);
405 }
406
407 static gboolean event_look_for_focusin_client(XEvent *e, gpointer data)
408 {
409     return e->type == FocusIn && wanted_focusevent(e, TRUE);
410 }
411
412 static void print_focusevent(XEvent *e)
413 {
414     gint mode = e->xfocus.mode;
415     gint detail = e->xfocus.detail;
416     Window win = e->xany.window;
417     const gchar *modestr, *detailstr;
418
419     switch (mode) {
420     case NotifyNormal:       modestr="NotifyNormal";       break;
421     case NotifyGrab:         modestr="NotifyGrab";         break;
422     case NotifyUngrab:       modestr="NotifyUngrab";       break;
423     case NotifyWhileGrabbed: modestr="NotifyWhileGrabbed"; break;
424     default:                 g_assert_not_reached();
425     }
426     switch (detail) {
427     case NotifyAncestor:    detailstr="NotifyAncestor";    break;
428     case NotifyVirtual:     detailstr="NotifyVirtual";     break;
429     case NotifyInferior:    detailstr="NotifyInferior";    break;
430     case NotifyNonlinear:   detailstr="NotifyNonlinear";   break;
431     case NotifyNonlinearVirtual: detailstr="NotifyNonlinearVirtual"; break;
432     case NotifyPointer:     detailstr="NotifyPointer";     break;
433     case NotifyPointerRoot: detailstr="NotifyPointerRoot"; break;
434     case NotifyDetailNone:  detailstr="NotifyDetailNone";  break;
435     default:                g_assert_not_reached();
436     }
437
438     if (mode == NotifyGrab || mode == NotifyUngrab)
439         return;
440
441     g_assert(modestr);
442     g_assert(detailstr);
443     ob_debug_type(OB_DEBUG_FOCUS, "Focus%s 0x%x mode=%s detail=%s",
444                   (e->xfocus.type == FocusIn ? "In" : "Out"),
445                   win,
446                   modestr, detailstr);
447
448 }
449
450 static void event_process(const XEvent *ec, gpointer data)
451 {
452     XEvent ee, *e;
453     Window window;
454     ObClient *client = NULL;
455     ObDock *dock = NULL;
456     ObDockApp *dockapp = NULL;
457     ObWindow *obwin = NULL;
458     ObMenuFrame *menu = NULL;
459     ObPrompt *prompt = NULL;
460     gboolean used;
461
462     /* make a copy we can mangle */
463     ee = *ec;
464     e = &ee;
465
466     window = event_get_window(e);
467     if (window == obt_root(ob_screen))
468         /* don't do any lookups, waste of cpu */;
469     else if ((obwin = window_find(window))) {
470         switch (obwin->type) {
471         case OB_WINDOW_CLASS_DOCK:
472             dock = WINDOW_AS_DOCK(obwin);
473             break;
474         case OB_WINDOW_CLASS_CLIENT:
475             client = WINDOW_AS_CLIENT(obwin);
476             /* events on clients can be events on prompt windows too */
477             prompt = client->prompt;
478             break;
479         case OB_WINDOW_CLASS_MENUFRAME:
480             menu = WINDOW_AS_MENUFRAME(obwin);
481             break;
482         case OB_WINDOW_CLASS_INTERNAL:
483             /* we don't do anything with events directly on these windows */
484             break;
485         case OB_WINDOW_CLASS_PROMPT:
486             prompt = WINDOW_AS_PROMPT(obwin);
487             break;
488         }
489     }
490     else
491         dockapp = dock_find_dockapp(window);
492
493     event_set_curtime(e);
494     event_curserial = e->xany.serial;
495     event_hack_mods(e);
496
497     /* deal with it in the kernel */
498
499     if (e->type == FocusIn) {
500         print_focusevent(e);
501         if (!wanted_focusevent(e, FALSE)) {
502             if (waiting_for_focusin) {
503                 /* We were waiting for this FocusIn, since we got a FocusOut
504                    earlier, but it went to a window that isn't a client. */
505                 ob_debug_type(OB_DEBUG_FOCUS,
506                               "Focus went to an unmanaged window 0x%x !",
507                               e->xfocus.window);
508                 focus_fallback(TRUE, config_focus_under_mouse, TRUE, TRUE);
509             }
510         }
511         else if (client && e->xfocus.detail == NotifyInferior) {
512             ob_debug_type(OB_DEBUG_FOCUS, "Focus went to the frame window");
513
514             focus_left_screen = FALSE;
515
516             focus_fallback(FALSE, config_focus_under_mouse, TRUE, TRUE);
517
518             /* We don't get a FocusOut for this case, because it's just moving
519                from our Inferior up to us. This happens when iconifying a
520                window with RevertToParent focus */
521             frame_adjust_focus(client->frame, FALSE);
522             /* focus_set_client(NULL) has already been called */
523         }
524         else if (e->xfocus.detail == NotifyPointerRoot ||
525                  e->xfocus.detail == NotifyDetailNone ||
526                  e->xfocus.detail == NotifyInferior ||
527                  e->xfocus.detail == NotifyNonlinear)
528         {
529             ob_debug_type(OB_DEBUG_FOCUS,
530                           "Focus went to root or pointer root/none");
531
532             if (e->xfocus.detail == NotifyInferior ||
533                 e->xfocus.detail == NotifyNonlinear)
534             {
535                 focus_left_screen = FALSE;
536             }
537
538             /* If another FocusIn is in the queue then don't fallback yet. This
539                fixes the fun case of:
540                window map -> send focusin
541                window unmap -> get focusout
542                window map -> send focusin
543                get first focus out -> fall back to something (new window
544                  hasn't received focus yet, so something else) -> send focusin
545                which means the "something else" is the last thing to get a
546                focusin sent to it, so the new window doesn't end up with focus.
547
548                But if the other focus in is something like PointerRoot then we
549                still want to fall back.
550             */
551             if (xqueue_exists_local(event_look_for_focusin_client, NULL)) {
552                 ob_debug_type(OB_DEBUG_FOCUS,
553                               "  but another FocusIn is coming");
554             } else {
555                 /* Focus has been reverted.
556
557                    FocusOut events come after UnmapNotify, so we don't need to
558                    worry about focusing an invalid window
559                 */
560
561                 if (!focus_left_screen)
562                     focus_fallback(FALSE, config_focus_under_mouse,
563                                    TRUE, TRUE);
564             }
565         }
566         else if (!client)
567         {
568             ob_debug_type(OB_DEBUG_FOCUS,
569                           "Focus went to a window that is already gone");
570
571             /* If you send focus to a window and then it disappears, you can
572                get the FocusIn for it, after it is unmanaged.
573                Just wait for the next FocusOut/FocusIn pair, but make note that
574                the window that was focused no longer is. */
575             focus_set_client(NULL);
576         }
577         else if (client != focus_client) {
578             focus_left_screen = FALSE;
579             frame_adjust_focus(client->frame, TRUE);
580             focus_set_client(client);
581             client_calc_layer(client);
582             client_bring_helper_windows(client);
583         }
584
585         waiting_for_focusin = FALSE;
586     } else if (e->type == FocusOut) {
587         print_focusevent(e);
588         if (!wanted_focusevent(e, FALSE))
589             ; /* skip this one */
590         /* Look for the followup FocusIn */
591         else if (!xqueue_exists_local(event_look_for_focusin, NULL)) {
592             /* There is no FocusIn, this means focus went to a window that
593                is not being managed, or a window on another screen. */
594             Window win, root;
595             gint i;
596             guint u;
597             obt_display_ignore_errors(TRUE);
598             if (XGetInputFocus(obt_display, &win, &i) &&
599                 XGetGeometry(obt_display, win, &root, &i,&i,&u,&u,&u,&u) &&
600                 root != obt_root(ob_screen))
601             {
602                 ob_debug_type(OB_DEBUG_FOCUS,
603                               "Focus went to another screen !");
604                 focus_left_screen = TRUE;
605             }
606             else
607                 ob_debug_type(OB_DEBUG_FOCUS,
608                               "Focus went to a black hole !");
609             obt_display_ignore_errors(FALSE);
610             /* nothing is focused */
611             focus_set_client(NULL);
612         } else {
613             /* Focus moved, so mark that we are waiting to process that
614                FocusIn */
615             waiting_for_focusin = TRUE;
616
617             /* nothing is focused right now, but will be again shortly */
618             focus_set_client(NULL);
619         }
620
621         if (client && client != focus_client)
622             frame_adjust_focus(client->frame, FALSE);
623     }
624     else if (client)
625         event_handle_client(client, e);
626     else if (dockapp)
627         event_handle_dockapp(dockapp, e);
628     else if (dock)
629         event_handle_dock(dock, e);
630     else if (menu)
631         event_handle_menu(menu, e);
632     else if (window == obt_root(ob_screen))
633         event_handle_root(e);
634     else if (e->type == MapRequest)
635         window_manage(window);
636     else if (e->type == MappingNotify) {
637         /* keyboard layout changes for modifier mapping changes. reload the
638            modifier map, and rebind all the key bindings as appropriate */
639         ob_debug("Keyboard map changed. Reloading keyboard bindings.");
640         ob_set_state(OB_STATE_RECONFIGURING);
641         obt_keyboard_reload();
642         keyboard_rebind();
643         ob_set_state(OB_STATE_RUNNING);
644     }
645     else if (e->type == ClientMessage) {
646         /* This is for _NET_WM_REQUEST_FRAME_EXTENTS messages. They come for
647            windows that are not managed yet. */
648         if (e->xclient.message_type ==
649             OBT_PROP_ATOM(NET_REQUEST_FRAME_EXTENTS))
650         {
651             /* Pretend to manage the client, getting information used to
652                determine its decorations */
653             ObClient *c = client_fake_manage(e->xclient.window);
654             gulong vals[4];
655
656             /* set the frame extents on the window */
657             vals[0] = c->frame->size.left;
658             vals[1] = c->frame->size.right;
659             vals[2] = c->frame->size.top;
660             vals[3] = c->frame->size.bottom;
661             OBT_PROP_SETA32(e->xclient.window, NET_FRAME_EXTENTS,
662                             CARDINAL, vals, 4);
663
664             /* Free the pretend client */
665             client_fake_unmanage(c);
666         }
667     }
668     else if (e->type == ConfigureRequest) {
669         /* unhandled configure requests must be used to configure the
670            window directly */
671         XWindowChanges xwc;
672
673         xwc.x = e->xconfigurerequest.x;
674         xwc.y = e->xconfigurerequest.y;
675         xwc.width = e->xconfigurerequest.width;
676         xwc.height = e->xconfigurerequest.height;
677         xwc.border_width = e->xconfigurerequest.border_width;
678         xwc.sibling = e->xconfigurerequest.above;
679         xwc.stack_mode = e->xconfigurerequest.detail;
680
681         /* we are not to be held responsible if someone sends us an
682            invalid request! */
683         obt_display_ignore_errors(TRUE);
684         XConfigureWindow(obt_display, window,
685                          e->xconfigurerequest.value_mask, &xwc);
686         obt_display_ignore_errors(FALSE);
687     }
688 #ifdef SYNC
689     else if (obt_display_extension_sync &&
690              e->type == obt_display_extension_sync_basep + XSyncAlarmNotify)
691     {
692         XSyncAlarmNotifyEvent *se = (XSyncAlarmNotifyEvent*)e;
693         if (se->alarm == moveresize_alarm && moveresize_in_progress)
694             moveresize_event(e);
695     }
696 #endif
697
698     if (e->type == ButtonPress || e->type == ButtonRelease) {
699         ObWindow *w;
700         static guint pressed = 0;
701         static Window pressed_win = None;
702
703         event_sourcetime = event_curtime;
704
705         /* If the button press was on some non-root window, or was physically
706            on the root window... */
707         if (window != obt_root(ob_screen) ||
708             e->xbutton.subwindow == None ||
709             /* ...or if it is related to the last button press we handled... */
710             pressed == e->xbutton.button ||
711             /* ...or it if it was physically on an openbox
712                internal window... */
713             ((w = window_find(e->xbutton.subwindow)) &&
714              (WINDOW_IS_INTERNAL(w) || WINDOW_IS_DOCK(w))))
715             /* ...then process the event, otherwise ignore it */
716         {
717             used = event_handle_user_input(client, e);
718
719             if (prompt && !used)
720                 used = event_handle_prompt(prompt, e);
721
722             if (e->type == ButtonPress) {
723                 pressed = e->xbutton.button;
724                 pressed_win = e->xbutton.subwindow;
725             }
726         }
727     }
728     else if (e->type == KeyPress || e->type == KeyRelease ||
729              e->type == MotionNotify)
730     {
731         event_sourcetime = event_curtime;
732
733         used = event_handle_user_input(client, e);
734
735         if (prompt && !used)
736             used = event_handle_prompt(prompt, e);
737     }
738
739     /* show any debug prompts that are queued */
740     ob_debug_show_prompts();
741
742     /* if something happens and it's not from an XEvent, then we don't know
743        the time, so clear it here until the next event is handled */
744     event_curtime = event_sourcetime = CurrentTime;
745     event_curserial = 0;
746 }
747
748 static void event_handle_root(XEvent *e)
749 {
750     Atom msgtype;
751
752     switch(e->type) {
753     case SelectionClear:
754         ob_debug("Another WM has requested to replace us. Exiting.");
755         ob_exit_replace();
756         break;
757
758     case ClientMessage:
759         if (e->xclient.format != 32) break;
760
761         msgtype = e->xclient.message_type;
762         if (msgtype == OBT_PROP_ATOM(NET_CURRENT_DESKTOP)) {
763             guint d = e->xclient.data.l[0];
764             if (d < screen_num_desktops) {
765                 if (e->xclient.data.l[1] == 0)
766                     ob_debug_type(OB_DEBUG_APP_BUGS,
767                                   "_NET_CURRENT_DESKTOP message is missing "
768                                   "a timestamp");
769                 else
770                     event_sourcetime = e->xclient.data.l[1];
771                 screen_set_desktop(d, TRUE);
772             }
773         } else if (msgtype == OBT_PROP_ATOM(NET_NUMBER_OF_DESKTOPS)) {
774             guint d = e->xclient.data.l[0];
775             if (d > 0 && d <= 1000)
776                 screen_set_num_desktops(d);
777         } else if (msgtype == OBT_PROP_ATOM(NET_SHOWING_DESKTOP)) {
778             screen_show_desktop(e->xclient.data.l[0] != 0, NULL);
779         } else if (msgtype == OBT_PROP_ATOM(OB_CONTROL)) {
780             ob_debug("OB_CONTROL: %d", e->xclient.data.l[0]);
781             if (e->xclient.data.l[0] == 1)
782                 ob_reconfigure();
783             else if (e->xclient.data.l[0] == 2)
784                 ob_restart();
785             else if (e->xclient.data.l[0] == 3)
786                 ob_exit(0);
787         } else if (msgtype == OBT_PROP_ATOM(WM_PROTOCOLS)) {
788             if ((Atom)e->xclient.data.l[0] == OBT_PROP_ATOM(NET_WM_PING))
789                 ping_got_pong(e->xclient.data.l[1]);
790         }
791         break;
792     case PropertyNotify:
793         if (e->xproperty.atom == OBT_PROP_ATOM(NET_DESKTOP_NAMES)) {
794             ob_debug("UPDATE DESKTOP NAMES");
795             screen_update_desktop_names();
796         }
797         else if (e->xproperty.atom == OBT_PROP_ATOM(NET_DESKTOP_LAYOUT))
798             screen_update_layout();
799         break;
800     case ConfigureNotify:
801 #ifdef XRANDR
802         XRRUpdateConfiguration(e);
803 #endif
804         screen_resize();
805         break;
806     default:
807         ;
808     }
809 }
810
811 void event_enter_client(ObClient *client)
812 {
813     g_assert(config_focus_follow);
814
815     if (is_enter_focus_event_ignored(event_curserial)) {
816         ob_debug_type(OB_DEBUG_FOCUS, "Ignoring enter event with serial %lu "
817                       "on client 0x%x", event_curserial, client->window);
818         return;
819     }
820
821     ob_debug_type(OB_DEBUG_FOCUS, "using enter event with serial %lu "
822                   "on client 0x%x", event_curserial, client->window);
823
824     if (client_enter_focusable(client) && client_can_focus(client)) {
825         if (config_focus_delay) {
826             ObFocusDelayData *data;
827
828             if (focus_delay_timeout_id)
829                 g_source_remove(focus_delay_timeout_id);
830
831             data = g_slice_new(ObFocusDelayData);
832             data->client = client;
833             data->time = event_time();
834             data->serial = event_curserial;
835
836             focus_delay_timeout_id = g_timeout_add_full(G_PRIORITY_DEFAULT,
837                                                         config_focus_delay,
838                                                         focus_delay_func,
839                                                         data,
840                                                         focus_delay_dest);
841             focus_delay_timeout_client = client;
842         } else {
843             ObFocusDelayData data;
844             data.client = client;
845             data.time = event_time();
846             data.serial = event_curserial;
847             focus_delay_func(&data);
848         }
849     }
850 }
851
852 void event_leave_client(ObClient *client)
853 {
854     g_assert(config_focus_follow);
855
856     if (is_enter_focus_event_ignored(event_curserial)) {
857         ob_debug_type(OB_DEBUG_FOCUS, "Ignoring leave event with serial %lu\n"
858                       "on client 0x%x", event_curserial, client->window);
859         return;
860     }
861
862     if (client == focus_client) {
863         if (config_focus_delay) {
864             ObFocusDelayData *data;
865
866             if (unfocus_delay_timeout_id)
867                 g_source_remove(unfocus_delay_timeout_id);
868
869             data = g_slice_new(ObFocusDelayData);
870             data->client = client;
871             data->time = event_time();
872             data->serial = event_curserial;
873
874             unfocus_delay_timeout_id = g_timeout_add_full(G_PRIORITY_DEFAULT,
875                                                           config_focus_delay,
876                                                           unfocus_delay_func,
877                                                           data,
878                                                           unfocus_delay_dest);
879             unfocus_delay_timeout_client = client;
880         } else {
881             ObFocusDelayData data;
882             data.client = client;
883             data.time = event_time();
884             data.serial = event_curserial;
885             unfocus_delay_func(&data);
886         }
887     }
888 }
889
890 static gboolean *context_to_button(ObFrame *f, ObFrameContext con, gboolean press)
891 {
892     if (press) {
893         switch (con) {
894         case OB_FRAME_CONTEXT_MAXIMIZE:
895             return &f->max_press;
896         case OB_FRAME_CONTEXT_CLOSE:
897             return &f->close_press;
898         case OB_FRAME_CONTEXT_ICONIFY:
899             return &f->iconify_press;
900         case OB_FRAME_CONTEXT_ALLDESKTOPS:
901             return &f->desk_press;
902         case OB_FRAME_CONTEXT_SHADE:
903             return &f->shade_press;
904         default:
905             return NULL;
906         }
907     } else {
908         switch (con) {
909         case OB_FRAME_CONTEXT_MAXIMIZE:
910             return &f->max_hover;
911         case OB_FRAME_CONTEXT_CLOSE:
912             return &f->close_hover;
913         case OB_FRAME_CONTEXT_ICONIFY:
914             return &f->iconify_hover;
915         case OB_FRAME_CONTEXT_ALLDESKTOPS:
916             return &f->desk_hover;
917         case OB_FRAME_CONTEXT_SHADE:
918             return &f->shade_hover;
919         default:
920             return NULL;
921         }
922     }
923 }
924
925 static gboolean more_client_message_event(Window window, Atom msgtype)
926 {
927     ObtXQueueWindowMessage wm;
928     wm.window = window;
929     wm.message = msgtype;
930     return xqueue_exists_local(xqueue_match_window_message, &wm);
931 }
932
933 struct ObSkipPropertyChange {
934     Window window;
935     Atom prop;
936 };
937
938 static gboolean skip_property_change(XEvent *e, gpointer data)
939 {
940     const struct ObSkipPropertyChange s = *(struct ObSkipPropertyChange*)data;
941
942     if (e->type == PropertyNotify && e->xproperty.window == s.window) {
943         const Atom a = e->xproperty.atom;
944         const Atom b = s.prop;
945
946         /* these are all updated together */
947         if ((a == OBT_PROP_ATOM(NET_WM_NAME) ||
948              a == OBT_PROP_ATOM(WM_NAME) ||
949              a == OBT_PROP_ATOM(NET_WM_ICON_NAME) ||
950              a == OBT_PROP_ATOM(WM_ICON_NAME))
951             &&
952             (b == OBT_PROP_ATOM(NET_WM_NAME) ||
953              b == OBT_PROP_ATOM(WM_NAME) ||
954              b == OBT_PROP_ATOM(NET_WM_ICON_NAME) ||
955              b == OBT_PROP_ATOM(WM_ICON_NAME)))
956         {
957             return TRUE;
958         }
959         else if (a == b && a == OBT_PROP_ATOM(NET_WM_ICON))
960             return TRUE;
961     }
962     return FALSE;
963 }
964
965 static void event_handle_client(ObClient *client, XEvent *e)
966 {
967     Atom msgtype;
968     ObFrameContext con;
969     gboolean *but;
970     static gint px = -1, py = -1;
971     static guint pb = 0;
972     static ObFrameContext pcon = OB_FRAME_CONTEXT_NONE;
973
974     switch (e->type) {
975     case ButtonPress:
976         /* save where the press occured for the first button pressed */
977         if (!pb) {
978             pb = e->xbutton.button;
979             px = e->xbutton.x;
980             py = e->xbutton.y;
981
982             pcon = frame_context(client, e->xbutton.window, px, py);
983             pcon = mouse_button_frame_context(pcon, e->xbutton.button,
984                                               e->xbutton.state);
985         }
986     case ButtonRelease:
987         /* Wheel buttons don't draw because they are an instant click, so it
988            is a waste of resources to go drawing it.
989            if the user is doing an interactive thing, or has a menu open then
990            the mouse is grabbed (possibly) and if we get these events we don't
991            want to deal with them
992         */
993         if (!(e->xbutton.button == 4 || e->xbutton.button == 5) &&
994             !grab_on_keyboard())
995         {
996             /* use where the press occured */
997             con = frame_context(client, e->xbutton.window, px, py);
998             con = mouse_button_frame_context(con, e->xbutton.button,
999                                              e->xbutton.state);
1000
1001             /* button presses on CLIENT_CONTEXTs are not accompanied by a
1002                release because they are Replayed to the client */
1003             if ((e->type == ButtonRelease || CLIENT_CONTEXT(con, client)) &&
1004                 e->xbutton.button == pb)
1005                 pb = 0, px = py = -1, pcon = OB_FRAME_CONTEXT_NONE;
1006
1007             but = context_to_button(client->frame, con, TRUE);
1008             if (but) {
1009                 *but = (e->type == ButtonPress);
1010                 frame_adjust_state(client->frame);
1011             }
1012         }
1013         break;
1014     case MotionNotify:
1015         /* when there is a grab on the pointer, we won't get enter/leave
1016            notifies, but we still get motion events */
1017         if (grab_on_pointer()) break;
1018
1019         con = frame_context(client, e->xmotion.window,
1020                             e->xmotion.x, e->xmotion.y);
1021         switch (con) {
1022         case OB_FRAME_CONTEXT_TITLEBAR:
1023         case OB_FRAME_CONTEXT_TLCORNER:
1024         case OB_FRAME_CONTEXT_TRCORNER:
1025             /* we've left the button area inside the titlebar */
1026             if (client->frame->max_hover || client->frame->desk_hover ||
1027                 client->frame->shade_hover || client->frame->iconify_hover ||
1028                 client->frame->close_hover)
1029             {
1030                 client->frame->max_hover =
1031                     client->frame->desk_hover =
1032                     client->frame->shade_hover =
1033                     client->frame->iconify_hover =
1034                     client->frame->close_hover = FALSE;
1035                 frame_adjust_state(client->frame);
1036             }
1037             break;
1038         default:
1039             but = context_to_button(client->frame, con, FALSE);
1040             if (but && !*but && !pb) {
1041                 *but = TRUE;
1042                 frame_adjust_state(client->frame);
1043             }
1044             break;
1045         }
1046         break;
1047     case LeaveNotify:
1048         con = frame_context(client, e->xcrossing.window,
1049                             e->xcrossing.x, e->xcrossing.y);
1050         switch (con) {
1051         case OB_FRAME_CONTEXT_TITLEBAR:
1052         case OB_FRAME_CONTEXT_TLCORNER:
1053         case OB_FRAME_CONTEXT_TRCORNER:
1054             /* we've left the button area inside the titlebar */
1055             client->frame->max_hover =
1056                 client->frame->desk_hover =
1057                 client->frame->shade_hover =
1058                 client->frame->iconify_hover =
1059                 client->frame->close_hover = FALSE;
1060             if (e->xcrossing.mode == NotifyGrab) {
1061                 client->frame->max_press =
1062                     client->frame->desk_press =
1063                     client->frame->shade_press =
1064                     client->frame->iconify_press =
1065                     client->frame->close_press = FALSE;
1066             }
1067             break;
1068         case OB_FRAME_CONTEXT_FRAME:
1069             /* When the mouse leaves an animating window, don't use the
1070                corresponding enter events. Pretend like the animating window
1071                doesn't even exist..! */
1072             if (frame_iconify_animating(client->frame))
1073                 event_end_ignore_all_enters(event_start_ignore_all_enters());
1074
1075             ob_debug_type(OB_DEBUG_FOCUS,
1076                           "%sNotify mode %d detail %d on %lx",
1077                           (e->type == EnterNotify ? "Enter" : "Leave"),
1078                           e->xcrossing.mode,
1079                           e->xcrossing.detail, (client?client->window:0));
1080             if (grab_on_keyboard())
1081                 break;
1082             if (config_focus_follow &&
1083                 /* leave inferior events can happen when the mouse goes onto
1084                    the window's border and then into the window before the
1085                    delay is up */
1086                 e->xcrossing.detail != NotifyInferior)
1087             {
1088                 if (config_focus_delay && focus_delay_timeout_id)
1089                     g_source_remove(focus_delay_timeout_id);
1090                 if (config_unfocus_leave)
1091                     event_leave_client(client);
1092             }
1093             break;
1094         default:
1095             but = context_to_button(client->frame, con, FALSE);
1096             if (but) {
1097                 *but = FALSE;
1098                 if (e->xcrossing.mode == NotifyGrab) {
1099                     but = context_to_button(client->frame, con, TRUE);
1100                     *but = FALSE;
1101                 }
1102                 frame_adjust_state(client->frame);
1103             }
1104             break;
1105         }
1106         break;
1107     case EnterNotify:
1108     {
1109         con = frame_context(client, e->xcrossing.window,
1110                             e->xcrossing.x, e->xcrossing.y);
1111         switch (con) {
1112         case OB_FRAME_CONTEXT_FRAME:
1113             if (grab_on_keyboard())
1114                 break;
1115             if (e->xcrossing.mode == NotifyGrab ||
1116                 (e->xcrossing.mode == NotifyUngrab &&
1117                  /* ungrab enters are used when _under_ mouse is being used */
1118                  !(config_focus_follow && config_focus_under_mouse)) ||
1119                 /*ignore enters when we're already in the window */
1120                 e->xcrossing.detail == NotifyInferior)
1121             {
1122                 ob_debug_type(OB_DEBUG_FOCUS,
1123                               "%sNotify mode %d detail %d serial %lu on %lx "
1124                               "IGNORED",
1125                               (e->type == EnterNotify ? "Enter" : "Leave"),
1126                               e->xcrossing.mode,
1127                               e->xcrossing.detail,
1128                               e->xcrossing.serial,
1129                               client?client->window:0);
1130             }
1131             else {
1132                 ob_debug_type(OB_DEBUG_FOCUS,
1133                               "%sNotify mode %d detail %d serial %lu on %lx, "
1134                               "focusing window",
1135                               (e->type == EnterNotify ? "Enter" : "Leave"),
1136                               e->xcrossing.mode,
1137                               e->xcrossing.detail,
1138                               e->xcrossing.serial,
1139                               (client?client->window:0));
1140                 if (config_focus_follow) {
1141                     if (config_focus_delay && unfocus_delay_timeout_id)
1142                         g_source_remove(unfocus_delay_timeout_id);
1143                     event_enter_client(client);
1144                 }
1145             }
1146             break;
1147         default:
1148             but = context_to_button(client->frame, con, FALSE);
1149             if (but) {
1150                 *but = TRUE;
1151                 if (e->xcrossing.mode == NotifyUngrab) {
1152                     but = context_to_button(client->frame, con, TRUE);
1153                     *but = (con == pcon);
1154                 }
1155                 frame_adjust_state(client->frame);
1156             }
1157             break;
1158         }
1159         break;
1160     }
1161     case ConfigureRequest:
1162     {
1163         /* dont compress these unless you're going to watch for property
1164            notifies in between (these can change what the configure would
1165            do to the window).
1166            also you can't compress stacking events
1167         */
1168
1169         gint x, y, w, h;
1170         gboolean move = FALSE;
1171         gboolean resize = FALSE;
1172
1173         /* get the current area */
1174         RECT_TO_DIMS(client->area, x, y, w, h);
1175
1176         ob_debug("ConfigureRequest for \"%s\" desktop %d wmstate %d "
1177                  "visible %d",
1178                  client->title,
1179                  screen_desktop, client->wmstate, client->frame->visible);
1180         ob_debug("                     x %d y %d w %d h %d b %d",
1181                  x, y, w, h, client->border_width);
1182
1183         if (e->xconfigurerequest.value_mask & CWBorderWidth)
1184             if (client->border_width != e->xconfigurerequest.border_width) {
1185                 client->border_width = e->xconfigurerequest.border_width;
1186
1187                 /* if the border width is changing then that is the same
1188                    as requesting a resize, but we don't actually change
1189                    the client's border, so it will change their root
1190                    coordinates (since they include the border width) and
1191                    we need to a notify then */
1192                 move = TRUE;
1193             }
1194
1195         if (e->xconfigurerequest.value_mask & CWStackMode) {
1196             ObClient *sibling = NULL;
1197             gulong ignore_start;
1198             gboolean ok = TRUE;
1199
1200             /* get the sibling */
1201             if (e->xconfigurerequest.value_mask & CWSibling) {
1202                 ObWindow *win;
1203                 win = window_find(e->xconfigurerequest.above);
1204                 if (win && WINDOW_IS_CLIENT(win) &&
1205                     WINDOW_AS_CLIENT(win) != client)
1206                 {
1207                     sibling = WINDOW_AS_CLIENT(win);
1208                 }
1209                 else
1210                     /* an invalid sibling was specified so don't restack at
1211                        all, it won't make sense no matter what we do */
1212                     ok = FALSE;
1213             }
1214
1215             if (ok) {
1216                 if (!config_focus_under_mouse)
1217                     ignore_start = event_start_ignore_all_enters();
1218                 stacking_restack_request(client, sibling,
1219                                          e->xconfigurerequest.detail);
1220                 if (!config_focus_under_mouse)
1221                     event_end_ignore_all_enters(ignore_start);
1222             }
1223
1224             /* a stacking change moves the window without resizing */
1225             move = TRUE;
1226         }
1227
1228         if ((e->xconfigurerequest.value_mask & CWX) ||
1229             (e->xconfigurerequest.value_mask & CWY) ||
1230             (e->xconfigurerequest.value_mask & CWWidth) ||
1231             (e->xconfigurerequest.value_mask & CWHeight))
1232         {
1233             /* don't allow clients to move shaded windows (fvwm does this)
1234             */
1235             if (e->xconfigurerequest.value_mask & CWX) {
1236                 if (!client->shaded)
1237                     x = e->xconfigurerequest.x;
1238                 move = TRUE;
1239             }
1240             if (e->xconfigurerequest.value_mask & CWY) {
1241                 if (!client->shaded)
1242                     y = e->xconfigurerequest.y;
1243                 move = TRUE;
1244             }
1245
1246             if (e->xconfigurerequest.value_mask & CWWidth) {
1247                 w = e->xconfigurerequest.width;
1248                 resize = TRUE;
1249             }
1250             if (e->xconfigurerequest.value_mask & CWHeight) {
1251                 h = e->xconfigurerequest.height;
1252                 resize = TRUE;
1253             }
1254         }
1255
1256         ob_debug("ConfigureRequest x(%d) %d y(%d) %d w(%d) %d h(%d) %d "
1257                  "move %d resize %d",
1258                  e->xconfigurerequest.value_mask & CWX, x,
1259                  e->xconfigurerequest.value_mask & CWY, y,
1260                  e->xconfigurerequest.value_mask & CWWidth, w,
1261                  e->xconfigurerequest.value_mask & CWHeight, h,
1262                  move, resize);
1263
1264         /* check for broken apps moving to their root position
1265
1266            XXX remove this some day...that would be nice. right now all
1267            kde apps do this when they try activate themselves on another
1268            desktop. eg. open amarok window on desktop 1, switch to desktop
1269            2, click amarok tray icon. it will move by its decoration size.
1270         */
1271         if (x != client->area.x &&
1272             x == (client->frame->area.x + client->frame->size.left -
1273                   (gint)client->border_width) &&
1274             y != client->area.y &&
1275             y == (client->frame->area.y + client->frame->size.top -
1276                   (gint)client->border_width) &&
1277             w == client->area.width &&
1278             h == client->area.height)
1279         {
1280             ob_debug_type(OB_DEBUG_APP_BUGS,
1281                           "Application %s is trying to move via "
1282                           "ConfigureRequest to it's root window position "
1283                           "but it is not using StaticGravity",
1284                           client->title);
1285             /* don't move it */
1286             x = client->area.x;
1287             y = client->area.y;
1288
1289             /* they still requested a move, so don't change whether a
1290                notify is sent or not */
1291         }
1292
1293         /* check for broken apps (java swing) moving to 0,0 when there is a
1294            strut there.
1295
1296            XXX remove this some day...that would be nice. but really unexpected
1297            from Sun Microsystems.
1298         */
1299         if (x == 0 && y == 0 && client->gravity == NorthWestGravity &&
1300             client_normal(client))
1301         {
1302             const Rect to = { x, y, w, h };
1303
1304             /* oldschool fullscreen windows are allowed */
1305             if (!client_is_oldfullscreen(client, &to)) {
1306                 Rect *r;
1307
1308                 r = screen_area(client->desktop, SCREEN_AREA_ALL_MONITORS,
1309                                 NULL);
1310                 if (r->x || r->y) {
1311                     /* move the window only to the corner outside struts */
1312                     x = r->x;
1313                     y = r->y;
1314
1315                     ob_debug_type(OB_DEBUG_APP_BUGS,
1316                                   "Application %s is trying to move via "
1317                                   "ConfigureRequest to 0,0 using "
1318                                   "NorthWestGravity, while there is a "
1319                                   "strut there. "
1320                                   "Moving buggy app from (0,0) to (%d,%d)",
1321                                   client->title, r->x, r->y);
1322                 }
1323
1324                 g_slice_free(Rect, r);
1325
1326                 /* they still requested a move, so don't change whether a
1327                    notify is sent or not */
1328             }
1329         }
1330
1331         {
1332             gint lw, lh;
1333
1334             client_try_configure(client, &x, &y, &w, &h, &lw, &lh, FALSE);
1335
1336             /* if x was not given, then use gravity to figure out the new
1337                x.  the reference point should not be moved */
1338             if ((e->xconfigurerequest.value_mask & CWWidth &&
1339                  !(e->xconfigurerequest.value_mask & CWX)))
1340                 client_gravity_resize_w(client, &x, client->area.width, w);
1341             /* same for y */
1342             if ((e->xconfigurerequest.value_mask & CWHeight &&
1343                  !(e->xconfigurerequest.value_mask & CWY)))
1344                 client_gravity_resize_h(client, &y, client->area.height,h);
1345
1346             client_find_onscreen(client, &x, &y, w, h, FALSE);
1347
1348             ob_debug("Granting ConfigureRequest x %d y %d w %d h %d",
1349                      x, y, w, h);
1350             client_configure(client, x, y, w, h, FALSE, TRUE, TRUE);
1351         }
1352         break;
1353     }
1354     case UnmapNotify:
1355         ob_debug("UnmapNotify for window 0x%x eventwin 0x%x sendevent %d "
1356                  "ignores left %d",
1357                  client->window, e->xunmap.event, e->xunmap.from_configure,
1358                  client->ignore_unmaps);
1359         if (client->ignore_unmaps) {
1360             client->ignore_unmaps--;
1361             break;
1362         }
1363         client_unmanage(client);
1364         break;
1365     case DestroyNotify:
1366         ob_debug("DestroyNotify for window 0x%x", client->window);
1367         client_unmanage(client);
1368         break;
1369     case ReparentNotify:
1370         /* this is when the client is first taken captive in the frame */
1371         if (e->xreparent.parent == client->frame->window) break;
1372
1373         /*
1374           This event is quite rare and is usually handled in unmapHandler.
1375           However, if the window is unmapped when the reparent event occurs,
1376           the window manager never sees it because an unmap event is not sent
1377           to an already unmapped window.
1378         */
1379
1380         ob_debug("ReparentNotify for window 0x%x", client->window);
1381         client_unmanage(client);
1382         break;
1383     case MapRequest:
1384         ob_debug("MapRequest for 0x%lx", client->window);
1385         if (!client->iconic) break; /* this normally doesn't happen, but if it
1386                                        does, we don't want it!
1387                                        it can happen now when the window is on
1388                                        another desktop, but we still don't
1389                                        want it! */
1390         client_activate(client, FALSE, FALSE, TRUE, TRUE, TRUE);
1391         break;
1392     case ClientMessage:
1393         /* validate cuz we query stuff off the client here */
1394         if (!client_validate(client)) break;
1395
1396         if (e->xclient.format != 32) return;
1397
1398         msgtype = e->xclient.message_type;
1399         if (msgtype == OBT_PROP_ATOM(WM_CHANGE_STATE)) {
1400             if (!more_client_message_event(client->window, msgtype))
1401                 client_set_wm_state(client, e->xclient.data.l[0]);
1402         } else if (msgtype == OBT_PROP_ATOM(NET_WM_DESKTOP)) {
1403             if (!more_client_message_event(client->window, msgtype) &&
1404                 ((unsigned)e->xclient.data.l[0] < screen_num_desktops ||
1405                  (unsigned)e->xclient.data.l[0] == DESKTOP_ALL))
1406             {
1407                 client_set_desktop(client, (unsigned)e->xclient.data.l[0],
1408                                    FALSE, FALSE);
1409             }
1410         } else if (msgtype == OBT_PROP_ATOM(NET_WM_STATE)) {
1411             gulong ignore_start;
1412
1413             /* can't compress these */
1414             ob_debug("net_wm_state %s %ld %ld for 0x%lx",
1415                      (e->xclient.data.l[0] == 0 ? "Remove" :
1416                       e->xclient.data.l[0] == 1 ? "Add" :
1417                       e->xclient.data.l[0] == 2 ? "Toggle" : "INVALID"),
1418                      e->xclient.data.l[1], e->xclient.data.l[2],
1419                      client->window);
1420
1421             /* ignore enter events caused by these like ob actions do */
1422             if (!config_focus_under_mouse)
1423                 ignore_start = event_start_ignore_all_enters();
1424             client_set_state(client, e->xclient.data.l[0],
1425                              e->xclient.data.l[1], e->xclient.data.l[2]);
1426             if (!config_focus_under_mouse)
1427                 event_end_ignore_all_enters(ignore_start);
1428         } else if (msgtype == OBT_PROP_ATOM(NET_CLOSE_WINDOW)) {
1429             ob_debug("net_close_window for 0x%lx", client->window);
1430             client_close(client);
1431         } else if (msgtype == OBT_PROP_ATOM(NET_ACTIVE_WINDOW)) {
1432             ob_debug("net_active_window for 0x%lx source=%s",
1433                      client->window,
1434                      (e->xclient.data.l[0] == 0 ? "unknown" :
1435                       (e->xclient.data.l[0] == 1 ? "application" :
1436                        (e->xclient.data.l[0] == 2 ? "user" : "INVALID"))));
1437             /* XXX make use of data.l[2] !? */
1438             if (e->xclient.data.l[0] == 1 || e->xclient.data.l[0] == 2) {
1439                 /* we can not trust the timestamp from applications.
1440                    e.g. chromium passes a very old timestamp.  openbox thinks
1441                    the window will get focus and calls XSetInputFocus with the
1442                    (old) timestamp, which doesn't end up moving focus at all.
1443                    but the window is raised, not hilited, etc, as if it was
1444                    really going to get focus.
1445
1446                    so do not use this timestamp in event_curtime, as this would
1447                    be used in XSetInputFocus.
1448                 */
1449                 event_sourcetime = e->xclient.data.l[1];
1450                 if (e->xclient.data.l[1] == 0)
1451                     ob_debug_type(OB_DEBUG_APP_BUGS,
1452                                   "_NET_ACTIVE_WINDOW message for window %s is"
1453                                   " missing a timestamp", client->title);
1454             } else
1455                 ob_debug_type(OB_DEBUG_APP_BUGS,
1456                               "_NET_ACTIVE_WINDOW message for window %s is "
1457                               "missing source indication", client->title);
1458             /* TODO(danakj) This should use
1459                (e->xclient.data.l[0] == 0 ||
1460                 e->xclient.data.l[0] == 2)
1461                to determine if a user requested the activation, however GTK+
1462                applications seem unable to make this distinction ever
1463                (including panels such as xfce4-panel and gnome-panel).
1464                So we are left just assuming all activations are from the user.
1465             */
1466             client_activate(client, FALSE, FALSE, TRUE, TRUE, TRUE);
1467         } else if (msgtype == OBT_PROP_ATOM(NET_WM_MOVERESIZE)) {
1468             ob_debug("net_wm_moveresize for 0x%lx direction %d",
1469                      client->window, e->xclient.data.l[2]);
1470             if ((Atom)e->xclient.data.l[2] ==
1471                 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_TOPLEFT) ||
1472                 (Atom)e->xclient.data.l[2] ==
1473                 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_TOP) ||
1474                 (Atom)e->xclient.data.l[2] ==
1475                 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_TOPRIGHT) ||
1476                 (Atom)e->xclient.data.l[2] ==
1477                 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_RIGHT) ||
1478                 (Atom)e->xclient.data.l[2] ==
1479                 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_RIGHT) ||
1480                 (Atom)e->xclient.data.l[2] ==
1481                 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT) ||
1482                 (Atom)e->xclient.data.l[2] ==
1483                 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_BOTTOM) ||
1484                 (Atom)e->xclient.data.l[2] ==
1485                 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT) ||
1486                 (Atom)e->xclient.data.l[2] ==
1487                 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_LEFT) ||
1488                 (Atom)e->xclient.data.l[2] ==
1489                 OBT_PROP_ATOM(NET_WM_MOVERESIZE_MOVE) ||
1490                 (Atom)e->xclient.data.l[2] ==
1491                 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_KEYBOARD) ||
1492                 (Atom)e->xclient.data.l[2] ==
1493                 OBT_PROP_ATOM(NET_WM_MOVERESIZE_MOVE_KEYBOARD))
1494             {
1495                 moveresize_start(client, e->xclient.data.l[0],
1496                                  e->xclient.data.l[1], e->xclient.data.l[3],
1497                                  e->xclient.data.l[2]);
1498             }
1499             else if ((Atom)e->xclient.data.l[2] ==
1500                      OBT_PROP_ATOM(NET_WM_MOVERESIZE_CANCEL))
1501                 moveresize_end(TRUE);
1502         } else if (msgtype == OBT_PROP_ATOM(NET_MOVERESIZE_WINDOW)) {
1503             gint ograv, x, y, w, h;
1504
1505             ograv = client->gravity;
1506
1507             if (e->xclient.data.l[0] & 0xff)
1508                 client->gravity = e->xclient.data.l[0] & 0xff;
1509
1510             if (e->xclient.data.l[0] & 1 << 8)
1511                 x = e->xclient.data.l[1];
1512             else
1513                 x = client->area.x;
1514             if (e->xclient.data.l[0] & 1 << 9)
1515                 y = e->xclient.data.l[2];
1516             else
1517                 y = client->area.y;
1518
1519             if (e->xclient.data.l[0] & 1 << 10) {
1520                 w = e->xclient.data.l[3];
1521
1522                 /* if x was not given, then use gravity to figure out the new
1523                    x.  the reference point should not be moved */
1524                 if (!(e->xclient.data.l[0] & 1 << 8))
1525                     client_gravity_resize_w(client, &x, client->area.width, w);
1526             }
1527             else
1528                 w = client->area.width;
1529
1530             if (e->xclient.data.l[0] & 1 << 11) {
1531                 h = e->xclient.data.l[4];
1532
1533                 /* same for y */
1534                 if (!(e->xclient.data.l[0] & 1 << 9))
1535                     client_gravity_resize_h(client, &y, client->area.height,h);
1536             }
1537             else
1538                 h = client->area.height;
1539
1540             ob_debug("MOVERESIZE x %d %d y %d %d (gravity %d)",
1541                      e->xclient.data.l[0] & 1 << 8, x,
1542                      e->xclient.data.l[0] & 1 << 9, y,
1543                      client->gravity);
1544
1545             client_find_onscreen(client, &x, &y, w, h, FALSE);
1546
1547             client_configure(client, x, y, w, h, FALSE, TRUE, FALSE);
1548
1549             client->gravity = ograv;
1550         } else if (msgtype == OBT_PROP_ATOM(NET_RESTACK_WINDOW)) {
1551             if (e->xclient.data.l[0] != 2) {
1552                 ob_debug_type(OB_DEBUG_APP_BUGS,
1553                               "_NET_RESTACK_WINDOW sent for window %s with "
1554                               "invalid source indication %ld",
1555                               client->title, e->xclient.data.l[0]);
1556             } else {
1557                 ObClient *sibling = NULL;
1558                 if (e->xclient.data.l[1]) {
1559                     ObWindow *win = window_find(e->xclient.data.l[1]);
1560                     if (WINDOW_IS_CLIENT(win) &&
1561                         WINDOW_AS_CLIENT(win) != client)
1562                     {
1563                         sibling = WINDOW_AS_CLIENT(win);
1564                     }
1565                     if (sibling == NULL)
1566                         ob_debug_type(OB_DEBUG_APP_BUGS,
1567                                       "_NET_RESTACK_WINDOW sent for window %s "
1568                                       "with invalid sibling 0x%x",
1569                                  client->title, e->xclient.data.l[1]);
1570                 }
1571                 if (e->xclient.data.l[2] == Below ||
1572                     e->xclient.data.l[2] == BottomIf ||
1573                     e->xclient.data.l[2] == Above ||
1574                     e->xclient.data.l[2] == TopIf ||
1575                     e->xclient.data.l[2] == Opposite)
1576                 {
1577                     gulong ignore_start;
1578
1579                     if (!config_focus_under_mouse)
1580                         ignore_start = event_start_ignore_all_enters();
1581                     /* just raise, don't activate */
1582                     stacking_restack_request(client, sibling,
1583                                              e->xclient.data.l[2]);
1584                     if (!config_focus_under_mouse)
1585                         event_end_ignore_all_enters(ignore_start);
1586
1587                     /* send a synthetic ConfigureNotify, cuz this is supposed
1588                        to be like a ConfigureRequest. */
1589                     client_reconfigure(client, TRUE);
1590                 } else
1591                     ob_debug_type(OB_DEBUG_APP_BUGS,
1592                                   "_NET_RESTACK_WINDOW sent for window %s "
1593                                   "with invalid detail %d",
1594                                   client->title, e->xclient.data.l[2]);
1595             }
1596         }
1597         break;
1598     case PropertyNotify:
1599         /* validate cuz we query stuff off the client here */
1600         if (!client_validate(client)) break;
1601
1602         msgtype = e->xproperty.atom;
1603
1604         /* ignore changes to some properties if there is another change
1605            coming in the queue */
1606         {
1607             struct ObSkipPropertyChange s;
1608             s.window = client->window;
1609             s.prop = msgtype;
1610             if (xqueue_exists_local(skip_property_change, &s))
1611                 break;
1612         }
1613
1614         msgtype = e->xproperty.atom;
1615         if (msgtype == XA_WM_NORMAL_HINTS) {
1616             int x, y, w, h, lw, lh;
1617
1618             ob_debug("Update NORMAL hints");
1619             client_update_normal_hints(client);
1620             /* normal hints can make a window non-resizable */
1621             client_setup_decor_and_functions(client, FALSE);
1622
1623             x = client->area.x;
1624             y = client->area.y;
1625             w = client->area.width;
1626             h = client->area.height;
1627
1628             /* apply the new normal hints */
1629             client_try_configure(client, &x, &y, &w, &h, &lw, &lh, FALSE);
1630             /* make sure the window is visible, and if the window is resized
1631                off-screen due to the normal hints changing then this will push
1632                it back onto the screen. */
1633             client_find_onscreen(client, &x, &y, w, h, FALSE);
1634
1635             /* make sure the client's sizes are within its bounds, but don't
1636                make it reply with a configurenotify unless something changed.
1637                emacs will update its normal hints every time it receives a
1638                configurenotify */
1639             client_configure(client, x, y, w, h, FALSE, TRUE, FALSE);
1640         } else if (msgtype == OBT_PROP_ATOM(MOTIF_WM_HINTS)) {
1641             client_get_mwm_hints(client);
1642             /* This can override some mwm hints */
1643             client_get_type_and_transientness(client);
1644
1645             /* Apply the changes to the window */
1646             client_setup_decor_and_functions(client, TRUE);
1647         } else if (msgtype == XA_WM_HINTS) {
1648             client_update_wmhints(client);
1649         } else if (msgtype == XA_WM_TRANSIENT_FOR) {
1650             /* get the transient-ness first, as this affects if the client
1651                decides to be transient for the group or not in
1652                client_update_transient_for() */
1653             client_get_type_and_transientness(client);
1654             client_update_transient_for(client);
1655             /* type may have changed, so update the layer */
1656             client_calc_layer(client);
1657             client_setup_decor_and_functions(client, TRUE);
1658         } else if (msgtype == OBT_PROP_ATOM(NET_WM_NAME) ||
1659                    msgtype == OBT_PROP_ATOM(WM_NAME) ||
1660                    msgtype == OBT_PROP_ATOM(NET_WM_ICON_NAME) ||
1661                    msgtype == OBT_PROP_ATOM(WM_ICON_NAME)) {
1662             client_update_title(client);
1663         } else if (msgtype == OBT_PROP_ATOM(WM_PROTOCOLS)) {
1664             client_update_protocols(client);
1665         }
1666         else if (msgtype == OBT_PROP_ATOM(NET_WM_STRUT) ||
1667                  msgtype == OBT_PROP_ATOM(NET_WM_STRUT_PARTIAL)) {
1668             client_update_strut(client);
1669         }
1670         else if (msgtype == OBT_PROP_ATOM(NET_WM_ICON)) {
1671             client_update_icons(client);
1672         }
1673         else if (msgtype == OBT_PROP_ATOM(NET_WM_ICON_GEOMETRY)) {
1674             client_update_icon_geometry(client);
1675         }
1676         else if (msgtype == OBT_PROP_ATOM(NET_WM_USER_TIME)) {
1677             guint32 t;
1678             if (client == focus_client &&
1679                 OBT_PROP_GET32(client->window, NET_WM_USER_TIME, CARDINAL, &t)
1680                 && t && !event_time_after(t, e->xproperty.time) &&
1681                 (!event_last_user_time ||
1682                  event_time_after(t, event_last_user_time)))
1683             {
1684                 event_last_user_time = t;
1685             }
1686         }
1687         else if (msgtype == OBT_PROP_ATOM(NET_WM_WINDOW_OPACITY)) {
1688             client_update_opacity(client);
1689         }
1690 #ifdef SYNC
1691         else if (msgtype == OBT_PROP_ATOM(NET_WM_SYNC_REQUEST_COUNTER)) {
1692             /* if they are resizing right now this would cause weird behaviour.
1693                if one day a user reports clients stop resizing, then handle
1694                this better by resetting a new XSync alarm and stuff on the
1695                new counter, but I expect it will never happen */
1696             if (moveresize_client == client)
1697                 moveresize_end(FALSE);
1698             client_update_sync_request_counter(client);
1699         }
1700 #endif
1701         break;
1702     case ColormapNotify:
1703         client_update_colormap(client, e->xcolormap.colormap);
1704         break;
1705     default:
1706         ;
1707 #ifdef SHAPE
1708         {
1709             int kind;
1710             if (obt_display_extension_shape &&
1711                 e->type == obt_display_extension_shape_basep)
1712             {
1713                 switch (((XShapeEvent*)e)->kind) {
1714                     case ShapeBounding:
1715                     case ShapeClip:
1716                         client->shaped = ((XShapeEvent*)e)->shaped;
1717                         kind = ShapeBounding;
1718                         break;
1719 #ifdef ShapeInput
1720                     case ShapeInput:
1721                         client->shaped_input = ((XShapeEvent*)e)->shaped;
1722                         kind = ShapeInput;
1723                         break;
1724 #endif
1725                     default:
1726                         g_assert_not_reached();
1727                 }
1728                 frame_adjust_shape_kind(client->frame, kind);
1729             }
1730         }
1731 #endif
1732     }
1733 }
1734
1735 static void event_handle_dock(ObDock *s, XEvent *e)
1736 {
1737     switch (e->type) {
1738     case EnterNotify:
1739         dock_hide(FALSE);
1740         break;
1741     case LeaveNotify:
1742         /* don't hide when moving into a dock app */
1743         if (e->xcrossing.detail != NotifyInferior)
1744             dock_hide(TRUE);
1745         break;
1746     }
1747 }
1748
1749 static void event_handle_dockapp(ObDockApp *app, XEvent *e)
1750 {
1751     switch (e->type) {
1752     case MotionNotify:
1753         dock_app_drag(app, &e->xmotion);
1754         break;
1755     case UnmapNotify:
1756         if (app->ignore_unmaps) {
1757             app->ignore_unmaps--;
1758             break;
1759         }
1760         dock_unmanage(app, TRUE);
1761         break;
1762     case DestroyNotify:
1763     case ReparentNotify:
1764         dock_unmanage(app, FALSE);
1765         break;
1766     case ConfigureNotify:
1767         dock_app_configure(app, e->xconfigure.width, e->xconfigure.height);
1768         break;
1769     }
1770 }
1771
1772 static ObMenuFrame* find_active_menu(void)
1773 {
1774     GList *it;
1775     ObMenuFrame *ret = NULL;
1776
1777     for (it = menu_frame_visible; it; it = g_list_next(it)) {
1778         ret = it->data;
1779         if (ret->selected)
1780             break;
1781         ret = NULL;
1782     }
1783     return ret;
1784 }
1785
1786 static ObMenuFrame* find_active_or_last_menu(void)
1787 {
1788     ObMenuFrame *ret = NULL;
1789
1790     ret = find_active_menu();
1791     if (!ret && menu_frame_visible)
1792         ret = menu_frame_visible->data;
1793     return ret;
1794 }
1795
1796 static gboolean event_handle_prompt(ObPrompt *p, XEvent *e)
1797 {
1798     switch (e->type) {
1799     case ButtonPress:
1800     case ButtonRelease:
1801     case MotionNotify:
1802         return prompt_mouse_event(p, e);
1803         break;
1804     case KeyPress:
1805         return prompt_key_event(p, e);
1806         break;
1807     }
1808     return FALSE;
1809 }
1810
1811 static gboolean event_handle_menu_input(XEvent *ev)
1812 {
1813     gboolean ret = FALSE;
1814
1815     if (ev->type == ButtonRelease || ev->type == ButtonPress) {
1816         ObMenuEntryFrame *e;
1817
1818         if ((ev->xbutton.button < 4 || ev->xbutton.button > 5) &&
1819             ((ev->type == ButtonRelease && menu_hide_delay_reached()) ||
1820              ev->type == ButtonPress))
1821         {
1822             if ((e = menu_entry_frame_under(ev->xbutton.x_root,
1823                                             ev->xbutton.y_root)))
1824             {
1825                 if (ev->type == ButtonPress && e->frame->child)
1826                     menu_frame_select(e->frame->child, NULL, TRUE);
1827                 menu_frame_select(e->frame, e, TRUE);
1828                 if (ev->type == ButtonRelease)
1829                     menu_entry_frame_execute(e, ev->xbutton.state);
1830             }
1831             else
1832                 menu_frame_hide_all();
1833         }
1834         ret = TRUE;
1835     }
1836     else if (ev->type == KeyPress || ev->type == KeyRelease) {
1837         guint mods;
1838         ObMenuFrame *frame;
1839
1840         /* get the modifiers */
1841         mods = obt_keyboard_only_modmasks(ev->xkey.state);
1842
1843         frame = find_active_or_last_menu();
1844         if (frame == NULL)
1845             g_assert_not_reached(); /* there is no active menu */
1846
1847         /* Allow control while going thru the menu */
1848         else if (ev->type == KeyPress && (mods & ~ControlMask) == 0) {
1849             gunichar unikey;
1850             KeySym sym;
1851
1852             frame->got_press = TRUE;
1853             frame->press_keycode = ev->xkey.keycode;
1854             frame->press_doexec = FALSE;
1855
1856             sym = obt_keyboard_keypress_to_keysym(ev);
1857
1858             if (sym == XK_Escape) {
1859                 menu_frame_hide_all();
1860                 ret = TRUE;
1861             }
1862
1863             else if (sym == XK_Left) {
1864                 /* Left goes to the parent menu */
1865                 if (frame->parent) {
1866                     /* remove focus from the child */
1867                     menu_frame_select(frame, NULL, TRUE);
1868                     /* and put it in the parent */
1869                     menu_frame_select(frame->parent, frame->parent->selected,
1870                                       TRUE);
1871                 }
1872                 ret = TRUE;
1873             }
1874
1875             else if (sym == XK_Right || sym == XK_Return || sym == XK_KP_Enter)
1876             {
1877                 /* Right and enter goes to the selected submenu.
1878                    Enter executes instead if it's not on a submenu. */
1879
1880                 if (frame->selected) {
1881                     const ObMenuEntryType t = frame->selected->entry->type;
1882
1883                     if (t == OB_MENU_ENTRY_TYPE_SUBMENU) {
1884                         /* make sure it is visible */
1885                         menu_frame_select(frame, frame->selected, TRUE);
1886                         /* move focus to the child menu */
1887                         menu_frame_select_next(frame->child);
1888                     }
1889                     else if (sym != XK_Right) {
1890                         frame->press_doexec = TRUE;
1891                     }
1892                 }
1893                 ret = TRUE;
1894             }
1895
1896             else if (sym == XK_Up) {
1897                 menu_frame_select_previous(frame);
1898                 ret = TRUE;
1899             }
1900
1901             else if (sym == XK_Down) {
1902                 menu_frame_select_next(frame);
1903                 ret = TRUE;
1904             }
1905
1906             else if (sym == XK_Home) {
1907                 menu_frame_select_first(frame);
1908                 ret = TRUE;
1909             }
1910
1911             else if (sym == XK_End) {
1912                 menu_frame_select_last(frame);
1913                 ret = TRUE;
1914             }
1915
1916             /* keyboard accelerator shortcuts. (if it was a valid key) */
1917             else if (frame->entries &&
1918                      (unikey =
1919                       obt_keyboard_keypress_to_unichar(menu_frame_ic(frame),
1920                                                        ev)))
1921             {
1922                 GList *start;
1923                 GList *it;
1924                 ObMenuEntryFrame *found = NULL;
1925                 guint num_found = 0;
1926
1927                 /* start after the selected one */
1928                 start = frame->entries;
1929                 if (frame->selected) {
1930                     for (it = start; frame->selected != it->data;
1931                          it = g_list_next(it))
1932                         g_assert(it != NULL); /* nothing was selected? */
1933                     /* next with wraparound */
1934                     start = g_list_next(it);
1935                     if (start == NULL) start = frame->entries;
1936                 }
1937
1938                 it = start;
1939                 do {
1940                     ObMenuEntryFrame *e = it->data;
1941                     gunichar entrykey = 0;
1942
1943                     if (e->entry->type == OB_MENU_ENTRY_TYPE_NORMAL)
1944                         entrykey = e->entry->data.normal.shortcut;
1945                     else if (e->entry->type == OB_MENU_ENTRY_TYPE_SUBMENU)
1946                         entrykey = e->entry->data.submenu.submenu->shortcut;
1947
1948                     if (unikey == entrykey) {
1949                         if (found == NULL) found = e;
1950                         ++num_found;
1951                     }
1952
1953                     /* next with wraparound */
1954                     it = g_list_next(it);
1955                     if (it == NULL) it = frame->entries;
1956                 } while (it != start);
1957
1958                 if (found) {
1959                     menu_frame_select(frame, found, TRUE);
1960
1961                     if (num_found == 1) {
1962                         if (found->entry->type == OB_MENU_ENTRY_TYPE_SUBMENU) {
1963                             /* move focus to the child menu */
1964                             menu_frame_select_next(frame->child);
1965                         }
1966                         else {
1967                             frame->press_doexec = TRUE;
1968                         }
1969                     }
1970                     ret = TRUE;
1971                 }
1972             }
1973         }
1974
1975         /* Use KeyRelease events for running things so that the key release
1976            doesn't get sent to the focused application.
1977
1978            Allow ControlMask only, and don't bother if the menu is empty */
1979         else if (ev->type == KeyRelease && (mods & ~ControlMask) == 0) {
1980             if (frame->press_keycode == ev->xkey.keycode &&
1981                 frame->got_press &&
1982                 frame->press_doexec)
1983             {
1984                 if (frame->selected)
1985                     menu_entry_frame_execute(frame->selected, ev->xkey.state);
1986             }
1987         }
1988     }
1989
1990     return ret;
1991 }
1992
1993 static gboolean event_look_for_menu_enter(XEvent *ev, gpointer data)
1994 {
1995     const ObMenuFrame *f = (ObMenuFrame*)data;
1996     ObMenuEntryFrame *e;
1997     return ev->type == EnterNotify &&
1998         (e = g_hash_table_lookup(menu_frame_map, &ev->xcrossing.window)) &&
1999         e->frame == f && !e->ignore_enters;
2000 }
2001
2002 static void event_handle_menu(ObMenuFrame *frame, XEvent *ev)
2003 {
2004     ObMenuFrame *f;
2005     ObMenuEntryFrame *e;
2006
2007     switch (ev->type) {
2008     case MotionNotify:
2009         // We need to catch MotionNotify in addition to EnterNotify because
2010         // it is possible for the menu to be opened under the mouse cursor, and
2011         // moving the mouse should select the item.
2012         if ((e = g_hash_table_lookup(menu_frame_map, &ev->xmotion.window))) {
2013             if (e->ignore_enters)
2014                 --e->ignore_enters;
2015             else if (!(f = find_active_menu()) ||
2016                      f == e->frame ||
2017                      f->parent == e->frame ||
2018                      f->child == e->frame)
2019                 menu_frame_select(e->frame, e, FALSE);
2020         }
2021         break;
2022     case EnterNotify:
2023         if ((e = g_hash_table_lookup(menu_frame_map, &ev->xcrossing.window))) {
2024             if (e->ignore_enters)
2025                 --e->ignore_enters;
2026             else if (!(f = find_active_menu()) ||
2027                      f == e->frame ||
2028                      f->parent == e->frame ||
2029                      f->child == e->frame)
2030                 menu_frame_select(e->frame, e, FALSE);
2031         }
2032         break;
2033     case LeaveNotify:
2034         /*ignore leaves when we're already in the window */
2035         if (ev->xcrossing.detail == NotifyInferior)
2036             break;
2037
2038         if ((e = g_hash_table_lookup(menu_frame_map, &ev->xcrossing.window))) {
2039             /* check if an EnterNotify event is coming, and if not, then select
2040                nothing in the menu */
2041             if (!xqueue_exists_local(event_look_for_menu_enter, e->frame))
2042                 menu_frame_select(e->frame, NULL, FALSE);
2043         }
2044         break;
2045     }
2046 }
2047
2048 static gboolean event_handle_user_input(ObClient *client, XEvent *e)
2049 {
2050     g_assert(e->type == ButtonPress || e->type == ButtonRelease ||
2051              e->type == MotionNotify || e->type == KeyPress ||
2052              e->type == KeyRelease);
2053
2054     if (menu_frame_visible) {
2055         if (event_handle_menu_input(e))
2056             /* don't use the event if the menu used it, but if the menu
2057                didn't use it and it's a keypress that is bound, it will
2058                close the menu and be used */
2059             return TRUE;
2060     }
2061
2062     /* if the keyboard interactive action uses the event then dont
2063        use it for bindings. likewise is moveresize uses the event. */
2064     if (actions_interactive_input_event(e) || moveresize_event(e))
2065         return TRUE;
2066
2067     if (moveresize_in_progress)
2068         /* make further actions work on the client being
2069            moved/resized */
2070         client = moveresize_client;
2071
2072     if (e->type == ButtonPress ||
2073         e->type == ButtonRelease ||
2074         e->type == MotionNotify)
2075     {
2076         /* the frame may not be "visible" but they can still click on it
2077            in the case where it is animating before disappearing */
2078         if (!client || !frame_iconify_animating(client->frame))
2079             return mouse_event(client, e);
2080     } else
2081         return keyboard_event((focus_cycle_target ? focus_cycle_target :
2082                                (client ? client : focus_client)), e);
2083
2084     return FALSE;
2085 }
2086
2087 static void focus_delay_dest(gpointer data)
2088 {
2089     g_slice_free(ObFocusDelayData, data);
2090     focus_delay_timeout_id = 0;
2091     focus_delay_timeout_client = NULL;
2092 }
2093
2094 static void unfocus_delay_dest(gpointer data)
2095 {
2096     g_slice_free(ObFocusDelayData, data);
2097     unfocus_delay_timeout_id = 0;
2098     unfocus_delay_timeout_client = NULL;
2099 }
2100
2101 static gboolean focus_delay_func(gpointer data)
2102 {
2103     ObFocusDelayData *d = data;
2104     Time old = event_curtime; /* save the curtime */
2105
2106     event_curtime = d->time;
2107     event_curserial = d->serial;
2108     if (client_focus(d->client) && config_focus_raise)
2109         stacking_raise(CLIENT_AS_WINDOW(d->client));
2110     event_curtime = old;
2111     return FALSE; /* no repeat */
2112 }
2113
2114 static gboolean unfocus_delay_func(gpointer data)
2115 {
2116     ObFocusDelayData *d = data;
2117     Time old = event_curtime; /* save the curtime */
2118
2119     event_curtime = d->time;
2120     event_curserial = d->serial;
2121     focus_nothing();
2122     event_curtime = old;
2123     return FALSE; /* no repeat */
2124 }
2125
2126 static void focus_delay_client_dest(ObClient *client, gpointer data)
2127 {
2128     if (focus_delay_timeout_client == client && focus_delay_timeout_id)
2129         g_source_remove(focus_delay_timeout_id);
2130     if (unfocus_delay_timeout_client == client && unfocus_delay_timeout_id)
2131         g_source_remove(unfocus_delay_timeout_id);
2132 }
2133
2134 void event_halt_focus_delay(void)
2135 {
2136     /* ignore all enter events up till the event which caused this to occur */
2137     if (event_curserial) event_ignore_enter_range(1, event_curserial);
2138     if (focus_delay_timeout_id) g_source_remove(focus_delay_timeout_id);
2139     if (unfocus_delay_timeout_id) g_source_remove(unfocus_delay_timeout_id);
2140 }
2141
2142 gulong event_start_ignore_all_enters(void)
2143 {
2144     return NextRequest(obt_display);
2145 }
2146
2147 static void event_ignore_enter_range(gulong start, gulong end)
2148 {
2149     ObSerialRange *r;
2150
2151     g_assert(start != 0);
2152     g_assert(end != 0);
2153
2154     r = g_slice_new(ObSerialRange);
2155     r->start = start;
2156     r->end = end;
2157     ignore_serials = g_slist_prepend(ignore_serials, r);
2158
2159     ob_debug_type(OB_DEBUG_FOCUS, "ignoring enters from %lu until %lu",
2160                   r->start, r->end);
2161
2162     /* increment the serial so we don't ignore events we weren't meant to */
2163     OBT_PROP_ERASE(screen_support_win, MOTIF_WM_HINTS);
2164 }
2165
2166 void event_end_ignore_all_enters(gulong start)
2167 {
2168     /* Use (NextRequest-1) so that we ignore up to the current serial only.
2169        Inside event_ignore_enter_range, we increment the serial by one, but if
2170        we ignore that serial too, then any enter events generated by mouse
2171        movement will be ignored until we create some further network traffic.
2172        Instead ignore up to NextRequest-1, then when we increment the serial,
2173        we will be *past* the range of ignored serials */
2174     event_ignore_enter_range(start, NextRequest(obt_display)-1);
2175 }
2176
2177 static gboolean is_enter_focus_event_ignored(gulong serial)
2178 {
2179     GSList *it, *next;
2180
2181     for (it = ignore_serials; it; it = next) {
2182         ObSerialRange *r = it->data;
2183
2184         next = g_slist_next(it);
2185
2186         if ((glong)(serial - r->end) > 0) {
2187             /* past the end */
2188             ignore_serials = g_slist_delete_link(ignore_serials, it);
2189             g_slice_free(ObSerialRange, r);
2190         }
2191         else if ((glong)(serial - r->start) >= 0)
2192             return TRUE;
2193     }
2194     return FALSE;
2195 }
2196
2197 void event_cancel_all_key_grabs(void)
2198 {
2199     if (actions_interactive_act_running()) {
2200         actions_interactive_cancel_act();
2201         ob_debug("KILLED interactive action");
2202     }
2203     else if (menu_frame_visible) {
2204         menu_frame_hide_all();
2205         ob_debug("KILLED open menus");
2206     }
2207     else if (moveresize_in_progress) {
2208         moveresize_end(TRUE);
2209         ob_debug("KILLED interactive moveresize");
2210     }
2211     else if (grab_on_keyboard()) {
2212         ungrab_keyboard();
2213         ob_debug("KILLED active grab on keyboard");
2214     }
2215     else
2216         ungrab_passive_key();
2217
2218     XSync(obt_display, FALSE);
2219 }
2220
2221 gboolean event_time_after(guint32 t1, guint32 t2)
2222 {
2223     g_assert(t1 != CurrentTime);
2224     g_assert(t2 != CurrentTime);
2225
2226     /*
2227       Timestamp values wrap around (after about 49.7 days). The server, given
2228       its current time is represented by timestamp T, always interprets
2229       timestamps from clients by treating half of the timestamp space as being
2230       later in time than T.
2231       - http://tronche.com/gui/x/xlib/input/pointer-grabbing.html
2232     */
2233
2234     /* TIME_HALF is not half of the number space of a Time type variable.
2235      * Rather, it is half the number space of a timestamp value, which is
2236      * always 32 bits. */
2237 #define TIME_HALF (guint32)(1 << 31)
2238
2239     if (t2 >= TIME_HALF)
2240         /* t2 is in the second half so t1 might wrap around and be smaller than
2241            t2 */
2242         return t1 >= t2 || t1 < (t2 + TIME_HALF);
2243     else
2244         /* t2 is in the first half so t1 has to come after it */
2245         return t1 >= t2 && t1 < (t2 + TIME_HALF);
2246 }
2247
2248 gboolean find_timestamp(XEvent *e, gpointer data)
2249 {
2250     const Time t = event_get_timestamp(e);
2251     if (t && t >= event_curtime) {
2252         event_curtime = t;
2253         return TRUE;
2254     }
2255     else
2256         return FALSE;
2257 }
2258
2259 static Time next_time(void)
2260 {
2261     /* Some events don't come with timestamps :(
2262        ...but we can get one anyways >:) */
2263
2264     /* Generate a timestamp so there is guaranteed at least one in the queue
2265        eventually */
2266     XChangeProperty(obt_display, screen_support_win,
2267                     OBT_PROP_ATOM(WM_CLASS), OBT_PROP_ATOM(STRING),
2268                     8, PropModeAppend, NULL, 0);
2269
2270     /* Grab the first timestamp available */
2271     xqueue_exists(find_timestamp, NULL);
2272
2273     /*g_assert(event_curtime != CurrentTime);*/
2274
2275     /* Save the time so we don't have to do this again for this event */
2276     return event_curtime;
2277 }
2278
2279 Time event_time(void)
2280 {
2281     if (event_curtime) return event_curtime;
2282
2283     return next_time();
2284 }
2285
2286 Time event_source_time(void)
2287 {
2288     return event_sourcetime;
2289 }
2290
2291 void event_reset_time(void)
2292 {
2293     next_time();
2294 }
2295
2296 void event_update_user_time(void)
2297 {
2298     event_last_user_time = event_time();
2299 }
2300
2301 void event_reset_user_time(void)
2302 {
2303     event_last_user_time = CurrentTime;
2304 }