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