Configuration file for DWM on MacBook Air
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.

405 lines
8.1 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. unsigned long newmask;
  143. Client *c;
  144. XConfigureRequestEvent *ev = &e->xconfigurerequest;
  145. XEvent synev;
  146. XWindowChanges wc;
  147. if((c = getclient(ev->window))) {
  148. gravitate(c, True);
  149. if(ev->value_mask & CWX)
  150. c->x = ev->x;
  151. if(ev->value_mask & CWY)
  152. c->y = ev->y;
  153. if(ev->value_mask & CWWidth)
  154. c->w = ev->width;
  155. if(ev->value_mask & CWHeight)
  156. c->h = ev->height;
  157. if(ev->value_mask & CWBorderWidth)
  158. c->border = ev->border_width;
  159. gravitate(c, False);
  160. wc.x = c->x;
  161. wc.y = c->y;
  162. wc.width = c->w;
  163. wc.height = c->h;
  164. newmask = ev->value_mask & (~(CWSibling | CWStackMode | CWBorderWidth));
  165. if(newmask)
  166. XConfigureWindow(dpy, c->win, newmask, &wc);
  167. else {
  168. synev.type = ConfigureNotify;
  169. synev.xconfigure.display = dpy;
  170. synev.xconfigure.event = c->win;
  171. synev.xconfigure.window = c->win;
  172. synev.xconfigure.x = c->x;
  173. synev.xconfigure.y = c->y;
  174. synev.xconfigure.width = c->w;
  175. synev.xconfigure.height = c->h;
  176. synev.xconfigure.border_width = c->border;
  177. synev.xconfigure.above = None;
  178. /* Send synthetic ConfigureNotify */
  179. XSendEvent(dpy, c->win, True, NoEventMask, &synev);
  180. }
  181. XSync(dpy, False);
  182. if(c->isfloat)
  183. resize(c, False, TopLeft);
  184. else
  185. arrange(NULL);
  186. }
  187. else {
  188. wc.x = ev->x;
  189. wc.y = ev->y;
  190. wc.width = ev->width;
  191. wc.height = ev->height;
  192. wc.border_width = ev->border_width;
  193. wc.sibling = ev->above;
  194. wc.stack_mode = ev->detail;
  195. XConfigureWindow(dpy, ev->window, ev->value_mask, &wc);
  196. XSync(dpy, False);
  197. }
  198. }
  199. static void
  200. destroynotify(XEvent *e)
  201. {
  202. Client *c;
  203. XDestroyWindowEvent *ev = &e->xdestroywindow;
  204. if((c = getclient(ev->window)))
  205. unmanage(c);
  206. }
  207. static void
  208. enternotify(XEvent *e)
  209. {
  210. Client *c;
  211. XCrossingEvent *ev = &e->xcrossing;
  212. if(ev->mode != NotifyNormal || ev->detail == NotifyInferior)
  213. return;
  214. if((c = getclient(ev->window)) || (c = getctitle(ev->window)))
  215. focus(c);
  216. else if(ev->window == root) {
  217. issel = True;
  218. XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
  219. drawall();
  220. }
  221. }
  222. static void
  223. expose(XEvent *e)
  224. {
  225. Client *c;
  226. XExposeEvent *ev = &e->xexpose;
  227. if(ev->count == 0) {
  228. if(barwin == ev->window)
  229. drawstatus();
  230. else if((c = getctitle(ev->window)))
  231. drawtitle(c);
  232. }
  233. }
  234. static void
  235. keypress(XEvent *e)
  236. {
  237. static unsigned int len = sizeof(key) / sizeof(key[0]);
  238. unsigned int i;
  239. KeySym keysym;
  240. XKeyEvent *ev = &e->xkey;
  241. keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0);
  242. for(i = 0; i < len; i++) {
  243. if(keysym == key[i].keysym &&
  244. CLEANMASK(key[i].mod) == CLEANMASK(ev->state))
  245. {
  246. if(key[i].func)
  247. key[i].func(&key[i].arg);
  248. return;
  249. }
  250. }
  251. }
  252. static void
  253. leavenotify(XEvent *e)
  254. {
  255. XCrossingEvent *ev = &e->xcrossing;
  256. if((ev->window == root) && !ev->same_screen) {
  257. issel = False;
  258. drawall();
  259. }
  260. }
  261. static void
  262. mappingnotify(XEvent *e)
  263. {
  264. XMappingEvent *ev = &e->xmapping;
  265. XRefreshKeyboardMapping(ev);
  266. if(ev->request == MappingKeyboard)
  267. grabkeys();
  268. }
  269. static void
  270. maprequest(XEvent *e)
  271. {
  272. static XWindowAttributes wa;
  273. XMapRequestEvent *ev = &e->xmaprequest;
  274. if(!XGetWindowAttributes(dpy, ev->window, &wa))
  275. return;
  276. if(wa.override_redirect) {
  277. XSelectInput(dpy, ev->window,
  278. (StructureNotifyMask | PropertyChangeMask));
  279. return;
  280. }
  281. if(!getclient(ev->window))
  282. manage(ev->window, &wa);
  283. }
  284. static void
  285. propertynotify(XEvent *e)
  286. {
  287. Client *c;
  288. Window trans;
  289. XPropertyEvent *ev = &e->xproperty;
  290. if(ev->state == PropertyDelete)
  291. return; /* ignore */
  292. if((c = getclient(ev->window))) {
  293. if(ev->atom == wmatom[WMProtocols]) {
  294. c->proto = getproto(c->win);
  295. return;
  296. }
  297. switch (ev->atom) {
  298. default: break;
  299. case XA_WM_TRANSIENT_FOR:
  300. XGetTransientForHint(dpy, c->win, &trans);
  301. if(!c->isfloat && (c->isfloat = (trans != 0)))
  302. arrange(NULL);
  303. break;
  304. case XA_WM_NORMAL_HINTS:
  305. setsize(c);
  306. break;
  307. }
  308. if(ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) {
  309. settitle(c);
  310. drawtitle(c);
  311. }
  312. }
  313. }
  314. static void
  315. unmapnotify(XEvent *e)
  316. {
  317. Client *c;
  318. XUnmapEvent *ev = &e->xunmap;
  319. if((c = getclient(ev->window)))
  320. unmanage(c);
  321. }
  322. /* extern */
  323. void (*handler[LASTEvent]) (XEvent *) = {
  324. [ButtonPress] = buttonpress,
  325. [ConfigureRequest] = configurerequest,
  326. [DestroyNotify] = destroynotify,
  327. [EnterNotify] = enternotify,
  328. [LeaveNotify] = leavenotify,
  329. [Expose] = expose,
  330. [KeyPress] = keypress,
  331. [MappingNotify] = mappingnotify,
  332. [MapRequest] = maprequest,
  333. [PropertyNotify] = propertynotify,
  334. [UnmapNotify] = unmapnotify
  335. };
  336. void
  337. grabkeys()
  338. {
  339. static unsigned int len = sizeof(key) / sizeof(key[0]);
  340. unsigned int i;
  341. KeyCode code;
  342. XUngrabKey(dpy, AnyKey, AnyModifier, root);
  343. for(i = 0; i < len; i++) {
  344. code = XKeysymToKeycode(dpy, key[i].keysym);
  345. XGrabKey(dpy, code, key[i].mod, root, True,
  346. GrabModeAsync, GrabModeAsync);
  347. XGrabKey(dpy, code, key[i].mod | LockMask, root, True,
  348. GrabModeAsync, GrabModeAsync);
  349. XGrabKey(dpy, code, key[i].mod | numlockmask, root, True,
  350. GrabModeAsync, GrabModeAsync);
  351. XGrabKey(dpy, code, key[i].mod | numlockmask | LockMask, root, True,
  352. GrabModeAsync, GrabModeAsync);
  353. }
  354. }
  355. void
  356. procevent()
  357. {
  358. XEvent ev;
  359. while(XPending(dpy)) {
  360. XNextEvent(dpy, &ev);
  361. if(handler[ev.type])
  362. (handler[ev.type])(&ev); /* call handler */
  363. }
  364. }