]> Dogcows Code - chaz/openbox/blob - openbox/event.c
a2f0ef6adc2fa8555229a93de6c1d431f3e61b2d
[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 Ben 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 "menu.h"
32 #include "menuframe.h"
33 #include "keyboard.h"
34 #include "mouse.h"
35 #include "mainloop.h"
36 #include "framerender.h"
37 #include "focus.h"
38 #include "moveresize.h"
39 #include "group.h"
40 #include "stacking.h"
41 #include "extensions.h"
42
43 #include <X11/Xlib.h>
44 #include <X11/keysym.h>
45 #include <X11/Xatom.h>
46 #include <glib.h>
47
48 #ifdef HAVE_SYS_SELECT_H
49 # include <sys/select.h>
50 #endif
51 #ifdef HAVE_SIGNAL_H
52 # include <signal.h>
53 #endif
54 #ifdef XKB
55 # include <X11/XKBlib.h>
56 #endif
57
58 #ifdef USE_SM
59 #include <X11/ICE/ICElib.h>
60 #endif
61
62 typedef struct
63 {
64 gboolean ignored;
65 } ObEventData;
66
67 static void event_process(const XEvent *e, gpointer data);
68 static void event_client_dest(ObClient *client, gpointer data);
69 static void event_handle_root(XEvent *e);
70 static void event_handle_menu(XEvent *e);
71 static void event_handle_dock(ObDock *s, XEvent *e);
72 static void event_handle_dockapp(ObDockApp *app, XEvent *e);
73 static void event_handle_client(ObClient *c, XEvent *e);
74 static void event_handle_group(ObGroup *g, XEvent *e);
75
76 static gboolean focus_delay_func(gpointer data);
77 static void focus_delay_client_dest(ObClient *client, gpointer data);
78
79 static gboolean menu_hide_delay_func(gpointer data);
80
81 /* The time for the current event being processed */
82 Time event_curtime = CurrentTime;
83
84 /*! The value of the mask for the NumLock modifier */
85 guint NumLockMask;
86 /*! The value of the mask for the ScrollLock modifier */
87 guint ScrollLockMask;
88 /*! The key codes for the modifier keys */
89 static XModifierKeymap *modmap;
90 /*! Table of the constant modifier masks */
91 static const gint mask_table[] = {
92 ShiftMask, LockMask, ControlMask, Mod1Mask,
93 Mod2Mask, Mod3Mask, Mod4Mask, Mod5Mask
94 };
95 static gint mask_table_size;
96
97 static guint ignore_enter_focus = 0;
98
99 static gboolean menu_can_hide;
100
101 #ifdef USE_SM
102 static void ice_handler(gint fd, gpointer conn)
103 {
104 Bool b;
105 IceProcessMessages(conn, NULL, &b);
106 }
107
108 static void ice_watch(IceConn conn, IcePointer data, Bool opening,
109 IcePointer *watch_data)
110 {
111 static gint fd = -1;
112
113 if (opening) {
114 fd = IceConnectionNumber(conn);
115 ob_main_loop_fd_add(ob_main_loop, fd, ice_handler, conn, NULL);
116 } else {
117 ob_main_loop_fd_remove(ob_main_loop, fd);
118 fd = -1;
119 }
120 }
121 #endif
122
123 void event_startup(gboolean reconfig)
124 {
125 if (reconfig) return;
126
127 mask_table_size = sizeof(mask_table) / sizeof(mask_table[0]);
128
129 /* get lock masks that are defined by the display (not constant) */
130 modmap = XGetModifierMapping(ob_display);
131 g_assert(modmap);
132 if (modmap && modmap->max_keypermod > 0) {
133 size_t cnt;
134 const size_t size = mask_table_size * modmap->max_keypermod;
135 /* get the values of the keyboard lock modifiers
136 Note: Caps lock is not retrieved the same way as Scroll and Num
137 lock since it doesn't need to be. */
138 const KeyCode num_lock = XKeysymToKeycode(ob_display, XK_Num_Lock);
139 const KeyCode scroll_lock = XKeysymToKeycode(ob_display,
140 XK_Scroll_Lock);
141
142 for (cnt = 0; cnt < size; ++cnt) {
143 if (! modmap->modifiermap[cnt]) continue;
144
145 if (num_lock == modmap->modifiermap[cnt])
146 NumLockMask = mask_table[cnt / modmap->max_keypermod];
147 if (scroll_lock == modmap->modifiermap[cnt])
148 ScrollLockMask = mask_table[cnt / modmap->max_keypermod];
149 }
150 }
151
152 ob_main_loop_x_add(ob_main_loop, event_process, NULL, NULL);
153
154 #ifdef USE_SM
155 IceAddConnectionWatch(ice_watch, NULL);
156 #endif
157
158 client_add_destructor(focus_delay_client_dest, NULL);
159 client_add_destructor(event_client_dest, NULL);
160 }
161
162 void event_shutdown(gboolean reconfig)
163 {
164 if (reconfig) return;
165
166 #ifdef USE_SM
167 IceRemoveConnectionWatch(ice_watch, NULL);
168 #endif
169
170 client_remove_destructor(focus_delay_client_dest);
171 client_remove_destructor(event_client_dest);
172 XFreeModifiermap(modmap);
173 }
174
175 static Window event_get_window(XEvent *e)
176 {
177 Window window;
178
179 /* pick a window */
180 switch (e->type) {
181 case SelectionClear:
182 window = RootWindow(ob_display, ob_screen);
183 break;
184 case MapRequest:
185 window = e->xmap.window;
186 break;
187 case UnmapNotify:
188 window = e->xunmap.window;
189 break;
190 case DestroyNotify:
191 window = e->xdestroywindow.window;
192 break;
193 case ConfigureRequest:
194 window = e->xconfigurerequest.window;
195 break;
196 case ConfigureNotify:
197 window = e->xconfigure.window;
198 break;
199 default:
200 #ifdef XKB
201 if (extensions_xkb && e->type == extensions_xkb_event_basep) {
202 switch (((XkbAnyEvent*)e)->xkb_type) {
203 case XkbBellNotify:
204 window = ((XkbBellNotifyEvent*)e)->window;
205 default:
206 window = None;
207 }
208 } else
209 #endif
210 window = e->xany.window;
211 }
212 return window;
213 }
214
215 static void event_set_curtime(XEvent *e)
216 {
217 Time t = CurrentTime;
218
219 /* grab the lasttime and hack up the state */
220 switch (e->type) {
221 case ButtonPress:
222 case ButtonRelease:
223 t = e->xbutton.time;
224 break;
225 case KeyPress:
226 t = e->xkey.time;
227 break;
228 case KeyRelease:
229 t = e->xkey.time;
230 break;
231 case MotionNotify:
232 t = e->xmotion.time;
233 break;
234 case PropertyNotify:
235 t = e->xproperty.time;
236 break;
237 case EnterNotify:
238 case LeaveNotify:
239 t = e->xcrossing.time;
240 break;
241 default:
242 /* if more event types are anticipated, get their timestamp
243 explicitly */
244 break;
245 }
246
247 event_curtime = t;
248 }
249
250 #define STRIP_MODS(s) \
251 s &= ~(LockMask | NumLockMask | ScrollLockMask), \
252 /* kill off the Button1Mask etc, only want the modifiers */ \
253 s &= (ControlMask | ShiftMask | Mod1Mask | \
254 Mod2Mask | Mod3Mask | Mod4Mask | Mod5Mask) \
255
256 static void event_hack_mods(XEvent *e)
257 {
258 #ifdef XKB
259 XkbStateRec xkb_state;
260 #endif
261 KeyCode *kp;
262 gint i, k;
263
264 switch (e->type) {
265 case ButtonPress:
266 case ButtonRelease:
267 STRIP_MODS(e->xbutton.state);
268 break;
269 case KeyPress:
270 STRIP_MODS(e->xkey.state);
271 break;
272 case KeyRelease:
273 STRIP_MODS(e->xkey.state);
274 /* remove from the state the mask of the modifier being released, if
275 it is a modifier key being released (this is a little ugly..) */
276 #ifdef XKB
277 if (XkbGetState(ob_display, XkbUseCoreKbd, &xkb_state) == Success) {
278 e->xkey.state = xkb_state.compat_state;
279 break;
280 }
281 #endif
282 kp = modmap->modifiermap;
283 for (i = 0; i < mask_table_size; ++i) {
284 for (k = 0; k < modmap->max_keypermod; ++k) {
285 if (*kp == e->xkey.keycode) { /* found the keycode */
286 /* remove the mask for it */
287 e->xkey.state &= ~mask_table[i];
288 /* cause the first loop to break; */
289 i = mask_table_size;
290 break; /* get outta here! */
291 }
292 ++kp;
293 }
294 }
295 break;
296 case MotionNotify:
297 STRIP_MODS(e->xmotion.state);
298 /* compress events */
299 {
300 XEvent ce;
301 while (XCheckTypedWindowEvent(ob_display, e->xmotion.window,
302 e->type, &ce)) {
303 e->xmotion.x_root = ce.xmotion.x_root;
304 e->xmotion.y_root = ce.xmotion.y_root;
305 }
306 }
307 break;
308 }
309 }
310
311 static gboolean wanted_focusevent(XEvent *e)
312 {
313 gint mode = e->xfocus.mode;
314 gint detail = e->xfocus.detail;
315 Window win = e->xany.window;
316
317 if (e->type == FocusIn) {
318
319 /* These are ones we never want.. */
320
321 /* This means focus was given by a keyboard/mouse grab. */
322 if (mode == NotifyGrab)
323 return FALSE;
324 /* This means focus was given back from a keyboard/mouse grab. */
325 if (mode == NotifyUngrab)
326 return FALSE;
327
328 /* These are the ones we want.. */
329
330 if (win == RootWindow(ob_display, ob_screen)) {
331 /* This means focus reverted off of a client */
332 if (detail == NotifyPointerRoot || detail == NotifyDetailNone ||
333 detail == NotifyInferior)
334 return TRUE;
335 else
336 return FALSE;
337 }
338
339 /* This means focus moved from the root window to a client */
340 if (detail == NotifyVirtual)
341 return TRUE;
342 /* This means focus moved from one client to another */
343 if (detail == NotifyNonlinearVirtual)
344 return TRUE;
345
346 /* This means focus reverted off of a client */
347 if (detail == NotifyInferior)
348 return TRUE;
349
350 /* Otherwise.. */
351 return FALSE;
352 } else {
353 g_assert(e->type == FocusOut);
354
355
356 /* These are ones we never want.. */
357
358 /* This means focus was taken by a keyboard/mouse grab. */
359 if (mode == NotifyGrab)
360 return FALSE;
361
362 /* Focus left the root window revertedto state */
363 if (win == RootWindow(ob_display, ob_screen))
364 return FALSE;
365
366 /* These are the ones we want.. */
367
368 /* This means focus moved from a client to the root window */
369 if (detail == NotifyVirtual)
370 return TRUE;
371 /* This means focus moved from one client to another */
372 if (detail == NotifyNonlinearVirtual)
373 return TRUE;
374
375 /* Otherwise.. */
376 return FALSE;
377 }
378 }
379
380 static Bool look_for_focusin(Display *d, XEvent *e, XPointer arg)
381 {
382 return e->type == FocusIn && wanted_focusevent(e);
383 }
384
385 static gboolean event_ignore(XEvent *e, ObClient *client)
386 {
387 switch(e->type) {
388 case EnterNotify:
389 case LeaveNotify:
390 if (e->xcrossing.detail == NotifyInferior)
391 return TRUE;
392 break;
393 case FocusIn:
394 case FocusOut:
395 /* I don't think this should ever happen with our event masks, but
396 if it does, we don't want it. */
397 if (client == NULL)
398 return TRUE;
399 if (!wanted_focusevent(e))
400 return TRUE;
401 break;
402 }
403 return FALSE;
404 }
405
406 static void event_process(const XEvent *ec, gpointer data)
407 {
408 Window window;
409 ObGroup *group = NULL;
410 ObClient *client = NULL;
411 ObDock *dock = NULL;
412 ObDockApp *dockapp = NULL;
413 ObWindow *obwin = NULL;
414 XEvent ee, *e;
415 ObEventData *ed = data;
416
417 /* make a copy we can mangle */
418 ee = *ec;
419 e = &ee;
420
421 window = event_get_window(e);
422 if (!(e->type == PropertyNotify &&
423 (group = g_hash_table_lookup(group_map, &window))))
424 if ((obwin = g_hash_table_lookup(window_map, &window))) {
425 switch (obwin->type) {
426 case Window_Dock:
427 dock = WINDOW_AS_DOCK(obwin);
428 break;
429 case Window_DockApp:
430 dockapp = WINDOW_AS_DOCKAPP(obwin);
431 break;
432 case Window_Client:
433 client = WINDOW_AS_CLIENT(obwin);
434 break;
435 case Window_Menu:
436 case Window_Internal:
437 /* not to be used for events */
438 g_assert_not_reached();
439 break;
440 }
441 }
442
443 #if 1 /* focus debugging stuff */
444 if (e->type == FocusIn || e->type == FocusOut) {
445 gint mode = e->xfocus.mode;
446 gint detail = e->xfocus.detail;
447 Window window = e->xfocus.window;
448 if (detail == NotifyVirtual) {
449 ob_debug("FOCUS %s NOTIFY VIRTUAL window 0x%x\n",
450 (e->type == FocusIn ? "IN" : "OUT"), window);
451 }
452
453 else if (detail == NotifyNonlinearVirtual) {
454 ob_debug("FOCUS %s NOTIFY NONLINVIRTUAL window 0x%x\n",
455 (e->type == FocusIn ? "IN" : "OUT"), window);
456 }
457
458 else
459 ob_debug("UNKNOWN FOCUS %s (d %d, m %d) window 0x%x\n",
460 (e->type == FocusIn ? "IN" : "OUT"),
461 detail, mode, window);
462 }
463 #endif
464
465 event_set_curtime(e);
466 event_hack_mods(e);
467 if (event_ignore(e, client)) {
468 if (ed)
469 ed->ignored = TRUE;
470 return;
471 } else if (ed)
472 ed->ignored = FALSE;
473
474 /* deal with it in the kernel */
475 if (group)
476 event_handle_group(group, e);
477 else if (client)
478 event_handle_client(client, e);
479 else if (dockapp)
480 event_handle_dockapp(dockapp, e);
481 else if (dock)
482 event_handle_dock(dock, e);
483 else if (window == RootWindow(ob_display, ob_screen))
484 event_handle_root(e);
485 else if (e->type == MapRequest)
486 client_manage(window);
487 else if (e->type == ConfigureRequest) {
488 /* unhandled configure requests must be used to configure the
489 window directly */
490 XWindowChanges xwc;
491
492 xwc.x = e->xconfigurerequest.x;
493 xwc.y = e->xconfigurerequest.y;
494 xwc.width = e->xconfigurerequest.width;
495 xwc.height = e->xconfigurerequest.height;
496 xwc.border_width = e->xconfigurerequest.border_width;
497 xwc.sibling = e->xconfigurerequest.above;
498 xwc.stack_mode = e->xconfigurerequest.detail;
499
500 /* we are not to be held responsible if someone sends us an
501 invalid request! */
502 xerror_set_ignore(TRUE);
503 XConfigureWindow(ob_display, window,
504 e->xconfigurerequest.value_mask, &xwc);
505 xerror_set_ignore(FALSE);
506 }
507
508 /* user input (action-bound) events */
509 if (e->type == ButtonPress || e->type == ButtonRelease ||
510 e->type == MotionNotify || e->type == KeyPress ||
511 e->type == KeyRelease)
512 {
513 if (menu_frame_visible)
514 event_handle_menu(e);
515 else {
516 if (!keyboard_process_interactive_grab(e, &client)) {
517 if (moveresize_in_progress) {
518 moveresize_event(e);
519
520 /* make further actions work on the client being
521 moved/resized */
522 client = moveresize_client;
523 }
524
525 menu_can_hide = FALSE;
526 ob_main_loop_timeout_add(ob_main_loop,
527 config_menu_hide_delay * 1000,
528 menu_hide_delay_func,
529 NULL, NULL);
530
531 if (e->type == ButtonPress || e->type == ButtonRelease ||
532 e->type == MotionNotify)
533 mouse_event(client, e);
534 else if (e->type == KeyPress) {
535 keyboard_event((focus_cycle_target ? focus_cycle_target :
536 (focus_hilite ? focus_hilite : client)),
537 e);
538 }
539 }
540 }
541 }
542 /* if something happens and it's not from an XEvent, then we don't know
543 the time */
544 event_curtime = CurrentTime;
545 }
546
547 static void event_handle_root(XEvent *e)
548 {
549 Atom msgtype;
550
551 switch(e->type) {
552 case SelectionClear:
553 ob_debug("Another WM has requested to replace us. Exiting.\n");
554 ob_exit_replace();
555 break;
556
557 case ClientMessage:
558 if (e->xclient.format != 32) break;
559
560 msgtype = e->xclient.message_type;
561 if (msgtype == prop_atoms.net_current_desktop) {
562 guint d = e->xclient.data.l[0];
563 if (d < screen_num_desktops) {
564 event_curtime = e->xclient.data.l[1];
565 ob_debug("SWITCH DESKTOP TIME: %d\n", event_curtime);
566 screen_set_desktop(d);
567 }
568 } else if (msgtype == prop_atoms.net_number_of_desktops) {
569 guint d = e->xclient.data.l[0];
570 if (d > 0)
571 screen_set_num_desktops(d);
572 } else if (msgtype == prop_atoms.net_showing_desktop) {
573 screen_show_desktop(e->xclient.data.l[0] != 0);
574 } else if (msgtype == prop_atoms.ob_control) {
575 if (e->xclient.data.l[0] == 1)
576 ob_reconfigure();
577 else if (e->xclient.data.l[0] == 2)
578 ob_restart();
579 }
580 break;
581 case PropertyNotify:
582 if (e->xproperty.atom == prop_atoms.net_desktop_names)
583 screen_update_desktop_names();
584 else if (e->xproperty.atom == prop_atoms.net_desktop_layout)
585 screen_update_layout();
586 break;
587 case ConfigureNotify:
588 #ifdef XRANDR
589 XRRUpdateConfiguration(e);
590 #endif
591 screen_resize();
592 break;
593 default:
594 ;
595 }
596 }
597
598 static void event_handle_group(ObGroup *group, XEvent *e)
599 {
600 GSList *it;
601
602 g_assert(e->type == PropertyNotify);
603
604 for (it = group->members; it; it = g_slist_next(it))
605 event_handle_client(it->data, e);
606 }
607
608 void event_enter_client(ObClient *client)
609 {
610 g_assert(config_focus_follow);
611
612 if (client_normal(client) && client_can_focus(client)) {
613 if (config_focus_delay) {
614 ob_main_loop_timeout_remove(ob_main_loop, focus_delay_func);
615 ob_main_loop_timeout_add(ob_main_loop,
616 config_focus_delay,
617 focus_delay_func,
618 client, NULL);
619 } else
620 focus_delay_func(client);
621 }
622 }
623
624 static void event_handle_client(ObClient *client, XEvent *e)
625 {
626 XEvent ce;
627 Atom msgtype;
628 gint i=0;
629 ObFrameContext con;
630
631 switch (e->type) {
632 case VisibilityNotify:
633 client->frame->obscured = e->xvisibility.state != VisibilityUnobscured;
634 break;
635 case ButtonPress:
636 case ButtonRelease:
637 /* Wheel buttons don't draw because they are an instant click, so it
638 is a waste of resources to go drawing it. */
639 if (!(e->xbutton.button == 4 || e->xbutton.button == 5)) {
640 con = frame_context(client, e->xbutton.window);
641 con = mouse_button_frame_context(con, e->xbutton.button);
642 switch (con) {
643 case OB_FRAME_CONTEXT_MAXIMIZE:
644 client->frame->max_press = (e->type == ButtonPress);
645 framerender_frame(client->frame);
646 break;
647 case OB_FRAME_CONTEXT_CLOSE:
648 client->frame->close_press = (e->type == ButtonPress);
649 framerender_frame(client->frame);
650 break;
651 case OB_FRAME_CONTEXT_ICONIFY:
652 client->frame->iconify_press = (e->type == ButtonPress);
653 framerender_frame(client->frame);
654 break;
655 case OB_FRAME_CONTEXT_ALLDESKTOPS:
656 client->frame->desk_press = (e->type == ButtonPress);
657 framerender_frame(client->frame);
658 break;
659 case OB_FRAME_CONTEXT_SHADE:
660 client->frame->shade_press = (e->type == ButtonPress);
661 framerender_frame(client->frame);
662 break;
663 default:
664 /* nothing changes with clicks for any other contexts */
665 break;
666 }
667 }
668 break;
669 case FocusIn:
670 if (client != focus_client) {
671 focus_set_client(client);
672 frame_adjust_focus(client->frame, TRUE);
673 client_calc_layer(client);
674 }
675 break;
676 case FocusOut:
677 /* Look for the followup FocusIn */
678 if (!XCheckIfEvent(ob_display, &ce, look_for_focusin, NULL)) {
679 /* There is no FocusIn, this means focus went to a window that
680 is not being managed, or a window on another screen. */
681 ob_debug("Focus went to a black hole !\n");
682 } else if (ce.xany.window == e->xany.window) {
683 /* If focus didn't actually move anywhere, there is nothing to do*/
684 break;
685 } else if (ce.xfocus.detail == NotifyPointerRoot ||
686 ce.xfocus.detail == NotifyDetailNone) {
687 ob_debug("Focus went to root\n");
688 /* Focus has been reverted to the root window or nothing, so fall
689 back to something other than the window which just had it. */
690 focus_fallback(FALSE);
691 } else if (ce.xfocus.detail == NotifyInferior) {
692 ob_debug("Focus went to parent\n");
693 /* Focus has been reverted to parent, which is our frame window,
694 or the root window, so fall back to something other than the
695 window which had it. */
696 focus_fallback(FALSE);
697 } else {
698 /* Focus did move, so process the FocusIn event */
699 ObEventData ed = { .ignored = FALSE };
700 event_process(&ce, &ed);
701 if (ed.ignored) {
702 /* The FocusIn was ignored, this means it was on a window
703 that isn't a client. */
704 ob_debug("Focus went to an unmanaged window 0x%x !\n",
705 ce.xfocus.window);
706 focus_fallback(TRUE);
707 }
708 }
709
710 /* This client is no longer focused, so show that */
711 focus_hilite = NULL;
712 frame_adjust_focus(client->frame, FALSE);
713 client_calc_layer(client);
714 break;
715 case LeaveNotify:
716 con = frame_context(client, e->xcrossing.window);
717 switch (con) {
718 case OB_FRAME_CONTEXT_MAXIMIZE:
719 client->frame->max_hover = FALSE;
720 frame_adjust_state(client->frame);
721 break;
722 case OB_FRAME_CONTEXT_ALLDESKTOPS:
723 client->frame->desk_hover = FALSE;
724 frame_adjust_state(client->frame);
725 break;
726 case OB_FRAME_CONTEXT_SHADE:
727 client->frame->shade_hover = FALSE;
728 frame_adjust_state(client->frame);
729 break;
730 case OB_FRAME_CONTEXT_ICONIFY:
731 client->frame->iconify_hover = FALSE;
732 frame_adjust_state(client->frame);
733 break;
734 case OB_FRAME_CONTEXT_CLOSE:
735 client->frame->close_hover = FALSE;
736 frame_adjust_state(client->frame);
737 break;
738 case OB_FRAME_CONTEXT_FRAME:
739 if (config_focus_follow && config_focus_delay)
740 ob_main_loop_timeout_remove_data(ob_main_loop,
741 focus_delay_func,
742 client, TRUE);
743 break;
744 default:
745 break;
746 }
747 break;
748 case EnterNotify:
749 {
750 gboolean nofocus = FALSE;
751
752 if (ignore_enter_focus) {
753 ignore_enter_focus--;
754 nofocus = TRUE;
755 }
756
757 con = frame_context(client, e->xcrossing.window);
758 switch (con) {
759 case OB_FRAME_CONTEXT_MAXIMIZE:
760 client->frame->max_hover = TRUE;
761 frame_adjust_state(client->frame);
762 break;
763 case OB_FRAME_CONTEXT_ALLDESKTOPS:
764 client->frame->desk_hover = TRUE;
765 frame_adjust_state(client->frame);
766 break;
767 case OB_FRAME_CONTEXT_SHADE:
768 client->frame->shade_hover = TRUE;
769 frame_adjust_state(client->frame);
770 break;
771 case OB_FRAME_CONTEXT_ICONIFY:
772 client->frame->iconify_hover = TRUE;
773 frame_adjust_state(client->frame);
774 break;
775 case OB_FRAME_CONTEXT_CLOSE:
776 client->frame->close_hover = TRUE;
777 frame_adjust_state(client->frame);
778 break;
779 case OB_FRAME_CONTEXT_FRAME:
780 if (e->xcrossing.mode == NotifyGrab ||
781 e->xcrossing.mode == NotifyUngrab)
782 {
783 #ifdef DEBUG_FOCUS
784 ob_debug("%sNotify mode %d detail %d on %lx IGNORED\n",
785 (e->type == EnterNotify ? "Enter" : "Leave"),
786 e->xcrossing.mode,
787 e->xcrossing.detail, client?client->window:0);
788 #endif
789 } else {
790 #ifdef DEBUG_FOCUS
791 ob_debug("%sNotify mode %d detail %d on %lx, "
792 "focusing window: %d\n",
793 (e->type == EnterNotify ? "Enter" : "Leave"),
794 e->xcrossing.mode,
795 e->xcrossing.detail, (client?client->window:0),
796 !nofocus);
797 #endif
798 if (!nofocus && config_focus_follow)
799 event_enter_client(client);
800 }
801 break;
802 default:
803 break;
804 }
805 break;
806 }
807 case ConfigureRequest:
808 /* compress these */
809 while (XCheckTypedWindowEvent(ob_display, client->window,
810 ConfigureRequest, &ce)) {
811 ++i;
812 /* XXX if this causes bad things.. we can compress config req's
813 with the same mask. */
814 e->xconfigurerequest.value_mask |=
815 ce.xconfigurerequest.value_mask;
816 if (ce.xconfigurerequest.value_mask & CWX)
817 e->xconfigurerequest.x = ce.xconfigurerequest.x;
818 if (ce.xconfigurerequest.value_mask & CWY)
819 e->xconfigurerequest.y = ce.xconfigurerequest.y;
820 if (ce.xconfigurerequest.value_mask & CWWidth)
821 e->xconfigurerequest.width = ce.xconfigurerequest.width;
822 if (ce.xconfigurerequest.value_mask & CWHeight)
823 e->xconfigurerequest.height = ce.xconfigurerequest.height;
824 if (ce.xconfigurerequest.value_mask & CWBorderWidth)
825 e->xconfigurerequest.border_width =
826 ce.xconfigurerequest.border_width;
827 if (ce.xconfigurerequest.value_mask & CWStackMode)
828 e->xconfigurerequest.detail = ce.xconfigurerequest.detail;
829 }
830
831 /* if we are iconic (or shaded (fvwm does this)) ignore the event */
832 if (client->iconic || client->shaded) return;
833
834 /* resize, then move, as specified in the EWMH section 7.7 */
835 if (e->xconfigurerequest.value_mask & (CWWidth | CWHeight |
836 CWX | CWY |
837 CWBorderWidth)) {
838 gint x, y, w, h;
839 ObCorner corner;
840
841 if (e->xconfigurerequest.value_mask & CWBorderWidth)
842 client->border_width = e->xconfigurerequest.border_width;
843
844 x = (e->xconfigurerequest.value_mask & CWX) ?
845 e->xconfigurerequest.x : client->area.x;
846 y = (e->xconfigurerequest.value_mask & CWY) ?
847 e->xconfigurerequest.y : client->area.y;
848 w = (e->xconfigurerequest.value_mask & CWWidth) ?
849 e->xconfigurerequest.width : client->area.width;
850 h = (e->xconfigurerequest.value_mask & CWHeight) ?
851 e->xconfigurerequest.height : client->area.height;
852
853 {
854 gint newx = x;
855 gint newy = y;
856 gint fw = w +
857 client->frame->size.left + client->frame->size.right;
858 gint fh = h +
859 client->frame->size.top + client->frame->size.bottom;
860 /* make this rude for size-only changes but not for position
861 changes.. */
862 gboolean moving = ((e->xconfigurerequest.value_mask & CWX) ||
863 (e->xconfigurerequest.value_mask & CWY));
864
865 client_find_onscreen(client, &newx, &newy, fw, fh,
866 !moving);
867 if (e->xconfigurerequest.value_mask & CWX)
868 x = newx;
869 if (e->xconfigurerequest.value_mask & CWY)
870 y = newy;
871 }
872
873 switch (client->gravity) {
874 case NorthEastGravity:
875 case EastGravity:
876 corner = OB_CORNER_TOPRIGHT;
877 break;
878 case SouthWestGravity:
879 case SouthGravity:
880 corner = OB_CORNER_BOTTOMLEFT;
881 break;
882 case SouthEastGravity:
883 corner = OB_CORNER_BOTTOMRIGHT;
884 break;
885 default: /* NorthWest, Static, etc */
886 corner = OB_CORNER_TOPLEFT;
887 }
888
889 client_configure_full(client, corner, x, y, w, h, FALSE, TRUE,
890 TRUE);
891 }
892
893 if (e->xconfigurerequest.value_mask & CWStackMode) {
894 switch (e->xconfigurerequest.detail) {
895 case Below:
896 case BottomIf:
897 /* Apps are so rude. And this is totally disconnected from
898 activation/focus. Bleh. */
899 /*client_lower(client);*/
900 break;
901
902 case Above:
903 case TopIf:
904 default:
905 /* Apps are so rude. And this is totally disconnected from
906 activation/focus. Bleh. */
907 /*client_raise(client);*/
908 break;
909 }
910 }
911 break;
912 case UnmapNotify:
913 ob_debug("UnmapNotify for window 0x%x eventwin 0x%x sendevent %d "
914 "ignores left %d\n",
915 client->window, e->xunmap.event, e->xunmap.from_configure,
916 client->ignore_unmaps);
917 if (client->ignore_unmaps) {
918 client->ignore_unmaps--;
919 break;
920 }
921 client_unmanage(client);
922 break;
923 case DestroyNotify:
924 ob_debug("DestroyNotify for window 0x%x\n", client->window);
925 client_unmanage(client);
926 break;
927 case ReparentNotify:
928 /* this is when the client is first taken captive in the frame */
929 if (e->xreparent.parent == client->frame->plate) break;
930
931 /*
932 This event is quite rare and is usually handled in unmapHandler.
933 However, if the window is unmapped when the reparent event occurs,
934 the window manager never sees it because an unmap event is not sent
935 to an already unmapped window.
936 */
937
938 /* we don't want the reparent event, put it back on the stack for the
939 X server to deal with after we unmanage the window */
940 XPutBackEvent(ob_display, e);
941
942 ob_debug("ReparentNotify for window 0x%x\n", client->window);
943 client_unmanage(client);
944 break;
945 case MapRequest:
946 ob_debug("MapRequest for 0x%lx\n", client->window);
947 if (!client->iconic) break; /* this normally doesn't happen, but if it
948 does, we don't want it!
949 it can happen now when the window is on
950 another desktop, but we still don't
951 want it! */
952 client_activate(client, FALSE, TRUE);
953 break;
954 case ClientMessage:
955 /* validate cuz we query stuff off the client here */
956 if (!client_validate(client)) break;
957
958 if (e->xclient.format != 32) return;
959
960 msgtype = e->xclient.message_type;
961 if (msgtype == prop_atoms.wm_change_state) {
962 /* compress changes into a single change */
963 while (XCheckTypedWindowEvent(ob_display, client->window,
964 e->type, &ce)) {
965 /* XXX: it would be nice to compress ALL messages of a
966 type, not just messages in a row without other
967 message types between. */
968 if (ce.xclient.message_type != msgtype) {
969 XPutBackEvent(ob_display, &ce);
970 break;
971 }
972 e->xclient = ce.xclient;
973 }
974 client_set_wm_state(client, e->xclient.data.l[0]);
975 } else if (msgtype == prop_atoms.net_wm_desktop) {
976 /* compress changes into a single change */
977 while (XCheckTypedWindowEvent(ob_display, client->window,
978 e->type, &ce)) {
979 /* XXX: it would be nice to compress ALL messages of a
980 type, not just messages in a row without other
981 message types between. */
982 if (ce.xclient.message_type != msgtype) {
983 XPutBackEvent(ob_display, &ce);
984 break;
985 }
986 e->xclient = ce.xclient;
987 }
988 if ((unsigned)e->xclient.data.l[0] < screen_num_desktops ||
989 (unsigned)e->xclient.data.l[0] == DESKTOP_ALL)
990 client_set_desktop(client, (unsigned)e->xclient.data.l[0],
991 FALSE);
992 } else if (msgtype == prop_atoms.net_wm_state) {
993 /* can't compress these */
994 ob_debug("net_wm_state %s %ld %ld for 0x%lx\n",
995 (e->xclient.data.l[0] == 0 ? "Remove" :
996 e->xclient.data.l[0] == 1 ? "Add" :
997 e->xclient.data.l[0] == 2 ? "Toggle" : "INVALID"),
998 e->xclient.data.l[1], e->xclient.data.l[2],
999 client->window);
1000 client_set_state(client, e->xclient.data.l[0],
1001 e->xclient.data.l[1], e->xclient.data.l[2]);
1002 } else if (msgtype == prop_atoms.net_close_window) {
1003 ob_debug("net_close_window for 0x%lx\n", client->window);
1004 client_close(client);
1005 } else if (msgtype == prop_atoms.net_active_window) {
1006 ob_debug("net_active_window for 0x%lx source=%s\n",
1007 client->window,
1008 (e->xclient.data.l[0] == 0 ? "unknown" :
1009 (e->xclient.data.l[0] == 1 ? "application" :
1010 (e->xclient.data.l[0] == 2 ? "user" : "INVALID"))));
1011 /* XXX make use of data.l[2] ! */
1012 event_curtime = e->xclient.data.l[1];
1013 client_activate(client, FALSE,
1014 (e->xclient.data.l[0] == 0 ||
1015 e->xclient.data.l[0] == 2));
1016 } else if (msgtype == prop_atoms.net_wm_moveresize) {
1017 ob_debug("net_wm_moveresize for 0x%lx direction %d\n",
1018 client->window, e->xclient.data.l[2]);
1019 if ((Atom)e->xclient.data.l[2] ==
1020 prop_atoms.net_wm_moveresize_size_topleft ||
1021 (Atom)e->xclient.data.l[2] ==
1022 prop_atoms.net_wm_moveresize_size_top ||
1023 (Atom)e->xclient.data.l[2] ==
1024 prop_atoms.net_wm_moveresize_size_topright ||
1025 (Atom)e->xclient.data.l[2] ==
1026 prop_atoms.net_wm_moveresize_size_right ||
1027 (Atom)e->xclient.data.l[2] ==
1028 prop_atoms.net_wm_moveresize_size_right ||
1029 (Atom)e->xclient.data.l[2] ==
1030 prop_atoms.net_wm_moveresize_size_bottomright ||
1031 (Atom)e->xclient.data.l[2] ==
1032 prop_atoms.net_wm_moveresize_size_bottom ||
1033 (Atom)e->xclient.data.l[2] ==
1034 prop_atoms.net_wm_moveresize_size_bottomleft ||
1035 (Atom)e->xclient.data.l[2] ==
1036 prop_atoms.net_wm_moveresize_size_left ||
1037 (Atom)e->xclient.data.l[2] ==
1038 prop_atoms.net_wm_moveresize_move ||
1039 (Atom)e->xclient.data.l[2] ==
1040 prop_atoms.net_wm_moveresize_size_keyboard ||
1041 (Atom)e->xclient.data.l[2] ==
1042 prop_atoms.net_wm_moveresize_move_keyboard) {
1043
1044 moveresize_start(client, e->xclient.data.l[0],
1045 e->xclient.data.l[1], e->xclient.data.l[3],
1046 e->xclient.data.l[2]);
1047 }
1048 else if ((Atom)e->xclient.data.l[2] ==
1049 prop_atoms.net_wm_moveresize_cancel)
1050 moveresize_end(TRUE);
1051 } else if (msgtype == prop_atoms.net_moveresize_window) {
1052 gint oldg = client->gravity;
1053 gint tmpg, x, y, w, h;
1054
1055 if (e->xclient.data.l[0] & 0xff)
1056 tmpg = e->xclient.data.l[0] & 0xff;
1057 else
1058 tmpg = oldg;
1059
1060 if (e->xclient.data.l[0] & 1 << 8)
1061 x = e->xclient.data.l[1];
1062 else
1063 x = client->area.x;
1064 if (e->xclient.data.l[0] & 1 << 9)
1065 y = e->xclient.data.l[2];
1066 else
1067 y = client->area.y;
1068 if (e->xclient.data.l[0] & 1 << 10)
1069 w = e->xclient.data.l[3];
1070 else
1071 w = client->area.width;
1072 if (e->xclient.data.l[0] & 1 << 11)
1073 h = e->xclient.data.l[4];
1074 else
1075 h = client->area.height;
1076 client->gravity = tmpg;
1077
1078 {
1079 gint newx = x;
1080 gint newy = y;
1081 gint fw = w +
1082 client->frame->size.left + client->frame->size.right;
1083 gint fh = h +
1084 client->frame->size.top + client->frame->size.bottom;
1085 client_find_onscreen(client, &newx, &newy, fw, fh,
1086 client_normal(client));
1087 if (e->xclient.data.l[0] & 1 << 8)
1088 x = newx;
1089 if (e->xclient.data.l[0] & 1 << 9)
1090 y = newy;
1091 }
1092
1093 client_configure(client, OB_CORNER_TOPLEFT,
1094 x, y, w, h, FALSE, TRUE);
1095
1096 client->gravity = oldg;
1097 }
1098 break;
1099 case PropertyNotify:
1100 /* validate cuz we query stuff off the client here */
1101 if (!client_validate(client)) break;
1102
1103 /* compress changes to a single property into a single change */
1104 while (XCheckTypedWindowEvent(ob_display, client->window,
1105 e->type, &ce)) {
1106 Atom a, b;
1107
1108 /* XXX: it would be nice to compress ALL changes to a property,
1109 not just changes in a row without other props between. */
1110
1111 a = ce.xproperty.atom;
1112 b = e->xproperty.atom;
1113
1114 if (a == b)
1115 continue;
1116 if ((a == prop_atoms.net_wm_name ||
1117 a == prop_atoms.wm_name ||
1118 a == prop_atoms.net_wm_icon_name ||
1119 a == prop_atoms.wm_icon_name)
1120 &&
1121 (b == prop_atoms.net_wm_name ||
1122 b == prop_atoms.wm_name ||
1123 b == prop_atoms.net_wm_icon_name ||
1124 b == prop_atoms.wm_icon_name)) {
1125 continue;
1126 }
1127 if (a == prop_atoms.net_wm_icon &&
1128 b == prop_atoms.net_wm_icon)
1129 continue;
1130
1131 XPutBackEvent(ob_display, &ce);
1132 break;
1133 }
1134
1135 msgtype = e->xproperty.atom;
1136 if (msgtype == XA_WM_NORMAL_HINTS) {
1137 client_update_normal_hints(client);
1138 /* normal hints can make a window non-resizable */
1139 client_setup_decor_and_functions(client);
1140 } else if (msgtype == XA_WM_HINTS) {
1141 client_update_wmhints(client);
1142 } else if (msgtype == XA_WM_TRANSIENT_FOR) {
1143 client_update_transient_for(client);
1144 client_get_type(client);
1145 /* type may have changed, so update the layer */
1146 client_calc_layer(client);
1147 client_setup_decor_and_functions(client);
1148 } else if (msgtype == prop_atoms.net_wm_name ||
1149 msgtype == prop_atoms.wm_name ||
1150 msgtype == prop_atoms.net_wm_icon_name ||
1151 msgtype == prop_atoms.wm_icon_name) {
1152 client_update_title(client);
1153 } else if (msgtype == prop_atoms.wm_class) {
1154 client_update_class(client);
1155 } else if (msgtype == prop_atoms.wm_protocols) {
1156 client_update_protocols(client);
1157 client_setup_decor_and_functions(client);
1158 }
1159 else if (msgtype == prop_atoms.net_wm_strut) {
1160 client_update_strut(client);
1161 }
1162 else if (msgtype == prop_atoms.net_wm_icon) {
1163 client_update_icons(client);
1164 }
1165 else if (msgtype == prop_atoms.net_wm_user_time) {
1166 client_update_user_time(client);
1167 }
1168 else if (msgtype == prop_atoms.sm_client_id) {
1169 client_update_sm_client_id(client);
1170 }
1171 default:
1172 ;
1173 #ifdef SHAPE
1174 if (extensions_shape && e->type == extensions_shape_event_basep) {
1175 client->shaped = ((XShapeEvent*)e)->shaped;
1176 frame_adjust_shape(client->frame);
1177 }
1178 #endif
1179 }
1180 }
1181
1182 static void event_handle_dock(ObDock *s, XEvent *e)
1183 {
1184 switch (e->type) {
1185 case ButtonPress:
1186 if (e->xbutton.button == 1)
1187 stacking_raise(DOCK_AS_WINDOW(s));
1188 else if (e->xbutton.button == 2)
1189 stacking_lower(DOCK_AS_WINDOW(s));
1190 break;
1191 case EnterNotify:
1192 dock_hide(FALSE);
1193 break;
1194 case LeaveNotify:
1195 dock_hide(TRUE);
1196 break;
1197 }
1198 }
1199
1200 static void event_handle_dockapp(ObDockApp *app, XEvent *e)
1201 {
1202 switch (e->type) {
1203 case MotionNotify:
1204 dock_app_drag(app, &e->xmotion);
1205 break;
1206 case UnmapNotify:
1207 if (app->ignore_unmaps) {
1208 app->ignore_unmaps--;
1209 break;
1210 }
1211 dock_remove(app, TRUE);
1212 break;
1213 case DestroyNotify:
1214 dock_remove(app, FALSE);
1215 break;
1216 case ReparentNotify:
1217 dock_remove(app, FALSE);
1218 break;
1219 case ConfigureNotify:
1220 dock_app_configure(app, e->xconfigure.width, e->xconfigure.height);
1221 break;
1222 }
1223 }
1224
1225 ObMenuFrame* find_active_menu()
1226 {
1227 GList *it;
1228 ObMenuFrame *ret = NULL;
1229
1230 for (it = menu_frame_visible; it; it = g_list_next(it)) {
1231 ret = it->data;
1232 if (ret->selected)
1233 break;
1234 ret = NULL;
1235 }
1236 return ret;
1237 }
1238
1239 ObMenuFrame* find_active_or_last_menu()
1240 {
1241 ObMenuFrame *ret = NULL;
1242
1243 ret = find_active_menu();
1244 if (!ret && menu_frame_visible)
1245 ret = menu_frame_visible->data;
1246 return ret;
1247 }
1248
1249 static void event_handle_menu(XEvent *ev)
1250 {
1251 ObMenuFrame *f;
1252 ObMenuEntryFrame *e;
1253
1254 switch (ev->type) {
1255 case ButtonRelease:
1256 if (menu_can_hide) {
1257 if ((e = menu_entry_frame_under(ev->xbutton.x_root,
1258 ev->xbutton.y_root)))
1259 menu_entry_frame_execute(e, ev->xbutton.state,
1260 ev->xbutton.time);
1261 else
1262 menu_frame_hide_all();
1263 }
1264 break;
1265 case MotionNotify:
1266 if ((f = menu_frame_under(ev->xmotion.x_root,
1267 ev->xmotion.y_root))) {
1268 if ((e = menu_entry_frame_under(ev->xmotion.x_root,
1269 ev->xmotion.y_root))) {
1270 /* XXX menu_frame_entry_move_on_screen(f); */
1271 menu_frame_select(f, e);
1272 }
1273 }
1274 {
1275 ObMenuFrame *a;
1276
1277 a = find_active_menu();
1278 if (a && a != f &&
1279 a->selected->entry->type != OB_MENU_ENTRY_TYPE_SUBMENU)
1280 {
1281 menu_frame_select(a, NULL);
1282 }
1283 }
1284 break;
1285 case KeyPress:
1286 if (ev->xkey.keycode == ob_keycode(OB_KEY_ESCAPE))
1287 menu_frame_hide_all();
1288 else if (ev->xkey.keycode == ob_keycode(OB_KEY_RETURN)) {
1289 ObMenuFrame *f;
1290 if ((f = find_active_menu()))
1291 menu_entry_frame_execute(f->selected, ev->xkey.state,
1292 ev->xkey.time);
1293 } else if (ev->xkey.keycode == ob_keycode(OB_KEY_LEFT)) {
1294 ObMenuFrame *f;
1295 if ((f = find_active_or_last_menu()) && f->parent)
1296 menu_frame_select(f, NULL);
1297 } else if (ev->xkey.keycode == ob_keycode(OB_KEY_RIGHT)) {
1298 ObMenuFrame *f;
1299 if ((f = find_active_or_last_menu()) && f->child)
1300 menu_frame_select_next(f->child);
1301 } else if (ev->xkey.keycode == ob_keycode(OB_KEY_UP)) {
1302 ObMenuFrame *f;
1303 if ((f = find_active_or_last_menu()))
1304 menu_frame_select_previous(f);
1305 } else if (ev->xkey.keycode == ob_keycode(OB_KEY_DOWN)) {
1306 ObMenuFrame *f;
1307 if ((f = find_active_or_last_menu()))
1308 menu_frame_select_next(f);
1309 }
1310 break;
1311 }
1312 }
1313
1314 static gboolean menu_hide_delay_func(gpointer data)
1315 {
1316 menu_can_hide = TRUE;
1317 return FALSE; /* no repeat */
1318 }
1319
1320 static gboolean focus_delay_func(gpointer data)
1321 {
1322 ObClient *c = data;
1323
1324 if (focus_client != c) {
1325 if (client_focus(c) && config_focus_raise)
1326 client_raise(c);
1327 }
1328 return FALSE; /* no repeat */
1329 }
1330
1331 static void focus_delay_client_dest(ObClient *client, gpointer data)
1332 {
1333 ob_main_loop_timeout_remove_data(ob_main_loop, focus_delay_func,
1334 client, TRUE);
1335 }
1336
1337 static void event_client_dest(ObClient *client, gpointer data)
1338 {
1339 if (client == focus_hilite)
1340 focus_hilite = NULL;
1341 }
1342
1343 void event_halt_focus_delay()
1344 {
1345 ob_main_loop_timeout_remove(ob_main_loop, focus_delay_func);
1346 }
1347
1348 void event_ignore_queued_enters()
1349 {
1350 GSList *saved = NULL, *it;
1351 XEvent *e;
1352
1353 XSync(ob_display, FALSE);
1354
1355 /* count the events */
1356 while (TRUE) {
1357 e = g_new(XEvent, 1);
1358 if (XCheckTypedEvent(ob_display, EnterNotify, e)) {
1359 ObWindow *win;
1360
1361 win = g_hash_table_lookup(window_map, &e->xany.window);
1362 if (win && WINDOW_IS_CLIENT(win))
1363 ++ignore_enter_focus;
1364
1365 saved = g_slist_append(saved, e);
1366 } else {
1367 g_free(e);
1368 break;
1369 }
1370 }
1371 /* put the events back */
1372 for (it = saved; it; it = g_slist_next(it)) {
1373 XPutBackEvent(ob_display, it->data);
1374 g_free(it->data);
1375 }
1376 g_slist_free(saved);
1377 }
1378
1379 gboolean event_time_after(Time t1, Time t2)
1380 {
1381 g_assert(t1 != CurrentTime);
1382 g_assert(t2 != CurrentTime);
1383
1384 /*
1385 Timestamp values wrap around (after about 49.7 days). The server, given
1386 its current time is represented by timestamp T, always interprets
1387 timestamps from clients by treating half of the timestamp space as being
1388 later in time than T.
1389 - http://tronche.com/gui/x/xlib/input/pointer-grabbing.html
1390 */
1391
1392 /* TIME_HALF is half of the number space of a Time type variable */
1393 #define TIME_HALF (Time)(1 << (sizeof(Time)*8-1))
1394
1395 if (t2 >= TIME_HALF)
1396 /* t2 is in the second half so t1 might wrap around and be smaller than
1397 t2 */
1398 return t1 >= t2 || t1 < (t2 + TIME_HALF);
1399 else
1400 /* t2 is in the first half so t1 has to come after it */
1401 return t1 >= t2 && t1 < (t2 + TIME_HALF);
1402 }
This page took 0.088786 seconds and 3 git commands to generate.