*** empty log message ***
[wmaker-crm.git] / src / event.c
blobe4a4f36bba1b8239ba0c414be160cfad764deddd
1 /* event.c- event loop and handling
2 *
3 * Window Maker window manager
4 *
5 * Copyright (c) 1997, 1998 Alfredo K. Kojima
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.
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.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
20 * USA.
24 #include "wconfig.h"
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <unistd.h>
30 #include <string.h>
32 #include <X11/Xlib.h>
33 #include <X11/Xutil.h>
34 #ifdef SHAPE
35 #include <X11/extensions/shape.h>
36 #endif
37 #ifdef XDE_DND
38 #include "xde.h"
39 #endif
41 #ifdef KEEP_XKB_LOCK_STATUS
42 #include <X11/XKBlib.h>
43 #endif /* KEEP_XKB_LOCK_STATUS */
45 #include "WindowMaker.h"
46 #include "window.h"
47 #include "actions.h"
48 #include "client.h"
49 #include "funcs.h"
50 #include "keybind.h"
51 #include "application.h"
52 #include "stacking.h"
53 #include "defaults.h"
54 #include "workspace.h"
55 #include "dock.h"
56 #include "framewin.h"
57 #include "properties.h"
58 #include "balloon.h"
59 #ifdef GNOME_STUFF
60 # include "gnome.h"
61 #endif
62 #ifdef KWM_HINTS
63 # include "kwm.h"
64 #endif
66 /******** Global Variables **********/
67 extern XContext wWinContext;
69 extern Cursor wCursor[WCUR_LAST];
71 extern WShortKey wKeyBindings[WKBD_LAST];
72 extern int wScreenCount;
73 extern Time LastTimestamp;
74 extern Time LastFocusChange;
76 extern WPreferences wPreferences;
78 #define MOD_MASK wPreferences.modifier_mask
80 extern Atom _XA_WM_COLORMAP_NOTIFY;
82 extern Atom _XA_WM_CHANGE_STATE;
83 extern Atom _XA_WM_DELETE_WINDOW;
84 extern Atom _XA_GNUSTEP_WM_MINIATURIZE_WINDOW;
85 extern Atom _XA_WINDOWMAKER_WM_FUNCTION;
86 extern Atom _XA_WINDOWMAKER_COMMAND;
88 #ifdef OFFIX_DND
89 extern Atom _XA_DND_PROTOCOL;
90 #endif
93 #ifdef SHAPE
94 extern Bool wShapeSupported;
95 extern int wShapeEventBase;
96 #endif
98 /* special flags */
99 extern char WDelayedActionSet;
102 /************ Local stuff ***********/
105 static void saveTimestamp(XEvent *event);
106 static void handleColormapNotify();
107 static void handleMapNotify(), handleUnmapNotify();
108 static void handleButtonPress(), handleExpose();
109 static void handleDestroyNotify();
110 static void handleConfigureRequest();
111 static void handleMapRequest();
112 static void handlePropertyNotify();
113 static void handleEnterNotify();
114 static void handleLeaveNotify();
115 static void handleExtensions();
116 static void handleClientMessage();
117 static void handleKeyPress();
118 static void handleFocusIn();
119 static void handleMotionNotify();
120 static void handleVisibilityNotify();
123 #ifdef SHAPE
124 static void handleShapeNotify();
125 #endif
127 /* called from the signal handler */
128 void NotifyDeadProcess(pid_t pid, unsigned char status);
130 /* real dead process handler */
131 static void handleDeadProcess(void *foo);
134 typedef struct DeadProcesses {
135 pid_t pid;
136 unsigned char exit_status;
137 } DeadProcesses;
139 /* stack of dead processes */
140 static DeadProcesses deadProcesses[MAX_DEAD_PROCESSES];
141 static int deadProcessPtr=0;
144 typedef struct DeathHandler {
145 WDeathHandler *callback;
146 pid_t pid;
147 struct DeathHandler *next;
148 void *client_data;
149 } DeathHandler;
151 static DeathHandler *deathHandler=NULL;
155 WMagicNumber
156 wAddDeathHandler(pid_t pid, WDeathHandler *callback, void *cdata)
158 DeathHandler *handler;
160 handler = malloc(sizeof(DeathHandler));
161 if (!handler)
162 return 0;
164 handler->pid = pid;
165 handler->callback = callback;
166 handler->client_data = cdata;
168 handler->next = deathHandler;
170 deathHandler = handler;
172 return handler;
177 void
178 wDeleteDeathHandler(WMagicNumber id)
180 DeathHandler *tmp, *handler=(DeathHandler*)id;
182 if (!handler || !deathHandler)
183 return;
185 tmp = deathHandler;
186 if (tmp==handler) {
187 deathHandler = handler->next;
188 free(handler);
189 } else {
190 while (tmp->next) {
191 if (tmp->next==handler) {
192 tmp->next=handler->next;
193 free(handler);
194 break;
196 tmp = tmp->next;
202 void
203 DispatchEvent(XEvent *event)
205 if (deathHandler)
206 handleDeadProcess(NULL);
208 if (WCHECK_STATE(WSTATE_NEED_EXIT)) {
209 WCHANGE_STATE(WSTATE_EXITING);
210 /* received SIGTERM */
212 * WMHandleEvent() can't be called from anything
213 * executed inside here, or we can get in a infinite
214 * recursive loop.
216 Shutdown(WSExitMode);
218 } else if (WCHECK_STATE(WSTATE_NEED_RESTART)) {
219 WCHANGE_STATE(WSTATE_RESTARTING);
221 Shutdown(WSRestartPreparationMode);
222 /* received SIGHUP */
223 Restart(NULL, True);
226 /* for the case that all that is wanted to be dispatched is
227 * the stuff above */
228 if (!event)
229 return;
231 saveTimestamp(event);
232 switch (event->type) {
233 case MapRequest:
234 handleMapRequest(event);
235 break;
237 case KeyPress:
238 handleKeyPress(event);
239 break;
241 case MotionNotify:
242 handleMotionNotify(event);
243 break;
245 case ConfigureRequest:
246 handleConfigureRequest(event);
247 break;
249 case DestroyNotify:
250 handleDestroyNotify(event);
251 break;
253 case MapNotify:
254 handleMapNotify(event);
255 break;
257 case UnmapNotify:
258 handleUnmapNotify(event);
259 break;
261 case ButtonPress:
262 handleButtonPress(event);
263 break;
265 case Expose:
266 handleExpose(event);
267 break;
269 case PropertyNotify:
270 handlePropertyNotify(event);
271 break;
273 case EnterNotify:
274 handleEnterNotify(event);
275 break;
277 case LeaveNotify:
278 handleLeaveNotify(event);
279 break;
281 case ClientMessage:
282 handleClientMessage(event);
283 break;
285 case ColormapNotify:
286 handleColormapNotify(event);
287 break;
289 case MappingNotify:
290 if (event->xmapping.request == MappingKeyboard
291 || event->xmapping.request == MappingModifier)
292 XRefreshKeyboardMapping(&event->xmapping);
293 break;
295 case FocusIn:
296 handleFocusIn(event);
297 break;
299 case VisibilityNotify:
300 handleVisibilityNotify(event);
301 break;
302 default:
303 handleExtensions(event);
304 break;
310 *----------------------------------------------------------------------
311 * EventLoop-
312 * Processes X and internal events indefinitely.
314 * Returns:
315 * Never returns
317 * Side effects:
318 * The LastTimestamp global variable is updated.
319 *----------------------------------------------------------------------
321 void
322 EventLoop()
324 XEvent event;
326 for(;;) {
327 WMNextEvent(dpy, &event);
328 WMHandleEvent(&event);
334 Bool
335 IsDoubleClick(WScreen *scr, XEvent *event)
337 if ((scr->last_click_time>0) &&
338 (event->xbutton.time-scr->last_click_time<=wPreferences.dblclick_time)
339 && (event->xbutton.button == scr->last_click_button)
340 && (event->xbutton.window == scr->last_click_window)) {
342 scr->flags.next_click_is_not_double = 1;
343 scr->last_click_time = 0;
344 scr->last_click_window = event->xbutton.window;
346 return True;
348 return False;
352 void
353 NotifyDeadProcess(pid_t pid, unsigned char status)
355 if (deadProcessPtr>=MAX_DEAD_PROCESSES-1) {
356 wwarning("stack overflow: too many dead processes");
357 return;
359 /* stack the process to be handled later,
360 * as this is called from the signal handler */
361 deadProcesses[deadProcessPtr].pid = pid;
362 deadProcesses[deadProcessPtr].exit_status = status;
363 deadProcessPtr++;
367 static void
368 handleDeadProcess(void *foo)
370 DeathHandler *tmp;
371 int i;
373 for (i=0; i<deadProcessPtr; i++) {
374 wWindowDeleteSavedStatesForPID(deadProcesses[i].pid);
377 if (!deathHandler) {
378 deadProcessPtr=0;
379 return;
382 /* get the pids on the queue and call handlers */
383 while (deadProcessPtr>0) {
384 deadProcessPtr--;
386 tmp = deathHandler;
387 while (tmp) {
388 DeathHandler *t;
390 t = tmp->next;
392 if (tmp->pid == deadProcesses[deadProcessPtr].pid) {
393 (*tmp->callback)(tmp->pid,
394 deadProcesses[deadProcessPtr].exit_status,
395 tmp->client_data);
396 wDeleteDeathHandler(tmp);
398 tmp = t;
404 static void
405 saveTimestamp(XEvent *event)
407 LastTimestamp = CurrentTime;
409 switch (event->type) {
410 case ButtonRelease:
411 case ButtonPress:
412 LastTimestamp = event->xbutton.time;
413 break;
414 case KeyPress:
415 case KeyRelease:
416 LastTimestamp = event->xkey.time;
417 break;
418 case MotionNotify:
419 LastTimestamp = event->xmotion.time;
420 break;
421 case PropertyNotify:
422 LastTimestamp = event->xproperty.time;
423 break;
424 case EnterNotify:
425 case LeaveNotify:
426 LastTimestamp = event->xcrossing.time;
427 break;
428 case SelectionClear:
429 LastTimestamp = event->xselectionclear.time;
430 break;
431 case SelectionRequest:
432 LastTimestamp = event->xselectionrequest.time;
433 break;
434 case SelectionNotify:
435 LastTimestamp = event->xselection.time;
436 break;
441 static void
442 handleExtensions(XEvent *event)
444 #ifdef SHAPE
445 if (wShapeSupported && event->type == (wShapeEventBase+ShapeNotify)) {
446 handleShapeNotify(event);
448 #endif
449 #ifdef KEEP_XKB_LOCK_STATUS
450 if (wPreferences.modelock && event->type == (0x50|XkbIndicatorStateNotify)){
451 /* if someone know how to call this 0x50
452 * or how to clean code this please tell ]d */
453 handleXkbIndicatorStateNotify(event);
455 #endif /*KEEP_XKB_LOCK_STATUS*/
459 static void
460 handleMapRequest(XEvent *ev)
462 WWindow *wwin;
463 WScreen *scr = NULL;
464 Window window = ev->xmaprequest.window;
466 #ifdef DEBUG
467 printf("got map request for %x\n", (unsigned)window);
468 #endif
470 if ((wwin = wWindowFor(window))) {
471 if (wwin->flags.shaded) {
472 wUnshadeWindow(wwin);
474 /* deiconify window */
475 if (wwin->flags.miniaturized) {
476 wDeiconifyWindow(wwin);
477 } else if (wwin->flags.hidden) {
478 WApplication *wapp = wApplicationOf(wwin->main_window);
479 /* go to the last workspace that the user worked on the app */
480 #ifndef REDUCE_APPICONS
481 /* This severely breaks REDUCE_APPICONS. last_workspace is a neat
482 * concept but it needs to be reworked to handle REDUCE_APPICONS -cls
484 if (wapp) {
485 wWorkspaceChange(wwin->screen_ptr, wapp->last_workspace);
487 #endif
488 wUnhideApplication(wapp, False, False);
490 return;
493 scr = wScreenForRootWindow(ev->xmaprequest.parent);
495 wwin = wManageWindow(scr, window);
498 * This is to let the Dock know that the application it launched
499 * has already been mapped (eg: it has finished launching).
500 * It is not necessary for normally docked apps, but is needed for
501 * apps that were forcedly docked (like with dockit).
503 if (scr->last_dock) {
504 if (wwin && wwin->main_window!=None && wwin->main_window!=window)
505 wDockTrackWindowLaunch(scr->last_dock, wwin->main_window);
506 else
507 wDockTrackWindowLaunch(scr->last_dock, window);
510 if (wwin) {
511 wClientSetState(wwin, NormalState, None);
512 if (wwin->flags.maximized) {
513 wMaximizeWindow(wwin, wwin->flags.maximized);
515 if (wwin->flags.shaded) {
516 wwin->flags.shaded = 0;
517 wwin->flags.skip_next_animation = 1;
518 wShadeWindow(wwin);
520 if (wwin->flags.miniaturized) {
521 wwin->flags.miniaturized = 0;
522 wwin->flags.skip_next_animation = 1;
523 wIconifyWindow(wwin);
525 if (wwin->flags.hidden) {
526 WApplication *wapp = wApplicationOf(wwin->main_window);
528 wwin->flags.hidden = 0;
529 wwin->flags.skip_next_animation = 1;
530 if (wapp) {
531 wHideApplication(wapp);
538 static void
539 handleDestroyNotify(XEvent *event)
541 WWindow *wwin;
542 WApplication *app;
543 Window window = event->xdestroywindow.window;
545 #ifdef DEBUG
546 puts("got destroy notify");
547 #endif
549 wwin = wWindowFor(window);
550 if (wwin) {
551 wUnmanageWindow(wwin, False, True);
554 app = wApplicationOf(window);
555 if (app) {
556 if (window == app->main_window) {
557 app->refcount = 0;
558 wwin = app->main_window_desc->screen_ptr->focused_window;
559 while (wwin) {
560 if (wwin->main_window == window) {
561 wwin->main_window = None;
563 wwin = wwin->prev;
566 wApplicationDestroy(app);
569 #ifdef KWM_HINTS
570 wKWMCheckDestroy(&event->xdestroywindow);
571 #endif
576 static void
577 handleExpose(XEvent *event)
579 WObjDescriptor *desc;
580 XEvent ev;
582 #ifdef DEBUG
583 puts("got expose");
584 #endif
586 while (XCheckTypedWindowEvent(dpy, event->xexpose.window, Expose, &ev));
588 if (XFindContext(dpy, event->xexpose.window, wWinContext,
589 (XPointer *)&desc)==XCNOENT) {
590 return;
593 if (desc->handle_expose) {
594 (*desc->handle_expose)(desc, event);
599 /* bindable */
600 static void
601 handleButtonPress(XEvent *event)
603 WObjDescriptor *desc;
604 WScreen *scr;
606 #ifdef DEBUG
607 puts("got button press");
608 #endif
610 scr = wScreenForRootWindow(event->xbutton.root);
612 #ifdef BALLOON_TEXT
613 wBalloonHide(scr);
614 #endif
617 #ifndef LITE
618 if (event->xbutton.window==scr->root_win) {
620 #ifdef GNOME_STUFF
621 if (wGNOMEProxyizeButtonEvent(scr, event))
622 return;
623 #endif
625 if (event->xbutton.button==wPreferences.menu_button) {
626 OpenRootMenu(scr, event->xbutton.x_root,
627 event->xbutton.y_root, False);
628 /* ugly hack */
629 if (scr->root_menu) {
630 if (scr->root_menu->brother->flags.mapped)
631 event->xbutton.window = scr->root_menu->brother->frame->core->window;
632 else
633 event->xbutton.window = scr->root_menu->frame->core->window;
635 } else if (event->xbutton.button==wPreferences.windowl_button) {
636 OpenSwitchMenu(scr, event->xbutton.x_root,
637 event->xbutton.y_root, False);
638 if (scr->switch_menu) {
639 if (scr->switch_menu->brother->flags.mapped)
640 event->xbutton.window = scr->switch_menu->brother->frame->core->window;
641 else
642 event->xbutton.window = scr->switch_menu->frame->core->window;
644 } else if (event->xbutton.button==wPreferences.select_button) {
645 wUnselectWindows(scr);
646 wSelectWindows(scr, event);
648 #ifdef MOUSE_WS_SWITCH
649 else if (event->xbutton.button==Button5) {
651 wWorkspaceRelativeChange(scr, -1);
653 } else if (event->xbutton.button==Button4) {
655 wWorkspaceRelativeChange(scr, 1);
658 #endif /* MOUSE_WS_SWITCH */
660 #endif /* !LITE */
662 if (XFindContext(dpy, event->xbutton.subwindow, wWinContext,
663 (XPointer *)&desc)==XCNOENT) {
664 if (XFindContext(dpy, event->xbutton.window, wWinContext,
665 (XPointer *)&desc)==XCNOENT) {
666 return;
670 if (desc->handle_mousedown!=NULL) {
671 (*desc->handle_mousedown)(desc, event);
674 if (desc->parent_type == WCLASS_WINDOW) {
675 XSync(dpy, 0);
677 if (event->xbutton.state & MOD_MASK) {
678 XAllowEvents(dpy, AsyncPointer, CurrentTime);
681 if (wPreferences.focus_mode == WKF_CLICK) {
682 if (wPreferences.ignore_focus_click) {
683 XAllowEvents(dpy, AsyncPointer, CurrentTime);
685 XAllowEvents(dpy, ReplayPointer, CurrentTime);
687 XSync(dpy, 0);
688 } else if (desc->parent_type == WCLASS_APPICON
689 || desc->parent_type == WCLASS_MINIWINDOW
690 || desc->parent_type == WCLASS_DOCK_ICON) {
691 if (event->xbutton.state & MOD_MASK) {
692 XSync(dpy, 0);
693 XAllowEvents(dpy, AsyncPointer, CurrentTime);
694 XSync(dpy, 0);
698 /* save double-click information */
699 if (scr->flags.next_click_is_not_double) {
700 scr->flags.next_click_is_not_double = 0;
701 } else {
702 scr->last_click_time = event->xbutton.time;
703 scr->last_click_button = event->xbutton.button;
704 scr->last_click_window = event->xbutton.window;
709 static void
710 handleMapNotify(XEvent *event)
712 WWindow *wwin;
714 #ifdef DEBUG
715 puts("got map");
716 #endif
718 wwin = wWindowFor(event->xmap.event);
719 if (wwin && wwin->client_win == event->xmap.event) {
720 if (wwin->flags.miniaturized) {
721 wDeiconifyWindow(wwin);
722 } else {
723 XGrabServer(dpy);
724 wWindowMap(wwin);
725 wClientSetState(wwin, NormalState, None);
726 XUngrabServer(dpy);
732 static void
733 handleUnmapNotify(XEvent *event)
735 WWindow *wwin;
736 XEvent ev;
737 Bool withdraw = False;
739 #ifdef DEBUG
740 puts("got unmap");
741 #endif
743 /* only process windows with StructureNotify selected
744 * (ignore SubstructureNotify) */
745 wwin = wWindowFor(event->xunmap.window);
746 if (!wwin)
747 return;
749 /* whether the event is a Withdrawal request */
750 if (event->xunmap.event == wwin->screen_ptr->root_win
751 && event->xunmap.send_event)
752 withdraw = True;
754 if (wwin->client_win != event->xunmap.event && !withdraw)
755 return;
757 if (!wwin->flags.mapped && !withdraw
758 && wwin->frame->workspace == wwin->screen_ptr->current_workspace
759 && !wwin->flags.miniaturized && !wwin->flags.hidden)
760 return;
762 XGrabServer(dpy);
763 XUnmapWindow(dpy, wwin->frame->core->window);
764 wwin->flags.mapped = 0;
765 XSync(dpy, 0);
766 /* check if the window was destroyed */
767 if (XCheckTypedWindowEvent(dpy, wwin->client_win, DestroyNotify,&ev)) {
768 DispatchEvent(&ev);
769 } else {
770 Bool reparented = False;
772 if (XCheckTypedWindowEvent(dpy, wwin->client_win, ReparentNotify, &ev))
773 reparented = True;
775 /* withdraw window */
776 wwin->flags.mapped = 0;
777 if (!reparented)
778 wClientSetState(wwin, WithdrawnState, None);
780 /* if the window was reparented, do not reparent it back to the
781 * root window */
782 wUnmanageWindow(wwin, !reparented, False);
784 XUngrabServer(dpy);
788 static void
789 handleConfigureRequest(XEvent *event)
791 WWindow *wwin;
793 #ifdef DEBUG
794 puts("got configure request");
795 #endif
796 if (!(wwin=wWindowFor(event->xconfigurerequest.window))) {
798 * Configure request for unmapped window
800 wClientConfigure(NULL, &(event->xconfigurerequest));
801 } else {
802 wClientConfigure(wwin, &(event->xconfigurerequest));
807 static void
808 handlePropertyNotify(XEvent *event)
810 WWindow *wwin;
811 WApplication *wapp;
812 Window jr;
813 int ji;
814 unsigned int ju;
815 WScreen *scr;
817 #ifdef DEBUG
818 puts("got property notify");
819 #endif
820 if ((wwin=wWindowFor(event->xproperty.window))) {
821 if (!XGetGeometry(dpy, wwin->client_win, &jr, &ji, &ji,
822 &ju, &ju, &ju, &ju)) {
823 return;
825 wClientCheckProperty(wwin, &event->xproperty);
827 wapp = wApplicationOf(event->xproperty.window);
828 if (wapp) {
829 wClientCheckProperty(wapp->main_window_desc, &event->xproperty);
832 scr = wScreenForWindow(event->xproperty.window);
833 if (scr && scr->root_win == event->xproperty.window) {
834 #ifdef KWM_HINTS
835 wKWMCheckRootHintChange(scr, &event->xproperty);
836 #endif
841 static void
842 handleClientMessage(XEvent *event)
844 WWindow *wwin;
845 WObjDescriptor *desc;
847 #ifdef DEBUG
848 puts("got client message");
849 #endif
850 /* handle transition from Normal to Iconic state */
851 if (event->xclient.message_type == _XA_WM_CHANGE_STATE
852 && event->xclient.format == 32
853 && event->xclient.data.l[0] == IconicState) {
855 wwin = wWindowFor(event->xclient.window);
856 if (!wwin) return;
857 if (!wwin->flags.miniaturized)
858 wIconifyWindow(wwin);
859 } else if (event->xclient.message_type == _XA_WM_COLORMAP_NOTIFY
860 && event->xclient.format == 32) {
861 WScreen *scr = wScreenSearchForRootWindow(event->xclient.window);
863 if (!scr)
864 return;
866 if (event->xclient.data.l[1] == 1) { /* starting */
867 wColormapAllowClientInstallation(scr, True);
868 } else { /* stopping */
869 wColormapAllowClientInstallation(scr, False);
871 } else if (event->xclient.message_type == _XA_WINDOWMAKER_COMMAND) {
873 wDefaultsCheckDomains("bla");
875 } else if (event->xclient.message_type == _XA_WINDOWMAKER_WM_FUNCTION) {
876 WApplication *wapp;
877 int done=0;
878 wapp = wApplicationOf(event->xclient.window);
879 if (wapp) {
880 switch (event->xclient.data.l[0]) {
881 case WMFHideOtherApplications:
882 wHideOtherApplications(wapp->main_window_desc);
883 done = 1;
884 break;
886 case WMFHideApplication:
887 wHideApplication(wapp);
888 done = 1;
889 break;
892 if (!done) {
893 wwin = wWindowFor(event->xclient.window);
894 if (wwin) {
895 switch (event->xclient.data.l[0]) {
896 case WMFHideOtherApplications:
897 wHideOtherApplications(wwin);
898 break;
900 case WMFHideApplication:
901 wHideApplication(wApplicationOf(wwin->main_window));
902 break;
906 #ifdef GNOME_STUFF
907 } else if (wGNOMEProcessClientMessage(&event->xclient)) {
908 /* do nothing */
909 #endif /* GNOME_STUFF */
910 #ifdef KWM_HINTS
911 } else if (wKWMProcessClientMessage(&event->xclient)) {
912 /* do nothing */
913 #endif /* KWM_HINTS */
914 #ifdef XDE_DND
915 } else if (wXDEProcessClientMessage(&event->xclient)) {
916 /* do nothing */
917 #endif /* XDE_DND */
918 #ifdef OFFIX_DND
919 } else if (event->xclient.message_type==_XA_DND_PROTOCOL) {
920 WScreen *scr = wScreenForWindow(event->xclient.window);
921 if (scr && wDockReceiveDNDDrop(scr,event))
922 goto redirect_message;
923 #endif /* OFFIX_DND */
924 } else {
925 #ifdef OFFIX_DND
926 redirect_message:
927 #endif
929 * Non-standard thing, but needed by OffiX DND.
930 * For when the icon frame gets a ClientMessage
931 * that should have gone to the icon_window.
933 if (XFindContext(dpy, event->xbutton.window, wWinContext,
934 (XPointer *)&desc)!=XCNOENT) {
935 struct WIcon *icon=NULL;
937 if (desc->parent_type == WCLASS_MINIWINDOW) {
938 icon = (WIcon*)desc->parent;
939 } else if (desc->parent_type == WCLASS_DOCK_ICON
940 || desc->parent_type == WCLASS_APPICON) {
941 icon = ((WAppIcon*)desc->parent)->icon;
943 if (icon && (wwin=icon->owner)) {
944 if (wwin->client_win!=event->xclient.window) {
945 event->xclient.window = wwin->client_win;
946 XSendEvent(dpy, wwin->client_win, False, NoEventMask,
947 event);
955 static void
956 raiseWindow(WScreen *scr)
958 WWindow *wwin;
960 scr->autoRaiseTimer = NULL;
962 wwin = wWindowFor(scr->autoRaiseWindow);
963 if (!wwin)
964 return;
966 if (!wwin->flags.destroyed) {
967 wRaiseFrame(wwin->frame->core);
968 /* this is needed or a race condition will occur */
969 XSync(dpy, False);
974 static void
975 handleEnterNotify(XEvent *event)
977 WWindow *wwin;
978 WObjDescriptor *desc = NULL;
979 XEvent ev;
980 WScreen *scr = wScreenForRootWindow(event->xcrossing.root);
983 #ifdef DEBUG
984 puts("got enter notify");
985 #endif
987 if (XCheckTypedWindowEvent(dpy, event->xcrossing.window, LeaveNotify,
988 &ev)) {
989 /* already left the window... */
990 saveTimestamp(&ev);
991 if (ev.xcrossing.mode==event->xcrossing.mode
992 && ev.xcrossing.detail==event->xcrossing.detail) {
993 return;
997 if (XFindContext(dpy, event->xcrossing.window, wWinContext,
998 (XPointer *)&desc)!=XCNOENT) {
999 if(desc->handle_enternotify)
1000 (*desc->handle_enternotify)(desc, event);
1003 /* enter to window */
1004 wwin = wWindowFor(event->xcrossing.window);
1005 if (!wwin) {
1006 if (wPreferences.focus_mode==WKF_POINTER
1007 && event->xcrossing.window==event->xcrossing.root) {
1008 wSetFocusTo(scr, NULL);
1010 if (wPreferences.colormap_mode==WKF_POINTER) {
1011 wColormapInstallForWindow(scr, NULL);
1013 if (scr->autoRaiseTimer
1014 && event->xcrossing.root==event->xcrossing.window) {
1015 WMDeleteTimerHandler(scr->autoRaiseTimer);
1016 scr->autoRaiseTimer = NULL;
1018 } else {
1019 /* set auto raise timer even if in focus-follows-mouse mode
1020 * and the event is for the frame window, even if the window
1021 * has focus already. useful if you move the pointer from a focused
1022 * window to the root window and back pretty fast
1024 * set focus if in focus-follows-mouse mode and the event
1025 * is for the frame window and window doesn't have focus yet */
1026 if ((wPreferences.focus_mode==WKF_POINTER
1027 || wPreferences.focus_mode==WKF_SLOPPY)
1028 && wwin->frame->core->window==event->xcrossing.window
1029 && !scr->flags.doing_alt_tab) {
1031 if (!wwin->flags.focused)
1032 wSetFocusTo(scr, wwin);
1034 if (scr->autoRaiseTimer)
1035 WMDeleteTimerHandler(scr->autoRaiseTimer);
1036 scr->autoRaiseTimer = NULL;
1038 if (wPreferences.raise_delay && !WFLAGP(wwin, no_focusable)) {
1039 scr->autoRaiseWindow = wwin->frame->core->window;
1040 scr->autoRaiseTimer
1041 = WMAddTimerHandler(wPreferences.raise_delay,
1042 (WMCallback*)raiseWindow, scr);
1045 /* Install colormap for window, if the colormap installation mode
1046 * is colormap_follows_mouse */
1047 if (wPreferences.colormap_mode==WKF_POINTER) {
1048 if (wwin->client_win==event->xcrossing.window)
1049 wColormapInstallForWindow(scr, wwin);
1050 else
1051 wColormapInstallForWindow(scr, NULL);
1055 /* a little kluge to hide the clip balloon */
1056 if (!wPreferences.flags.noclip && scr->flags.clip_balloon_mapped) {
1057 if (!desc) {
1058 XUnmapWindow(dpy, scr->clip_balloon);
1059 scr->flags.clip_balloon_mapped = 0;
1060 } else {
1061 if (desc->parent_type!=WCLASS_DOCK_ICON
1062 || scr->clip_icon != desc->parent) {
1063 XUnmapWindow(dpy, scr->clip_balloon);
1064 scr->flags.clip_balloon_mapped = 0;
1069 if (event->xcrossing.window == event->xcrossing.root
1070 && event->xcrossing.detail == NotifyNormal
1071 && event->xcrossing.detail != NotifyInferior
1072 && wPreferences.focus_mode != WKF_CLICK) {
1074 wSetFocusTo(scr, scr->focused_window);
1077 #ifdef BALLOON_TEXT
1078 wBalloonEnteredObject(scr, desc);
1079 #endif
1083 static void
1084 handleLeaveNotify(XEvent *event)
1086 WObjDescriptor *desc = NULL;
1088 if (XFindContext(dpy, event->xcrossing.window, wWinContext,
1089 (XPointer *)&desc)!=XCNOENT) {
1090 if(desc->handle_leavenotify)
1091 (*desc->handle_leavenotify)(desc, event);
1093 if (event->xcrossing.window == event->xcrossing.root
1094 && event->xcrossing.mode == NotifyNormal
1095 && event->xcrossing.detail != NotifyInferior
1096 && wPreferences.focus_mode != WKF_CLICK) {
1098 WScreen *scr = wScreenForRootWindow(event->xcrossing.root);
1100 wSetFocusTo(scr, NULL);
1105 #ifdef SHAPE
1106 static void
1107 handleShapeNotify(XEvent *event)
1109 XShapeEvent *shev = (XShapeEvent*)event;
1110 WWindow *wwin;
1111 XEvent ev;
1113 #ifdef DEBUG
1114 puts("got shape notify");
1115 #endif
1117 while (XCheckTypedWindowEvent(dpy, shev->window, event->type, &ev)) {
1118 XShapeEvent *sev = (XShapeEvent*)&ev;
1120 if (sev->kind == ShapeBounding) {
1121 if (sev->shaped == shev->shaped) {
1122 *shev = *sev;
1123 } else {
1124 XPutBackEvent(dpy, &ev);
1125 break;
1130 wwin = wWindowFor(shev->window);
1131 if (!wwin || shev->kind != ShapeBounding)
1132 return;
1134 if (!shev->shaped && wwin->flags.shaped) {
1136 wwin->flags.shaped = 0;
1137 wWindowClearShape(wwin);
1139 } else if (shev->shaped) {
1141 wwin->flags.shaped = 1;
1142 wWindowSetShape(wwin);
1145 #endif /* SHAPE */
1147 #ifdef KEEP_XKB_LOCK_STATUS
1148 /* please help ]d if you know what to do */
1149 handleXkbIndicatorStateNotify(XEvent *event)
1151 WWindow *wwin;
1152 WScreen *scr;
1153 XkbStateRec staterec;
1154 int i;
1156 XkbGetState(dpy,XkbUseCoreKbd,&staterec);
1157 for (i=0; i<wScreenCount; i++) {
1158 scr = wScreenWithNumber(i);
1159 wwin = scr->focused_window;
1160 if (wwin->flags.focused) {
1161 wwin->frame->languagemode=staterec.compat_state&32?1:0;
1162 #ifdef XKB_TITLE_HINT
1163 if (wwin->frame->titlebar) {
1164 XClearWindow(dpy, wwin->frame->titlebar->window);
1165 wFrameWindowPaint(wwin->frame);
1167 #endif /* XKB_TITLE_HINT */
1171 #endif /*KEEP_XKB_LOCK_STATUS*/
1173 static void
1174 handleColormapNotify(XEvent *event)
1176 WWindow *wwin;
1177 WScreen *scr;
1178 Bool reinstall = False;
1180 wwin = wWindowFor(event->xcolormap.window);
1181 if (!wwin)
1182 return;
1184 scr = wwin->screen_ptr;
1186 do {
1187 if (wwin) {
1188 if (event->xcolormap.new) {
1189 XWindowAttributes attr;
1191 XGetWindowAttributes(dpy, wwin->client_win, &attr);
1193 if (wwin == scr->cmap_window && wwin->cmap_window_no == 0)
1194 scr->current_colormap = attr.colormap;
1196 reinstall = True;
1197 } else if (event->xcolormap.state == ColormapUninstalled &&
1198 scr->current_colormap == event->xcolormap.colormap) {
1200 /* some bastard app (like XV) removed our colormap */
1202 * can't enforce or things like xscreensaver wont work
1203 * reinstall = True;
1205 } else if (event->xcolormap.state == ColormapInstalled &&
1206 scr->current_colormap == event->xcolormap.colormap) {
1208 /* someone has put our colormap back */
1209 reinstall = False;
1212 } while (XCheckTypedEvent(dpy, ColormapNotify, event)
1213 && ((wwin = wWindowFor(event->xcolormap.window)) || 1));
1215 if (reinstall && scr->current_colormap!=None) {
1216 if (!scr->flags.colormap_stuff_blocked)
1217 XInstallColormap(dpy, scr->current_colormap);
1223 static void
1224 handleFocusIn(XEvent *event)
1226 WWindow *wwin;
1229 * For applications that like stealing the focus.
1231 while (XCheckTypedEvent(dpy, FocusIn, event));
1232 saveTimestamp(event);
1233 if (event->xfocus.mode == NotifyUngrab
1234 || event->xfocus.mode == NotifyGrab
1235 || event->xfocus.detail > NotifyNonlinearVirtual) {
1236 return;
1239 wwin = wWindowFor(event->xfocus.window);
1240 if (wwin && !wwin->flags.focused) {
1241 if (wwin->flags.mapped)
1242 wSetFocusTo(wwin->screen_ptr, wwin);
1243 else
1244 wSetFocusTo(wwin->screen_ptr, NULL);
1245 } else if (!wwin) {
1246 WScreen *scr = wScreenForWindow(event->xfocus.window);
1247 if (scr)
1248 wSetFocusTo(scr, NULL);
1253 static WWindow*
1254 windowUnderPointer(WScreen *scr)
1256 unsigned int mask;
1257 int foo;
1258 Window bar, win;
1260 if (XQueryPointer(dpy, scr->root_win, &bar, &win, &foo, &foo, &foo, &foo,
1261 &mask))
1262 return wWindowFor(win);
1263 return NULL;
1266 #ifdef WEENDOZE_CYCLE
1268 static WWindow*
1269 nextToFocusAfter(WWindow *wwin)
1271 WWindow *tmp = wwin->prev;
1273 while (tmp) {
1274 if (wWindowCanReceiveFocus(tmp) && !WFLAGP(tmp, skip_window_list)) {
1276 return tmp;
1278 tmp = tmp->prev;
1281 tmp = wwin;
1282 /* start over from the beginning of the list */
1283 while (tmp->next)
1284 tmp = tmp->next;
1286 while (tmp && tmp != wwin) {
1287 if (wWindowCanReceiveFocus(tmp) && !WFLAGP(tmp, skip_window_list)) {
1289 return tmp;
1291 tmp = tmp->prev;
1294 return wwin;
1298 static WWindow*
1299 nextToFocusBefore(WWindow *wwin)
1301 WWindow *tmp = wwin->next;
1303 while (tmp) {
1304 if (wWindowCanReceiveFocus(tmp) && !WFLAGP(tmp, skip_window_list)) {
1306 return tmp;
1308 tmp = tmp->next;
1311 /* start over from the beginning of the list */
1312 tmp = wwin;
1313 while (tmp->prev)
1314 tmp = tmp->prev;
1316 while (tmp && tmp != wwin) {
1317 if (wWindowCanReceiveFocus(tmp) && !WFLAGP(tmp, skip_window_list)) {
1319 return tmp;
1321 tmp = tmp->next;
1324 return wwin;
1327 static void
1328 doWindozeCycle(WWindow *wwin, XEvent *event, Bool next)
1330 WScreen *scr = wScreenForRootWindow(event->xkey.root);
1331 Bool done = False;
1332 Bool openedSwitchMenu = False;
1333 WWindow *newFocused;
1334 WWindow *oldFocused;
1335 int modifiers;
1336 XModifierKeymap *keymap;
1338 if (!wwin)
1339 return;
1341 /* puts("IN");*/
1342 keymap = XGetModifierMapping(dpy);
1345 XGrabKeyboard(dpy, scr->root_win, False, GrabModeAsync, GrabModeAsync,
1346 CurrentTime);
1348 if (next) {
1349 newFocused = nextToFocusAfter(wwin);
1350 } else {
1351 newFocused = nextToFocusBefore(wwin);
1354 scr->flags.doing_alt_tab = 1;
1356 wWindowFocus(newFocused, scr->focused_window);
1357 oldFocused = newFocused;
1358 if (wPreferences.circ_raise)
1359 wRaiseFrame(newFocused->frame->core);
1361 if (wPreferences.popup_switchmenu &&
1362 (!scr->switch_menu || !scr->switch_menu->flags.mapped)) {
1364 OpenSwitchMenu(scr, scr->scr_width/2, scr->scr_height/2, False);
1365 openedSwitchMenu = True;
1368 while (!done) {
1369 XEvent ev;
1371 WMMaskEvent(dpy,KeyPressMask|KeyReleaseMask|ExposureMask, &ev);
1372 /* WMNextEvent(dpy, &ev);*/
1373 if (ev.type != KeyRelease && ev.type != KeyPress) {
1374 WMHandleEvent(&ev);
1375 continue;
1377 /*puts("EV");*/
1378 /* ignore CapsLock */
1379 modifiers = ev.xkey.state & ValidModMask;
1381 if (ev.type == KeyPress
1382 && wKeyBindings[WKBD_FOCUSNEXT].keycode == ev.xkey.keycode
1383 && wKeyBindings[WKBD_FOCUSNEXT].modifier == modifiers) {
1385 UpdateSwitchMenu(scr, newFocused, ACTION_CHANGE_STATE);
1386 newFocused = nextToFocusAfter(newFocused);
1387 wWindowFocus(newFocused, oldFocused);
1388 oldFocused = newFocused;
1389 if (wPreferences.circ_raise)
1390 wRaiseFrame(newFocused->frame->core);
1391 UpdateSwitchMenu(scr, newFocused, ACTION_CHANGE_STATE);
1393 } else if (ev.type == KeyPress
1394 && wKeyBindings[WKBD_FOCUSPREV].keycode == ev.xkey.keycode
1395 && wKeyBindings[WKBD_FOCUSPREV].modifier == modifiers) {
1397 UpdateSwitchMenu(scr, newFocused, ACTION_CHANGE_STATE);
1398 newFocused = nextToFocusBefore(newFocused);
1399 wWindowFocus(newFocused, oldFocused);
1400 oldFocused = newFocused;
1401 if (wPreferences.circ_raise)
1402 wRaiseFrame(newFocused->frame->core);
1403 UpdateSwitchMenu(scr, newFocused, ACTION_CHANGE_STATE);
1405 if (ev.type == KeyRelease) {
1406 int i;
1408 for (i = 0; i <= 8 * keymap->max_keypermod; i++) {
1409 if (keymap->modifiermap[i] == ev.xkey.keycode &&
1410 wKeyBindings[WKBD_FOCUSNEXT].modifier
1411 & 1<<(i/keymap->max_keypermod)) {
1412 done = True;
1413 break;
1418 /*puts("OUT");*/
1419 XFree(keymap);
1421 XUngrabKeyboard(dpy, CurrentTime);
1422 wSetFocusTo(scr, newFocused);
1423 scr->flags.doing_alt_tab = 0;
1424 if (openedSwitchMenu)
1425 OpenSwitchMenu(scr, scr->scr_width/2, scr->scr_height/2, False);
1429 #endif /* WEENDOZE_CYCLE */
1434 static void
1435 handleKeyPress(XEvent *event)
1437 WScreen *scr = wScreenForRootWindow(event->xkey.root);
1438 WWindow *wwin = scr->focused_window;
1439 int i;
1440 int modifiers;
1441 int command=-1;
1442 #ifdef KEEP_XKB_LOCK_STATUS
1443 XkbStateRec staterec;
1444 #endif /*KEEP_XKB_LOCK_STATUS*/
1446 /* ignore CapsLock */
1447 modifiers = event->xkey.state & ValidModMask;
1449 for (i=0; i<WKBD_LAST; i++) {
1450 if (wKeyBindings[i].keycode==0)
1451 continue;
1453 if (wKeyBindings[i].keycode==event->xkey.keycode
1454 && (/*wKeyBindings[i].modifier==0
1455 ||*/ wKeyBindings[i].modifier==modifiers)) {
1456 command = i;
1457 break;
1461 if (command < 0) {
1462 #ifdef LITE
1464 #if 0
1466 #endif
1467 #else
1468 if (!wRootMenuPerformShortcut(event)) {
1469 #endif
1470 static int dontLoop = 0;
1472 if (dontLoop > 10) {
1473 wwarning("problem with key event processing code");
1474 return;
1476 dontLoop++;
1477 /* if the focused window is an internal window, try redispatching
1478 * the event to the managed window, as it can be a WINGs window */
1479 if (wwin && wwin->flags.internal_window
1480 && wwin->client_leader!=None) {
1481 /* client_leader contains the WINGs toplevel */
1482 event->xany.window = wwin->client_leader;
1483 WMHandleEvent(event);
1485 dontLoop--;
1487 return;
1490 #define ISMAPPED(w) ((w) && !(w)->flags.miniaturized && ((w)->flags.mapped || (w)->flags.shaded))
1491 #define ISFOCUSED(w) ((w) && (w)->flags.focused)
1493 switch (command) {
1494 #ifndef LITE
1495 case WKBD_ROOTMENU:
1496 OpenRootMenu(scr, event->xkey.x_root, event->xkey.y_root, True);
1497 break;
1498 case WKBD_WINDOWLIST:
1499 OpenSwitchMenu(scr, event->xkey.x_root, event->xkey.y_root, True);
1500 break;
1501 #endif /* !LITE */
1502 case WKBD_WINDOWMENU:
1503 if (ISMAPPED(wwin) && ISFOCUSED(wwin))
1504 OpenWindowMenu(wwin, wwin->frame_x,
1505 wwin->frame_y+wwin->frame->top_width, True);
1506 break;
1507 case WKBD_MINIATURIZE:
1508 if (ISMAPPED(wwin) && ISFOCUSED(wwin)
1509 && !WFLAGP(wwin, no_miniaturizable)) {
1510 CloseWindowMenu(scr);
1512 if (wwin->protocols.MINIATURIZE_WINDOW)
1513 wClientSendProtocol(wwin, _XA_GNUSTEP_WM_MINIATURIZE_WINDOW,
1514 event->xbutton.time);
1515 else {
1516 wIconifyWindow(wwin);
1519 break;
1520 case WKBD_HIDE:
1521 if (ISMAPPED(wwin) && ISFOCUSED(wwin)) {
1522 WApplication *wapp = wApplicationOf(wwin->main_window);
1523 CloseWindowMenu(scr);
1525 if (wapp && !WFLAGP(wapp->main_window_desc, no_appicon)) {
1526 wHideApplication(wapp);
1529 break;
1530 case WKBD_MAXIMIZE:
1531 if (ISMAPPED(wwin) && ISFOCUSED(wwin) && !WFLAGP(wwin, no_resizable)) {
1532 CloseWindowMenu(scr);
1534 if (wwin->flags.maximized) {
1535 wUnmaximizeWindow(wwin);
1536 } else {
1537 wMaximizeWindow(wwin, MAX_VERTICAL|MAX_HORIZONTAL);
1540 break;
1541 case WKBD_VMAXIMIZE:
1542 if (ISMAPPED(wwin) && ISFOCUSED(wwin) && !WFLAGP(wwin, no_resizable)) {
1543 CloseWindowMenu(scr);
1545 if (wwin->flags.maximized) {
1546 wUnmaximizeWindow(wwin);
1547 } else {
1548 wMaximizeWindow(wwin, MAX_VERTICAL);
1551 break;
1552 case WKBD_RAISE:
1553 if (ISMAPPED(wwin) && ISFOCUSED(wwin)) {
1554 CloseWindowMenu(scr);
1556 wRaiseFrame(wwin->frame->core);
1558 break;
1559 case WKBD_LOWER:
1560 if (ISMAPPED(wwin) && ISFOCUSED(wwin)) {
1561 CloseWindowMenu(scr);
1563 wLowerFrame(wwin->frame->core);
1565 break;
1566 case WKBD_RAISELOWER:
1567 /* raise or lower the window under the pointer, not the
1568 * focused one
1570 wwin = windowUnderPointer(scr);
1571 if (wwin)
1572 wRaiseLowerFrame(wwin->frame->core);
1573 break;
1574 case WKBD_SHADE:
1575 if (ISMAPPED(wwin) && ISFOCUSED(wwin) && !WFLAGP(wwin, no_shadeable)) {
1576 if (wwin->flags.shaded)
1577 wUnshadeWindow(wwin);
1578 else
1579 wShadeWindow(wwin);
1581 break;
1582 case WKBD_MOVERESIZE:
1583 if (ISMAPPED(wwin) && ISFOCUSED(wwin)) {
1584 CloseWindowMenu(scr);
1586 wKeyboardMoveResizeWindow(wwin);
1588 break;
1589 case WKBD_CLOSE:
1590 if (ISMAPPED(wwin) && ISFOCUSED(wwin) && !WFLAGP(wwin, no_closable)) {
1591 CloseWindowMenu(scr);
1592 if (wwin->protocols.DELETE_WINDOW)
1593 wClientSendProtocol(wwin, _XA_WM_DELETE_WINDOW,
1594 event->xkey.time);
1596 break;
1597 case WKBD_SELECT:
1598 if (ISMAPPED(wwin) && ISFOCUSED(wwin)) {
1599 wSelectWindow(wwin, !wwin->flags.selected);
1601 break;
1602 case WKBD_FOCUSNEXT:
1603 #ifdef WEENDOZE_CYCLE
1604 if (wPreferences.windoze_cycling) {
1605 doWindozeCycle(wwin, event, True);
1606 } else
1607 #endif /* WEENDOZE_CYCLE */
1609 wwin = NextFocusWindow(scr);
1610 if (wwin != NULL) {
1611 wSetFocusTo(scr, wwin);
1612 if (wPreferences.circ_raise)
1613 wRaiseFrame(wwin->frame->core);
1616 break;
1618 case WKBD_FOCUSPREV:
1619 #ifdef WEENDOZE_CYCLE
1620 if (wPreferences.windoze_cycling) {
1621 doWindozeCycle(wwin, event, False);
1622 } else
1623 #endif /* WEENDOZE_CYCLE */
1625 wwin = PrevFocusWindow(scr);
1626 if (wwin != NULL) {
1627 wSetFocusTo(scr, wwin);
1628 if (wPreferences.circ_raise)
1629 wRaiseFrame(wwin->frame->core);
1632 break;
1634 #if (defined(__STDC__) && !defined(UNIXCPP)) || defined(ANSICPP)
1635 #define GOTOWORKS(wk) case WKBD_WORKSPACE##wk:\
1636 i = (scr->current_workspace/10)*10 + wk - 1;\
1637 if (wPreferences.ws_advance || i<scr->workspace_count)\
1638 wWorkspaceChange(scr, i);\
1639 break
1640 #else
1641 #define GOTOWORKS(wk) case WKBD_WORKSPACE/**/wk:\
1642 i = (scr->current_workspace/10)*10 + wk - 1;\
1643 if (wPreferences.ws_advance || i<scr->workspace_count)\
1644 wWorkspaceChange(scr, i);\
1645 break
1646 #endif
1647 GOTOWORKS(1);
1648 GOTOWORKS(2);
1649 GOTOWORKS(3);
1650 GOTOWORKS(4);
1651 GOTOWORKS(5);
1652 GOTOWORKS(6);
1653 GOTOWORKS(7);
1654 GOTOWORKS(8);
1655 GOTOWORKS(9);
1656 GOTOWORKS(10);
1657 #undef GOTOWORKS
1658 case WKBD_NEXTWORKSPACE:
1659 wWorkspaceRelativeChange(scr, 1);
1660 break;
1661 case WKBD_PREVWORKSPACE:
1662 wWorkspaceRelativeChange(scr, -1);
1663 break;
1664 case WKBD_WINDOW1:
1665 case WKBD_WINDOW2:
1666 case WKBD_WINDOW3:
1667 case WKBD_WINDOW4:
1668 #ifdef EXTEND_WINDOWSHORTCUT
1669 case WKBD_WINDOW5:
1670 case WKBD_WINDOW6:
1671 case WKBD_WINDOW7:
1672 case WKBD_WINDOW8:
1673 case WKBD_WINDOW9:
1674 case WKBD_WINDOW10:
1675 #endif
1676 if (scr->shortcutWindow[command-WKBD_WINDOW1]) {
1677 wMakeWindowVisible(scr->shortcutWindow[command-WKBD_WINDOW1]);
1678 } else if (wwin && ISMAPPED(wwin) && ISFOCUSED(wwin)) {
1679 scr->shortcutWindow[command-WKBD_WINDOW1] = wwin;
1680 wSelectWindow(wwin, !wwin->flags.selected);
1681 XFlush(dpy);
1682 wusleep(3000);
1683 wSelectWindow(wwin, !wwin->flags.selected);
1684 XFlush(dpy);
1686 break;
1687 case WKBD_NEXTWSLAYER:
1688 case WKBD_PREVWSLAYER:
1690 int row, column;
1692 row = scr->current_workspace/10;
1693 column = scr->current_workspace%10;
1695 if (command==WKBD_NEXTWSLAYER) {
1696 if ((row+1)*10 < scr->workspace_count)
1697 wWorkspaceChange(scr, column+(row+1)*10);
1698 } else {
1699 if (row > 0)
1700 wWorkspaceChange(scr, column+(row-1)*10);
1703 break;
1704 case WKBD_CLIPLOWER:
1705 if (!wPreferences.flags.noclip)
1706 wDockLower(scr->workspaces[scr->current_workspace]->clip);
1707 break;
1708 case WKBD_CLIPRAISE:
1709 if (!wPreferences.flags.noclip)
1710 wDockRaise(scr->workspaces[scr->current_workspace]->clip);
1711 break;
1712 case WKBD_CLIPRAISELOWER:
1713 if (!wPreferences.flags.noclip)
1714 wDockRaiseLower(scr->workspaces[scr->current_workspace]->clip);
1715 break;
1716 #ifdef KEEP_XKB_LOCK_STATUS
1717 case WKBD_TOGGLE:
1718 if(wPreferences.modelock) {
1719 /*toggle*/
1720 wwin = scr->focused_window;
1722 if (wwin && wwin->flags.mapped
1723 && wwin->frame->workspace == wwin->screen_ptr->current_workspace
1724 && !wwin->flags.miniaturized && !wwin->flags.hidden) {
1725 XkbGetState(dpy,XkbUseCoreKbd,&staterec);
1727 wwin->frame->languagemode = staterec.compat_state&32
1728 ? 0 : 1;
1729 XkbLockGroup(dpy,XkbUseCoreKbd, wwin->frame->languagemode);
1733 break;
1734 #endif /* KEEP_XKB_LOCK_STATUS */
1740 static void
1741 handleMotionNotify(XEvent *event)
1743 WMenu *menu;
1744 WScreen *scr = wScreenForRootWindow(event->xmotion.root);
1746 if (wPreferences.scrollable_menus) {
1747 if (event->xmotion.x_root <= 1 ||
1748 event->xmotion.x_root >= (scr->scr_width - 2) ||
1749 event->xmotion.y_root <= 1 ||
1750 event->xmotion.y_root >= (scr->scr_height - 2)) {
1752 #ifdef DEBUG
1753 puts("pointer at screen edge");
1754 #endif
1756 menu = wMenuUnderPointer(scr);
1757 if (menu!=NULL)
1758 wMenuScroll(menu, event);
1761 #if 0
1762 if (event->xmotion.subwindow == None)
1763 return;
1765 if (scr->scrolledFMaximize != None) {
1766 WWindow *twin;
1768 twin = wWindowFor(scr->scrolledFMaximize);
1769 if (twin && twin->frame_y ==) {
1773 scr->scrolledFMaximize = NULL;
1775 } else {
1777 /* scroll full maximized window */
1778 if (event->xmotion.y_root < 1
1779 || event->xmotion.y_root > scr->scr_height - 1) {
1781 wwin = wWindowFor(event->xmotion.subwindow);
1783 if (wwin && (wwin->flags.maximized & MAX_VERTICAL)
1784 && WFLAGP(wwin, full_maximize)
1785 && event->xmotion.x_root >= wwin->frame_x
1786 && event->xmotion.x_root <= wwin->frame_x + wwin->frame->core->width) {
1788 if (!WFLAGP(wwin, no_titlebar)
1789 && wwin->frame_y <= - wwin->frame->top_width) {
1791 wWindowMove(wwin, wwin->frame_x, 0);
1792 wwin->flags.dragged_while_fmaximized = 0;
1794 } else if (!WFLAGP(wwin, no_resizebar)
1795 && wwin->frame_y + wwin->frame->core->height >=
1796 scr->scr_height + wwin->frame->bottom_width) {
1798 int y = scr->scr_height + wwin->frame->bottom_width;
1800 y = scr->scr_height - wwin->frame_y - wwin->frame->core->height;
1802 wWindowMove(wwin, wwin->frame_x, y);
1803 wwin->flags.dragged_while_fmaximized = 0;
1807 #endif
1811 static void
1812 handleVisibilityNotify(XEvent *event)
1814 WWindow *wwin;
1816 wwin = wWindowFor(event->xvisibility.window);
1817 if (!wwin)
1818 return;
1819 wwin->flags.obscured =
1820 (event->xvisibility.state == VisibilityFullyObscured);