]> Dogcows Code - chaz/openbox/blob - openbox/event.c
s/ob_display/obt_display/ and remove ob_display
[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 "prop.h"
28 #include "config.h"
29 #include "screen.h"
30 #include "frame.h"
31 #include "grab.h"
32 #include "menu.h"
33 #include "menuframe.h"
34 #include "keyboard.h"
35 #include "modkeys.h"
36 #include "mouse.h"
37 #include "focus.h"
38 #include "focus_cycle.h"
39 #include "moveresize.h"
40 #include "group.h"
41 #include "stacking.h"
42 #include "translate.h"
43 #include "ping.h"
44 #include "obt/display.h"
45
46 #include <X11/Xlib.h>
47 #include <X11/Xatom.h>
48 #include <glib.h>
49
50 #ifdef HAVE_SYS_SELECT_H
51 # include <sys/select.h>
52 #endif
53 #ifdef HAVE_SIGNAL_H
54 # include <signal.h>
55 #endif
56 #ifdef HAVE_UNISTD_H
57 # include <unistd.h> /* for usleep() */
58 #endif
59 #ifdef XKB
60 # include <X11/XKBlib.h>
61 #endif
62
63 #ifdef USE_SM
64 #include <X11/ICE/ICElib.h>
65 #endif
66
67 typedef struct
68 {
69 gboolean ignored;
70 } ObEventData;
71
72 typedef struct
73 {
74 ObClient *client;
75 Time time;
76 gulong serial;
77 } ObFocusDelayData;
78
79 typedef struct
80 {
81 gulong start; /* inclusive */
82 gulong end; /* inclusive */
83 } ObSerialRange;
84
85 static void event_process(const XEvent *e, gpointer data);
86 static void event_handle_root(XEvent *e);
87 static gboolean event_handle_menu_keyboard(XEvent *e);
88 static gboolean event_handle_menu(XEvent *e);
89 static void event_handle_dock(ObDock *s, XEvent *e);
90 static void event_handle_dockapp(ObDockApp *app, XEvent *e);
91 static void event_handle_client(ObClient *c, XEvent *e);
92 static void event_handle_user_input(ObClient *client, XEvent *e);
93 static gboolean is_enter_focus_event_ignored(XEvent *e);
94 static void event_ignore_enter_range(gulong start, gulong end);
95
96 static void focus_delay_dest(gpointer data);
97 static gboolean focus_delay_cmp(gconstpointer d1, gconstpointer d2);
98 static gboolean focus_delay_func(gpointer data);
99 static void focus_delay_client_dest(ObClient *client, gpointer data);
100
101 Time event_curtime = CurrentTime;
102 Time event_last_user_time = CurrentTime;
103 /*! The serial of the current X event */
104
105 static gulong event_curserial;
106 static gboolean focus_left_screen = FALSE;
107 /*! A list of ObSerialRanges which are to be ignored for mouse enter events */
108 static GSList *ignore_serials = NULL;
109
110 #ifdef USE_SM
111 static void ice_handler(gint fd, gpointer conn)
112 {
113 Bool b;
114 IceProcessMessages(conn, NULL, &b);
115 }
116
117 static void ice_watch(IceConn conn, IcePointer data, Bool opening,
118 IcePointer *watch_data)
119 {
120 static gint fd = -1;
121
122 if (opening) {
123 fd = IceConnectionNumber(conn);
124 obt_main_loop_fd_add(ob_main_loop, fd, ice_handler, conn, NULL);
125 } else {
126 obt_main_loop_fd_remove(ob_main_loop, fd);
127 fd = -1;
128 }
129 }
130 #endif
131
132 void event_startup(gboolean reconfig)
133 {
134 if (reconfig) return;
135
136 obt_main_loop_x_add(ob_main_loop, event_process, NULL, NULL);
137
138 #ifdef USE_SM
139 IceAddConnectionWatch(ice_watch, NULL);
140 #endif
141
142 client_add_destroy_notify(focus_delay_client_dest, NULL);
143 }
144
145 void event_shutdown(gboolean reconfig)
146 {
147 if (reconfig) return;
148
149 #ifdef USE_SM
150 IceRemoveConnectionWatch(ice_watch, NULL);
151 #endif
152
153 client_remove_destroy_notify(focus_delay_client_dest);
154 }
155
156 static Window event_get_window(XEvent *e)
157 {
158 Window window;
159
160 /* pick a window */
161 switch (e->type) {
162 case SelectionClear:
163 window = RootWindow(obt_display, ob_screen);
164 break;
165 case MapRequest:
166 window = e->xmap.window;
167 break;
168 case UnmapNotify:
169 window = e->xunmap.window;
170 break;
171 case DestroyNotify:
172 window = e->xdestroywindow.window;
173 break;
174 case ConfigureRequest:
175 window = e->xconfigurerequest.window;
176 break;
177 case ConfigureNotify:
178 window = e->xconfigure.window;
179 break;
180 default:
181 #ifdef XKB
182 if (obt_display_extension_xkb &&
183 e->type == obt_display_extension_xkb_basep)
184 {
185 switch (((XkbAnyEvent*)e)->xkb_type) {
186 case XkbBellNotify:
187 window = ((XkbBellNotifyEvent*)e)->window;
188 default:
189 window = None;
190 }
191 } else
192 #endif
193 #ifdef SYNC
194 if (obt_display_extension_sync &&
195 e->type == obt_display_extension_sync_basep + XSyncAlarmNotify)
196 {
197 window = None;
198 } else
199 #endif
200 window = e->xany.window;
201 }
202 return window;
203 }
204
205 static void event_set_curtime(XEvent *e)
206 {
207 Time t = CurrentTime;
208
209 /* grab the lasttime and hack up the state */
210 switch (e->type) {
211 case ButtonPress:
212 case ButtonRelease:
213 t = e->xbutton.time;
214 break;
215 case KeyPress:
216 t = e->xkey.time;
217 break;
218 case KeyRelease:
219 t = e->xkey.time;
220 break;
221 case MotionNotify:
222 t = e->xmotion.time;
223 break;
224 case PropertyNotify:
225 t = e->xproperty.time;
226 break;
227 case EnterNotify:
228 case LeaveNotify:
229 t = e->xcrossing.time;
230 break;
231 default:
232 #ifdef SYNC
233 if (obt_display_extension_sync &&
234 e->type == obt_display_extension_sync_basep + XSyncAlarmNotify)
235 {
236 t = ((XSyncAlarmNotifyEvent*)e)->time;
237 }
238 #endif
239 /* if more event types are anticipated, get their timestamp
240 explicitly */
241 break;
242 }
243
244 /* watch that if we get an event earlier than the last specified user_time,
245 which can happen if the clock goes backwards, we erase the last
246 specified user_time */
247 if (t && event_last_user_time && event_time_after(event_last_user_time, t))
248 event_last_user_time = CurrentTime;
249
250 event_curtime = t;
251 }
252
253 static void event_hack_mods(XEvent *e)
254 {
255 #ifdef XKB
256 XkbStateRec xkb_state;
257 #endif
258
259 switch (e->type) {
260 case ButtonPress:
261 case ButtonRelease:
262 e->xbutton.state = modkeys_only_modifier_masks(e->xbutton.state);
263 break;
264 case KeyPress:
265 e->xkey.state = modkeys_only_modifier_masks(e->xkey.state);
266 break;
267 case KeyRelease:
268 #ifdef XKB
269 /* If XKB is present, then the modifiers are all strange from its
270 magic. Our X core protocol stuff won't work, so we use this to
271 find what the modifier state is instead. */
272 if (XkbGetState(obt_display, XkbUseCoreKbd, &xkb_state) == Success)
273 e->xkey.state = xkb_state.compat_state;
274 else
275 #endif
276 {
277 e->xkey.state = modkeys_only_modifier_masks(e->xkey.state);
278 /* remove from the state the mask of the modifier key being
279 released, if it is a modifier key being released that is */
280 e->xkey.state &= ~modkeys_keycode_to_mask(e->xkey.keycode);
281 }
282 break;
283 case MotionNotify:
284 e->xmotion.state = modkeys_only_modifier_masks(e->xmotion.state);
285 /* compress events */
286 {
287 XEvent ce;
288 while (XCheckTypedWindowEvent(obt_display, e->xmotion.window,
289 e->type, &ce)) {
290 e->xmotion.x = ce.xmotion.x;
291 e->xmotion.y = ce.xmotion.y;
292 e->xmotion.x_root = ce.xmotion.x_root;
293 e->xmotion.y_root = ce.xmotion.y_root;
294 }
295 }
296 break;
297 }
298 }
299
300 static gboolean wanted_focusevent(XEvent *e, gboolean in_client_only)
301 {
302 gint mode = e->xfocus.mode;
303 gint detail = e->xfocus.detail;
304 Window win = e->xany.window;
305
306 if (e->type == FocusIn) {
307 /* These are ones we never want.. */
308
309 /* This means focus was given by a keyboard/mouse grab. */
310 if (mode == NotifyGrab)
311 return FALSE;
312 /* This means focus was given back from a keyboard/mouse grab. */
313 if (mode == NotifyUngrab)
314 return FALSE;
315
316 /* These are the ones we want.. */
317
318 if (win == RootWindow(obt_display, ob_screen)) {
319 /* If looking for a focus in on a client, then always return
320 FALSE for focus in's to the root window */
321 if (in_client_only)
322 return FALSE;
323 /* This means focus reverted off of a client */
324 else if (detail == NotifyPointerRoot ||
325 detail == NotifyDetailNone ||
326 detail == NotifyInferior ||
327 /* This means focus got here from another screen */
328 detail == NotifyNonlinear)
329 return TRUE;
330 else
331 return FALSE;
332 }
333
334 /* It was on a client, was it a valid one?
335 It's possible to get a FocusIn event for a client that was managed
336 but has disappeared.
337 */
338 if (in_client_only) {
339 ObWindow *w = g_hash_table_lookup(window_map, &e->xfocus.window);
340 if (!w || !WINDOW_IS_CLIENT(w))
341 return FALSE;
342 }
343 else {
344 /* This means focus reverted to parent from the client (this
345 happens often during iconify animation) */
346 if (detail == NotifyInferior)
347 return TRUE;
348 }
349
350 /* This means focus moved from the root window to a client */
351 if (detail == NotifyVirtual)
352 return TRUE;
353 /* This means focus moved from one client to another */
354 if (detail == NotifyNonlinearVirtual)
355 return TRUE;
356
357 /* Otherwise.. */
358 return FALSE;
359 } else {
360 g_assert(e->type == FocusOut);
361
362 /* These are ones we never want.. */
363
364 /* This means focus was taken by a keyboard/mouse grab. */
365 if (mode == NotifyGrab)
366 return FALSE;
367 /* This means focus was grabbed on a window and it was released. */
368 if (mode == NotifyUngrab)
369 return FALSE;
370
371 /* Focus left the root window revertedto state */
372 if (win == RootWindow(obt_display, ob_screen))
373 return FALSE;
374
375 /* These are the ones we want.. */
376
377 /* This means focus moved from a client to the root window */
378 if (detail == NotifyVirtual)
379 return TRUE;
380 /* This means focus moved from one client to another */
381 if (detail == NotifyNonlinearVirtual)
382 return TRUE;
383
384 /* Otherwise.. */
385 return FALSE;
386 }
387 }
388
389 static Bool event_look_for_focusin(Display *d, XEvent *e, XPointer arg)
390 {
391 return e->type == FocusIn && wanted_focusevent(e, FALSE);
392 }
393
394 static Bool event_look_for_focusin_client(Display *d, XEvent *e, XPointer arg)
395 {
396 return e->type == FocusIn && wanted_focusevent(e, TRUE);
397 }
398
399 static void print_focusevent(XEvent *e)
400 {
401 gint mode = e->xfocus.mode;
402 gint detail = e->xfocus.detail;
403 Window win = e->xany.window;
404 const gchar *modestr, *detailstr;
405
406 switch (mode) {
407 case NotifyNormal: modestr="NotifyNormal"; break;
408 case NotifyGrab: modestr="NotifyGrab"; break;
409 case NotifyUngrab: modestr="NotifyUngrab"; break;
410 case NotifyWhileGrabbed: modestr="NotifyWhileGrabbed"; break;
411 }
412 switch (detail) {
413 case NotifyAncestor: detailstr="NotifyAncestor"; break;
414 case NotifyVirtual: detailstr="NotifyVirtual"; break;
415 case NotifyInferior: detailstr="NotifyInferior"; break;
416 case NotifyNonlinear: detailstr="NotifyNonlinear"; break;
417 case NotifyNonlinearVirtual: detailstr="NotifyNonlinearVirtual"; break;
418 case NotifyPointer: detailstr="NotifyPointer"; break;
419 case NotifyPointerRoot: detailstr="NotifyPointerRoot"; break;
420 case NotifyDetailNone: detailstr="NotifyDetailNone"; break;
421 }
422
423 if (mode == NotifyGrab || mode == NotifyUngrab)
424 return;
425
426 g_assert(modestr);
427 g_assert(detailstr);
428 ob_debug_type(OB_DEBUG_FOCUS, "Focus%s 0x%x mode=%s detail=%s\n",
429 (e->xfocus.type == FocusIn ? "In" : "Out"),
430 win,
431 modestr, detailstr);
432
433 }
434
435 static gboolean event_ignore(XEvent *e, ObClient *client)
436 {
437 switch(e->type) {
438 case FocusIn:
439 print_focusevent(e);
440 if (!wanted_focusevent(e, FALSE))
441 return TRUE;
442 break;
443 case FocusOut:
444 print_focusevent(e);
445 if (!wanted_focusevent(e, FALSE))
446 return TRUE;
447 break;
448 }
449 return FALSE;
450 }
451
452 static void event_process(const XEvent *ec, gpointer data)
453 {
454 Window window;
455 ObClient *client = NULL;
456 ObDock *dock = NULL;
457 ObDockApp *dockapp = NULL;
458 ObWindow *obwin = NULL;
459 XEvent ee, *e;
460 ObEventData *ed = data;
461
462 /* make a copy we can mangle */
463 ee = *ec;
464 e = &ee;
465
466 window = event_get_window(e);
467 if ((obwin = g_hash_table_lookup(window_map, &window))) {
468 switch (obwin->type) {
469 case Window_Dock:
470 dock = WINDOW_AS_DOCK(obwin);
471 break;
472 case Window_DockApp:
473 dockapp = WINDOW_AS_DOCKAPP(obwin);
474 break;
475 case Window_Client:
476 client = WINDOW_AS_CLIENT(obwin);
477 break;
478 case Window_Menu:
479 /* not to be used for events */
480 g_assert_not_reached();
481 break;
482 case Window_Internal:
483 /* we don't do anything with events directly on these windows */
484 break;
485 }
486 }
487
488 event_set_curtime(e);
489 event_curserial = e->xany.serial;
490 event_hack_mods(e);
491 if (event_ignore(e, client)) {
492 if (ed)
493 ed->ignored = TRUE;
494 return;
495 } else if (ed)
496 ed->ignored = FALSE;
497
498 /* deal with it in the kernel */
499
500 if (menu_frame_visible &&
501 (e->type == EnterNotify || e->type == LeaveNotify))
502 {
503 /* crossing events for menu */
504 event_handle_menu(e);
505 } else if (e->type == FocusIn) {
506 if (client &&
507 e->xfocus.detail == NotifyInferior)
508 {
509 ob_debug_type(OB_DEBUG_FOCUS,
510 "Focus went to the frame window");
511
512 focus_left_screen = FALSE;
513
514 focus_fallback(FALSE, config_focus_under_mouse, TRUE, TRUE);
515
516 /* We don't get a FocusOut for this case, because it's just moving
517 from our Inferior up to us. This happens when iconifying a
518 window with RevertToParent focus */
519 frame_adjust_focus(client->frame, FALSE);
520 /* focus_set_client(NULL) has already been called */
521 client_calc_layer(client);
522 }
523 else if (e->xfocus.detail == NotifyPointerRoot ||
524 e->xfocus.detail == NotifyDetailNone ||
525 e->xfocus.detail == NotifyInferior ||
526 e->xfocus.detail == NotifyNonlinear)
527 {
528 XEvent ce;
529
530 ob_debug_type(OB_DEBUG_FOCUS,
531 "Focus went to root or pointer root/none\n");
532
533 if (e->xfocus.detail == NotifyInferior ||
534 e->xfocus.detail == NotifyNonlinear)
535 {
536 focus_left_screen = FALSE;
537 }
538
539 /* If another FocusIn is in the queue then don't fallback yet. This
540 fixes the fun case of:
541 window map -> send focusin
542 window unmap -> get focusout
543 window map -> send focusin
544 get first focus out -> fall back to something (new window
545 hasn't received focus yet, so something else) -> send focusin
546 which means the "something else" is the last thing to get a
547 focusin sent to it, so the new window doesn't end up with focus.
548
549 But if the other focus in is something like PointerRoot then we
550 still want to fall back.
551 */
552 if (XCheckIfEvent(obt_display, &ce, event_look_for_focusin_client,
553 NULL))
554 {
555 XPutBackEvent(obt_display, &ce);
556 ob_debug_type(OB_DEBUG_FOCUS,
557 " but another FocusIn is coming\n");
558 } else {
559 /* Focus has been reverted.
560
561 FocusOut events come after UnmapNotify, so we don't need to
562 worry about focusing an invalid window
563 */
564
565 if (!focus_left_screen)
566 focus_fallback(FALSE, config_focus_under_mouse,
567 TRUE, TRUE);
568 }
569 }
570 else if (!client)
571 {
572 ob_debug_type(OB_DEBUG_FOCUS,
573 "Focus went to a window that is already gone\n");
574
575 /* If you send focus to a window and then it disappears, you can
576 get the FocusIn for it, after it is unmanaged.
577 Just wait for the next FocusOut/FocusIn pair, but make note that
578 the window that was focused no longer is. */
579 focus_set_client(NULL);
580 }
581 else if (client != focus_client) {
582 focus_left_screen = FALSE;
583 frame_adjust_focus(client->frame, TRUE);
584 focus_set_client(client);
585 client_calc_layer(client);
586 client_bring_helper_windows(client);
587 }
588 } else if (e->type == FocusOut) {
589 XEvent ce;
590
591 /* Look for the followup FocusIn */
592 if (!XCheckIfEvent(obt_display, &ce, event_look_for_focusin, NULL)) {
593 /* There is no FocusIn, this means focus went to a window that
594 is not being managed, or a window on another screen. */
595 Window win, root;
596 gint i;
597 guint u;
598 obt_display_ignore_errors(TRUE);
599 if (XGetInputFocus(obt_display, &win, &i) &&
600 XGetGeometry(obt_display, win, &root, &i,&i,&u,&u,&u,&u) &&
601 root != RootWindow(obt_display, ob_screen))
602 {
603 ob_debug_type(OB_DEBUG_FOCUS,
604 "Focus went to another screen !\n");
605 focus_left_screen = TRUE;
606 }
607 else
608 ob_debug_type(OB_DEBUG_FOCUS,
609 "Focus went to a black hole !\n");
610 obt_display_ignore_errors(FALSE);
611 /* nothing is focused */
612 focus_set_client(NULL);
613 } else {
614 /* Focus moved, so process the FocusIn event */
615 ObEventData ed = { .ignored = FALSE };
616 event_process(&ce, &ed);
617 if (ed.ignored) {
618 /* The FocusIn was ignored, this means it was on a window
619 that isn't a client. */
620 ob_debug_type(OB_DEBUG_FOCUS,
621 "Focus went to an unmanaged window 0x%x !\n",
622 ce.xfocus.window);
623 focus_fallback(TRUE, config_focus_under_mouse, TRUE, TRUE);
624 }
625 }
626
627 if (client && client != focus_client) {
628 frame_adjust_focus(client->frame, FALSE);
629 /* focus_set_client(NULL) has already been called in this
630 section or by focus_fallback */
631 client_calc_layer(client);
632 }
633 }
634 else if (client)
635 event_handle_client(client, e);
636 else if (dockapp)
637 event_handle_dockapp(dockapp, e);
638 else if (dock)
639 event_handle_dock(dock, e);
640 else if (window == RootWindow(obt_display, ob_screen))
641 event_handle_root(e);
642 else if (e->type == MapRequest)
643 client_manage(window);
644 else if (e->type == MappingNotify) {
645 /* keyboard layout changes for modifier mapping changes. reload the
646 modifier map, and rebind all the key bindings as appropriate */
647 ob_debug("Kepboard map changed. Reloading keyboard bindings.\n");
648 modkeys_shutdown(TRUE);
649 modkeys_startup(TRUE);
650 keyboard_rebind();
651 }
652 else if (e->type == ClientMessage) {
653 /* This is for _NET_WM_REQUEST_FRAME_EXTENTS messages. They come for
654 windows that are not managed yet. */
655 if (e->xclient.message_type == prop_atoms.net_request_frame_extents) {
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 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 == prop_atoms.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 == prop_atoms.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 == prop_atoms.net_showing_desktop) {
762 screen_show_desktop(e->xclient.data.l[0] != 0, NULL);
763 } else if (msgtype == prop_atoms.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 == prop_atoms.wm_protocols) {
772 if ((Atom)e->xclient.data.l[0] == prop_atoms.net_wm_ping)
773 ping_got_pong(e->xclient.data.l[1]);
774 }
775 break;
776 case PropertyNotify:
777 if (e->xproperty.atom == prop_atoms.net_desktop_names) {
778 ob_debug("UPDATE DESKTOP NAMES\n");
779 screen_update_desktop_names();
780 }
781 else if (e->xproperty.atom == prop_atoms.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 == prop_atoms.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 == prop_atoms.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 == prop_atoms.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 == prop_atoms.net_close_window) {
1332 ob_debug("net_close_window for 0x%lx\n", client->window);
1333 client_close(client);
1334 } else if (msgtype == prop_atoms.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 == prop_atoms.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 prop_atoms.net_wm_moveresize_size_topleft ||
1362 (Atom)e->xclient.data.l[2] ==
1363 prop_atoms.net_wm_moveresize_size_top ||
1364 (Atom)e->xclient.data.l[2] ==
1365 prop_atoms.net_wm_moveresize_size_topright ||
1366 (Atom)e->xclient.data.l[2] ==
1367 prop_atoms.net_wm_moveresize_size_right ||
1368 (Atom)e->xclient.data.l[2] ==
1369 prop_atoms.net_wm_moveresize_size_right ||
1370 (Atom)e->xclient.data.l[2] ==
1371 prop_atoms.net_wm_moveresize_size_bottomright ||
1372 (Atom)e->xclient.data.l[2] ==
1373 prop_atoms.net_wm_moveresize_size_bottom ||
1374 (Atom)e->xclient.data.l[2] ==
1375 prop_atoms.net_wm_moveresize_size_bottomleft ||
1376 (Atom)e->xclient.data.l[2] ==
1377 prop_atoms.net_wm_moveresize_size_left ||
1378 (Atom)e->xclient.data.l[2] ==
1379 prop_atoms.net_wm_moveresize_move ||
1380 (Atom)e->xclient.data.l[2] ==
1381 prop_atoms.net_wm_moveresize_size_keyboard ||
1382 (Atom)e->xclient.data.l[2] ==
1383 prop_atoms.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 prop_atoms.net_wm_moveresize_cancel)
1391 moveresize_end(TRUE);
1392 } else if (msgtype == prop_atoms.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 == prop_atoms.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 == prop_atoms.net_wm_name ||
1508 a == prop_atoms.wm_name ||
1509 a == prop_atoms.net_wm_icon_name ||
1510 a == prop_atoms.wm_icon_name)
1511 &&
1512 (b == prop_atoms.net_wm_name ||
1513 b == prop_atoms.wm_name ||
1514 b == prop_atoms.net_wm_icon_name ||
1515 b == prop_atoms.wm_icon_name)) {
1516 continue;
1517 }
1518 if (a == prop_atoms.net_wm_icon &&
1519 b == prop_atoms.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 == prop_atoms.net_wm_name ||
1546 msgtype == prop_atoms.wm_name ||
1547 msgtype == prop_atoms.net_wm_icon_name ||
1548 msgtype == prop_atoms.wm_icon_name) {
1549 client_update_title(client);
1550 } else if (msgtype == prop_atoms.wm_protocols) {
1551 client_update_protocols(client);
1552 client_setup_decor_and_functions(client, TRUE);
1553 }
1554 else if (msgtype == prop_atoms.net_wm_strut) {
1555 client_update_strut(client);
1556 }
1557 else if (msgtype == prop_atoms.net_wm_strut_partial) {
1558 client_update_strut(client);
1559 }
1560 else if (msgtype == prop_atoms.net_wm_icon) {
1561 client_update_icons(client);
1562 }
1563 else if (msgtype == prop_atoms.net_wm_icon_geometry) {
1564 client_update_icon_geometry(client);
1565 }
1566 else if (msgtype == prop_atoms.net_wm_user_time) {
1567 guint32 t;
1568 if (client == focus_client &&
1569 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 == prop_atoms.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 = translate_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 prop_atoms.wm_class, prop_atoms.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.119353 seconds and 5 git commands to generate.