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.

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