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