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.

382 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
  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) && (ev->button == Button1))
  125. togglemode(NULL);
  126. }
  127. else if((c = getclient(ev->window))) {
  128. focus(c);
  129. if(CLEANMASK(ev->state) != MODKEY)
  130. return;
  131. if(ev->button == Button1 && (arrange == dofloat || c->isfloat)) {
  132. restack();
  133. movemouse(c);
  134. }
  135. else if(ev->button == Button2)
  136. zoom(NULL);
  137. else if(ev->button == Button3 && (arrange == dofloat || c->isfloat) &&
  138. !c->isfixed) {
  139. restack();
  140. resizemouse(c);
  141. }
  142. }
  143. }
  144. static void
  145. configurerequest(XEvent *e) {
  146. unsigned long newmask;
  147. Client *c;
  148. XConfigureRequestEvent *ev = &e->xconfigurerequest;
  149. XWindowChanges wc;
  150. if((c = getclient(ev->window))) {
  151. c->ismax = False;
  152. if(ev->value_mask & CWX)
  153. c->x = ev->x;
  154. if(ev->value_mask & CWY)
  155. c->y = ev->y;
  156. if(ev->value_mask & CWWidth)
  157. c->w = ev->width;
  158. if(ev->value_mask & CWHeight)
  159. c->h = ev->height;
  160. if(ev->value_mask & CWBorderWidth)
  161. c->border = ev->border_width;
  162. wc.x = c->x;
  163. wc.y = c->y;
  164. wc.width = c->w;
  165. wc.height = c->h;
  166. newmask = ev->value_mask & (~(CWSibling | CWStackMode | CWBorderWidth));
  167. if(newmask)
  168. XConfigureWindow(dpy, c->win, newmask, &wc);
  169. else
  170. configure(c);
  171. XSync(dpy, False);
  172. if(c->isfloat) {
  173. resize(c, False, TopLeft);
  174. if(!isvisible(c))
  175. ban(c);
  176. }
  177. else
  178. arrange();
  179. }
  180. else {
  181. wc.x = ev->x;
  182. wc.y = ev->y;
  183. wc.width = ev->width;
  184. wc.height = ev->height;
  185. wc.border_width = ev->border_width;
  186. wc.sibling = ev->above;
  187. wc.stack_mode = ev->detail;
  188. XConfigureWindow(dpy, ev->window, ev->value_mask, &wc);
  189. XSync(dpy, False);
  190. }
  191. }
  192. static void
  193. destroynotify(XEvent *e) {
  194. Client *c;
  195. XDestroyWindowEvent *ev = &e->xdestroywindow;
  196. if((c = getclient(ev->window)))
  197. unmanage(c);
  198. }
  199. static void
  200. enternotify(XEvent *e) {
  201. Client *c;
  202. XCrossingEvent *ev = &e->xcrossing;
  203. if(ev->mode != NotifyNormal || ev->detail == NotifyInferior)
  204. return;
  205. if(((c = getclient(ev->window)) || (c = getctitle(ev->window))) && isvisible(c))
  206. focus(c);
  207. else if(ev->window == root) {
  208. issel = True;
  209. XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
  210. drawall();
  211. }
  212. }
  213. static void
  214. expose(XEvent *e) {
  215. Client *c;
  216. XExposeEvent *ev = &e->xexpose;
  217. if(ev->count == 0) {
  218. if(barwin == ev->window)
  219. drawstatus();
  220. else if((c = getctitle(ev->window)))
  221. drawclient(c);
  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. }
  240. static void
  241. leavenotify(XEvent *e) {
  242. XCrossingEvent *ev = &e->xcrossing;
  243. if((ev->window == root) && !ev->same_screen) {
  244. issel = False;
  245. drawall();
  246. }
  247. }
  248. static void
  249. mappingnotify(XEvent *e) {
  250. XMappingEvent *ev = &e->xmapping;
  251. XRefreshKeyboardMapping(ev);
  252. if(ev->request == MappingKeyboard)
  253. grabkeys();
  254. }
  255. static void
  256. maprequest(XEvent *e) {
  257. static XWindowAttributes wa;
  258. XMapRequestEvent *ev = &e->xmaprequest;
  259. if(!XGetWindowAttributes(dpy, ev->window, &wa))
  260. return;
  261. if(wa.override_redirect) {
  262. XSelectInput(dpy, ev->window,
  263. (StructureNotifyMask | PropertyChangeMask));
  264. return;
  265. }
  266. if(!getclient(ev->window))
  267. manage(ev->window, &wa);
  268. }
  269. static void
  270. propertynotify(XEvent *e) {
  271. Client *c;
  272. Window trans;
  273. XPropertyEvent *ev = &e->xproperty;
  274. if(ev->state == PropertyDelete)
  275. return; /* ignore */
  276. if((c = getclient(ev->window))) {
  277. if(ev->atom == wmatom[WMProtocols]) {
  278. c->proto = getproto(c->win);
  279. return;
  280. }
  281. switch (ev->atom) {
  282. default: break;
  283. case XA_WM_TRANSIENT_FOR:
  284. XGetTransientForHint(dpy, c->win, &trans);
  285. if(!c->isfloat && (c->isfloat = (trans != 0)))
  286. arrange();
  287. break;
  288. case XA_WM_NORMAL_HINTS:
  289. updatesizehints(c);
  290. break;
  291. }
  292. if(ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) {
  293. updatetitle(c);
  294. resizetitle(c);
  295. drawclient(c);
  296. }
  297. }
  298. }
  299. static void
  300. unmapnotify(XEvent *e) {
  301. Client *c;
  302. XUnmapEvent *ev = &e->xunmap;
  303. if((c = getclient(ev->window)))
  304. unmanage(c);
  305. }
  306. /* extern */
  307. void (*handler[LASTEvent]) (XEvent *) = {
  308. [ButtonPress] = buttonpress,
  309. [ConfigureRequest] = configurerequest,
  310. [DestroyNotify] = destroynotify,
  311. [EnterNotify] = enternotify,
  312. [LeaveNotify] = leavenotify,
  313. [Expose] = expose,
  314. [KeyPress] = keypress,
  315. [MappingNotify] = mappingnotify,
  316. [MapRequest] = maprequest,
  317. [PropertyNotify] = propertynotify,
  318. [UnmapNotify] = unmapnotify
  319. };
  320. void
  321. grabkeys(void) {
  322. static unsigned int len = sizeof key / sizeof key[0];
  323. unsigned int i;
  324. KeyCode code;
  325. XUngrabKey(dpy, AnyKey, AnyModifier, root);
  326. for(i = 0; i < len; i++) {
  327. code = XKeysymToKeycode(dpy, key[i].keysym);
  328. XGrabKey(dpy, code, key[i].mod, root, True,
  329. GrabModeAsync, GrabModeAsync);
  330. XGrabKey(dpy, code, key[i].mod | LockMask, root, True,
  331. GrabModeAsync, GrabModeAsync);
  332. XGrabKey(dpy, code, key[i].mod | numlockmask, root, True,
  333. GrabModeAsync, GrabModeAsync);
  334. XGrabKey(dpy, code, key[i].mod | numlockmask | LockMask, root, True,
  335. GrabModeAsync, GrabModeAsync);
  336. }
  337. }
  338. void
  339. procevent(void) {
  340. XEvent ev;
  341. while(XPending(dpy)) {
  342. XNextEvent(dpy, &ev);
  343. if(handler[ev.type])
  344. (handler[ev.type])(&ev); /* call handler */
  345. }
  346. }