]> icculus.org git repositories - mikachu/openbox.git/blob - openbox/event.c
super amazing enter event skipping.
[mikachu/openbox.git] / openbox / event.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    event.c for the Openbox window manager
4    Copyright (c) 2006        Mikael Magnusson
5    Copyright (c) 2003-2007   Dana Jansens
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    See the COPYING file for a copy of the GNU General Public License.
18 */
19
20 #include "event.h"
21 #include "debug.h"
22 #include "window.h"
23 #include "openbox.h"
24 #include "dock.h"
25 #include "client.h"
26 #include "xerror.h"
27 #include "prop.h"
28 #include "config.h"
29 #include "screen.h"
30 #include "frame.h"
31 #include "grab.h"
32 #include "menu.h"
33 #include "menuframe.h"
34 #include "keyboard.h"
35 #include "modkeys.h"
36 #include "propwin.h"
37 #include "mouse.h"
38 #include "mainloop.h"
39 #include "framerender.h"
40 #include "focus.h"
41 #include "focus_cycle.h"
42 #include "moveresize.h"
43 #include "group.h"
44 #include "stacking.h"
45 #include "extensions.h"
46 #include "translate.h"
47
48 #include <X11/Xlib.h>
49 #include <X11/Xatom.h>
50 #include <glib.h>
51
52 #ifdef HAVE_SYS_SELECT_H
53 #  include <sys/select.h>
54 #endif
55 #ifdef HAVE_SIGNAL_H
56 #  include <signal.h>
57 #endif
58 #ifdef HAVE_UNISTD_H
59 #  include <unistd.h> /* for usleep() */
60 #endif
61 #ifdef XKB
62 #  include <X11/XKBlib.h>
63 #endif
64
65 #ifdef USE_SM
66 #include <X11/ICE/ICElib.h>
67 #endif
68
69 typedef struct
70 {
71     gboolean ignored;
72 } ObEventData;
73
74 typedef struct
75 {
76     ObClient *client;
77     Time time;
78 } ObFocusDelayData;
79
80 typedef struct
81 {
82     gulong start; /* inclusive */
83     gulong end;   /* inclusive */
84 } ObSerialRange;
85
86 static void event_process(const XEvent *e, gpointer data);
87 static void event_handle_root(XEvent *e);
88 static gboolean event_handle_menu_keyboard(XEvent *e);
89 static gboolean event_handle_menu(XEvent *e);
90 static void event_handle_dock(ObDock *s, XEvent *e);
91 static void event_handle_dockapp(ObDockApp *app, XEvent *e);
92 static void event_handle_client(ObClient *c, XEvent *e);
93 static void event_handle_user_time_window_clients(GSList *l, XEvent *e);
94 static void event_handle_user_input(ObClient *client, XEvent *e);
95 static gboolean is_enter_focus_event_ignored(XEvent *e);
96
97 static void focus_delay_dest(gpointer data);
98 static gboolean focus_delay_cmp(gconstpointer d1, gconstpointer d2);
99 static gboolean focus_delay_func(gpointer data);
100 static void focus_delay_client_dest(ObClient *client, gpointer data);
101
102 /* The time for the current event being processed */
103 Time event_curtime = CurrentTime;
104
105 static gboolean focus_left_screen = FALSE;
106 /*! A list of ObSerialRanges which are to be ignored for mouse enter events */
107 static GSList *ignore_serials = NULL;
108
109 #ifdef USE_SM
110 static void ice_handler(gint fd, gpointer conn)
111 {
112     Bool b;
113     IceProcessMessages(conn, NULL, &b);
114 }
115
116 static void ice_watch(IceConn conn, IcePointer data, Bool opening,
117                       IcePointer *watch_data)
118 {
119     static gint fd = -1;
120
121     if (opening) {
122         fd = IceConnectionNumber(conn);
123         ob_main_loop_fd_add(ob_main_loop, fd, ice_handler, conn, NULL);
124     } else {
125         ob_main_loop_fd_remove(ob_main_loop, fd);
126         fd = -1;
127     }
128 }
129 #endif
130
131 void event_startup(gboolean reconfig)
132 {
133     if (reconfig) return;
134
135     ob_main_loop_x_add(ob_main_loop, event_process, NULL, NULL);
136
137 #ifdef USE_SM
138     IceAddConnectionWatch(ice_watch, NULL);
139 #endif
140
141     client_add_destroy_notify(focus_delay_client_dest, NULL);
142 }
143
144 void event_shutdown(gboolean reconfig)
145 {
146     if (reconfig) return;
147
148 #ifdef USE_SM
149     IceRemoveConnectionWatch(ice_watch, NULL);
150 #endif
151
152     client_remove_destroy_notify(focus_delay_client_dest);
153 }
154
155 static Window event_get_window(XEvent *e)
156 {
157     Window window;
158
159     /* pick a window */
160     switch (e->type) {
161     case SelectionClear:
162         window = RootWindow(ob_display, ob_screen);
163         break;
164     case MapRequest:
165         window = e->xmap.window;
166         break;
167     case UnmapNotify:
168         window = e->xunmap.window;
169         break;
170     case DestroyNotify:
171         window = e->xdestroywindow.window;
172         break;
173     case ConfigureRequest:
174         window = e->xconfigurerequest.window;
175         break;
176     case ConfigureNotify:
177         window = e->xconfigure.window;
178         break;
179     default:
180 #ifdef XKB
181         if (extensions_xkb && e->type == extensions_xkb_event_basep) {
182             switch (((XkbAnyEvent*)e)->xkb_type) {
183             case XkbBellNotify:
184                 window = ((XkbBellNotifyEvent*)e)->window;
185             default:
186                 window = None;
187             }
188         } else
189 #endif
190 #ifdef SYNC
191         if (extensions_sync &&
192             e->type == extensions_sync_event_basep + XSyncAlarmNotify)
193         {
194             window = None;
195         } else
196 #endif
197             window = e->xany.window;
198     }
199     return window;
200 }
201
202 static void event_set_curtime(XEvent *e)
203 {
204     Time t = CurrentTime;
205
206     /* grab the lasttime and hack up the state */
207     switch (e->type) {
208     case ButtonPress:
209     case ButtonRelease:
210         t = e->xbutton.time;
211         break;
212     case KeyPress:
213         t = e->xkey.time;
214         break;
215     case KeyRelease:
216         t = e->xkey.time;
217         break;
218     case MotionNotify:
219         t = e->xmotion.time;
220         break;
221     case PropertyNotify:
222         t = e->xproperty.time;
223         break;
224     case EnterNotify:
225     case LeaveNotify:
226         t = e->xcrossing.time;
227         break;
228     default:
229 #ifdef SYNC
230         if (extensions_sync &&
231             e->type == extensions_sync_event_basep + XSyncAlarmNotify)
232         {
233             t = ((XSyncAlarmNotifyEvent*)e)->time;
234         }
235 #endif
236         /* if more event types are anticipated, get their timestamp
237            explicitly */
238         break;
239     }
240
241     event_curtime = t;
242 }
243
244 static void event_hack_mods(XEvent *e)
245 {
246 #ifdef XKB
247     XkbStateRec xkb_state;
248 #endif
249
250     switch (e->type) {
251     case ButtonPress:
252     case ButtonRelease:
253         e->xbutton.state = modkeys_only_modifier_masks(e->xbutton.state);
254         break;
255     case KeyPress:
256         e->xkey.state = modkeys_only_modifier_masks(e->xkey.state);
257         break;
258     case KeyRelease:
259         e->xkey.state = modkeys_only_modifier_masks(e->xkey.state);
260 #ifdef XKB
261         if (XkbGetState(ob_display, XkbUseCoreKbd, &xkb_state) == Success) {
262             e->xkey.state = xkb_state.compat_state;
263             break;
264         }
265 #endif
266         /* remove from the state the mask of the modifier key being released,
267            if it is a modifier key being released that is */
268         e->xkey.state &= ~modkeys_keycode_to_mask(e->xkey.keycode);
269         break;
270     case MotionNotify:
271         e->xmotion.state = modkeys_only_modifier_masks(e->xmotion.state);
272         /* compress events */
273         {
274             XEvent ce;
275             while (XCheckTypedWindowEvent(ob_display, e->xmotion.window,
276                                           e->type, &ce)) {
277                 e->xmotion.x = ce.xmotion.x;
278                 e->xmotion.y = ce.xmotion.y;
279                 e->xmotion.x_root = ce.xmotion.x_root;
280                 e->xmotion.y_root = ce.xmotion.y_root;
281             }
282         }
283         break;
284     }
285 }
286
287 static gboolean wanted_focusevent(XEvent *e, gboolean in_client_only)
288 {
289     gint mode = e->xfocus.mode;
290     gint detail = e->xfocus.detail;
291     Window win = e->xany.window;
292
293     if (e->type == FocusIn) {
294         /* These are ones we never want.. */
295
296         /* This means focus was given by a keyboard/mouse grab. */
297         if (mode == NotifyGrab)
298             return FALSE;
299         /* This means focus was given back from a keyboard/mouse grab. */
300         if (mode == NotifyUngrab)
301             return FALSE;
302
303         /* These are the ones we want.. */
304
305         if (win == RootWindow(ob_display, ob_screen)) {
306             /* If looking for a focus in on a client, then always return
307                FALSE for focus in's to the root window */
308             if (in_client_only)
309                 return FALSE;
310             /* This means focus reverted off of a client */
311             else if (detail == NotifyPointerRoot ||
312                      detail == NotifyDetailNone ||
313                      detail == NotifyInferior ||
314                      /* This means focus got here from another screen */
315                      detail == NotifyNonlinear)
316                 return TRUE;
317             else
318                 return FALSE;
319         }
320
321         /* It was on a client, was it a valid one?
322            It's possible to get a FocusIn event for a client that was managed
323            but has disappeared.
324         */
325         if (in_client_only) {
326             ObWindow *w = g_hash_table_lookup(window_map, &e->xfocus.window);
327             if (!w || !WINDOW_IS_CLIENT(w))
328                 return FALSE;
329         }
330         else {
331             /* This means focus reverted to parent from the client (this
332                happens often during iconify animation) */
333             if (detail == NotifyInferior)
334                 return TRUE;
335         }
336
337         /* This means focus moved from the root window to a client */
338         if (detail == NotifyVirtual)
339             return TRUE;
340         /* This means focus moved from one client to another */
341         if (detail == NotifyNonlinearVirtual)
342             return TRUE;
343
344         /* Otherwise.. */
345         return FALSE;
346     } else {
347         g_assert(e->type == FocusOut);
348
349         /* These are ones we never want.. */
350
351         /* This means focus was taken by a keyboard/mouse grab. */
352         if (mode == NotifyGrab)
353             return FALSE;
354         /* This means focus was grabbed on a window and it was released. */
355         if (mode == NotifyUngrab)
356             return FALSE;
357
358         /* Focus left the root window revertedto state */
359         if (win == RootWindow(ob_display, ob_screen))
360             return FALSE;
361
362         /* These are the ones we want.. */
363
364         /* This means focus moved from a client to the root window */
365         if (detail == NotifyVirtual)
366             return TRUE;
367         /* This means focus moved from one client to another */
368         if (detail == NotifyNonlinearVirtual)
369             return TRUE;
370
371         /* Otherwise.. */
372         return FALSE;
373     }
374 }
375
376 static Bool event_look_for_focusin(Display *d, XEvent *e, XPointer arg)
377 {
378     return e->type == FocusIn && wanted_focusevent(e, FALSE);
379 }
380
381 static Bool event_look_for_focusin_client(Display *d, XEvent *e, XPointer arg)
382 {
383     return e->type == FocusIn && wanted_focusevent(e, TRUE);
384 }
385
386 static void print_focusevent(XEvent *e)
387 {
388     gint mode = e->xfocus.mode;
389     gint detail = e->xfocus.detail;
390     Window win = e->xany.window;
391     const gchar *modestr, *detailstr;
392
393     switch (mode) {
394     case NotifyNormal:       modestr="NotifyNormal";       break;
395     case NotifyGrab:         modestr="NotifyGrab";         break;
396     case NotifyUngrab:       modestr="NotifyUngrab";       break;
397     case NotifyWhileGrabbed: modestr="NotifyWhileGrabbed"; break;
398     }
399     switch (detail) {
400     case NotifyAncestor:    detailstr="NotifyAncestor";    break;
401     case NotifyVirtual:     detailstr="NotifyVirtual";     break;
402     case NotifyInferior:    detailstr="NotifyInferior";    break;
403     case NotifyNonlinear:   detailstr="NotifyNonlinear";   break;
404     case NotifyNonlinearVirtual: detailstr="NotifyNonlinearVirtual"; break;
405     case NotifyPointer:     detailstr="NotifyPointer";     break;
406     case NotifyPointerRoot: detailstr="NotifyPointerRoot"; break;
407     case NotifyDetailNone:  detailstr="NotifyDetailNone";  break;
408     }
409
410     if (mode == NotifyGrab || mode == NotifyUngrab)
411         return;
412
413     g_assert(modestr);
414     g_assert(detailstr);
415     ob_debug_type(OB_DEBUG_FOCUS, "Focus%s 0x%x mode=%s detail=%s\n",
416                   (e->xfocus.type == FocusIn ? "In" : "Out"),
417                   win,
418                   modestr, detailstr);
419
420 }
421
422 static gboolean event_ignore(XEvent *e, ObClient *client)
423 {
424     switch(e->type) {
425     case FocusIn:
426         print_focusevent(e);
427         if (!wanted_focusevent(e, FALSE))
428             return TRUE;
429         break;
430     case FocusOut:
431         print_focusevent(e);
432         if (!wanted_focusevent(e, FALSE))
433             return TRUE;
434         break;
435     }
436     return FALSE;
437 }
438
439 static void event_process(const XEvent *ec, gpointer data)
440 {
441     Window window;
442     ObClient *client = NULL;
443     ObDock *dock = NULL;
444     ObDockApp *dockapp = NULL;
445     ObWindow *obwin = NULL;
446     GSList *timewinclients = NULL;
447     XEvent ee, *e;
448     ObEventData *ed = data;
449
450     /* make a copy we can mangle */
451     ee = *ec;
452     e = &ee;
453
454     window = event_get_window(e);
455     if (e->type != PropertyNotify ||
456         !(timewinclients = propwin_get_clients(window,
457                                                OB_PROPWIN_USER_TIME)))
458         if ((obwin = g_hash_table_lookup(window_map, &window))) {
459             switch (obwin->type) {
460             case Window_Dock:
461                 dock = WINDOW_AS_DOCK(obwin);
462                 break;
463             case Window_DockApp:
464                 dockapp = WINDOW_AS_DOCKAPP(obwin);
465                 break;
466             case Window_Client:
467                 client = WINDOW_AS_CLIENT(obwin);
468                 break;
469             case Window_Menu:
470             case Window_Internal:
471                 /* not to be used for events */
472                 g_assert_not_reached();
473                 break;
474             }
475         }
476
477     event_set_curtime(e);
478     event_hack_mods(e);
479     if (event_ignore(e, client)) {
480         if (ed)
481             ed->ignored = TRUE;
482         return;
483     } else if (ed)
484             ed->ignored = FALSE;
485
486     /* deal with it in the kernel */
487
488     if (menu_frame_visible &&
489         (e->type == EnterNotify || e->type == LeaveNotify))
490     {
491         /* crossing events for menu */
492         event_handle_menu(e);
493     } else if (e->type == FocusIn) {
494         if (client &&
495             e->xfocus.detail == NotifyInferior)
496         {
497             ob_debug_type(OB_DEBUG_FOCUS,
498                           "Focus went to the frame window");
499
500             focus_left_screen = FALSE;
501
502             focus_fallback(FALSE, FALSE);
503
504             /* We don't get a FocusOut for this case, because it's just moving
505                from our Inferior up to us. This happens when iconifying a
506                window with RevertToParent focus */
507             frame_adjust_focus(client->frame, FALSE);
508             /* focus_set_client(NULL) has already been called */
509             client_calc_layer(client);
510         }
511         if (e->xfocus.detail == NotifyPointerRoot ||
512             e->xfocus.detail == NotifyDetailNone ||
513             e->xfocus.detail == NotifyInferior ||
514             e->xfocus.detail == NotifyNonlinear)
515         {
516             XEvent ce;
517
518             ob_debug_type(OB_DEBUG_FOCUS,
519                           "Focus went to root or pointer root/none\n");
520
521             if (e->xfocus.detail == NotifyInferior ||
522                 e->xfocus.detail == NotifyNonlinear)
523             {
524                 focus_left_screen = FALSE;
525             }
526
527             /* If another FocusIn is in the queue then don't fallback yet. This
528                fixes the fun case of:
529                window map -> send focusin
530                window unmap -> get focusout
531                window map -> send focusin
532                get first focus out -> fall back to something (new window
533                  hasn't received focus yet, so something else) -> send focusin
534                which means the "something else" is the last thing to get a
535                focusin sent to it, so the new window doesn't end up with focus.
536
537                But if the other focus in is something like PointerRoot then we
538                still want to fall back.
539             */
540             if (XCheckIfEvent(ob_display, &ce, event_look_for_focusin_client,
541                               NULL))
542             {
543                 XPutBackEvent(ob_display, &ce);
544                 ob_debug_type(OB_DEBUG_FOCUS,
545                               "  but another FocusIn is coming\n");
546             } else {
547                 /* Focus has been reverted.
548
549                    FocusOut events come after UnmapNotify, so we don't need to
550                    worry about focusing an invalid window
551                 */
552
553                 if (!focus_left_screen)
554                     focus_fallback(FALSE, FALSE);
555             }
556         }
557         else if (!client)
558         {
559             ob_debug_type(OB_DEBUG_FOCUS,
560                           "Focus went to a window that is already gone\n");
561
562             /* If you send focus to a window and then it disappears, you can
563                get the FocusIn for it, after it is unmanaged.
564                Just wait for the next FocusOut/FocusIn pair, but make note that
565                the window that was focused no longer is. */
566             focus_set_client(NULL);
567         }
568         else if (client != focus_client) {
569             focus_left_screen = FALSE;
570             frame_adjust_focus(client->frame, TRUE);
571             focus_set_client(client);
572             client_calc_layer(client);
573             client_bring_helper_windows(client);
574         }
575     } else if (e->type == FocusOut) {
576         XEvent ce;
577
578         /* Look for the followup FocusIn */
579         if (!XCheckIfEvent(ob_display, &ce, event_look_for_focusin, NULL)) {
580             /* There is no FocusIn, this means focus went to a window that
581                is not being managed, or a window on another screen. */
582             Window win, root;
583             gint i;
584             guint u;
585             xerror_set_ignore(TRUE);
586             if (XGetInputFocus(ob_display, &win, &i) != 0 &&
587                 XGetGeometry(ob_display, win, &root, &i,&i,&u,&u,&u,&u) != 0 &&
588                 root != RootWindow(ob_display, ob_screen))
589             {
590                 ob_debug_type(OB_DEBUG_FOCUS,
591                               "Focus went to another screen !\n");
592                 focus_left_screen = TRUE;
593             }
594             else
595                 ob_debug_type(OB_DEBUG_FOCUS,
596                               "Focus went to a black hole !\n");
597             xerror_set_ignore(FALSE);
598             /* nothing is focused */
599             focus_set_client(NULL);
600         } else {
601             /* Focus moved, so process the FocusIn event */
602             ObEventData ed = { .ignored = FALSE };
603             event_process(&ce, &ed);
604             if (ed.ignored) {
605                 /* The FocusIn was ignored, this means it was on a window
606                    that isn't a client. */
607                 ob_debug_type(OB_DEBUG_FOCUS,
608                               "Focus went to an unmanaged window 0x%x !\n",
609                               ce.xfocus.window);
610                 focus_fallback(TRUE, FALSE);
611             }
612         }
613
614         if (client && client != focus_client) {
615             frame_adjust_focus(client->frame, FALSE);
616             /* focus_set_client(NULL) has already been called in this
617                section or by focus_fallback */
618             client_calc_layer(client);
619         }
620     } else if (timewinclients)
621         event_handle_user_time_window_clients(timewinclients, e);
622     else if (client)
623         event_handle_client(client, e);
624     else if (dockapp)
625         event_handle_dockapp(dockapp, e);
626     else if (dock)
627         event_handle_dock(dock, e);
628     else if (window == RootWindow(ob_display, ob_screen))
629         event_handle_root(e);
630     else if (e->type == MapRequest)
631         client_manage(window);
632     else if (e->type == ClientMessage) {
633         /* This is for _NET_WM_REQUEST_FRAME_EXTENTS messages. They come for
634            windows that are not managed yet. */
635         if (e->xclient.message_type == prop_atoms.net_request_frame_extents) {
636             /* Pretend to manage the client, getting information used to
637                determine its decorations */
638             ObClient *c = client_fake_manage(e->xclient.window);
639             gulong vals[4];
640
641             /* set the frame extents on the window */
642             vals[0] = c->frame->size.left;
643             vals[1] = c->frame->size.right;
644             vals[2] = c->frame->size.top;
645             vals[3] = c->frame->size.bottom;
646             PROP_SETA32(e->xclient.window, net_frame_extents,
647                         cardinal, vals, 4);
648
649             /* Free the pretend client */
650             client_fake_unmanage(c);
651         }
652     }
653     else if (e->type == ConfigureRequest) {
654         /* unhandled configure requests must be used to configure the
655            window directly */
656         XWindowChanges xwc;
657
658         xwc.x = e->xconfigurerequest.x;
659         xwc.y = e->xconfigurerequest.y;
660         xwc.width = e->xconfigurerequest.width;
661         xwc.height = e->xconfigurerequest.height;
662         xwc.border_width = e->xconfigurerequest.border_width;
663         xwc.sibling = e->xconfigurerequest.above;
664         xwc.stack_mode = e->xconfigurerequest.detail;
665        
666         /* we are not to be held responsible if someone sends us an
667            invalid request! */
668         xerror_set_ignore(TRUE);
669         XConfigureWindow(ob_display, window,
670                          e->xconfigurerequest.value_mask, &xwc);
671         xerror_set_ignore(FALSE);
672     }
673 #ifdef SYNC
674     else if (extensions_sync &&
675         e->type == extensions_sync_event_basep + XSyncAlarmNotify)
676     {
677         XSyncAlarmNotifyEvent *se = (XSyncAlarmNotifyEvent*)e;
678         if (se->alarm == moveresize_alarm && moveresize_in_progress)
679             moveresize_event(e);
680     }
681 #endif
682
683     if (e->type == ButtonPress || e->type == ButtonRelease ||
684         e->type == MotionNotify || e->type == KeyPress ||
685         e->type == KeyRelease)
686     {
687         event_handle_user_input(client, e);
688     }
689
690     /* if something happens and it's not from an XEvent, then we don't know
691        the time */
692     event_curtime = CurrentTime;
693 }
694
695 static void event_handle_root(XEvent *e)
696 {
697     Atom msgtype;
698      
699     switch(e->type) {
700     case SelectionClear:
701         ob_debug("Another WM has requested to replace us. Exiting.\n");
702         ob_exit_replace();
703         break;
704
705     case ClientMessage:
706         if (e->xclient.format != 32) break;
707
708         msgtype = e->xclient.message_type;
709         if (msgtype == prop_atoms.net_current_desktop) {
710             guint d = e->xclient.data.l[0];
711             if (d < screen_num_desktops) {
712                 event_curtime = e->xclient.data.l[1];
713                 if (event_curtime == 0)
714                     ob_debug_type(OB_DEBUG_APP_BUGS,
715                                   "_NET_CURRENT_DESKTOP message is missing "
716                                   "a timestamp\n");
717                 screen_set_desktop(d, TRUE);
718             }
719         } else if (msgtype == prop_atoms.net_number_of_desktops) {
720             guint d = e->xclient.data.l[0];
721             if (d > 0 && d <= 1000)
722                 screen_set_num_desktops(d);
723         } else if (msgtype == prop_atoms.net_showing_desktop) {
724             screen_show_desktop(e->xclient.data.l[0] != 0, NULL);
725         } else if (msgtype == prop_atoms.ob_control) {
726             if (e->xclient.data.l[0] == 1)
727                 ob_reconfigure();
728             else if (e->xclient.data.l[0] == 2)
729                 ob_restart();
730         }
731         break;
732     case PropertyNotify:
733         if (e->xproperty.atom == prop_atoms.net_desktop_names)
734             screen_update_desktop_names();
735         else if (e->xproperty.atom == prop_atoms.net_desktop_layout)
736             screen_update_layout();
737         break;
738     case ConfigureNotify:
739 #ifdef XRANDR
740         XRRUpdateConfiguration(e);
741 #endif
742         screen_resize();
743         break;
744     default:
745         ;
746     }
747 }
748
749 void event_enter_client(ObClient *client)
750 {
751     g_assert(config_focus_follow);
752
753     if (client_enter_focusable(client) && client_can_focus(client)) {
754         if (config_focus_delay) {
755             ObFocusDelayData *data;
756
757             ob_main_loop_timeout_remove(ob_main_loop, focus_delay_func);
758
759             data = g_new(ObFocusDelayData, 1);
760             data->client = client;
761             data->time = event_curtime;
762
763             ob_main_loop_timeout_add(ob_main_loop,
764                                      config_focus_delay,
765                                      focus_delay_func,
766                                      data, focus_delay_cmp, focus_delay_dest);
767         } else {
768             ObFocusDelayData data;
769             data.client = client;
770             data.time = event_curtime;
771             focus_delay_func(&data);
772         }
773     }
774 }
775
776 static void event_handle_user_time_window_clients(GSList *l, XEvent *e)
777 {
778     g_assert(e->type == PropertyNotify);
779     if (e->xproperty.atom == prop_atoms.net_wm_user_time) {
780         for (; l; l = g_slist_next(l))
781             client_update_user_time(l->data);
782     }
783 }
784
785 static void event_handle_client(ObClient *client, XEvent *e)
786 {
787     XEvent ce;
788     Atom msgtype;
789     ObFrameContext con;
790     static gint px = -1, py = -1;
791     static guint pb = 0;
792      
793     switch (e->type) {
794     case ButtonPress:
795         /* save where the press occured for the first button pressed */
796         if (!pb) {
797             pb = e->xbutton.button;
798             px = e->xbutton.x;
799             py = e->xbutton.y;
800         }
801     case ButtonRelease:
802         /* Wheel buttons don't draw because they are an instant click, so it
803            is a waste of resources to go drawing it.
804            if the user is doing an intereactive thing, or has a menu open then
805            the mouse is grabbed (possibly) and if we get these events we don't
806            want to deal with them
807         */
808         if (!(e->xbutton.button == 4 || e->xbutton.button == 5) &&
809             !keyboard_interactively_grabbed() &&
810             !menu_frame_visible)
811         {
812             /* use where the press occured */
813             con = frame_context(client, e->xbutton.window, px, py);
814             con = mouse_button_frame_context(con, e->xbutton.button,
815                                              e->xbutton.state);
816
817             if (e->type == ButtonRelease && e->xbutton.button == pb)
818                 pb = 0, px = py = -1;
819
820             switch (con) {
821             case OB_FRAME_CONTEXT_MAXIMIZE:
822                 client->frame->max_press = (e->type == ButtonPress);
823                 framerender_frame(client->frame);
824                 break;
825             case OB_FRAME_CONTEXT_CLOSE:
826                 client->frame->close_press = (e->type == ButtonPress);
827                 framerender_frame(client->frame);
828                 break;
829             case OB_FRAME_CONTEXT_ICONIFY:
830                 client->frame->iconify_press = (e->type == ButtonPress);
831                 framerender_frame(client->frame);
832                 break;
833             case OB_FRAME_CONTEXT_ALLDESKTOPS:
834                 client->frame->desk_press = (e->type == ButtonPress);
835                 framerender_frame(client->frame);
836                 break; 
837             case OB_FRAME_CONTEXT_SHADE:
838                 client->frame->shade_press = (e->type == ButtonPress);
839                 framerender_frame(client->frame);
840                 break;
841             default:
842                 /* nothing changes with clicks for any other contexts */
843                 break;
844             }
845         }
846         break;
847     case MotionNotify:
848         /* when there is a grab on the pointer, we won't get enter/leave
849            notifies, but we still get motion events */
850         if (grab_on_pointer()) break;
851
852         con = frame_context(client, e->xmotion.window,
853                             e->xmotion.x, e->xmotion.y);
854         switch (con) {
855         case OB_FRAME_CONTEXT_TITLEBAR:
856         case OB_FRAME_CONTEXT_TLCORNER:
857         case OB_FRAME_CONTEXT_TRCORNER:
858             /* we've left the button area inside the titlebar */
859             if (client->frame->max_hover || client->frame->desk_hover ||
860                 client->frame->shade_hover || client->frame->iconify_hover ||
861                 client->frame->close_hover)
862             {
863                 client->frame->max_hover = FALSE;
864                 client->frame->desk_hover = FALSE;
865                 client->frame->shade_hover = FALSE;
866                 client->frame->iconify_hover = FALSE;
867                 client->frame->close_hover = FALSE;
868                 frame_adjust_state(client->frame);
869             }
870             break;
871         case OB_FRAME_CONTEXT_MAXIMIZE:
872             if (!client->frame->max_hover) {
873                 client->frame->max_hover = TRUE;
874                 frame_adjust_state(client->frame);
875             }
876             break;
877         case OB_FRAME_CONTEXT_ALLDESKTOPS:
878             if (!client->frame->desk_hover) {
879                 client->frame->desk_hover = TRUE;
880                 frame_adjust_state(client->frame);
881             }
882             break;
883         case OB_FRAME_CONTEXT_SHADE:
884             if (!client->frame->shade_hover) {
885                 client->frame->shade_hover = TRUE;
886                 frame_adjust_state(client->frame);
887             }
888             break;
889         case OB_FRAME_CONTEXT_ICONIFY:
890             if (!client->frame->iconify_hover) {
891                 client->frame->iconify_hover = TRUE;
892                 frame_adjust_state(client->frame);
893             }
894             break;
895         case OB_FRAME_CONTEXT_CLOSE:
896             if (!client->frame->close_hover) {
897                 client->frame->close_hover = TRUE;
898                 frame_adjust_state(client->frame);
899             }
900             break;
901         default:
902             break;
903         }
904         break;
905     case LeaveNotify:
906         con = frame_context(client, e->xcrossing.window,
907                             e->xcrossing.x, e->xcrossing.y);
908         switch (con) {
909         case OB_FRAME_CONTEXT_TITLEBAR:
910         case OB_FRAME_CONTEXT_TLCORNER:
911         case OB_FRAME_CONTEXT_TRCORNER:
912             /* we've left the button area inside the titlebar */
913             if (client->frame->max_hover || client->frame->desk_hover ||
914                 client->frame->shade_hover || client->frame->iconify_hover ||
915                 client->frame->close_hover)
916             {
917                 client->frame->max_hover = FALSE;
918                 client->frame->desk_hover = FALSE;
919                 client->frame->shade_hover = FALSE;
920                 client->frame->iconify_hover = FALSE;
921                 client->frame->close_hover = FALSE;
922                 frame_adjust_state(client->frame);
923             }
924             break;
925         case OB_FRAME_CONTEXT_MAXIMIZE:
926             client->frame->max_hover = FALSE;
927             frame_adjust_state(client->frame);
928             break;
929         case OB_FRAME_CONTEXT_ALLDESKTOPS:
930             client->frame->desk_hover = FALSE;
931             frame_adjust_state(client->frame);
932             break;
933         case OB_FRAME_CONTEXT_SHADE:
934             client->frame->shade_hover = FALSE;
935             frame_adjust_state(client->frame);
936             break;
937         case OB_FRAME_CONTEXT_ICONIFY:
938             client->frame->iconify_hover = FALSE;
939             frame_adjust_state(client->frame);
940             break;
941         case OB_FRAME_CONTEXT_CLOSE:
942             client->frame->close_hover = FALSE;
943             frame_adjust_state(client->frame);
944             break;
945         case OB_FRAME_CONTEXT_FRAME:
946             /* When the mouse leaves an animating window, don't use the
947                corresponding enter events. Pretend like the animating window
948                doesn't even exist..! */
949             if (frame_iconify_animating(client->frame))
950                 event_end_ignore_all_enters(event_start_ignore_all_enters());
951
952             ob_debug_type(OB_DEBUG_FOCUS,
953                           "%sNotify mode %d detail %d on %lx\n",
954                           (e->type == EnterNotify ? "Enter" : "Leave"),
955                           e->xcrossing.mode,
956                           e->xcrossing.detail, (client?client->window:0));
957             if (keyboard_interactively_grabbed())
958                 break;
959             if (config_focus_follow && config_focus_delay &&
960                 /* leave inferior events can happen when the mouse goes onto
961                    the window's border and then into the window before the
962                    delay is up */
963                 e->xcrossing.detail != NotifyInferior)
964             {
965                 ob_main_loop_timeout_remove_data(ob_main_loop,
966                                                  focus_delay_func,
967                                                  client, FALSE);
968             }
969             break;
970         default:
971             break;
972         }
973         break;
974     case EnterNotify:
975     {
976         con = frame_context(client, e->xcrossing.window,
977                             e->xcrossing.x, e->xcrossing.y);
978         switch (con) {
979         case OB_FRAME_CONTEXT_MAXIMIZE:
980             client->frame->max_hover = TRUE;
981             frame_adjust_state(client->frame);
982             break;
983         case OB_FRAME_CONTEXT_ALLDESKTOPS:
984             client->frame->desk_hover = TRUE;
985             frame_adjust_state(client->frame);
986             break;
987         case OB_FRAME_CONTEXT_SHADE:
988             client->frame->shade_hover = TRUE;
989             frame_adjust_state(client->frame);
990             break;
991         case OB_FRAME_CONTEXT_ICONIFY:
992             client->frame->iconify_hover = TRUE;
993             frame_adjust_state(client->frame);
994             break;
995         case OB_FRAME_CONTEXT_CLOSE:
996             client->frame->close_hover = TRUE;
997             frame_adjust_state(client->frame);
998             break;
999         case OB_FRAME_CONTEXT_FRAME:
1000             if (keyboard_interactively_grabbed())
1001                 break;
1002             if (e->xcrossing.mode == NotifyGrab ||
1003                 e->xcrossing.mode == NotifyUngrab ||
1004                 /*ignore enters when we're already in the window */
1005                 e->xcrossing.detail == NotifyInferior ||
1006                 is_enter_focus_event_ignored(e))
1007             {
1008                 ob_debug_type(OB_DEBUG_FOCUS,
1009                               "%sNotify mode %d detail %d on %lx IGNORED\n",
1010                               (e->type == EnterNotify ? "Enter" : "Leave"),
1011                               e->xcrossing.mode,
1012                               e->xcrossing.detail, client?client->window:0);
1013             }
1014             else {
1015                 ob_debug_type(OB_DEBUG_FOCUS,
1016                               "%sNotify mode %d detail %d on %lx, "
1017                               "focusing window\n",
1018                               (e->type == EnterNotify ? "Enter" : "Leave"),
1019                               e->xcrossing.mode,
1020                               e->xcrossing.detail, (client?client->window:0));
1021                 if (config_focus_follow)
1022                     event_enter_client(client);
1023             }
1024             break;
1025         default:
1026             break;
1027         }
1028         break;
1029     }
1030     case ConfigureRequest:
1031     {
1032         /* dont compress these unless you're going to watch for property
1033            notifies in between (these can change what the configure would
1034            do to the window).
1035            also you can't compress stacking events
1036         */
1037
1038         gint x, y, w, h;
1039         gboolean move = FALSE;
1040         gboolean resize = FALSE;
1041
1042         /* get the current area */
1043         RECT_TO_DIMS(client->area, x, y, w, h);
1044
1045         ob_debug("ConfigureRequest for \"%s\" desktop %d wmstate %d "
1046                  "visibile %d\n"
1047                  "                     x %d y %d w %d h %d b %d\n",
1048                  client->title,
1049                  screen_desktop, client->wmstate, client->frame->visible,
1050                  x, y, w, h, client->border_width);
1051
1052         if (e->xconfigurerequest.value_mask & CWBorderWidth)
1053             if (client->border_width != e->xconfigurerequest.border_width) {
1054                 client->border_width = e->xconfigurerequest.border_width;
1055
1056                 /* if the border width is changing then that is the same
1057                    as requesting a resize, but we don't actually change
1058                    the client's border, so it will change their root
1059                    coordiantes (since they include the border width) and
1060                    we need to a notify then */
1061                 move = TRUE;
1062             }
1063
1064
1065         if (e->xconfigurerequest.value_mask & CWStackMode) {
1066             ObClient *sibling = NULL;
1067
1068             /* get the sibling */
1069             if (e->xconfigurerequest.value_mask & CWSibling) {
1070                 ObWindow *win;
1071                 win = g_hash_table_lookup(window_map,
1072                                           &e->xconfigurerequest.above);
1073                 if (WINDOW_IS_CLIENT(win) && WINDOW_AS_CLIENT(win) != client)
1074                     sibling = WINDOW_AS_CLIENT(win);
1075             }
1076
1077             /* activate it rather than just focus it */
1078             stacking_restack_request(client, sibling,
1079                                      e->xconfigurerequest.detail,
1080                                      TRUE);
1081
1082             /* if a stacking change moves the window without resizing */
1083             move = TRUE;
1084         }
1085
1086         if ((e->xconfigurerequest.value_mask & CWX) ||
1087             (e->xconfigurerequest.value_mask & CWY) ||
1088             (e->xconfigurerequest.value_mask & CWWidth) ||
1089             (e->xconfigurerequest.value_mask & CWHeight))
1090         {
1091             if (e->xconfigurerequest.value_mask & CWX) {
1092                 /* don't allow clients to move shaded windows (fvwm does this)
1093                  */
1094                 if (!client->shaded)
1095                     x = e->xconfigurerequest.x;
1096                 move = TRUE;
1097             }
1098             if (e->xconfigurerequest.value_mask & CWY) {
1099                 /* don't allow clients to move shaded windows (fvwm does this)
1100                  */
1101                 if (!client->shaded)
1102                     y = e->xconfigurerequest.y;
1103                 move = TRUE;
1104             }
1105
1106             if (e->xconfigurerequest.value_mask & CWWidth) {
1107                 w = e->xconfigurerequest.width;
1108                 resize = TRUE;
1109             }
1110             if (e->xconfigurerequest.value_mask & CWHeight) {
1111                 h = e->xconfigurerequest.height;
1112                 resize = TRUE;
1113             }
1114         }
1115
1116         ob_debug("ConfigureRequest x(%d) %d y(%d) %d w(%d) %d h(%d) %d "
1117                  "move %d resize %d\n",
1118                  e->xconfigurerequest.value_mask & CWX, x,
1119                  e->xconfigurerequest.value_mask & CWY, y,
1120                  e->xconfigurerequest.value_mask & CWWidth, w,
1121                  e->xconfigurerequest.value_mask & CWHeight, h,
1122                  move, resize);
1123
1124         /* check for broken apps moving to their root position
1125
1126            XXX remove this some day...that would be nice. right now all
1127            kde apps do this when they try activate themselves on another
1128            desktop. eg. open amarok window on desktop 1, switch to desktop
1129            2, click amarok tray icon. it will move by its decoration size.
1130         */
1131         if (x != client->area.x &&
1132             x == (client->frame->area.x + client->frame->size.left -
1133                   (gint)client->border_width) &&
1134             y != client->area.y &&
1135             y == (client->frame->area.y + client->frame->size.top -
1136                   (gint)client->border_width) &&
1137             w == client->area.width &&
1138             h == client->area.height)
1139         {
1140             ob_debug_type(OB_DEBUG_APP_BUGS,
1141                           "Application %s is trying to move via "
1142                           "ConfigureRequest to it's root window position "
1143                           "but it is not using StaticGravity\n",
1144                           client->title);
1145             /* don't move it */
1146             x = client->area.x;
1147             y = client->area.y;
1148
1149             /* they still requested a move, so don't change whether a
1150                notify is sent or not */
1151         }
1152
1153         if (move || resize) {
1154             gint lw,lh;
1155
1156             client_try_configure(client, &x, &y, &w, &h, &lw, &lh, FALSE);
1157
1158             /* if x was not given, then use gravity to figure out the new
1159                x.  the reference point should not be moved */
1160             if ((e->xconfigurerequest.value_mask & CWWidth &&
1161                  !(e->xconfigurerequest.value_mask & CWX)))
1162                 client_gravity_resize_w(client, &x, client->area.width, w);
1163             /* if y was not given, then use gravity to figure out the new
1164                y.  the reference point should not be moved */
1165             if ((e->xconfigurerequest.value_mask & CWHeight &&
1166                  !(e->xconfigurerequest.value_mask & CWY)))
1167                 client_gravity_resize_h(client, &y, client->area.height,h);
1168
1169             client_find_onscreen(client, &x, &y, w, h, FALSE);
1170
1171             /* if they requested something that moves the window, or if
1172                the window is actually being changed then configure it and
1173                send a configure notify to them */
1174             if (move || !RECT_EQUAL_DIMS(client->area, x, y, w, h)) {
1175                 gulong ignore_start;
1176
1177                 ob_debug("Granting ConfigureRequest x %d y %d w %d h %d\n",
1178                          x, y, w, h);
1179                 ignore_start = event_start_ignore_all_enters();
1180                 client_configure(client, x, y, w, h, FALSE, TRUE);
1181                 event_end_ignore_all_enters(ignore_start);
1182             }
1183         }
1184         break;
1185     }
1186     case UnmapNotify:
1187         if (client->ignore_unmaps) {
1188             client->ignore_unmaps--;
1189             break;
1190         }
1191         ob_debug("UnmapNotify for window 0x%x eventwin 0x%x sendevent %d "
1192                  "ignores left %d\n",
1193                  client->window, e->xunmap.event, e->xunmap.from_configure,
1194                  client->ignore_unmaps);
1195         client_unmanage(client);
1196         break;
1197     case DestroyNotify:
1198         ob_debug("DestroyNotify for window 0x%x\n", client->window);
1199         client_unmanage(client);
1200         break;
1201     case ReparentNotify:
1202         /* this is when the client is first taken captive in the frame */
1203         if (e->xreparent.parent == client->frame->window) break;
1204
1205         /*
1206           This event is quite rare and is usually handled in unmapHandler.
1207           However, if the window is unmapped when the reparent event occurs,
1208           the window manager never sees it because an unmap event is not sent
1209           to an already unmapped window.
1210         */
1211
1212         /* we don't want the reparent event, put it back on the stack for the
1213            X server to deal with after we unmanage the window */
1214         XPutBackEvent(ob_display, e);
1215      
1216         ob_debug("ReparentNotify for window 0x%x\n", client->window);
1217         client_unmanage(client);
1218         break;
1219     case MapRequest:
1220         ob_debug("MapRequest for 0x%lx\n", client->window);
1221         if (!client->iconic) break; /* this normally doesn't happen, but if it
1222                                        does, we don't want it!
1223                                        it can happen now when the window is on
1224                                        another desktop, but we still don't
1225                                        want it! */
1226         client_activate(client, FALSE, TRUE);
1227         break;
1228     case ClientMessage:
1229         /* validate cuz we query stuff off the client here */
1230         if (!client_validate(client)) break;
1231
1232         if (e->xclient.format != 32) return;
1233
1234         msgtype = e->xclient.message_type;
1235         if (msgtype == prop_atoms.wm_change_state) {
1236             /* compress changes into a single change */
1237             while (XCheckTypedWindowEvent(ob_display, client->window,
1238                                           e->type, &ce)) {
1239                 /* XXX: it would be nice to compress ALL messages of a
1240                    type, not just messages in a row without other
1241                    message types between. */
1242                 if (ce.xclient.message_type != msgtype) {
1243                     XPutBackEvent(ob_display, &ce);
1244                     break;
1245                 }
1246                 e->xclient = ce.xclient;
1247             }
1248             client_set_wm_state(client, e->xclient.data.l[0]);
1249         } else if (msgtype == prop_atoms.net_wm_desktop) {
1250             /* compress changes into a single change */
1251             while (XCheckTypedWindowEvent(ob_display, client->window,
1252                                           e->type, &ce)) {
1253                 /* XXX: it would be nice to compress ALL messages of a
1254                    type, not just messages in a row without other
1255                    message types between. */
1256                 if (ce.xclient.message_type != msgtype) {
1257                     XPutBackEvent(ob_display, &ce);
1258                     break;
1259                 }
1260                 e->xclient = ce.xclient;
1261             }
1262             if ((unsigned)e->xclient.data.l[0] < screen_num_desktops ||
1263                 (unsigned)e->xclient.data.l[0] == DESKTOP_ALL)
1264                 client_set_desktop(client, (unsigned)e->xclient.data.l[0],
1265                                    FALSE);
1266         } else if (msgtype == prop_atoms.net_wm_state) {
1267             gulong ignore_start;
1268
1269             /* can't compress these */
1270             ob_debug("net_wm_state %s %ld %ld for 0x%lx\n",
1271                      (e->xclient.data.l[0] == 0 ? "Remove" :
1272                       e->xclient.data.l[0] == 1 ? "Add" :
1273                       e->xclient.data.l[0] == 2 ? "Toggle" : "INVALID"),
1274                      e->xclient.data.l[1], e->xclient.data.l[2],
1275                      client->window);
1276
1277             /* ignore enter events caused by these like ob actions do */
1278             if (!config_focus_under_mouse)
1279                 ignore_start = event_start_ignore_all_enters();
1280             client_set_state(client, e->xclient.data.l[0],
1281                              e->xclient.data.l[1], e->xclient.data.l[2]);
1282             if (!config_focus_under_mouse)
1283                 event_end_ignore_all_enters(ignore_start);
1284         } else if (msgtype == prop_atoms.net_close_window) {
1285             ob_debug("net_close_window for 0x%lx\n", client->window);
1286             client_close(client);
1287         } else if (msgtype == prop_atoms.net_active_window) {
1288             ob_debug("net_active_window for 0x%lx source=%s\n",
1289                      client->window,
1290                      (e->xclient.data.l[0] == 0 ? "unknown" :
1291                       (e->xclient.data.l[0] == 1 ? "application" :
1292                        (e->xclient.data.l[0] == 2 ? "user" : "INVALID"))));
1293             /* XXX make use of data.l[2] !? */
1294             if (e->xclient.data.l[0] == 1 || e->xclient.data.l[0] == 2) {
1295                 event_curtime = e->xclient.data.l[1];
1296                 if (event_curtime == 0)
1297                     ob_debug_type(OB_DEBUG_APP_BUGS,
1298                                   "_NET_ACTIVE_WINDOW message for window %s is"
1299                                   " missing a timestamp\n", client->title);
1300             } else
1301                 ob_debug_type(OB_DEBUG_APP_BUGS,
1302                               "_NET_ACTIVE_WINDOW message for window %s is "
1303                               "missing source indication\n");
1304             client_activate(client, FALSE,
1305                             (e->xclient.data.l[0] == 0 ||
1306                              e->xclient.data.l[0] == 2));
1307         } else if (msgtype == prop_atoms.net_wm_moveresize) {
1308             ob_debug("net_wm_moveresize for 0x%lx direction %d\n",
1309                      client->window, e->xclient.data.l[2]);
1310             if ((Atom)e->xclient.data.l[2] ==
1311                 prop_atoms.net_wm_moveresize_size_topleft ||
1312                 (Atom)e->xclient.data.l[2] ==
1313                 prop_atoms.net_wm_moveresize_size_top ||
1314                 (Atom)e->xclient.data.l[2] ==
1315                 prop_atoms.net_wm_moveresize_size_topright ||
1316                 (Atom)e->xclient.data.l[2] ==
1317                 prop_atoms.net_wm_moveresize_size_right ||
1318                 (Atom)e->xclient.data.l[2] ==
1319                 prop_atoms.net_wm_moveresize_size_right ||
1320                 (Atom)e->xclient.data.l[2] ==
1321                 prop_atoms.net_wm_moveresize_size_bottomright ||
1322                 (Atom)e->xclient.data.l[2] ==
1323                 prop_atoms.net_wm_moveresize_size_bottom ||
1324                 (Atom)e->xclient.data.l[2] ==
1325                 prop_atoms.net_wm_moveresize_size_bottomleft ||
1326                 (Atom)e->xclient.data.l[2] ==
1327                 prop_atoms.net_wm_moveresize_size_left ||
1328                 (Atom)e->xclient.data.l[2] ==
1329                 prop_atoms.net_wm_moveresize_move ||
1330                 (Atom)e->xclient.data.l[2] ==
1331                 prop_atoms.net_wm_moveresize_size_keyboard ||
1332                 (Atom)e->xclient.data.l[2] ==
1333                 prop_atoms.net_wm_moveresize_move_keyboard) {
1334
1335                 moveresize_start(client, e->xclient.data.l[0],
1336                                  e->xclient.data.l[1], e->xclient.data.l[3],
1337                                  e->xclient.data.l[2]);
1338             }
1339             else if ((Atom)e->xclient.data.l[2] ==
1340                      prop_atoms.net_wm_moveresize_cancel)
1341                 moveresize_end(TRUE);
1342         } else if (msgtype == prop_atoms.net_moveresize_window) {
1343             gint ograv, x, y, w, h;
1344             gulong ignore_start;
1345
1346             ograv = client->gravity;
1347
1348             if (e->xclient.data.l[0] & 0xff)
1349                 client->gravity = e->xclient.data.l[0] & 0xff;
1350
1351             if (e->xclient.data.l[0] & 1 << 8)
1352                 x = e->xclient.data.l[1];
1353             else
1354                 x = client->area.x;
1355             if (e->xclient.data.l[0] & 1 << 9)
1356                 y = e->xclient.data.l[2];
1357             else
1358                 y = client->area.y;
1359
1360             if (e->xclient.data.l[0] & 1 << 10) {
1361                 w = e->xclient.data.l[3];
1362
1363                 /* if x was not given, then use gravity to figure out the new
1364                    x.  the reference point should not be moved */
1365                 if (!(e->xclient.data.l[0] & 1 << 8))
1366                     client_gravity_resize_w(client, &x, client->area.width, w);
1367             }
1368             else
1369                 w = client->area.width;
1370
1371             if (e->xclient.data.l[0] & 1 << 11) {
1372                 h = e->xclient.data.l[4];
1373
1374                 /* if y was not given, then use gravity to figure out the new
1375                    y.  the reference point should not be moved */
1376                 if (!(e->xclient.data.l[0] & 1 << 9))
1377                     client_gravity_resize_h(client, &y, client->area.height,h);
1378             }
1379             else
1380                 h = client->area.height;
1381
1382             ob_debug("MOVERESIZE x %d %d y %d %d (gravity %d)\n",
1383                      e->xclient.data.l[0] & 1 << 8, x,
1384                      e->xclient.data.l[0] & 1 << 9, y,
1385                      client->gravity);
1386
1387             client_find_onscreen(client, &x, &y, w, h, FALSE);
1388
1389             /* ignore enter events caused by these like ob actions do */
1390             ignore_start = event_start_ignore_all_enters();
1391             client_configure(client, x, y, w, h, FALSE, TRUE);
1392             event_end_ignore_all_enters(ignore_start);
1393
1394             client->gravity = ograv;
1395         } else if (msgtype == prop_atoms.net_restack_window) {
1396             if (e->xclient.data.l[0] != 2) {
1397                 ob_debug_type(OB_DEBUG_APP_BUGS,
1398                               "_NET_RESTACK_WINDOW sent for window %s with "
1399                               "invalid source indication %ld\n",
1400                               client->title, e->xclient.data.l[0]);
1401             } else {
1402                 ObClient *sibling = NULL;
1403                 if (e->xclient.data.l[1]) {
1404                     ObWindow *win = g_hash_table_lookup
1405                         (window_map, &e->xclient.data.l[1]);
1406                     if (WINDOW_IS_CLIENT(win) &&
1407                         WINDOW_AS_CLIENT(win) != client)
1408                     {
1409                         sibling = WINDOW_AS_CLIENT(win);
1410                     }
1411                     if (sibling == NULL)
1412                         ob_debug_type(OB_DEBUG_APP_BUGS,
1413                                       "_NET_RESTACK_WINDOW sent for window %s "
1414                                       "with invalid sibling 0x%x\n",
1415                                  client->title, e->xclient.data.l[1]);
1416                 }
1417                 if (e->xclient.data.l[2] == Below ||
1418                     e->xclient.data.l[2] == BottomIf ||
1419                     e->xclient.data.l[2] == Above ||
1420                     e->xclient.data.l[2] == TopIf ||
1421                     e->xclient.data.l[2] == Opposite)
1422                 {
1423                     /* just raise, don't activate */
1424                     stacking_restack_request(client, sibling,
1425                                              e->xclient.data.l[2], FALSE);
1426                     /* send a synthetic ConfigureNotify, cuz this is supposed
1427                        to be like a ConfigureRequest. */
1428                     client_reconfigure(client);
1429                 } else
1430                     ob_debug_type(OB_DEBUG_APP_BUGS,
1431                                   "_NET_RESTACK_WINDOW sent for window %s "
1432                                   "with invalid detail %d\n",
1433                                   client->title, e->xclient.data.l[2]);
1434             }
1435         }
1436         break;
1437     case PropertyNotify:
1438         /* validate cuz we query stuff off the client here */
1439         if (!client_validate(client)) break;
1440   
1441         /* compress changes to a single property into a single change */
1442         while (XCheckTypedWindowEvent(ob_display, client->window,
1443                                       e->type, &ce)) {
1444             Atom a, b;
1445
1446             /* XXX: it would be nice to compress ALL changes to a property,
1447                not just changes in a row without other props between. */
1448
1449             a = ce.xproperty.atom;
1450             b = e->xproperty.atom;
1451
1452             if (a == b)
1453                 continue;
1454             if ((a == prop_atoms.net_wm_name ||
1455                  a == prop_atoms.wm_name ||
1456                  a == prop_atoms.net_wm_icon_name ||
1457                  a == prop_atoms.wm_icon_name)
1458                 &&
1459                 (b == prop_atoms.net_wm_name ||
1460                  b == prop_atoms.wm_name ||
1461                  b == prop_atoms.net_wm_icon_name ||
1462                  b == prop_atoms.wm_icon_name)) {
1463                 continue;
1464             }
1465             if (a == prop_atoms.net_wm_icon &&
1466                 b == prop_atoms.net_wm_icon)
1467                 continue;
1468
1469             XPutBackEvent(ob_display, &ce);
1470             break;
1471         }
1472
1473         msgtype = e->xproperty.atom;
1474         if (msgtype == XA_WM_NORMAL_HINTS) {
1475             client_update_normal_hints(client);
1476             /* normal hints can make a window non-resizable */
1477             client_setup_decor_and_functions(client, TRUE);
1478         } else if (msgtype == XA_WM_HINTS) {
1479             client_update_wmhints(client);
1480         } else if (msgtype == XA_WM_TRANSIENT_FOR) {
1481             client_update_transient_for(client);
1482             client_get_type_and_transientness(client);
1483             /* type may have changed, so update the layer */
1484             client_calc_layer(client);
1485             client_setup_decor_and_functions(client, TRUE);
1486         } else if (msgtype == prop_atoms.net_wm_name ||
1487                    msgtype == prop_atoms.wm_name ||
1488                    msgtype == prop_atoms.net_wm_icon_name ||
1489                    msgtype == prop_atoms.wm_icon_name) {
1490             client_update_title(client);
1491         } else if (msgtype == prop_atoms.wm_protocols) {
1492             client_update_protocols(client);
1493             client_setup_decor_and_functions(client, TRUE);
1494         }
1495         else if (msgtype == prop_atoms.net_wm_strut) {
1496             client_update_strut(client);
1497         }
1498         else if (msgtype == prop_atoms.net_wm_strut_partial) {
1499             client_update_strut(client);
1500         }
1501         else if (msgtype == prop_atoms.net_wm_icon) {
1502             client_update_icons(client);
1503         }
1504         else if (msgtype == prop_atoms.net_wm_icon_geometry) {
1505             client_update_icon_geometry(client);
1506         }
1507         else if (msgtype == prop_atoms.net_wm_user_time) {
1508             client_update_user_time(client);
1509         }
1510         else if (msgtype == prop_atoms.net_wm_user_time_window) {
1511             client_update_user_time_window(client);
1512         }
1513 #ifdef SYNC
1514         else if (msgtype == prop_atoms.net_wm_sync_request_counter) {
1515             client_update_sync_request_counter(client);
1516         }
1517 #endif
1518         break;
1519     case ColormapNotify:
1520         client_update_colormap(client, e->xcolormap.colormap);
1521         break;
1522     default:
1523         ;
1524 #ifdef SHAPE
1525         if (extensions_shape && e->type == extensions_shape_event_basep) {
1526             client->shaped = ((XShapeEvent*)e)->shaped;
1527             frame_adjust_shape(client->frame);
1528         }
1529 #endif
1530     }
1531 }
1532
1533 static void event_handle_dock(ObDock *s, XEvent *e)
1534 {
1535     switch (e->type) {
1536     case ButtonPress:
1537         if (e->xbutton.button == 1)
1538             stacking_raise(DOCK_AS_WINDOW(s));
1539         else if (e->xbutton.button == 2)
1540             stacking_lower(DOCK_AS_WINDOW(s));
1541         break;
1542     case EnterNotify:
1543         dock_hide(FALSE);
1544         break;
1545     case LeaveNotify:
1546         /* don't hide when moving into a dock app */
1547         if (e->xcrossing.detail != NotifyInferior)
1548             dock_hide(TRUE);
1549         break;
1550     }
1551 }
1552
1553 static void event_handle_dockapp(ObDockApp *app, XEvent *e)
1554 {
1555     switch (e->type) {
1556     case MotionNotify:
1557         dock_app_drag(app, &e->xmotion);
1558         break;
1559     case UnmapNotify:
1560         if (app->ignore_unmaps) {
1561             app->ignore_unmaps--;
1562             break;
1563         }
1564         dock_remove(app, TRUE);
1565         break;
1566     case DestroyNotify:
1567         dock_remove(app, FALSE);
1568         break;
1569     case ReparentNotify:
1570         dock_remove(app, FALSE);
1571         break;
1572     case ConfigureNotify:
1573         dock_app_configure(app, e->xconfigure.width, e->xconfigure.height);
1574         break;
1575     }
1576 }
1577
1578 static ObMenuFrame* find_active_menu()
1579 {
1580     GList *it;
1581     ObMenuFrame *ret = NULL;
1582
1583     for (it = menu_frame_visible; it; it = g_list_next(it)) {
1584         ret = it->data;
1585         if (ret->selected)
1586             break;
1587         ret = NULL;
1588     }
1589     return ret;
1590 }
1591
1592 static ObMenuFrame* find_active_or_last_menu()
1593 {
1594     ObMenuFrame *ret = NULL;
1595
1596     ret = find_active_menu();
1597     if (!ret && menu_frame_visible)
1598         ret = menu_frame_visible->data;
1599     return ret;
1600 }
1601
1602 static gboolean event_handle_menu_keyboard(XEvent *ev)
1603 {
1604     guint keycode, state;
1605     gunichar unikey;
1606     ObMenuFrame *frame;
1607     gboolean ret = TRUE;
1608
1609     keycode = ev->xkey.keycode;
1610     state = ev->xkey.state;
1611     unikey = translate_unichar(keycode);
1612
1613     frame = find_active_or_last_menu();
1614     if (frame == NULL)
1615         ret = FALSE;
1616
1617     else if (keycode == ob_keycode(OB_KEY_ESCAPE) && state == 0)
1618         menu_frame_hide_all();
1619
1620     else if (keycode == ob_keycode(OB_KEY_RETURN) && (state == 0 ||
1621                                                       state == ControlMask))
1622     {
1623         /* Enter runs the active item or goes into the submenu.
1624            Control-Enter runs it without closing the menu. */
1625         if (frame->child)
1626             menu_frame_select_next(frame->child);
1627         else if (frame->selected)
1628             menu_entry_frame_execute(frame->selected, state, ev->xkey.time);
1629     }
1630
1631     else if (keycode == ob_keycode(OB_KEY_LEFT) && ev->xkey.state == 0) {
1632         /* Left goes to the parent menu */
1633         menu_frame_select(frame, NULL, TRUE);
1634     }
1635
1636     else if (keycode == ob_keycode(OB_KEY_RIGHT) && ev->xkey.state == 0) {
1637         /* Right goes to the selected submenu */
1638         if (frame->child) menu_frame_select_next(frame->child);
1639     }
1640
1641     else if (keycode == ob_keycode(OB_KEY_UP) && state == 0) {
1642         menu_frame_select_previous(frame);
1643     }
1644
1645     else if (keycode == ob_keycode(OB_KEY_DOWN) && state == 0) {
1646         menu_frame_select_next(frame);
1647     }
1648
1649     /* keyboard accelerator shortcuts. (allow controlmask) */
1650     else if ((ev->xkey.state & ~ControlMask) == 0 &&
1651              /* was it a valid key? */
1652              unikey != 0 &&
1653              /* don't bother if the menu is empty. */
1654              frame->entries)
1655     {
1656         GList *start;
1657         GList *it;
1658         ObMenuEntryFrame *found = NULL;
1659         guint num_found = 0;
1660
1661         /* start after the selected one */
1662         start = frame->entries;
1663         if (frame->selected) {
1664             for (it = start; frame->selected != it->data; it = g_list_next(it))
1665                 g_assert(it != NULL); /* nothing was selected? */
1666             /* next with wraparound */
1667             start = g_list_next(it);
1668             if (start == NULL) start = frame->entries;
1669         }
1670
1671         it = start;
1672         do {
1673             ObMenuEntryFrame *e = it->data;
1674             gunichar entrykey = 0;
1675
1676             if (e->entry->type == OB_MENU_ENTRY_TYPE_NORMAL)
1677                 entrykey = e->entry->data.normal.shortcut;
1678             else if (e->entry->type == OB_MENU_ENTRY_TYPE_SUBMENU)
1679                 entrykey = e->entry->data.submenu.submenu->shortcut;
1680
1681             if (unikey == entrykey) {
1682                 if (found == NULL) found = e;
1683                 ++num_found;
1684             }
1685
1686             /* next with wraparound */
1687             it = g_list_next(it);
1688             if (it == NULL) it = frame->entries;
1689         } while (it != start);
1690
1691         if (found) {
1692             if (found->entry->type == OB_MENU_ENTRY_TYPE_NORMAL &&
1693                 num_found == 1)
1694             {
1695                 menu_frame_select(frame, found, TRUE);
1696                 usleep(50000); /* highlight the item for a short bit so the
1697                                   user can see what happened */
1698                 menu_entry_frame_execute(found, state, ev->xkey.time);
1699             } else {
1700                 menu_frame_select(frame, found, TRUE);
1701                 if (num_found == 1)
1702                     menu_frame_select_next(frame->child);
1703             }
1704         } else
1705             ret = FALSE;
1706     }
1707     else
1708         ret = FALSE;
1709
1710     return ret;
1711 }
1712
1713 static gboolean event_handle_menu(XEvent *ev)
1714 {
1715     ObMenuFrame *f;
1716     ObMenuEntryFrame *e;
1717     gboolean ret = TRUE;
1718
1719     switch (ev->type) {
1720     case ButtonRelease:
1721         if (menu_hide_delay_reached() &&
1722             (ev->xbutton.button < 4 || ev->xbutton.button > 5))
1723         {
1724             if ((e = menu_entry_frame_under(ev->xbutton.x_root,
1725                                             ev->xbutton.y_root)))
1726             {
1727                 menu_frame_select(e->frame, e, TRUE);
1728                 menu_entry_frame_execute(e, ev->xbutton.state,
1729                                          ev->xbutton.time);
1730             }
1731             else
1732                 menu_frame_hide_all();
1733         }
1734         break;
1735     case EnterNotify:
1736         if ((e = g_hash_table_lookup(menu_frame_map, &ev->xcrossing.window))) {
1737             if (e->ignore_enters)
1738                 --e->ignore_enters;
1739             else if (!(f = find_active_menu()) ||
1740                      f == e->frame ||
1741                      f->parent == e->frame ||
1742                      f->child == e->frame)
1743                 menu_frame_select(e->frame, e, FALSE);
1744         }
1745         break;
1746     case LeaveNotify:
1747         /*ignore leaves when we're already in the window */
1748         if (ev->xcrossing.detail == NotifyInferior)
1749             break;
1750
1751         if ((e = g_hash_table_lookup(menu_frame_map, &ev->xcrossing.window)) &&
1752             (f = find_active_menu()) && f->selected == e &&
1753             e->entry->type != OB_MENU_ENTRY_TYPE_SUBMENU)
1754         {
1755             menu_frame_select(e->frame, NULL, FALSE);
1756         }
1757         break;
1758     case MotionNotify:   
1759         if ((e = menu_entry_frame_under(ev->xmotion.x_root,   
1760                                         ev->xmotion.y_root)))
1761             if (!(f = find_active_menu()) ||
1762                 f == e->frame ||
1763                 f->parent == e->frame ||
1764                 f->child == e->frame)
1765                 menu_frame_select(e->frame, e, FALSE);
1766         break;
1767     case KeyPress:
1768         ret = event_handle_menu_keyboard(ev);
1769         break;
1770     }
1771     return ret;
1772 }
1773
1774 static void event_handle_user_input(ObClient *client, XEvent *e)
1775 {
1776     g_assert(e->type == ButtonPress || e->type == ButtonRelease ||
1777              e->type == MotionNotify || e->type == KeyPress ||
1778              e->type == KeyRelease);
1779
1780     if (menu_frame_visible) {
1781         if (event_handle_menu(e))
1782             /* don't use the event if the menu used it, but if the menu
1783                didn't use it and it's a keypress that is bound, it will
1784                close the menu and be used */
1785             return;
1786     }
1787
1788     /* if the keyboard interactive action uses the event then dont
1789        use it for bindings. likewise is moveresize uses the event. */
1790     if (!keyboard_process_interactive_grab(e, &client) &&
1791         !(moveresize_in_progress && moveresize_event(e)))
1792     {
1793         if (moveresize_in_progress)
1794             /* make further actions work on the client being
1795                moved/resized */
1796             client = moveresize_client;
1797
1798         if (e->type == ButtonPress ||
1799             e->type == ButtonRelease ||
1800             e->type == MotionNotify)
1801         {
1802             /* the frame may not be "visible" but they can still click on it
1803                in the case where it is animating before disappearing */
1804             if (!client || !frame_iconify_animating(client->frame))
1805                 mouse_event(client, e);
1806         } else if (e->type == KeyPress) {
1807             keyboard_event((focus_cycle_target ? focus_cycle_target :
1808                             (client ? client : focus_client)), e);
1809         }
1810     }
1811 }
1812
1813 static void focus_delay_dest(gpointer data)
1814 {
1815     g_free(data);
1816 }
1817
1818 static gboolean focus_delay_cmp(gconstpointer d1, gconstpointer d2)
1819 {
1820     const ObFocusDelayData *f1 = d1;
1821     return f1->client == d2;
1822 }
1823
1824 static gboolean focus_delay_func(gpointer data)
1825 {
1826     ObFocusDelayData *d = data;
1827     Time old = event_curtime;
1828
1829     event_curtime = d->time;
1830     if (focus_client != d->client) {
1831         if (client_focus(d->client) && config_focus_raise)
1832             stacking_raise(CLIENT_AS_WINDOW(d->client));
1833     }
1834     event_curtime = old;
1835     return FALSE; /* no repeat */
1836 }
1837
1838 static void focus_delay_client_dest(ObClient *client, gpointer data)
1839 {
1840     ob_main_loop_timeout_remove_data(ob_main_loop, focus_delay_func,
1841                                      client, FALSE);
1842 }
1843
1844 void event_halt_focus_delay()
1845 {
1846     ob_main_loop_timeout_remove(ob_main_loop, focus_delay_func);
1847 }
1848
1849 gulong event_start_ignore_all_enters()
1850 {
1851     XSync(ob_display, FALSE);
1852     return LastKnownRequestProcessed(ob_display);
1853 }
1854
1855 void event_end_ignore_all_enters(gulong start)
1856 {
1857     ObSerialRange *r;
1858
1859     g_assert(start != 0);
1860     XSync(ob_display, FALSE);
1861
1862     r = g_new(ObSerialRange, 1);
1863     r->start = start;
1864     r->end = LastKnownRequestProcessed(ob_display);
1865     ignore_serials = g_slist_prepend(ignore_serials, r);
1866     ob_debug("ignoring serials %u-%u\n", r->start, r->end);
1867
1868     /* increment the serial so we don't ignore events we weren't meant to */
1869     XSync(ob_display, FALSE);
1870     ob_debug("now last serial %u\n", LastKnownRequestProcessed(ob_display));
1871 }
1872
1873 static gboolean is_enter_focus_event_ignored(XEvent *e)
1874 {
1875     GSList *it, *next;
1876
1877     g_assert(e->type == EnterNotify &&
1878              !(e->xcrossing.mode == NotifyGrab ||
1879                e->xcrossing.mode == NotifyUngrab ||
1880                e->xcrossing.detail == NotifyInferior));
1881
1882     ob_debug("checking serial %u\n", e->xany.serial);
1883     for (it = ignore_serials; it; it = next) {
1884         ObSerialRange *r = it->data;
1885
1886         next = g_slist_next(it);
1887
1888         /* XXX wraparound... */
1889         ob_debug("  ignore range %u-%u\n", r->start, r->end);
1890         if (e->xany.serial > r->end) {
1891             ignore_serials = g_slist_delete_link(ignore_serials, it);
1892             g_free(r);
1893         }
1894         else if (e->xany.serial >= r->start)
1895             return TRUE;
1896     }
1897     return FALSE;
1898 }
1899
1900 void event_cancel_all_key_grabs()
1901 {
1902     if (keyboard_interactively_grabbed())
1903         keyboard_interactive_cancel();
1904     else if (menu_frame_visible)
1905         menu_frame_hide_all();
1906     else if (grab_on_keyboard())
1907         ungrab_keyboard();
1908     else
1909         /* If we don't have the keyboard grabbed, then ungrab it with
1910            XUngrabKeyboard, so that there is not a passive grab left
1911            on from the KeyPress. If the grab is left on, and focus
1912            moves during that time, it will be NotifyWhileGrabbed, and
1913            applications like to ignore those! */
1914         if (!keyboard_interactively_grabbed())
1915             XUngrabKeyboard(ob_display, CurrentTime);
1916
1917 }
1918
1919 gboolean event_time_after(Time t1, Time t2)
1920 {
1921     g_assert(t1 != CurrentTime);
1922     g_assert(t2 != CurrentTime);
1923
1924     /*
1925       Timestamp values wrap around (after about 49.7 days). The server, given
1926       its current time is represented by timestamp T, always interprets
1927       timestamps from clients by treating half of the timestamp space as being
1928       later in time than T.
1929       - http://tronche.com/gui/x/xlib/input/pointer-grabbing.html
1930     */
1931
1932     /* TIME_HALF is half of the number space of a Time type variable */
1933 #define TIME_HALF (Time)(1 << (sizeof(Time)*8-1))
1934
1935     if (t2 >= TIME_HALF)
1936         /* t2 is in the second half so t1 might wrap around and be smaller than
1937            t2 */
1938         return t1 >= t2 || t1 < (t2 + TIME_HALF);
1939     else
1940         /* t2 is in the first half so t1 has to come after it */
1941         return t1 >= t2 && t1 < (t2 + TIME_HALF);
1942 }