Configuration of dwm for Mac Computers
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.

367 lines
8.0 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
  1. /* © 2006-2007 Anselm R. Garbe <garbeam at gmail dot com>
  2. * © 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
  3. * See LICENSE file for license details. */
  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 == floating || c->isfloating)) {
  143. restack();
  144. movemouse(c);
  145. }
  146. else if(ev->button == Button2)
  147. zoom(NULL);
  148. else if(ev->button == Button3
  149. && (lt->arrange == floating || c->isfloating) && !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->isfloating || (lt->arrange == floating)) {
  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. c->border = BORDERPX;
  184. }
  185. else {
  186. wc.x = ev->x;
  187. wc.y = ev->y;
  188. wc.width = ev->width;
  189. wc.height = ev->height;
  190. wc.border_width = ev->border_width;
  191. wc.sibling = ev->above;
  192. wc.stack_mode = ev->detail;
  193. XConfigureWindow(dpy, ev->window, ev->value_mask, &wc);
  194. }
  195. XSync(dpy, False);
  196. }
  197. static void
  198. destroynotify(XEvent *e) {
  199. Client *c;
  200. XDestroyWindowEvent *ev = &e->xdestroywindow;
  201. if((c = getclient(ev->window)))
  202. unmanage(c);
  203. }
  204. static void
  205. enternotify(XEvent *e) {
  206. Client *c;
  207. XCrossingEvent *ev = &e->xcrossing;
  208. if(ev->mode != NotifyNormal || ev->detail == NotifyInferior)
  209. return;
  210. if((c = getclient(ev->window)) && isvisible(c))
  211. focus(c);
  212. else if(ev->window == root) {
  213. selscreen = True;
  214. for(c = stack; c && !isvisible(c); c = c->snext);
  215. focus(c);
  216. }
  217. }
  218. static void
  219. expose(XEvent *e) {
  220. XExposeEvent *ev = &e->xexpose;
  221. if(ev->count == 0) {
  222. if(barwin == ev->window)
  223. drawstatus();
  224. }
  225. }
  226. static void
  227. keypress(XEvent *e) {
  228. static unsigned int len = sizeof key / sizeof key[0];
  229. unsigned int i;
  230. KeySym keysym;
  231. XKeyEvent *ev = &e->xkey;
  232. keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0);
  233. for(i = 0; i < len; i++)
  234. if(keysym == key[i].keysym
  235. && CLEANMASK(key[i].mod) == CLEANMASK(ev->state))
  236. {
  237. if(key[i].func)
  238. key[i].func(key[i].arg);
  239. }
  240. }
  241. static void
  242. leavenotify(XEvent *e) {
  243. XCrossingEvent *ev = &e->xcrossing;
  244. if((ev->window == root) && !ev->same_screen) {
  245. selscreen = False;
  246. focus(NULL);
  247. }
  248. }
  249. static void
  250. mappingnotify(XEvent *e) {
  251. XMappingEvent *ev = &e->xmapping;
  252. XRefreshKeyboardMapping(ev);
  253. if(ev->request == MappingKeyboard)
  254. grabkeys();
  255. }
  256. static void
  257. maprequest(XEvent *e) {
  258. static XWindowAttributes wa;
  259. XMapRequestEvent *ev = &e->xmaprequest;
  260. if(!XGetWindowAttributes(dpy, ev->window, &wa))
  261. return;
  262. if(wa.override_redirect)
  263. return;
  264. if(!getclient(ev->window))
  265. manage(ev->window, &wa);
  266. }
  267. static void
  268. propertynotify(XEvent *e) {
  269. Client *c;
  270. Window trans;
  271. XPropertyEvent *ev = &e->xproperty;
  272. if(ev->state == PropertyDelete)
  273. return; /* ignore */
  274. if((c = getclient(ev->window))) {
  275. switch (ev->atom) {
  276. default: break;
  277. case XA_WM_TRANSIENT_FOR:
  278. XGetTransientForHint(dpy, c->win, &trans);
  279. if(!c->isfloating && (c->isfloating = (getclient(trans) != NULL)))
  280. lt->arrange();
  281. break;
  282. case XA_WM_NORMAL_HINTS:
  283. updatesizehints(c);
  284. break;
  285. }
  286. if(ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) {
  287. updatetitle(c);
  288. if(c == sel)
  289. drawstatus();
  290. }
  291. }
  292. }
  293. static void
  294. unmapnotify(XEvent *e) {
  295. Client *c;
  296. XUnmapEvent *ev = &e->xunmap;
  297. if((c = getclient(ev->window)))
  298. unmanage(c);
  299. }
  300. /* extern */
  301. void (*handler[LASTEvent]) (XEvent *) = {
  302. [ButtonPress] = buttonpress,
  303. [ConfigureRequest] = configurerequest,
  304. [DestroyNotify] = destroynotify,
  305. [EnterNotify] = enternotify,
  306. [LeaveNotify] = leavenotify,
  307. [Expose] = expose,
  308. [KeyPress] = keypress,
  309. [MappingNotify] = mappingnotify,
  310. [MapRequest] = maprequest,
  311. [PropertyNotify] = propertynotify,
  312. [UnmapNotify] = unmapnotify
  313. };
  314. void
  315. grabkeys(void) {
  316. static unsigned int len = sizeof key / sizeof key[0];
  317. unsigned int i;
  318. KeyCode code;
  319. XUngrabKey(dpy, AnyKey, AnyModifier, root);
  320. for(i = 0; i < len; i++) {
  321. code = XKeysymToKeycode(dpy, key[i].keysym);
  322. XGrabKey(dpy, code, key[i].mod, root, True,
  323. GrabModeAsync, GrabModeAsync);
  324. XGrabKey(dpy, code, key[i].mod | LockMask, root, True,
  325. GrabModeAsync, GrabModeAsync);
  326. XGrabKey(dpy, code, key[i].mod | numlockmask, root, True,
  327. GrabModeAsync, GrabModeAsync);
  328. XGrabKey(dpy, code, key[i].mod | numlockmask | LockMask, root, True,
  329. GrabModeAsync, GrabModeAsync);
  330. }
  331. }