putting events on the event queue does not send them back to the server. it was...
[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         ob_debug("ReparentNotify for window 0x%x", client->window);
1356         client_unmanage(client);
1357         break;
1358     case MapRequest:
1359         ob_debug("MapRequest for 0x%lx", client->window);
1360         if (!client->iconic) break; /* this normally doesn't happen, but if it
1361                                        does, we don't want it!
1362                                        it can happen now when the window is on
1363                                        another desktop, but we still don't
1364                                        want it! */
1365         client_activate(client, FALSE, FALSE, TRUE, TRUE, TRUE);
1366         break;
1367     case ClientMessage:
1368         /* validate cuz we query stuff off the client here */
1369         if (!client_validate(client)) break;
1370
1371         if (e->xclient.format != 32) return;
1372
1373         msgtype = e->xclient.message_type;
1374         if (msgtype == OBT_PROP_ATOM(WM_CHANGE_STATE)) {
1375             compress_client_message_event(e, &ce, client->window, msgtype);
1376             client_set_wm_state(client, e->xclient.data.l[0]);
1377         } else if (msgtype == OBT_PROP_ATOM(NET_WM_DESKTOP)) {
1378             compress_client_message_event(e, &ce, client->window, msgtype);
1379             if ((unsigned)e->xclient.data.l[0] < screen_num_desktops ||
1380                 (unsigned)e->xclient.data.l[0] == DESKTOP_ALL)
1381                 client_set_desktop(client, (unsigned)e->xclient.data.l[0],
1382                                    FALSE, FALSE);
1383         } else if (msgtype == OBT_PROP_ATOM(NET_WM_STATE)) {
1384             gulong ignore_start;
1385
1386             /* can't compress these */
1387             ob_debug("net_wm_state %s %ld %ld for 0x%lx",
1388                      (e->xclient.data.l[0] == 0 ? "Remove" :
1389                       e->xclient.data.l[0] == 1 ? "Add" :
1390                       e->xclient.data.l[0] == 2 ? "Toggle" : "INVALID"),
1391                      e->xclient.data.l[1], e->xclient.data.l[2],
1392                      client->window);
1393
1394             /* ignore enter events caused by these like ob actions do */
1395             if (!config_focus_under_mouse)
1396                 ignore_start = event_start_ignore_all_enters();
1397             client_set_state(client, e->xclient.data.l[0],
1398                              e->xclient.data.l[1], e->xclient.data.l[2]);
1399             if (!config_focus_under_mouse)
1400                 event_end_ignore_all_enters(ignore_start);
1401         } else if (msgtype == OBT_PROP_ATOM(NET_CLOSE_WINDOW)) {
1402             ob_debug("net_close_window for 0x%lx", client->window);
1403             client_close(client);
1404         } else if (msgtype == OBT_PROP_ATOM(NET_ACTIVE_WINDOW)) {
1405             ob_debug("net_active_window for 0x%lx source=%s",
1406                      client->window,
1407                      (e->xclient.data.l[0] == 0 ? "unknown" :
1408                       (e->xclient.data.l[0] == 1 ? "application" :
1409                        (e->xclient.data.l[0] == 2 ? "user" : "INVALID"))));
1410             /* XXX make use of data.l[2] !? */
1411             if (e->xclient.data.l[0] == 1 || e->xclient.data.l[0] == 2) {
1412                 /* we can not trust the timestamp from applications.
1413                    e.g. chromium passes a very old timestamp.  openbox thinks
1414                    the window will get focus and calls XSetInputFocus with the
1415                    (old) timestamp, which doesn't end up moving focus at all.
1416                    but the window is raised, not hilited, etc, as if it was
1417                    really going to get focus.
1418
1419                    so do not use this timestamp in event_curtime, as this would
1420                    be used in XSetInputFocus.
1421                 */
1422                 event_sourcetime = e->xclient.data.l[1];
1423                 if (e->xclient.data.l[1] == 0)
1424                     ob_debug_type(OB_DEBUG_APP_BUGS,
1425                                   "_NET_ACTIVE_WINDOW message for window %s is"
1426                                   " missing a timestamp", client->title);
1427             } else
1428                 ob_debug_type(OB_DEBUG_APP_BUGS,
1429                               "_NET_ACTIVE_WINDOW message for window %s is "
1430                               "missing source indication", client->title);
1431             client_activate(client, FALSE, FALSE, TRUE, TRUE,
1432                             (e->xclient.data.l[0] == 0 ||
1433                              e->xclient.data.l[0] == 2));
1434         } else if (msgtype == OBT_PROP_ATOM(NET_WM_MOVERESIZE)) {
1435             ob_debug("net_wm_moveresize for 0x%lx direction %d",
1436                      client->window, e->xclient.data.l[2]);
1437             if ((Atom)e->xclient.data.l[2] ==
1438                 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_TOPLEFT) ||
1439                 (Atom)e->xclient.data.l[2] ==
1440                 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_TOP) ||
1441                 (Atom)e->xclient.data.l[2] ==
1442                 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_TOPRIGHT) ||
1443                 (Atom)e->xclient.data.l[2] ==
1444                 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_RIGHT) ||
1445                 (Atom)e->xclient.data.l[2] ==
1446                 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_RIGHT) ||
1447                 (Atom)e->xclient.data.l[2] ==
1448                 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT) ||
1449                 (Atom)e->xclient.data.l[2] ==
1450                 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_BOTTOM) ||
1451                 (Atom)e->xclient.data.l[2] ==
1452                 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT) ||
1453                 (Atom)e->xclient.data.l[2] ==
1454                 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_LEFT) ||
1455                 (Atom)e->xclient.data.l[2] ==
1456                 OBT_PROP_ATOM(NET_WM_MOVERESIZE_MOVE) ||
1457                 (Atom)e->xclient.data.l[2] ==
1458                 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_KEYBOARD) ||
1459                 (Atom)e->xclient.data.l[2] ==
1460                 OBT_PROP_ATOM(NET_WM_MOVERESIZE_MOVE_KEYBOARD))
1461             {
1462                 moveresize_start(client, e->xclient.data.l[0],
1463                                  e->xclient.data.l[1], e->xclient.data.l[3],
1464                                  e->xclient.data.l[2]);
1465             }
1466             else if ((Atom)e->xclient.data.l[2] ==
1467                      OBT_PROP_ATOM(NET_WM_MOVERESIZE_CANCEL))
1468                 moveresize_end(TRUE);
1469         } else if (msgtype == OBT_PROP_ATOM(NET_MOVERESIZE_WINDOW)) {
1470             gint ograv, x, y, w, h;
1471
1472             ograv = client->gravity;
1473
1474             if (e->xclient.data.l[0] & 0xff)
1475                 client->gravity = e->xclient.data.l[0] & 0xff;
1476
1477             if (e->xclient.data.l[0] & 1 << 8)
1478                 x = e->xclient.data.l[1];
1479             else
1480                 x = client->area.x;
1481             if (e->xclient.data.l[0] & 1 << 9)
1482                 y = e->xclient.data.l[2];
1483             else
1484                 y = client->area.y;
1485
1486             if (e->xclient.data.l[0] & 1 << 10) {
1487                 w = e->xclient.data.l[3];
1488
1489                 /* if x was not given, then use gravity to figure out the new
1490                    x.  the reference point should not be moved */
1491                 if (!(e->xclient.data.l[0] & 1 << 8))
1492                     client_gravity_resize_w(client, &x, client->area.width, w);
1493             }
1494             else
1495                 w = client->area.width;
1496
1497             if (e->xclient.data.l[0] & 1 << 11) {
1498                 h = e->xclient.data.l[4];
1499
1500                 /* same for y */
1501                 if (!(e->xclient.data.l[0] & 1 << 9))
1502                     client_gravity_resize_h(client, &y, client->area.height,h);
1503             }
1504             else
1505                 h = client->area.height;
1506
1507             ob_debug("MOVERESIZE x %d %d y %d %d (gravity %d)",
1508                      e->xclient.data.l[0] & 1 << 8, x,
1509                      e->xclient.data.l[0] & 1 << 9, y,
1510                      client->gravity);
1511
1512             client_find_onscreen(client, &x, &y, w, h, FALSE);
1513
1514             client_configure(client, x, y, w, h, FALSE, TRUE, FALSE);
1515
1516             client->gravity = ograv;
1517         } else if (msgtype == OBT_PROP_ATOM(NET_RESTACK_WINDOW)) {
1518             if (e->xclient.data.l[0] != 2) {
1519                 ob_debug_type(OB_DEBUG_APP_BUGS,
1520                               "_NET_RESTACK_WINDOW sent for window %s with "
1521                               "invalid source indication %ld",
1522                               client->title, e->xclient.data.l[0]);
1523             } else {
1524                 ObClient *sibling = NULL;
1525                 if (e->xclient.data.l[1]) {
1526                     ObWindow *win = window_find(e->xclient.data.l[1]);
1527                     if (WINDOW_IS_CLIENT(win) &&
1528                         WINDOW_AS_CLIENT(win) != client)
1529                     {
1530                         sibling = WINDOW_AS_CLIENT(win);
1531                     }
1532                     if (sibling == NULL)
1533                         ob_debug_type(OB_DEBUG_APP_BUGS,
1534                                       "_NET_RESTACK_WINDOW sent for window %s "
1535                                       "with invalid sibling 0x%x",
1536                                  client->title, e->xclient.data.l[1]);
1537                 }
1538                 if (e->xclient.data.l[2] == Below ||
1539                     e->xclient.data.l[2] == BottomIf ||
1540                     e->xclient.data.l[2] == Above ||
1541                     e->xclient.data.l[2] == TopIf ||
1542                     e->xclient.data.l[2] == Opposite)
1543                 {
1544                     gulong ignore_start;
1545
1546                     if (!config_focus_under_mouse)
1547                         ignore_start = event_start_ignore_all_enters();
1548                     /* just raise, don't activate */
1549                     stacking_restack_request(client, sibling,
1550                                              e->xclient.data.l[2]);
1551                     if (!config_focus_under_mouse)
1552                         event_end_ignore_all_enters(ignore_start);
1553
1554                     /* send a synthetic ConfigureNotify, cuz this is supposed
1555                        to be like a ConfigureRequest. */
1556                     client_reconfigure(client, TRUE);
1557                 } else
1558                     ob_debug_type(OB_DEBUG_APP_BUGS,
1559                                   "_NET_RESTACK_WINDOW sent for window %s "
1560                                   "with invalid detail %d",
1561                                   client->title, e->xclient.data.l[2]);
1562             }
1563         }
1564         break;
1565     case PropertyNotify:
1566         /* validate cuz we query stuff off the client here */
1567         if (!client_validate(client)) break;
1568
1569         /* compress changes to a single property into a single change */
1570         while (XCheckTypedWindowEvent(obt_display, client->window,
1571                                       e->type, &ce)) {
1572             Atom a, b;
1573
1574             /* XXX: it would be nice to compress ALL changes to a property,
1575                not just changes in a row without other props between. */
1576
1577             a = ce.xproperty.atom;
1578             b = e->xproperty.atom;
1579
1580             if (a == b)
1581                 continue;
1582             if ((a == OBT_PROP_ATOM(NET_WM_NAME) ||
1583                  a == OBT_PROP_ATOM(WM_NAME) ||
1584                  a == OBT_PROP_ATOM(NET_WM_ICON_NAME) ||
1585                  a == OBT_PROP_ATOM(WM_ICON_NAME))
1586                 &&
1587                 (b == OBT_PROP_ATOM(NET_WM_NAME) ||
1588                  b == OBT_PROP_ATOM(WM_NAME) ||
1589                  b == OBT_PROP_ATOM(NET_WM_ICON_NAME) ||
1590                  b == OBT_PROP_ATOM(WM_ICON_NAME))) {
1591                 continue;
1592             }
1593             if (a == OBT_PROP_ATOM(NET_WM_ICON) &&
1594                 b == OBT_PROP_ATOM(NET_WM_ICON))
1595                 continue;
1596
1597             XPutBackEvent(obt_display, &ce);
1598             break;
1599         }
1600
1601         msgtype = e->xproperty.atom;
1602         if (msgtype == XA_WM_NORMAL_HINTS) {
1603             int x, y, w, h, lw, lh;
1604
1605             ob_debug("Update NORMAL hints");
1606             client_update_normal_hints(client);
1607             /* normal hints can make a window non-resizable */
1608             client_setup_decor_and_functions(client, FALSE);
1609
1610             x = client->area.x;
1611             y = client->area.y;
1612             w = client->area.width;
1613             h = client->area.height;
1614
1615             /* apply the new normal hints */
1616             client_try_configure(client, &x, &y, &w, &h, &lw, &lh, FALSE);
1617             /* make sure the window is visible, and if the window is resized
1618                off-screen due to the normal hints changing then this will push
1619                it back onto the screen. */
1620             client_find_onscreen(client, &x, &y, w, h, FALSE);
1621
1622             /* make sure the client's sizes are within its bounds, but don't
1623                make it reply with a configurenotify unless something changed.
1624                emacs will update its normal hints every time it receives a
1625                configurenotify */
1626             client_configure(client, x, y, w, h, FALSE, TRUE, FALSE);
1627         } else if (msgtype == OBT_PROP_ATOM(MOTIF_WM_HINTS)) {
1628             client_get_mwm_hints(client);
1629             /* This can override some mwm hints */
1630             client_get_type_and_transientness(client);
1631
1632             /* Apply the changes to the window */
1633             client_setup_decor_and_functions(client, TRUE);
1634         } else if (msgtype == XA_WM_HINTS) {
1635             client_update_wmhints(client);
1636         } else if (msgtype == XA_WM_TRANSIENT_FOR) {
1637             /* get the transient-ness first, as this affects if the client
1638                decides to be transient for the group or not in
1639                client_update_transient_for() */
1640             client_get_type_and_transientness(client);
1641             client_update_transient_for(client);
1642             /* type may have changed, so update the layer */
1643             client_calc_layer(client);
1644             client_setup_decor_and_functions(client, TRUE);
1645         } else if (msgtype == OBT_PROP_ATOM(NET_WM_NAME) ||
1646                    msgtype == OBT_PROP_ATOM(WM_NAME) ||
1647                    msgtype == OBT_PROP_ATOM(NET_WM_ICON_NAME) ||
1648                    msgtype == OBT_PROP_ATOM(WM_ICON_NAME)) {
1649             client_update_title(client);
1650         } else if (msgtype == OBT_PROP_ATOM(WM_PROTOCOLS)) {
1651             client_update_protocols(client);
1652             client_setup_decor_and_functions(client, TRUE);
1653         }
1654         else if (msgtype == OBT_PROP_ATOM(NET_WM_STRUT) ||
1655                  msgtype == OBT_PROP_ATOM(NET_WM_STRUT_PARTIAL)) {
1656             client_update_strut(client);
1657         }
1658         else if (msgtype == OBT_PROP_ATOM(NET_WM_ICON)) {
1659             client_update_icons(client);
1660         }
1661         else if (msgtype == OBT_PROP_ATOM(NET_WM_ICON_GEOMETRY)) {
1662             client_update_icon_geometry(client);
1663         }
1664         else if (msgtype == OBT_PROP_ATOM(NET_WM_USER_TIME)) {
1665             guint32 t;
1666             if (client == focus_client &&
1667                 OBT_PROP_GET32(client->window, NET_WM_USER_TIME, CARDINAL, &t)
1668                 && t && !event_time_after(t, e->xproperty.time) &&
1669                 (!event_last_user_time ||
1670                  event_time_after(t, event_last_user_time)))
1671             {
1672                 event_last_user_time = t;
1673             }
1674         }
1675 #ifdef SYNC
1676         else if (msgtype == OBT_PROP_ATOM(NET_WM_SYNC_REQUEST_COUNTER)) {
1677             client_update_sync_request_counter(client);
1678         }
1679 #endif
1680         break;
1681     case ColormapNotify:
1682         client_update_colormap(client, e->xcolormap.colormap);
1683         break;
1684     default:
1685         ;
1686 #ifdef SHAPE
1687         {
1688             int kind;
1689             if (obt_display_extension_shape &&
1690                 e->type == obt_display_extension_shape_basep)
1691             {
1692                 switch (((XShapeEvent*)e)->kind) {
1693                     case ShapeBounding:
1694                     case ShapeClip:
1695                         client->shaped = ((XShapeEvent*)e)->shaped;
1696                         kind = ShapeBounding;
1697                         break;
1698                     case ShapeInput:
1699                         client->shaped_input = ((XShapeEvent*)e)->shaped;
1700                         kind = ShapeInput;
1701                         break;
1702                     default:
1703                         g_assert_not_reached();
1704                 }
1705                 frame_adjust_shape_kind(client->frame, kind);
1706             }
1707         }
1708 #endif
1709     }
1710 }
1711
1712 static void event_handle_dock(ObDock *s, XEvent *e)
1713 {
1714     switch (e->type) {
1715     case ButtonPress:
1716         if (e->xbutton.button == 1)
1717             stacking_raise(DOCK_AS_WINDOW(s));
1718         else if (e->xbutton.button == 2)
1719             stacking_lower(DOCK_AS_WINDOW(s));
1720         break;
1721     case EnterNotify:
1722         dock_hide(FALSE);
1723         break;
1724     case LeaveNotify:
1725         /* don't hide when moving into a dock app */
1726         if (e->xcrossing.detail != NotifyInferior)
1727             dock_hide(TRUE);
1728         break;
1729     }
1730 }
1731
1732 static void event_handle_dockapp(ObDockApp *app, XEvent *e)
1733 {
1734     switch (e->type) {
1735     case MotionNotify:
1736         dock_app_drag(app, &e->xmotion);
1737         break;
1738     case UnmapNotify:
1739         if (app->ignore_unmaps) {
1740             app->ignore_unmaps--;
1741             break;
1742         }
1743         dock_unmanage(app, TRUE);
1744         break;
1745     case DestroyNotify:
1746     case ReparentNotify:
1747         dock_unmanage(app, FALSE);
1748         break;
1749     case ConfigureNotify:
1750         dock_app_configure(app, e->xconfigure.width, e->xconfigure.height);
1751         break;
1752     }
1753 }
1754
1755 static ObMenuFrame* find_active_menu(void)
1756 {
1757     GList *it;
1758     ObMenuFrame *ret = NULL;
1759
1760     for (it = menu_frame_visible; it; it = g_list_next(it)) {
1761         ret = it->data;
1762         if (ret->selected)
1763             break;
1764         ret = NULL;
1765     }
1766     return ret;
1767 }
1768
1769 static ObMenuFrame* find_active_or_last_menu(void)
1770 {
1771     ObMenuFrame *ret = NULL;
1772
1773     ret = find_active_menu();
1774     if (!ret && menu_frame_visible)
1775         ret = menu_frame_visible->data;
1776     return ret;
1777 }
1778
1779 static gboolean event_handle_prompt(ObPrompt *p, XEvent *e)
1780 {
1781     switch (e->type) {
1782     case ButtonPress:
1783     case ButtonRelease:
1784     case MotionNotify:
1785         return prompt_mouse_event(p, e);
1786         break;
1787     case KeyPress:
1788         return prompt_key_event(p, e);
1789         break;
1790     }
1791     return FALSE;
1792 }
1793
1794 static gboolean event_handle_menu_input(XEvent *ev)
1795 {
1796     gboolean ret = FALSE;
1797
1798     if (ev->type == ButtonRelease || ev->type == ButtonPress) {
1799         ObMenuEntryFrame *e;
1800
1801         if (menu_hide_delay_reached() &&
1802             (ev->xbutton.button < 4 || ev->xbutton.button > 5))
1803         {
1804             if ((e = menu_entry_frame_under(ev->xbutton.x_root,
1805                                             ev->xbutton.y_root)))
1806             {
1807                 if (ev->type == ButtonPress && e->frame->child)
1808                     menu_frame_select(e->frame->child, NULL, TRUE);
1809                 menu_frame_select(e->frame, e, TRUE);
1810                 if (ev->type == ButtonRelease)
1811                     menu_entry_frame_execute(e, ev->xbutton.state);
1812             }
1813             else if (ev->type == ButtonRelease)
1814                 menu_frame_hide_all();
1815         }
1816         ret = TRUE;
1817     }
1818     else if (ev->type == MotionNotify) {
1819         ObMenuFrame *f;
1820         ObMenuEntryFrame *e;
1821
1822         if ((e = menu_entry_frame_under(ev->xmotion.x_root,
1823                                         ev->xmotion.y_root)))
1824             if (!(f = find_active_menu()) ||
1825                 f == e->frame ||
1826                 f->parent == e->frame ||
1827                 f->child == e->frame)
1828                 menu_frame_select(e->frame, e, FALSE);
1829     }
1830     else if (ev->type == KeyPress || ev->type == KeyRelease) {
1831         guint mods;
1832         ObMenuFrame *frame;
1833
1834         /* get the modifiers */
1835         mods = obt_keyboard_only_modmasks(ev->xkey.state);
1836
1837         frame = find_active_or_last_menu();
1838         if (frame == NULL)
1839             g_assert_not_reached(); /* there is no active menu */
1840
1841         /* Allow control while going thru the menu */
1842         else if (ev->type == KeyPress && (mods & ~ControlMask) == 0) {
1843             gunichar unikey;
1844             KeySym sym;
1845
1846             frame->got_press = TRUE;
1847             frame->press_keycode = ev->xkey.keycode;
1848             frame->press_doexec = FALSE;
1849
1850             sym = obt_keyboard_keypress_to_keysym(ev);
1851
1852             if (sym == XK_Escape) {
1853                 menu_frame_hide_all();
1854                 ret = TRUE;
1855             }
1856
1857             else if (sym == XK_Left) {
1858                 /* Left goes to the parent menu */
1859                 if (frame->parent) {
1860                     /* remove focus from the child */
1861                     menu_frame_select(frame, NULL, TRUE);
1862                     /* and put it in the parent */
1863                     menu_frame_select(frame->parent, frame->parent->selected,
1864                                       TRUE);
1865                 }
1866                 ret = TRUE;
1867             }
1868
1869             else if (sym == XK_Right) {
1870                 /* Right goes to the selected submenu */
1871                 if (frame->selected->entry->type == OB_MENU_ENTRY_TYPE_SUBMENU)
1872                 {
1873                     /* make sure it is visible */
1874                     menu_frame_select(frame, frame->selected, TRUE);
1875                     menu_frame_select_next(frame->child);
1876                 }
1877                 ret = TRUE;
1878             }
1879
1880             else if (sym == XK_Up) {
1881                 menu_frame_select_previous(frame);
1882                 ret = TRUE;
1883             }
1884
1885             else if (sym == XK_Down) {
1886                 menu_frame_select_next(frame);
1887                 ret = TRUE;
1888             }
1889
1890             else if (sym == XK_Home) {
1891                 menu_frame_select_first(frame);
1892                 ret = TRUE;
1893             }
1894
1895             else if (sym == XK_End) {
1896                 menu_frame_select_last(frame);
1897                 ret = TRUE;
1898             }
1899
1900             else if (sym == XK_Return || sym == XK_KP_Enter) {
1901                 frame->press_doexec = TRUE;
1902                 ret = TRUE;
1903             }
1904
1905             /* keyboard accelerator shortcuts. (if it was a valid key) */
1906             else if (frame->entries &&
1907                      (unikey =
1908                       obt_keyboard_keypress_to_unichar(menu_frame_ic(frame),
1909                                                        ev)))
1910             {
1911                 GList *start;
1912                 GList *it;
1913                 ObMenuEntryFrame *found = NULL;
1914                 guint num_found = 0;
1915
1916                 /* start after the selected one */
1917                 start = frame->entries;
1918                 if (frame->selected) {
1919                     for (it = start; frame->selected != it->data;
1920                          it = g_list_next(it))
1921                         g_assert(it != NULL); /* nothing was selected? */
1922                     /* next with wraparound */
1923                     start = g_list_next(it);
1924                     if (start == NULL) start = frame->entries;
1925                 }
1926
1927                 it = start;
1928                 do {
1929                     ObMenuEntryFrame *e = it->data;
1930                     gunichar entrykey = 0;
1931
1932                     if (e->entry->type == OB_MENU_ENTRY_TYPE_NORMAL)
1933                         entrykey = e->entry->data.normal.shortcut;
1934                     else if (e->entry->type == OB_MENU_ENTRY_TYPE_SUBMENU)
1935                         entrykey = e->entry->data.submenu.submenu->shortcut;
1936
1937                     if (unikey == entrykey) {
1938                         if (found == NULL) found = e;
1939                         ++num_found;
1940                     }
1941
1942                     /* next with wraparound */
1943                     it = g_list_next(it);
1944                     if (it == NULL) it = frame->entries;
1945                 } while (it != start);
1946
1947                 if (found) {
1948                     menu_frame_select(frame, found, TRUE);
1949
1950                     if (num_found == 1)
1951                         frame->press_doexec = TRUE;
1952                     ret = TRUE;
1953                 }
1954             }
1955         }
1956
1957         /* Use KeyRelease events for running things so that the key release
1958            doesn't get sent to the focused application.
1959
1960            Allow ControlMask only, and don't bother if the menu is empty */
1961         else if (ev->type == KeyRelease && (mods & ~ControlMask) == 0) {
1962             if (frame->press_keycode == ev->xkey.keycode &&
1963                 frame->got_press &&
1964                 frame->press_doexec)
1965             {
1966                 if (frame->child)
1967                     menu_frame_select_next(frame->child);
1968                 else if (frame->selected)
1969                     menu_entry_frame_execute(frame->selected, ev->xkey.state);
1970             }
1971         }
1972     }
1973
1974     return ret;
1975 }
1976
1977 static Bool event_look_for_menu_enter(Display *d, XEvent *ev, XPointer arg)
1978 {
1979     ObMenuFrame *f = (ObMenuFrame*)arg;
1980     ObMenuEntryFrame *e;
1981     return ev->type == EnterNotify &&
1982         (e = g_hash_table_lookup(menu_frame_map, &ev->xcrossing.window)) &&
1983         !e->ignore_enters && e->frame == f;
1984 }
1985
1986 static void event_handle_menu(ObMenuFrame *frame, XEvent *ev)
1987 {
1988     ObMenuFrame *f;
1989     ObMenuEntryFrame *e;
1990
1991     switch (ev->type) {
1992     case EnterNotify:
1993         if ((e = g_hash_table_lookup(menu_frame_map, &ev->xcrossing.window))) {
1994             if (e->ignore_enters)
1995                 --e->ignore_enters;
1996             else if (!(f = find_active_menu()) ||
1997                      f == e->frame ||
1998                      f->parent == e->frame ||
1999                      f->child == e->frame)
2000                 menu_frame_select(e->frame, e, FALSE);
2001         }
2002         break;
2003     case LeaveNotify:
2004         /*ignore leaves when we're already in the window */
2005         if (ev->xcrossing.detail == NotifyInferior)
2006             break;
2007
2008         if ((e = g_hash_table_lookup(menu_frame_map, &ev->xcrossing.window)))
2009         {
2010             XEvent ce;
2011
2012             /* check if an EnterNotify event is coming, and if not, then select
2013                nothing in the menu */
2014             if (XCheckIfEvent(obt_display, &ce, event_look_for_menu_enter,
2015                               (XPointer)e->frame))
2016                 XPutBackEvent(obt_display, &ce);
2017             else
2018                 menu_frame_select(e->frame, NULL, FALSE);
2019         }
2020         break;
2021     }
2022 }
2023
2024 static gboolean event_handle_user_input(ObClient *client, XEvent *e)
2025 {
2026     g_assert(e->type == ButtonPress || e->type == ButtonRelease ||
2027              e->type == MotionNotify || e->type == KeyPress ||
2028              e->type == KeyRelease);
2029
2030     if (menu_frame_visible) {
2031         if (event_handle_menu_input(e))
2032             /* don't use the event if the menu used it, but if the menu
2033                didn't use it and it's a keypress that is bound, it will
2034                close the menu and be used */
2035             return TRUE;
2036     }
2037
2038     /* if the keyboard interactive action uses the event then dont
2039        use it for bindings. likewise is moveresize uses the event. */
2040     if (actions_interactive_input_event(e) || moveresize_event(e))
2041         return TRUE;
2042
2043     if (moveresize_in_progress)
2044         /* make further actions work on the client being
2045            moved/resized */
2046         client = moveresize_client;
2047
2048     if (e->type == ButtonPress ||
2049         e->type == ButtonRelease ||
2050         e->type == MotionNotify)
2051     {
2052         /* the frame may not be "visible" but they can still click on it
2053            in the case where it is animating before disappearing */
2054         if (!client || !frame_iconify_animating(client->frame))
2055             return mouse_event(client, e);
2056     } else
2057         return keyboard_event((focus_cycle_target ? focus_cycle_target :
2058                                (client ? client : focus_client)), e);
2059
2060     return FALSE;
2061 }
2062
2063 static void focus_delay_dest(gpointer data)
2064 {
2065     g_slice_free(ObFocusDelayData, data);
2066 }
2067
2068 static gboolean focus_delay_cmp(gconstpointer d1, gconstpointer d2)
2069 {
2070     const ObFocusDelayData *f1 = d1;
2071     return f1->client == d2;
2072 }
2073
2074 static gboolean focus_delay_func(gpointer data)
2075 {
2076     ObFocusDelayData *d = data;
2077     Time old = event_curtime; /* save the curtime */
2078
2079     event_curtime = d->time;
2080     event_curserial = d->serial;
2081     if (client_focus(d->client) && config_focus_raise)
2082         stacking_raise(CLIENT_AS_WINDOW(d->client));
2083     event_curtime = old;
2084     return FALSE; /* no repeat */
2085 }
2086
2087 static gboolean unfocus_delay_func(gpointer data)
2088 {
2089     ObFocusDelayData *d = data;
2090     Time old = event_curtime; /* save the curtime */
2091
2092     event_curtime = d->time;
2093     event_curserial = d->serial;
2094     focus_nothing();
2095     event_curtime = old;
2096     return FALSE; /* no repeat */
2097 }
2098
2099 static void focus_delay_client_dest(ObClient *client, gpointer data)
2100 {
2101     obt_main_loop_timeout_remove_data(ob_main_loop, focus_delay_func,
2102                                       client, FALSE);
2103     obt_main_loop_timeout_remove_data(ob_main_loop, unfocus_delay_func,
2104                                       client, FALSE);
2105 }
2106
2107 void event_halt_focus_delay(void)
2108 {
2109     /* ignore all enter events up till the event which caused this to occur */
2110     if (event_curserial) event_ignore_enter_range(1, event_curserial);
2111     obt_main_loop_timeout_remove(ob_main_loop, focus_delay_func);
2112     obt_main_loop_timeout_remove(ob_main_loop, unfocus_delay_func);
2113 }
2114
2115 gulong event_start_ignore_all_enters(void)
2116 {
2117     return NextRequest(obt_display);
2118 }
2119
2120 static void event_ignore_enter_range(gulong start, gulong end)
2121 {
2122     ObSerialRange *r;
2123
2124     g_assert(start != 0);
2125     g_assert(end != 0);
2126
2127     r = g_slice_new(ObSerialRange);
2128     r->start = start;
2129     r->end = end;
2130     ignore_serials = g_slist_prepend(ignore_serials, r);
2131
2132     ob_debug_type(OB_DEBUG_FOCUS, "ignoring enters from %lu until %lu",
2133                   r->start, r->end);
2134
2135     /* increment the serial so we don't ignore events we weren't meant to */
2136     OBT_PROP_ERASE(screen_support_win, MOTIF_WM_HINTS);
2137 }
2138
2139 void event_end_ignore_all_enters(gulong start)
2140 {
2141     /* Use (NextRequest-1) so that we ignore up to the current serial only.
2142        Inside event_ignore_enter_range, we increment the serial by one, but if
2143        we ignore that serial too, then any enter events generated by mouse
2144        movement will be ignored until we create some further network traffic.
2145        Instead ignore up to NextRequest-1, then when we increment the serial,
2146        we will be *past* the range of ignored serials */
2147     event_ignore_enter_range(start, NextRequest(obt_display)-1);
2148 }
2149
2150 static gboolean is_enter_focus_event_ignored(gulong serial)
2151 {
2152     GSList *it, *next;
2153
2154     for (it = ignore_serials; it; it = next) {
2155         ObSerialRange *r = it->data;
2156
2157         next = g_slist_next(it);
2158
2159         if ((glong)(serial - r->end) > 0) {
2160             /* past the end */
2161             ignore_serials = g_slist_delete_link(ignore_serials, it);
2162             g_slice_free(ObSerialRange, r);
2163         }
2164         else if ((glong)(serial - r->start) >= 0)
2165             return TRUE;
2166     }
2167     return FALSE;
2168 }
2169
2170 void event_cancel_all_key_grabs(void)
2171 {
2172     if (actions_interactive_act_running()) {
2173         actions_interactive_cancel_act();
2174         ob_debug("KILLED interactive action");
2175     }
2176     else if (menu_frame_visible) {
2177         menu_frame_hide_all();
2178         ob_debug("KILLED open menus");
2179     }
2180     else if (moveresize_in_progress) {
2181         moveresize_end(TRUE);
2182         ob_debug("KILLED interactive moveresize");
2183     }
2184     else if (grab_on_keyboard()) {
2185         ungrab_keyboard();
2186         ob_debug("KILLED active grab on keyboard");
2187     }
2188     else
2189         ungrab_passive_key();
2190
2191     XSync(obt_display, FALSE);
2192 }
2193
2194 gboolean event_time_after(guint32 t1, guint32 t2)
2195 {
2196     g_assert(t1 != CurrentTime);
2197     g_assert(t2 != CurrentTime);
2198
2199     /*
2200       Timestamp values wrap around (after about 49.7 days). The server, given
2201       its current time is represented by timestamp T, always interprets
2202       timestamps from clients by treating half of the timestamp space as being
2203       later in time than T.
2204       - http://tronche.com/gui/x/xlib/input/pointer-grabbing.html
2205     */
2206
2207     /* TIME_HALF is not half of the number space of a Time type variable.
2208      * Rather, it is half the number space of a timestamp value, which is
2209      * always 32 bits. */
2210 #define TIME_HALF (guint32)(1 << 31)
2211
2212     if (t2 >= TIME_HALF)
2213         /* t2 is in the second half so t1 might wrap around and be smaller than
2214            t2 */
2215         return t1 >= t2 || t1 < (t2 + TIME_HALF);
2216     else
2217         /* t2 is in the first half so t1 has to come after it */
2218         return t1 >= t2 && t1 < (t2 + TIME_HALF);
2219 }
2220
2221 Bool find_timestamp(Display *d, XEvent *e, XPointer a)
2222 {
2223     const Time t = event_get_timestamp(e);
2224     return t != CurrentTime;
2225 }
2226
2227 Time event_time(void)
2228 {
2229     XEvent event;
2230
2231     if (event_curtime) return event_curtime;
2232
2233     /* Some events don't come with timestamps :(
2234        ...but we can get one anyways >:) */
2235
2236     /* Generate a timestamp so there is guaranteed at least one in the queue
2237        eventually */
2238     XChangeProperty(obt_display, screen_support_win,
2239                     OBT_PROP_ATOM(WM_CLASS), OBT_PROP_ATOM(STRING),
2240                     8, PropModeAppend, NULL, 0);
2241
2242     /* Grab the first timestamp available */
2243     XPeekIfEvent(obt_display, &event, find_timestamp, NULL);
2244
2245     /* Save the time so we don't have to do this again for this event */
2246     return event_curtime = event.xproperty.time;
2247 }
2248
2249 Time event_source_time(void)
2250 {
2251     return event_sourcetime;
2252 }