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