added mouse seelction of window to focus
[wmaker-crm.git] / src / cycling.c
blob4b719941508466327caaeea39d0f67c6afbc201c
1 /* cycling.c- window cycling
3 * Window Maker window manager
5 * Copyright (c) 2000-2003 Alfredo K. Kojima
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.
23 #include "wconfig.h"
25 #include <X11/Xlib.h>
26 #include <X11/Xutil.h>
27 #include <X11/keysym.h>
29 #include "WindowMaker.h"
30 #include "GNUstep.h"
31 #include "screen.h"
32 #include "wcore.h"
33 #include "window.h"
34 #include "framewin.h"
35 #include "keybind.h"
36 #include "actions.h"
37 #include "stacking.h"
38 #include "funcs.h"
39 #include "xinerama.h"
40 #include "switchpanel.h"
42 /* Globals */
43 extern WPreferences wPreferences;
45 extern WShortKey wKeyBindings[WKBD_LAST];
48 static void raiseWindow(WSwitchPanel *swpanel, WWindow *wwin)
50 if (wwin->flags.mapped) {
51 Window win[2];
53 win[0]= wSwitchPanelGetWindow(swpanel);
54 win[1]= wwin->frame->core->window;
56 XRestackWindows(dpy, win, 2);
62 void
63 StartWindozeCycle(WWindow *wwin, XEvent *event, Bool next)
65 WScreen *scr = wScreenForRootWindow(event->xkey.root);
66 Bool done = False;
67 WWindow *newFocused;
68 WWindow *oldFocused;
69 int modifiers;
70 XModifierKeymap *keymap = NULL;
71 Bool hasModifier;
72 Bool somethingElse = False;
73 XEvent ev;
74 WSwitchPanel *swpanel = NULL;
75 KeyCode leftKey, rightKey, homeKey, endKey;
77 if (!wwin)
78 return;
80 leftKey = XKeysymToKeycode(dpy, XK_Left);
81 rightKey = XKeysymToKeycode(dpy, XK_Right);
82 homeKey = XKeysymToKeycode(dpy, XK_Home);
83 endKey = XKeysymToKeycode(dpy, XK_End);
85 if (next)
86 hasModifier = (wKeyBindings[WKBD_FOCUSNEXT].modifier != 0);
87 else
88 hasModifier = (wKeyBindings[WKBD_FOCUSPREV].modifier != 0);
90 if (hasModifier) {
91 keymap = XGetModifierMapping(dpy);
93 #ifdef DEBUG
94 printf("Grabbing keyboard\n");
95 #endif
96 XGrabKeyboard(dpy, scr->root_win, False, GrabModeAsync, GrabModeAsync,
97 CurrentTime);
100 scr->flags.doing_alt_tab = 1;
102 swpanel = wInitSwitchPanel(scr, wwin, scr->current_workspace);
103 oldFocused = wwin;
105 if (swpanel) {
106 newFocused = wSwitchPanelSelectNext(swpanel, !next);
107 if (newFocused) {
108 wWindowFocus(newFocused, oldFocused);
109 oldFocused = newFocused;
111 if (wPreferences.circ_raise)
112 raiseWindow(swpanel, newFocused);
115 else
117 if (wwin->frame->workspace == scr->current_workspace)
118 newFocused= wwin;
119 else
120 newFocused= NULL;
123 while (hasModifier && !done) {
124 int i;
126 WMMaskEvent(dpy, KeyPressMask|KeyReleaseMask|ExposureMask
127 |PointerMotionMask|EnterWindowMask|LeaveWindowMask
128 |ButtonReleaseMask, &ev);
130 /* ignore CapsLock */
131 modifiers = ev.xkey.state & ValidModMask;
133 switch (ev.type) {
134 case KeyPress:
135 #ifdef DEBUG
136 printf("Got key press\n");
137 #endif
138 if ((wKeyBindings[WKBD_FOCUSNEXT].keycode == ev.xkey.keycode
139 && wKeyBindings[WKBD_FOCUSNEXT].modifier == modifiers)
140 || ev.xkey.keycode == rightKey) {
142 if (swpanel) {
143 newFocused = wSwitchPanelSelectNext(swpanel, False);
144 if (newFocused) {
145 wWindowFocus(newFocused, oldFocused);
146 oldFocused = newFocused;
148 if (wPreferences.circ_raise) {
149 CommitStacking(scr);
150 raiseWindow(swpanel, newFocused);
154 } else if ((wKeyBindings[WKBD_FOCUSPREV].keycode == ev.xkey.keycode
155 && wKeyBindings[WKBD_FOCUSPREV].modifier == modifiers)
156 || ev.xkey.keycode == leftKey) {
158 if (swpanel) {
159 newFocused = wSwitchPanelSelectNext(swpanel, True);
160 if (newFocused) {
161 wWindowFocus(newFocused, oldFocused);
162 oldFocused = newFocused;
164 if (wPreferences.circ_raise) {
165 CommitStacking(scr);
166 raiseWindow(swpanel, newFocused);
170 } else if (ev.xkey.keycode == homeKey || ev.xkey.keycode == endKey) {
171 if (swpanel) {
172 newFocused = wSwitchPanelSelectFirst(swpanel, ev.xkey.keycode != homeKey);
173 if (newFocused) {
174 wWindowFocus(newFocused, oldFocused);
175 oldFocused = newFocused;
177 if (wPreferences.circ_raise) {
178 CommitStacking(scr);
179 raiseWindow(swpanel, newFocused);
183 } else {
184 #ifdef DEBUG
185 printf("Got something else\n");
186 #endif
187 somethingElse = True;
188 done = True;
190 break;
191 case KeyRelease:
192 #ifdef DEBUG
193 printf("Got key release\n");
194 #endif
195 for (i = 0; i < 8 * keymap->max_keypermod; i++) {
196 if (keymap->modifiermap[i] == ev.xkey.keycode &&
197 wKeyBindings[WKBD_FOCUSNEXT].modifier
198 & 1<<(i/keymap->max_keypermod)) {
199 done = True;
200 break;
203 break;
205 case EnterNotify:
206 case LeaveNotify:
207 case ButtonRelease:
209 WWindow *tmp;
210 if (swpanel) {
211 tmp = wSwitchPanelHandleEvent(swpanel, &ev);
212 if (tmp) {
213 newFocused = tmp;
214 wWindowFocus(newFocused, oldFocused);
215 oldFocused = newFocused;
217 if (wPreferences.circ_raise) {
218 CommitStacking(scr);
219 raiseWindow(swpanel, newFocused);
222 if (ev.type == ButtonRelease)
223 done= True;
227 break;
229 default:
230 WMHandleEvent(&ev);
231 break;
234 if (keymap)
235 XFreeModifiermap(keymap);
237 if (hasModifier) {
238 #ifdef DEBUG
239 printf("Ungrabbing keyboard\n");
240 #endif
241 XUngrabKeyboard(dpy, CurrentTime);
244 if (newFocused) {
245 wRaiseFrame(newFocused->frame->core);
246 CommitStacking(scr);
247 if (!newFocused->flags.mapped)
248 wMakeWindowVisible(newFocused);
249 wSetFocusTo(scr, newFocused);
252 if (swpanel)
253 wSwitchPanelDestroy(swpanel);
255 scr->flags.doing_alt_tab = 0;
257 if (somethingElse)
258 WMHandleEvent(&ev);