aewl

view event.c @ 687:a76799907854

removed client title bar
author Anselm R. Garbe <arg@suckless.org>
date Sun, 14 Jan 2007 22:27:29 +0100
parents 7672a1041218
children 399f08187c27
line source
1 /* (C)opyright MMVI-MMVII Anselm R. Garbe <garbeam at gmail dot com>
2 * See LICENSE file for license details.
3 */
4 #include "dwm.h"
5 #include <stdlib.h>
6 #include <X11/keysym.h>
7 #include <X11/Xatom.h>
9 /* static */
11 typedef struct {
12 unsigned long mod;
13 KeySym keysym;
14 void (*func)(Arg *arg);
15 Arg arg;
16 } Key;
18 KEYS
20 #define CLEANMASK(mask) (mask & ~(numlockmask | LockMask))
21 #define MOUSEMASK (BUTTONMASK | PointerMotionMask)
23 static void
24 movemouse(Client *c) {
25 int x1, y1, ocx, ocy, di;
26 unsigned int dui;
27 Window dummy;
28 XEvent ev;
30 ocx = c->x;
31 ocy = c->y;
32 if(XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
33 None, cursor[CurMove], CurrentTime) != GrabSuccess)
34 return;
35 c->ismax = False;
36 XQueryPointer(dpy, root, &dummy, &dummy, &x1, &y1, &di, &di, &dui);
37 for(;;) {
38 XMaskEvent(dpy, MOUSEMASK | ExposureMask, &ev);
39 switch (ev.type) {
40 case ButtonRelease:
41 resize(c, True, TopLeft);
42 XUngrabPointer(dpy, CurrentTime);
43 return;
44 case Expose:
45 handler[Expose](&ev);
46 break;
47 case MotionNotify:
48 XSync(dpy, False);
49 c->x = ocx + (ev.xmotion.x - x1);
50 c->y = ocy + (ev.xmotion.y - y1);
51 if(abs(wax + c->x) < SNAP)
52 c->x = wax;
53 else if(abs((wax + waw) - (c->x + c->w)) < SNAP)
54 c->x = wax + waw - c->w - 2 * BORDERPX;
55 if(abs(way - c->y) < SNAP)
56 c->y = way;
57 else if(abs((way + wah) - (c->y + c->h)) < SNAP)
58 c->y = way + wah - c->h - 2 * BORDERPX;
59 resize(c, False, TopLeft);
60 break;
61 }
62 }
63 }
65 static void
66 resizemouse(Client *c) {
67 int ocx, ocy;
68 int nw, nh;
69 Corner sticky;
70 XEvent ev;
72 ocx = c->x;
73 ocy = c->y;
74 if(XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
75 None, cursor[CurResize], CurrentTime) != GrabSuccess)
76 return;
77 c->ismax = False;
78 XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w, c->h);
79 for(;;) {
80 XMaskEvent(dpy, MOUSEMASK | ExposureMask, &ev);
81 switch(ev.type) {
82 case ButtonRelease:
83 resize(c, True, TopLeft);
84 XUngrabPointer(dpy, CurrentTime);
85 return;
86 case Expose:
87 handler[Expose](&ev);
88 break;
89 case MotionNotify:
90 XSync(dpy, False);
91 if((nw = abs(ocx - ev.xmotion.x)))
92 c->w = nw;
93 if((nh = abs(ocy - ev.xmotion.y)))
94 c->h = nh;
95 c->x = (ocx <= ev.xmotion.x) ? ocx : ocx - c->w;
96 c->y = (ocy <= ev.xmotion.y) ? ocy : ocy - c->h;
97 if(ocx <= ev.xmotion.x)
98 sticky = (ocy <= ev.xmotion.y) ? TopLeft : BotLeft;
99 else
100 sticky = (ocy <= ev.xmotion.y) ? TopRight : BotRight;
101 resize(c, True, sticky);
102 break;
103 }
104 }
105 }
107 static void
108 buttonpress(XEvent *e) {
109 int x;
110 Arg a;
111 Client *c;
112 XButtonPressedEvent *ev = &e->xbutton;
114 if(barwin == ev->window) {
115 x = 0;
116 for(a.i = 0; a.i < ntags; a.i++) {
117 x += textw(tags[a.i]);
118 if(ev->x < x) {
119 if(ev->button == Button1) {
120 if(ev->state & MODKEY)
121 tag(&a);
122 else
123 view(&a);
124 }
125 else if(ev->button == Button3) {
126 if(ev->state & MODKEY)
127 toggletag(&a);
128 else
129 toggleview(&a);
130 }
131 return;
132 }
133 }
134 if(ev->x < x + bmw)
135 switch(ev->button) {
136 case Button1:
137 togglemode(NULL);
138 break;
139 case Button4:
140 a.i = 1;
141 incnmaster(&a);
142 break;
143 case Button5:
144 a.i = -1;
145 incnmaster(&a);
146 break;
147 }
148 }
149 else if((c = getclient(ev->window))) {
150 focus(c);
151 if(CLEANMASK(ev->state) != MODKEY)
152 return;
153 if(ev->button == Button1 && (arrange == dofloat || c->isfloat)) {
154 restack();
155 movemouse(c);
156 }
157 else if(ev->button == Button2)
158 zoom(NULL);
159 else if(ev->button == Button3 && (arrange == dofloat || c->isfloat) &&
160 !c->isfixed) {
161 restack();
162 resizemouse(c);
163 }
164 }
165 }
167 static void
168 configurerequest(XEvent *e) {
169 unsigned long newmask;
170 Client *c;
171 XConfigureRequestEvent *ev = &e->xconfigurerequest;
172 XWindowChanges wc;
174 if((c = getclient(ev->window))) {
175 c->ismax = False;
176 if(ev->value_mask & CWX)
177 c->x = ev->x;
178 if(ev->value_mask & CWY)
179 c->y = ev->y;
180 if(ev->value_mask & CWWidth)
181 c->w = ev->width;
182 if(ev->value_mask & CWHeight)
183 c->h = ev->height;
184 if(ev->value_mask & CWBorderWidth)
185 c->border = ev->border_width;
186 wc.x = c->x;
187 wc.y = c->y;
188 wc.width = c->w;
189 wc.height = c->h;
190 newmask = ev->value_mask & (~(CWSibling | CWStackMode | CWBorderWidth));
191 if(newmask)
192 XConfigureWindow(dpy, c->win, newmask, &wc);
193 else
194 configure(c);
195 XSync(dpy, False);
196 if(c->isfloat) {
197 resize(c, False, TopLeft);
198 if(!isvisible(c))
199 XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
200 }
201 else
202 arrange();
203 }
204 else {
205 wc.x = ev->x;
206 wc.y = ev->y;
207 wc.width = ev->width;
208 wc.height = ev->height;
209 wc.border_width = ev->border_width;
210 wc.sibling = ev->above;
211 wc.stack_mode = ev->detail;
212 XConfigureWindow(dpy, ev->window, ev->value_mask, &wc);
213 XSync(dpy, False);
214 }
215 }
217 static void
218 destroynotify(XEvent *e) {
219 Client *c;
220 XDestroyWindowEvent *ev = &e->xdestroywindow;
222 if((c = getclient(ev->window)))
223 unmanage(c);
224 }
226 static void
227 enternotify(XEvent *e) {
228 Client *c;
229 XCrossingEvent *ev = &e->xcrossing;
231 if(ev->mode != NotifyNormal || ev->detail == NotifyInferior)
232 return;
233 if((c = getclient(ev->window)) && isvisible(c))
234 focus(c);
235 else if(ev->window == root) {
236 issel = True;
237 XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
238 drawall();
239 }
240 }
242 static void
243 expose(XEvent *e) {
244 Client *c;
245 XExposeEvent *ev = &e->xexpose;
247 if(ev->count == 0) {
248 if(barwin == ev->window)
249 drawstatus();
250 }
251 }
253 static void
254 keypress(XEvent *e) {
255 static unsigned int len = sizeof key / sizeof key[0];
256 unsigned int i;
257 KeySym keysym;
258 XKeyEvent *ev = &e->xkey;
260 keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0);
261 for(i = 0; i < len; i++) {
262 if(keysym == key[i].keysym
263 && CLEANMASK(key[i].mod) == CLEANMASK(ev->state))
264 {
265 if(key[i].func)
266 key[i].func(&key[i].arg);
267 }
268 }
269 }
271 static void
272 leavenotify(XEvent *e) {
273 XCrossingEvent *ev = &e->xcrossing;
275 if((ev->window == root) && !ev->same_screen) {
276 issel = False;
277 drawall();
278 }
279 }
281 static void
282 mappingnotify(XEvent *e) {
283 XMappingEvent *ev = &e->xmapping;
285 XRefreshKeyboardMapping(ev);
286 if(ev->request == MappingKeyboard)
287 grabkeys();
288 }
290 static void
291 maprequest(XEvent *e) {
292 static XWindowAttributes wa;
293 XMapRequestEvent *ev = &e->xmaprequest;
295 if(!XGetWindowAttributes(dpy, ev->window, &wa))
296 return;
297 if(wa.override_redirect) {
298 XSelectInput(dpy, ev->window,
299 (StructureNotifyMask | PropertyChangeMask));
300 return;
301 }
302 if(!getclient(ev->window))
303 manage(ev->window, &wa);
304 }
306 static void
307 propertynotify(XEvent *e) {
308 Client *c;
309 Window trans;
310 XPropertyEvent *ev = &e->xproperty;
312 if(ev->state == PropertyDelete)
313 return; /* ignore */
314 if((c = getclient(ev->window))) {
315 if(ev->atom == wmatom[WMProtocols]) {
316 c->proto = getproto(c->win);
317 return;
318 }
319 switch (ev->atom) {
320 default: break;
321 case XA_WM_TRANSIENT_FOR:
322 XGetTransientForHint(dpy, c->win, &trans);
323 if(!c->isfloat && (c->isfloat = (trans != 0)))
324 arrange();
325 break;
326 case XA_WM_NORMAL_HINTS:
327 updatesizehints(c);
328 break;
329 }
330 if(ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) {
331 updatetitle(c);
332 drawclient(c);
333 }
334 }
335 }
337 static void
338 unmapnotify(XEvent *e) {
339 Client *c;
340 XUnmapEvent *ev = &e->xunmap;
342 if((c = getclient(ev->window)))
343 unmanage(c);
344 }
346 /* extern */
348 void (*handler[LASTEvent]) (XEvent *) = {
349 [ButtonPress] = buttonpress,
350 [ConfigureRequest] = configurerequest,
351 [DestroyNotify] = destroynotify,
352 [EnterNotify] = enternotify,
353 [LeaveNotify] = leavenotify,
354 [Expose] = expose,
355 [KeyPress] = keypress,
356 [MappingNotify] = mappingnotify,
357 [MapRequest] = maprequest,
358 [PropertyNotify] = propertynotify,
359 [UnmapNotify] = unmapnotify
360 };
362 void
363 grabkeys(void) {
364 static unsigned int len = sizeof key / sizeof key[0];
365 unsigned int i;
366 KeyCode code;
368 XUngrabKey(dpy, AnyKey, AnyModifier, root);
369 for(i = 0; i < len; i++) {
370 code = XKeysymToKeycode(dpy, key[i].keysym);
371 XGrabKey(dpy, code, key[i].mod, root, True,
372 GrabModeAsync, GrabModeAsync);
373 XGrabKey(dpy, code, key[i].mod | LockMask, root, True,
374 GrabModeAsync, GrabModeAsync);
375 XGrabKey(dpy, code, key[i].mod | numlockmask, root, True,
376 GrabModeAsync, GrabModeAsync);
377 XGrabKey(dpy, code, key[i].mod | numlockmask | LockMask, root, True,
378 GrabModeAsync, GrabModeAsync);
379 }
380 }
382 void
383 procevent(void) {
384 XEvent ev;
386 while(XPending(dpy)) {
387 XNextEvent(dpy, &ev);
388 if(handler[ev.type])
389 (handler[ev.type])(&ev); /* call handler */
390 }
391 }