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