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