11 #include "menuframe.h"
15 #include "framerender.h"
17 #include "moveresize.h"
19 #include "extensions.h"
23 #include <X11/keysym.h>
24 #include <X11/Xatom.h>
27 #ifdef HAVE_SYS_SELECT_H
28 # include <sys/select.h>
35 #include <X11/ICE/ICElib.h>
38 static void event_process(const XEvent
*e
, gpointer data
);
39 static void event_handle_root(XEvent
*e
);
40 static void event_handle_menu(XEvent
*e
);
41 static void event_handle_dock(ObDock
*s
, XEvent
*e
);
42 static void event_handle_dockapp(ObDockApp
*app
, XEvent
*e
);
43 static void event_handle_client(ObClient
*c
, XEvent
*e
);
45 static gboolean
focus_delay_func(gpointer data
);
46 static void focus_delay_client_dest(gpointer data
);
48 static gboolean
menu_hide_delay_func(gpointer data
);
50 #define INVALID_FOCUSIN(e) ((e)->xfocus.detail == NotifyInferior || \
51 (e)->xfocus.detail == NotifyAncestor || \
52 (e)->xfocus.detail > NotifyNonlinearVirtual)
53 #define INVALID_FOCUSOUT(e) ((e)->xfocus.mode == NotifyGrab || \
54 (e)->xfocus.detail == NotifyInferior || \
55 (e)->xfocus.detail == NotifyAncestor || \
56 (e)->xfocus.detail > NotifyNonlinearVirtual)
58 Time event_lasttime
= 0;
60 /*! The value of the mask for the NumLock modifier */
61 unsigned int NumLockMask
;
62 /*! The value of the mask for the ScrollLock modifier */
63 unsigned int ScrollLockMask
;
64 /*! The key codes for the modifier keys */
65 static XModifierKeymap
*modmap
;
66 /*! Table of the constant modifier masks */
67 static const int mask_table
[] = {
68 ShiftMask
, LockMask
, ControlMask
, Mod1Mask
,
69 Mod2Mask
, Mod3Mask
, Mod4Mask
, Mod5Mask
71 static int mask_table_size
;
73 static ObClient
*focus_delay_client
;
75 static gboolean menu_can_hide
;
78 static void ice_handler(int fd
, gpointer conn
)
81 IceProcessMessages(conn
, NULL
, &b
);
84 static void ice_watch(IceConn conn
, IcePointer data
, Bool opening
,
85 IcePointer
*watch_data
)
90 fd
= IceConnectionNumber(conn
);
91 ob_main_loop_fd_add(ob_main_loop
, fd
, ice_handler
, conn
, NULL
);
93 ob_main_loop_fd_remove(ob_main_loop
, fd
);
99 void event_startup(gboolean reconfig
)
101 if (reconfig
) return;
103 mask_table_size
= sizeof(mask_table
) / sizeof(mask_table
[0]);
105 /* get lock masks that are defined by the display (not constant) */
106 modmap
= XGetModifierMapping(ob_display
);
108 if (modmap
&& modmap
->max_keypermod
> 0) {
110 const size_t size
= mask_table_size
* modmap
->max_keypermod
;
111 /* get the values of the keyboard lock modifiers
112 Note: Caps lock is not retrieved the same way as Scroll and Num
113 lock since it doesn't need to be. */
114 const KeyCode num_lock
= XKeysymToKeycode(ob_display
, XK_Num_Lock
);
115 const KeyCode scroll_lock
= XKeysymToKeycode(ob_display
,
118 for (cnt
= 0; cnt
< size
; ++cnt
) {
119 if (! modmap
->modifiermap
[cnt
]) continue;
121 if (num_lock
== modmap
->modifiermap
[cnt
])
122 NumLockMask
= mask_table
[cnt
/ modmap
->max_keypermod
];
123 if (scroll_lock
== modmap
->modifiermap
[cnt
])
124 ScrollLockMask
= mask_table
[cnt
/ modmap
->max_keypermod
];
128 ob_main_loop_x_add(ob_main_loop
, event_process
, NULL
, NULL
);
131 IceAddConnectionWatch(ice_watch
, NULL
);
134 client_add_destructor(focus_delay_client_dest
);
137 void event_shutdown(gboolean reconfig
)
139 if (reconfig
) return;
141 client_remove_destructor(focus_delay_client_dest
);
142 XFreeModifiermap(modmap
);
145 static Window
event_get_window(XEvent
*e
)
152 window
= RootWindow(ob_display
, ob_screen
);
155 window
= e
->xmap
.window
;
158 window
= e
->xunmap
.window
;
161 window
= e
->xdestroywindow
.window
;
163 case ConfigureRequest
:
164 window
= e
->xconfigurerequest
.window
;
166 case ConfigureNotify
:
167 window
= e
->xconfigure
.window
;
171 if (extensions_xkb
&& e
->type
== extensions_xkb_event_basep
) {
172 switch (((XkbAnyEvent
*)e
)->xkb_type
) {
174 window
= ((XkbBellNotifyEvent
*)e
)->window
;
180 window
= e
->xany
.window
;
185 static void event_set_lasttime(XEvent
*e
)
189 /* grab the lasttime and hack up the state */
205 t
= e
->xproperty
.time
;
209 t
= e
->xcrossing
.time
;
212 /* if more event types are anticipated, get their timestamp
217 if (t
> event_lasttime
)
221 #define STRIP_MODS(s) \
222 s &= ~(LockMask | NumLockMask | ScrollLockMask), \
223 /* kill off the Button1Mask etc, only want the modifiers */ \
224 s &= (ControlMask | ShiftMask | Mod1Mask | \
225 Mod2Mask | Mod3Mask | Mod4Mask | Mod5Mask) \
227 static void event_hack_mods(XEvent *e)
235 STRIP_MODS(e
->xbutton
.state
);
238 STRIP_MODS(e
->xkey
.state
);
241 STRIP_MODS(e
->xkey
.state
);
242 /* remove from the state the mask of the modifier being released, if
243 it is a modifier key being released (this is a little ugly..) */
244 kp
= modmap
->modifiermap
;
245 for (i
= 0; i
< mask_table_size
; ++i
) {
246 for (k
= 0; k
< modmap
->max_keypermod
; ++k
) {
247 if (*kp
== e
->xkey
.keycode
) { /* found the keycode */
248 /* remove the mask for it */
249 e
->xkey
.state
&= ~mask_table
[i
];
250 /* cause the first loop to break; */
252 break; /* get outta here! */
259 STRIP_MODS(e
->xmotion
.state
);
260 /* compress events */
263 while (XCheckTypedWindowEvent(ob_display
, e
->xmotion
.window
,
265 e
->xmotion
.x_root
= ce
.xmotion
.x_root
;
266 e
->xmotion
.y_root
= ce
.xmotion
.y_root
;
273 static gboolean
event_ignore(XEvent
*e
, ObClient
*client
)
277 /* NotifyAncestor is not ignored in FocusIn like it is in FocusOut
278 because of RevertToPointerRoot. If the focus ends up reverting to
279 pointer root on a workspace change, then the FocusIn event that we
280 want will be of type NotifyAncestor. This situation does not occur
281 for FocusOut, so it is safely ignored there.
283 if (INVALID_FOCUSIN(e
) ||
286 ob_debug("FocusIn on %lx mode %d detail %d IGNORED\n",
287 e
->xfocus
.window
, e
->xfocus
.mode
, e
->xfocus
.detail
);
289 /* says a client was not found for the event (or a valid FocusIn
292 e
->xfocus
.window
= None
;
297 ob_debug("FocusIn on %lx mode %d detail %d\n", e
->xfocus
.window
,
298 e
->xfocus
.mode
, e
->xfocus
.detail
);
302 if (INVALID_FOCUSOUT(e
)) {
304 ob_debug("FocusOut on %lx mode %d detail %d IGNORED\n",
305 e
->xfocus
.window
, e
->xfocus
.mode
, e
->xfocus
.detail
);
311 ob_debug("FocusOut on %lx mode %d detail %d\n",
312 e
->xfocus
.window
, e
->xfocus
.mode
, e
->xfocus
.detail
);
317 gboolean fallback
= TRUE
;
320 if (!XCheckTypedWindowEvent(ob_display
, e
->xfocus
.window
,
322 if (!XCheckTypedEvent(ob_display
, FocusIn
, &fe
))
324 if (fe
.type
== FocusOut
) {
326 ob_debug("found pending FocusOut\n");
328 if (!INVALID_FOCUSOUT(&fe
)) {
329 /* if there is a VALID FocusOut still coming, don't
330 fallback focus yet, we'll deal with it then */
331 XPutBackEvent(ob_display
, &fe
);
337 ob_debug("found pending FocusIn\n");
339 /* is the focused window getting a FocusOut/In back to
342 if (fe
.xfocus
.window
== e
->xfocus
.window
&&
343 !event_ignore(&fe
, client
)) {
345 if focus_client is not set, then we can't do
346 this. we need the FocusIn. This happens in the
347 case when the set_focus_client(NULL) in the
348 focus_fallback function fires and then
349 focus_fallback picks the currently focused
350 window (such as on a SendToDesktop-esque action.
354 ob_debug("focused window got an Out/In back to "
355 "itself IGNORED both\n");
359 event_process(&fe
, NULL
);
361 ob_debug("focused window got an Out/In back to "
362 "itself but focus_client was null "
363 "IGNORED just the Out\n");
369 /* once all the FocusOut's have been dealt with, if there
370 is a FocusIn still left and it is valid, then use it */
371 event_process(&fe
, NULL
);
372 /* secret magic way of event_process telling us that no
373 client was found for the FocusIn event. ^_^ */
374 if (fe
.xfocus
.window
!= None
) {
382 ob_debug("no valid FocusIn and no FocusOut events found, "
385 focus_fallback(OB_FOCUS_FALLBACK_NOFOCUS
);
391 /* NotifyUngrab occurs when a mouse button is released and the event is
392 caused, like when lowering a window */
393 /* NotifyVirtual occurs when ungrabbing the pointer */
394 if (e
->xcrossing
.mode
== NotifyGrab
||
395 e
->xcrossing
.detail
== NotifyInferior
||
396 (e
->xcrossing
.mode
== NotifyUngrab
&&
397 e
->xcrossing
.detail
== NotifyVirtual
)) {
399 ob_debug("%sNotify mode %d detail %d on %lx IGNORED\n",
400 (e
->type
== EnterNotify
? "Enter" : "Leave"),
402 e
->xcrossing
.detail
, client
?client
->window
:0);
407 ob_debug("%sNotify mode %d detail %d on %lx\n",
408 (e
->type
== EnterNotify
? "Enter" : "Leave"),
410 e
->xcrossing
.detail
, client
?client
->window
:0);
417 static void event_process(const XEvent
*ec
, gpointer data
)
420 ObClient
*client
= NULL
;
422 ObDockApp
*dockapp
= NULL
;
423 ObWindow
*obwin
= NULL
;
426 /* make a copy we can mangle */
430 window
= event_get_window(e
);
431 if ((obwin
= g_hash_table_lookup(window_map
, &window
))) {
432 switch (obwin
->type
) {
434 dock
= WINDOW_AS_DOCK(obwin
);
437 dockapp
= WINDOW_AS_DOCKAPP(obwin
);
440 client
= WINDOW_AS_CLIENT(obwin
);
443 case Window_Internal
:
444 /* not to be used for events */
445 g_assert_not_reached();
450 event_set_lasttime(e
);
452 if (event_ignore(e
, client
))
455 /* deal with it in the kernel */
457 event_handle_client(client
, e
);
459 event_handle_dockapp(dockapp
, e
);
461 event_handle_dock(dock
, e
);
462 else if (window
== RootWindow(ob_display
, ob_screen
))
463 event_handle_root(e
);
464 else if (e
->type
== MapRequest
)
465 client_manage(window
);
466 else if (e
->type
== ConfigureRequest
) {
467 /* unhandled configure requests must be used to configure the
471 xwc
.x
= e
->xconfigurerequest
.x
;
472 xwc
.y
= e
->xconfigurerequest
.y
;
473 xwc
.width
= e
->xconfigurerequest
.width
;
474 xwc
.height
= e
->xconfigurerequest
.height
;
475 xwc
.border_width
= e
->xconfigurerequest
.border_width
;
476 xwc
.sibling
= e
->xconfigurerequest
.above
;
477 xwc
.stack_mode
= e
->xconfigurerequest
.detail
;
479 /* we are not to be held responsible if someone sends us an
481 xerror_set_ignore(TRUE
);
482 XConfigureWindow(ob_display
, window
,
483 e
->xconfigurerequest
.value_mask
, &xwc
);
484 xerror_set_ignore(FALSE
);
487 /* user input (action-bound) events */
488 if (e
->type
== ButtonPress
|| e
->type
== ButtonRelease
||
489 e
->type
== MotionNotify
|| e
->type
== KeyPress
||
490 e
->type
== KeyRelease
)
492 if (menu_frame_visible
)
493 event_handle_menu(e
);
495 if (!keyboard_process_interactive_grab(e
, &client
)) {
496 if (moveresize_in_progress
)
499 menu_can_hide
= FALSE
;
500 ob_main_loop_timeout_add(ob_main_loop
,
502 menu_hide_delay_func
,
505 if (e
->type
== ButtonPress
|| e
->type
== ButtonRelease
||
506 e
->type
== MotionNotify
)
507 mouse_event(client
, e
);
508 else if (e
->type
== KeyPress
)
509 /* when in the middle of a focus cycling action, this
510 causes the window which appears to be focused to be
511 the one on which the actions will be executed */
512 keyboard_event((focus_cycle_target
?
514 (client
? client
: focus_client
)), e
);
520 static void event_handle_root(XEvent
*e
)
526 ob_debug("Another WM has requested to replace us. Exiting.\n");
531 if (e
->xclient
.format
!= 32) break;
533 msgtype
= e
->xclient
.message_type
;
534 if (msgtype
== prop_atoms
.net_current_desktop
) {
535 unsigned int d
= e
->xclient
.data
.l
[0];
536 if (d
< screen_num_desktops
)
537 screen_set_desktop(d
);
538 } else if (msgtype
== prop_atoms
.net_number_of_desktops
) {
539 unsigned int d
= e
->xclient
.data
.l
[0];
541 screen_set_num_desktops(d
);
542 } else if (msgtype
== prop_atoms
.net_showing_desktop
) {
543 screen_show_desktop(e
->xclient
.data
.l
[0] != 0);
547 if (e
->xproperty
.atom
== prop_atoms
.net_desktop_names
)
548 screen_update_desktop_names();
549 else if (e
->xproperty
.atom
== prop_atoms
.net_desktop_layout
)
550 screen_update_layout();
552 case ConfigureNotify
:
554 XRRUpdateConfiguration(e
);
561 if (extensions_vidmode
&& e
->type
== extensions_vidmode_event_basep
) {
562 ob_debug("VIDMODE EVENT\n");
568 static void event_handle_client(ObClient
*client
, XEvent
*e
)
576 case VisibilityNotify
:
577 client
->frame
->obscured
= e
->xvisibility
.state
!= VisibilityUnobscured
;
581 /* Wheel buttons don't draw because they are an instant click, so it
582 is a waste of resources to go drawing it. */
583 if (!(e
->xbutton
.button
== 4 || e
->xbutton
.button
== 5)) {
584 con
= frame_context(client
, e
->xbutton
.window
);
585 con
= mouse_button_frame_context(con
, e
->xbutton
.button
);
587 case OB_FRAME_CONTEXT_MAXIMIZE
:
588 client
->frame
->max_press
= (e
->type
== ButtonPress
);
589 framerender_frame(client
->frame
);
591 case OB_FRAME_CONTEXT_CLOSE
:
592 client
->frame
->close_press
= (e
->type
== ButtonPress
);
593 framerender_frame(client
->frame
);
595 case OB_FRAME_CONTEXT_ICONIFY
:
596 client
->frame
->iconify_press
= (e
->type
== ButtonPress
);
597 framerender_frame(client
->frame
);
599 case OB_FRAME_CONTEXT_ALLDESKTOPS
:
600 client
->frame
->desk_press
= (e
->type
== ButtonPress
);
601 framerender_frame(client
->frame
);
603 case OB_FRAME_CONTEXT_SHADE
:
604 client
->frame
->shade_press
= (e
->type
== ButtonPress
);
605 framerender_frame(client
->frame
);
608 /* nothing changes with clicks for any other contexts */
615 ob_debug("FocusIn on client for %lx\n", client
->window
);
617 if (client
!= focus_client
) {
618 focus_set_client(client
);
619 frame_adjust_focus(client
->frame
, TRUE
);
624 ob_debug("FocusOut on client for %lx\n", client
->window
);
626 /* are we a fullscreen window or a transient of one? (checks layer)
627 if we are then we need to be iconified since we are losing focus
629 if (client
->layer
== OB_STACKING_LAYER_FULLSCREEN
&& !client
->iconic
&&
630 !client_search_focus_tree_full(client
))
631 /* iconify fullscreen windows when they and their transients
633 client_iconify(client
, TRUE
, TRUE
);
634 frame_adjust_focus(client
->frame
, FALSE
);
637 con
= frame_context(client
, e
->xcrossing
.window
);
639 case OB_FRAME_CONTEXT_MAXIMIZE
:
640 client
->frame
->max_hover
= FALSE
;
641 frame_adjust_state(client
->frame
);
643 case OB_FRAME_CONTEXT_ALLDESKTOPS
:
644 client
->frame
->desk_hover
= FALSE
;
645 frame_adjust_state(client
->frame
);
647 case OB_FRAME_CONTEXT_SHADE
:
648 client
->frame
->shade_hover
= FALSE
;
649 frame_adjust_state(client
->frame
);
651 case OB_FRAME_CONTEXT_ICONIFY
:
652 client
->frame
->iconify_hover
= FALSE
;
653 frame_adjust_state(client
->frame
);
655 case OB_FRAME_CONTEXT_CLOSE
:
656 client
->frame
->close_hover
= FALSE
;
657 frame_adjust_state(client
->frame
);
659 case OB_FRAME_CONTEXT_FRAME
:
660 /* XXX if doing a 'reconfigure' make sure you kill this timer,
661 maybe all timers.. */
662 if (config_focus_delay
&& client
== focus_delay_client
) {
663 ob_main_loop_timeout_remove_data(ob_main_loop
,
666 focus_delay_client
= NULL
;
673 con
= frame_context(client
, e
->xcrossing
.window
);
675 case OB_FRAME_CONTEXT_MAXIMIZE
:
676 client
->frame
->max_hover
= TRUE
;
677 frame_adjust_state(client
->frame
);
679 case OB_FRAME_CONTEXT_ALLDESKTOPS
:
680 client
->frame
->desk_hover
= TRUE
;
681 frame_adjust_state(client
->frame
);
683 case OB_FRAME_CONTEXT_SHADE
:
684 client
->frame
->shade_hover
= TRUE
;
685 frame_adjust_state(client
->frame
);
687 case OB_FRAME_CONTEXT_ICONIFY
:
688 client
->frame
->iconify_hover
= TRUE
;
689 frame_adjust_state(client
->frame
);
691 case OB_FRAME_CONTEXT_CLOSE
:
692 client
->frame
->close_hover
= TRUE
;
693 frame_adjust_state(client
->frame
);
695 case OB_FRAME_CONTEXT_FRAME
:
696 if (client_normal(client
)) {
697 if (ob_state() == OB_STATE_STARTING
) {
698 /* move it to the top of the focus order */
699 guint desktop
= client
->desktop
;
700 if (desktop
== DESKTOP_ALL
) desktop
= screen_desktop
;
701 focus_order
[desktop
] = g_list_remove(focus_order
[desktop
],
703 focus_order
[desktop
] = g_list_prepend(focus_order
[desktop
],
705 } else if (config_focus_follow
) {
707 ob_debug("EnterNotify on %lx, focusing window\n",
710 if (config_focus_delay
) {
711 ob_main_loop_timeout_add(ob_main_loop
,
715 focus_delay_client
= client
;
717 client_focus(client
);
725 case ConfigureRequest
:
727 while (XCheckTypedWindowEvent(ob_display
, client
->window
,
728 ConfigureRequest
, &ce
)) {
730 /* XXX if this causes bad things.. we can compress config req's
731 with the same mask. */
732 e
->xconfigurerequest
.value_mask
|=
733 ce
.xconfigurerequest
.value_mask
;
734 if (ce
.xconfigurerequest
.value_mask
& CWX
)
735 e
->xconfigurerequest
.x
= ce
.xconfigurerequest
.x
;
736 if (ce
.xconfigurerequest
.value_mask
& CWY
)
737 e
->xconfigurerequest
.y
= ce
.xconfigurerequest
.y
;
738 if (ce
.xconfigurerequest
.value_mask
& CWWidth
)
739 e
->xconfigurerequest
.width
= ce
.xconfigurerequest
.width
;
740 if (ce
.xconfigurerequest
.value_mask
& CWHeight
)
741 e
->xconfigurerequest
.height
= ce
.xconfigurerequest
.height
;
742 if (ce
.xconfigurerequest
.value_mask
& CWBorderWidth
)
743 e
->xconfigurerequest
.border_width
=
744 ce
.xconfigurerequest
.border_width
;
745 if (ce
.xconfigurerequest
.value_mask
& CWStackMode
)
746 e
->xconfigurerequest
.detail
= ce
.xconfigurerequest
.detail
;
749 /* if we are iconic (or shaded (fvwm does this)) ignore the event */
750 if (client
->iconic
|| client
->shaded
) return;
752 /* resize, then move, as specified in the EWMH section 7.7 */
753 if (e
->xconfigurerequest
.value_mask
& (CWWidth
| CWHeight
|
759 if (e
->xconfigurerequest
.value_mask
& CWBorderWidth
)
760 client
->border_width
= e
->xconfigurerequest
.border_width
;
762 x
= (e
->xconfigurerequest
.value_mask
& CWX
) ?
763 e
->xconfigurerequest
.x
: client
->area
.x
;
764 y
= (e
->xconfigurerequest
.value_mask
& CWY
) ?
765 e
->xconfigurerequest
.y
: client
->area
.y
;
766 w
= (e
->xconfigurerequest
.value_mask
& CWWidth
) ?
767 e
->xconfigurerequest
.width
: client
->area
.width
;
768 h
= (e
->xconfigurerequest
.value_mask
& CWHeight
) ?
769 e
->xconfigurerequest
.height
: client
->area
.height
;
775 client
->frame
->size
.left
+ client
->frame
->size
.right
;
777 client
->frame
->size
.top
+ client
->frame
->size
.bottom
;
778 client_find_onscreen(client
, &newx
, &newy
, fw
, fh
,
779 client_normal(client
));
780 if (e
->xconfigurerequest
.value_mask
& CWX
)
782 if (e
->xconfigurerequest
.value_mask
& CWY
)
786 switch (client
->gravity
) {
787 case NorthEastGravity
:
789 corner
= OB_CORNER_TOPRIGHT
;
791 case SouthWestGravity
:
793 corner
= OB_CORNER_BOTTOMLEFT
;
795 case SouthEastGravity
:
796 corner
= OB_CORNER_BOTTOMRIGHT
;
798 default: /* NorthWest, Static, etc */
799 corner
= OB_CORNER_TOPLEFT
;
802 client_configure_full(client
, corner
, x
, y
, w
, h
, FALSE
, TRUE
,
806 if (e
->xconfigurerequest
.value_mask
& CWStackMode
) {
807 switch (e
->xconfigurerequest
.detail
) {
810 stacking_lower(CLIENT_AS_WINDOW(client
));
816 stacking_raise(CLIENT_AS_WINDOW(client
));
822 if (client
->ignore_unmaps
) {
823 client
->ignore_unmaps
--;
826 client_unmanage(client
);
829 client_unmanage(client
);
832 /* this is when the client is first taken captive in the frame */
833 if (e
->xreparent
.parent
== client
->frame
->plate
) break;
836 This event is quite rare and is usually handled in unmapHandler.
837 However, if the window is unmapped when the reparent event occurs,
838 the window manager never sees it because an unmap event is not sent
839 to an already unmapped window.
842 /* we don't want the reparent event, put it back on the stack for the
843 X server to deal with after we unmanage the window */
844 XPutBackEvent(ob_display
, e
);
846 client_unmanage(client
);
849 ob_debug("MapRequest for 0x%lx\n", client
->window
);
850 if (!client
->iconic
) break; /* this normally doesn't happen, but if it
851 does, we don't want it! */
852 if (screen_showing_desktop
)
853 screen_show_desktop(FALSE
);
854 client_iconify(client
, FALSE
, TRUE
);
855 if (!client
->frame
->visible
)
856 /* if its not visible still, then don't mess with it */
859 client_shade(client
, FALSE
);
860 client_focus(client
);
861 stacking_raise(CLIENT_AS_WINDOW(client
));
864 /* validate cuz we query stuff off the client here */
865 if (!client_validate(client
)) break;
867 if (e
->xclient
.format
!= 32) return;
869 msgtype
= e
->xclient
.message_type
;
870 if (msgtype
== prop_atoms
.wm_change_state
) {
871 /* compress changes into a single change */
872 while (XCheckTypedWindowEvent(ob_display
, client
->window
,
874 /* XXX: it would be nice to compress ALL messages of a
875 type, not just messages in a row without other
876 message types between. */
877 if (ce
.xclient
.message_type
!= msgtype
) {
878 XPutBackEvent(ob_display
, &ce
);
881 e
->xclient
= ce
.xclient
;
883 client_set_wm_state(client
, e
->xclient
.data
.l
[0]);
884 } else if (msgtype
== prop_atoms
.net_wm_desktop
) {
885 /* compress changes into a single change */
886 while (XCheckTypedWindowEvent(ob_display
, client
->window
,
888 /* XXX: it would be nice to compress ALL messages of a
889 type, not just messages in a row without other
890 message types between. */
891 if (ce
.xclient
.message_type
!= msgtype
) {
892 XPutBackEvent(ob_display
, &ce
);
895 e
->xclient
= ce
.xclient
;
897 if ((unsigned)e
->xclient
.data
.l
[0] < screen_num_desktops
||
898 (unsigned)e
->xclient
.data
.l
[0] == DESKTOP_ALL
)
899 client_set_desktop(client
, (unsigned)e
->xclient
.data
.l
[0],
901 } else if (msgtype
== prop_atoms
.net_wm_state
) {
902 /* can't compress these */
903 ob_debug("net_wm_state %s %ld %ld for 0x%lx\n",
904 (e
->xclient
.data
.l
[0] == 0 ? "Remove" :
905 e
->xclient
.data
.l
[0] == 1 ? "Add" :
906 e
->xclient
.data
.l
[0] == 2 ? "Toggle" : "INVALID"),
907 e
->xclient
.data
.l
[1], e
->xclient
.data
.l
[2],
909 client_set_state(client
, e
->xclient
.data
.l
[0],
910 e
->xclient
.data
.l
[1], e
->xclient
.data
.l
[2]);
911 } else if (msgtype
== prop_atoms
.net_close_window
) {
912 ob_debug("net_close_window for 0x%lx\n", client
->window
);
913 client_close(client
);
914 } else if (msgtype
== prop_atoms
.net_active_window
) {
915 ob_debug("net_active_window for 0x%lx\n", client
->window
);
916 client_activate(client
, FALSE
);
917 } else if (msgtype
== prop_atoms
.net_wm_moveresize
) {
918 ob_debug("net_wm_moveresize for 0x%lx\n", client
->window
);
919 if ((Atom
)e
->xclient
.data
.l
[2] ==
920 prop_atoms
.net_wm_moveresize_size_topleft
||
921 (Atom
)e
->xclient
.data
.l
[2] ==
922 prop_atoms
.net_wm_moveresize_size_top
||
923 (Atom
)e
->xclient
.data
.l
[2] ==
924 prop_atoms
.net_wm_moveresize_size_topright
||
925 (Atom
)e
->xclient
.data
.l
[2] ==
926 prop_atoms
.net_wm_moveresize_size_right
||
927 (Atom
)e
->xclient
.data
.l
[2] ==
928 prop_atoms
.net_wm_moveresize_size_right
||
929 (Atom
)e
->xclient
.data
.l
[2] ==
930 prop_atoms
.net_wm_moveresize_size_bottomright
||
931 (Atom
)e
->xclient
.data
.l
[2] ==
932 prop_atoms
.net_wm_moveresize_size_bottom
||
933 (Atom
)e
->xclient
.data
.l
[2] ==
934 prop_atoms
.net_wm_moveresize_size_bottomleft
||
935 (Atom
)e
->xclient
.data
.l
[2] ==
936 prop_atoms
.net_wm_moveresize_size_left
||
937 (Atom
)e
->xclient
.data
.l
[2] ==
938 prop_atoms
.net_wm_moveresize_move
||
939 (Atom
)e
->xclient
.data
.l
[2] ==
940 prop_atoms
.net_wm_moveresize_size_keyboard
||
941 (Atom
)e
->xclient
.data
.l
[2] ==
942 prop_atoms
.net_wm_moveresize_move_keyboard
) {
944 moveresize_start(client
, e
->xclient
.data
.l
[0],
945 e
->xclient
.data
.l
[1], e
->xclient
.data
.l
[3],
946 e
->xclient
.data
.l
[2]);
948 } else if (msgtype
== prop_atoms
.net_moveresize_window
) {
949 int oldg
= client
->gravity
;
950 int tmpg
, x
, y
, w
, h
;
952 if (e
->xclient
.data
.l
[0] & 0xff)
953 tmpg
= e
->xclient
.data
.l
[0] & 0xff;
957 if (e
->xclient
.data
.l
[0] & 1 << 8)
958 x
= e
->xclient
.data
.l
[1];
961 if (e
->xclient
.data
.l
[0] & 1 << 9)
962 y
= e
->xclient
.data
.l
[2];
965 if (e
->xclient
.data
.l
[0] & 1 << 10)
966 w
= e
->xclient
.data
.l
[3];
968 w
= client
->area
.width
;
969 if (e
->xclient
.data
.l
[0] & 1 << 11)
970 h
= e
->xclient
.data
.l
[4];
972 h
= client
->area
.height
;
973 client
->gravity
= tmpg
;
979 client
->frame
->size
.left
+ client
->frame
->size
.right
;
981 client
->frame
->size
.top
+ client
->frame
->size
.bottom
;
982 client_find_onscreen(client
, &newx
, &newy
, fw
, fh
,
983 client_normal(client
));
984 if (e
->xclient
.data
.l
[0] & 1 << 8)
986 if (e
->xclient
.data
.l
[0] & 1 << 9)
990 client_configure(client
, OB_CORNER_TOPLEFT
,
991 x
, y
, w
, h
, FALSE
, TRUE
);
993 client
->gravity
= oldg
;
997 /* validate cuz we query stuff off the client here */
998 if (!client_validate(client
)) break;
1000 /* compress changes to a single property into a single change */
1001 while (XCheckTypedWindowEvent(ob_display
, client
->window
,
1005 /* XXX: it would be nice to compress ALL changes to a property,
1006 not just changes in a row without other props between. */
1008 a
= ce
.xproperty
.atom
;
1009 b
= e
->xproperty
.atom
;
1013 if ((a
== prop_atoms
.net_wm_name
||
1014 a
== prop_atoms
.wm_name
||
1015 a
== prop_atoms
.net_wm_icon_name
||
1016 a
== prop_atoms
.wm_icon_name
)
1018 (b
== prop_atoms
.net_wm_name
||
1019 b
== prop_atoms
.wm_name
||
1020 b
== prop_atoms
.net_wm_icon_name
||
1021 b
== prop_atoms
.wm_icon_name
)) {
1024 if ((a
== prop_atoms
.net_wm_icon
||
1025 a
== prop_atoms
.kwm_win_icon
)
1027 (b
== prop_atoms
.net_wm_icon
||
1028 b
== prop_atoms
.kwm_win_icon
))
1031 XPutBackEvent(ob_display
, &ce
);
1035 msgtype
= e
->xproperty
.atom
;
1036 if (msgtype
== XA_WM_NORMAL_HINTS
) {
1037 client_update_normal_hints(client
);
1038 /* normal hints can make a window non-resizable */
1039 client_setup_decor_and_functions(client
);
1040 } else if (msgtype
== XA_WM_HINTS
) {
1041 client_update_wmhints(client
);
1042 } else if (msgtype
== XA_WM_TRANSIENT_FOR
) {
1043 client_update_transient_for(client
);
1044 client_get_type(client
);
1045 /* type may have changed, so update the layer */
1046 client_calc_layer(client
);
1047 client_setup_decor_and_functions(client
);
1048 } else if (msgtype
== prop_atoms
.net_wm_name
||
1049 msgtype
== prop_atoms
.wm_name
||
1050 msgtype
== prop_atoms
.net_wm_icon_name
||
1051 msgtype
== prop_atoms
.wm_icon_name
) {
1052 client_update_title(client
);
1053 } else if (msgtype
== prop_atoms
.wm_class
) {
1054 client_update_class(client
);
1055 } else if (msgtype
== prop_atoms
.wm_protocols
) {
1056 client_update_protocols(client
);
1057 client_setup_decor_and_functions(client
);
1059 else if (msgtype
== prop_atoms
.net_wm_strut
) {
1060 client_update_strut(client
);
1062 else if (msgtype
== prop_atoms
.net_wm_icon
||
1063 msgtype
== prop_atoms
.kwm_win_icon
) {
1064 client_update_icons(client
);
1069 if (extensions_shape
&& e
->type
== extensions_shape_event_basep
) {
1070 client
->shaped
= ((XShapeEvent
*)e
)->shaped
;
1071 frame_adjust_shape(client
->frame
);
1077 static void event_handle_dock(ObDock
*s
, XEvent
*e
)
1081 stacking_raise(DOCK_AS_WINDOW(s
));
1092 static void event_handle_dockapp(ObDockApp
*app
, XEvent
*e
)
1096 dock_app_drag(app
, &e
->xmotion
);
1099 if (app
->ignore_unmaps
) {
1100 app
->ignore_unmaps
--;
1103 dock_remove(app
, TRUE
);
1106 dock_remove(app
, FALSE
);
1108 case ReparentNotify
:
1109 dock_remove(app
, FALSE
);
1111 case ConfigureNotify
:
1112 dock_app_configure(app
, e
->xconfigure
.width
, e
->xconfigure
.height
);
1117 ObMenuFrame
* find_active_menu()
1122 for (it
= menu_frame_visible
; it
; it
= g_list_next(it
)) {
1127 return it
? it
->data
: NULL
;
1130 static void event_handle_menu(XEvent
*ev
)
1133 ObMenuEntryFrame
*e
;
1137 if ((e
= menu_entry_frame_under(ev
->xbutton
.x_root
,
1138 ev
->xbutton
.y_root
)))
1139 menu_entry_frame_execute(e
, ev
->xbutton
.state
);
1140 else if (menu_can_hide
)
1141 menu_frame_hide_all();
1144 if ((f
= menu_frame_under(ev
->xmotion
.x_root
,
1145 ev
->xmotion
.y_root
))) {
1146 menu_frame_move_on_screen(f
);
1147 if ((e
= menu_entry_frame_under(ev
->xmotion
.x_root
,
1148 ev
->xmotion
.y_root
)))
1149 menu_frame_select(f
, e
);
1153 if (ev
->xkey
.keycode
== ob_keycode(OB_KEY_ESCAPE
))
1154 menu_frame_hide_all();
1155 else if (ev
->xkey
.keycode
== ob_keycode(OB_KEY_RETURN
)) {
1157 if ((f
= find_active_menu()))
1158 menu_entry_frame_execute(f
->selected
, ev
->xkey
.state
);
1159 } else if (ev
->xkey
.keycode
== ob_keycode(OB_KEY_LEFT
)) {
1161 if ((f
= find_active_menu()) && f
->parent
)
1162 menu_frame_select(f
, NULL
);
1163 } else if (ev
->xkey
.keycode
== ob_keycode(OB_KEY_RIGHT
)) {
1165 if ((f
= find_active_menu()) && f
->child
)
1166 menu_frame_select_next(f
->child
);
1167 } else if (ev
->xkey
.keycode
== ob_keycode(OB_KEY_UP
)) {
1169 if ((f
= find_active_menu()))
1170 menu_frame_select_previous(f
);
1171 } else if (ev
->xkey
.keycode
== ob_keycode(OB_KEY_DOWN
)) {
1173 if ((f
= find_active_menu()))
1174 menu_frame_select_next(f
);
1180 static gboolean
menu_hide_delay_func(gpointer data
)
1182 menu_can_hide
= TRUE
;
1183 return FALSE
; /* no repeat */
1186 static gboolean
focus_delay_func(gpointer data
)
1188 client_focus(focus_delay_client
);
1189 return FALSE
; /* no repeat */
1192 static void focus_delay_client_dest(gpointer data
)
1195 if (c
== focus_delay_client
) {
1196 ob_main_loop_timeout_remove_data(ob_main_loop
, focus_delay_func
,
1197 focus_delay_client
);
1198 focus_delay_client
= NULL
;