JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
removed drawclient and drawall (they performed useless operations/consumed useless...
[dwm.git] / event.c
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>
8
9 /* static */
10
11 typedef struct {
12         unsigned long mod;
13         KeySym keysym;
14         void (*func)(Arg *arg);
15         Arg arg;
16 } Key;
17
18 KEYS
19
20 #define CLEANMASK(mask) (mask & ~(numlockmask | LockMask))
21 #define MOUSEMASK               (BUTTONMASK | PointerMotionMask)
22
23 static void
24 movemouse(Client *c) {
25         int x1, y1, ocx, ocy, di;
26         unsigned int dui;
27         Window dummy;
28         XEvent ev;
29
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 }
64
65 static void
66 resizemouse(Client *c) {
67         int ocx, ocy;
68         int nw, nh;
69         Corner sticky;
70         XEvent ev;
71
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 }
106
107 static void
108 buttonpress(XEvent *e) {
109         int x;
110         Arg a;
111         Client *c;
112         XButtonPressedEvent *ev = &e->xbutton;
113
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 }
166
167 static void
168 configurerequest(XEvent *e) {
169         unsigned long newmask;
170         Client *c;
171         XConfigureRequestEvent *ev = &e->xconfigurerequest;
172         XWindowChanges wc;
173
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 }
216
217 static void
218 destroynotify(XEvent *e) {
219         Client *c;
220         XDestroyWindowEvent *ev = &e->xdestroywindow;
221
222         if((c = getclient(ev->window)))
223                 unmanage(c);
224 }
225
226 static void
227 enternotify(XEvent *e) {
228         Client *c;
229         XCrossingEvent *ev = &e->xcrossing;
230
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         }
239 }
240
241 static void
242 expose(XEvent *e) {
243         Client *c;
244         XExposeEvent *ev = &e->xexpose;
245
246         if(ev->count == 0) {
247                 if(barwin == ev->window)
248                         drawstatus();
249         }
250 }
251
252 static void
253 keypress(XEvent *e) {
254         static unsigned int len = sizeof key / sizeof key[0];
255         unsigned int i;
256         KeySym keysym;
257         XKeyEvent *ev = &e->xkey;
258
259         keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0);
260         for(i = 0; i < len; i++) {
261                 if(keysym == key[i].keysym
262                         && CLEANMASK(key[i].mod) == CLEANMASK(ev->state))
263                 {
264                         if(key[i].func)
265                                 key[i].func(&key[i].arg);
266                 }
267         }
268 }
269
270 static void
271 leavenotify(XEvent *e) {
272         XCrossingEvent *ev = &e->xcrossing;
273
274         if((ev->window == root) && !ev->same_screen)
275                 issel = False;
276 }
277
278 static void
279 mappingnotify(XEvent *e) {
280         XMappingEvent *ev = &e->xmapping;
281
282         XRefreshKeyboardMapping(ev);
283         if(ev->request == MappingKeyboard)
284                 grabkeys();
285 }
286
287 static void
288 maprequest(XEvent *e) {
289         static XWindowAttributes wa;
290         XMapRequestEvent *ev = &e->xmaprequest;
291
292         if(!XGetWindowAttributes(dpy, ev->window, &wa))
293                 return;
294         if(wa.override_redirect) {
295                 XSelectInput(dpy, ev->window,
296                                 (StructureNotifyMask | PropertyChangeMask));
297                 return;
298         }
299         if(!getclient(ev->window))
300                 manage(ev->window, &wa);
301 }
302
303 static void
304 propertynotify(XEvent *e) {
305         Client *c;
306         Window trans;
307         XPropertyEvent *ev = &e->xproperty;
308
309         if(ev->state == PropertyDelete)
310                 return; /* ignore */
311         if((c = getclient(ev->window))) {
312                 if(ev->atom == wmatom[WMProtocols]) {
313                         c->proto = getproto(c->win);
314                         return;
315                 }
316                 switch (ev->atom) {
317                         default: break;
318                         case XA_WM_TRANSIENT_FOR:
319                                 XGetTransientForHint(dpy, c->win, &trans);
320                                 if(!c->isfloat && (c->isfloat = (trans != 0)))
321                                         arrange();
322                                 break;
323                         case XA_WM_NORMAL_HINTS:
324                                 updatesizehints(c);
325                                 break;
326                 }
327                 if(ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) {
328                         updatetitle(c);
329                         if(c == sel)
330                                 drawstatus();
331                 }
332         }
333 }
334
335 static void
336 unmapnotify(XEvent *e) {
337         Client *c;
338         XUnmapEvent *ev = &e->xunmap;
339
340         if((c = getclient(ev->window)))
341                 unmanage(c);
342 }
343
344 /* extern */
345
346 void (*handler[LASTEvent]) (XEvent *) = {
347         [ButtonPress] = buttonpress,
348         [ConfigureRequest] = configurerequest,
349         [DestroyNotify] = destroynotify,
350         [EnterNotify] = enternotify,
351         [LeaveNotify] = leavenotify,
352         [Expose] = expose,
353         [KeyPress] = keypress,
354         [MappingNotify] = mappingnotify,
355         [MapRequest] = maprequest,
356         [PropertyNotify] = propertynotify,
357         [UnmapNotify] = unmapnotify
358 };
359
360 void
361 grabkeys(void) {
362         static unsigned int len = sizeof key / sizeof key[0];
363         unsigned int i;
364         KeyCode code;
365
366         XUngrabKey(dpy, AnyKey, AnyModifier, root);
367         for(i = 0; i < len; i++) {
368                 code = XKeysymToKeycode(dpy, key[i].keysym);
369                 XGrabKey(dpy, code, key[i].mod, root, True,
370                                 GrabModeAsync, GrabModeAsync);
371                 XGrabKey(dpy, code, key[i].mod | LockMask, root, True,
372                                 GrabModeAsync, GrabModeAsync);
373                 XGrabKey(dpy, code, key[i].mod | numlockmask, root, True,
374                                 GrabModeAsync, GrabModeAsync);
375                 XGrabKey(dpy, code, key[i].mod | numlockmask | LockMask, root, True,
376                                 GrabModeAsync, GrabModeAsync);
377         }
378 }
379
380 void
381 procevent(void) {
382         XEvent ev;
383
384         while(XPending(dpy)) {
385                 XNextEvent(dpy, &ev);
386                 if(handler[ev.type])
387                         (handler[ev.type])(&ev); /* call handler */
388         }
389 }