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