event.c 8.2 KB

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