You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

365 lines
7.9 KiB

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