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.

352 lines
6.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
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. Corner sticky;
  55. XEvent ev;
  56. ocx = c->x;
  57. ocy = c->y;
  58. if(XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
  59. None, cursor[CurResize], CurrentTime) != GrabSuccess)
  60. return;
  61. XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w, c->h);
  62. for(;;) {
  63. XMaskEvent(dpy, MOUSEMASK | ExposureMask, &ev);
  64. switch(ev.type) {
  65. default: break;
  66. case Expose:
  67. handler[Expose](&ev);
  68. break;
  69. case MotionNotify:
  70. XSync(dpy, False);
  71. c->w = abs(ocx - ev.xmotion.x);
  72. c->h = abs(ocy - ev.xmotion.y);
  73. c->x = (ocx <= ev.xmotion.x) ? ocx : ocx - c->w;
  74. c->y = (ocy <= ev.xmotion.y) ? ocy : ocy - c->h;
  75. if(ocx <= ev.xmotion.x)
  76. sticky = (ocy <= ev.xmotion.y) ? TopLeft : BotLeft;
  77. else
  78. sticky = (ocy <= ev.xmotion.y) ? TopRight : BotRight;
  79. resize(c, True, sticky);
  80. break;
  81. case ButtonRelease:
  82. XUngrabPointer(dpy, CurrentTime);
  83. return;
  84. }
  85. }
  86. }
  87. static void
  88. buttonpress(XEvent *e)
  89. {
  90. int x;
  91. Arg a;
  92. Client *c;
  93. XButtonPressedEvent *ev = &e->xbutton;
  94. if(barwin == ev->window) {
  95. switch(ev->button) {
  96. default:
  97. x = 0;
  98. for(a.i = 0; a.i < TLast; a.i++) {
  99. x += textw(tags[a.i]);
  100. if(ev->x < x) {
  101. view(&a);
  102. break;
  103. }
  104. }
  105. break;
  106. case Button4:
  107. viewnext(&a);
  108. break;
  109. case Button5:
  110. viewprev(&a);
  111. break;
  112. }
  113. }
  114. else if((c = getclient(ev->window))) {
  115. focus(c);
  116. switch(ev->button) {
  117. default:
  118. break;
  119. case Button1:
  120. if(!c->ismax && (arrange == dofloat || c->isfloat)) {
  121. higher(c);
  122. movemouse(c);
  123. }
  124. break;
  125. case Button2:
  126. lower(c);
  127. break;
  128. case Button3:
  129. if(!c->ismax && (arrange == dofloat || c->isfloat)) {
  130. higher(c);
  131. resizemouse(c);
  132. }
  133. break;
  134. }
  135. }
  136. }
  137. static void
  138. configurerequest(XEvent *e)
  139. {
  140. Client *c;
  141. XConfigureRequestEvent *ev = &e->xconfigurerequest;
  142. XWindowChanges wc;
  143. ev->value_mask &= ~CWSibling;
  144. if((c = getclient(ev->window))) {
  145. gravitate(c, True);
  146. if(ev->value_mask & CWX)
  147. c->x = ev->x;
  148. if(ev->value_mask & CWY)
  149. c->y = ev->y;
  150. if(ev->value_mask & CWWidth)
  151. c->w = ev->width;
  152. if(ev->value_mask & CWHeight)
  153. c->h = ev->height;
  154. if(ev->value_mask & CWBorderWidth)
  155. c->border = 1;
  156. gravitate(c, False);
  157. resize(c, True, TopLeft);
  158. }
  159. wc.x = ev->x;
  160. wc.y = ev->y;
  161. wc.width = ev->width;
  162. wc.height = ev->height;
  163. wc.border_width = 1;
  164. XConfigureWindow(dpy, ev->window,
  165. CWX|CWY|CWWidth|CWHeight|CWBorderWidth, &wc);
  166. XSync(dpy, False);
  167. }
  168. static void
  169. destroynotify(XEvent *e)
  170. {
  171. Client *c;
  172. XDestroyWindowEvent *ev = &e->xdestroywindow;
  173. if((c = getclient(ev->window)))
  174. unmanage(c);
  175. }
  176. static void
  177. enternotify(XEvent *e)
  178. {
  179. Client *c;
  180. XCrossingEvent *ev = &e->xcrossing;
  181. if(ev->detail == NotifyInferior)
  182. return;
  183. if((c = getclient(ev->window)) || (c = getctitle(ev->window)))
  184. focus(c);
  185. else if(ev->window == root)
  186. issel = True;
  187. }
  188. static void
  189. expose(XEvent *e)
  190. {
  191. Client *c;
  192. XExposeEvent *ev = &e->xexpose;
  193. if(ev->count == 0) {
  194. if(barwin == ev->window)
  195. drawstatus();
  196. else if((c = getctitle(ev->window)))
  197. drawtitle(c);
  198. }
  199. }
  200. static void
  201. keypress(XEvent *e)
  202. {
  203. static unsigned int len = sizeof(key) / sizeof(key[0]);
  204. unsigned int i;
  205. KeySym keysym;
  206. XKeyEvent *ev = &e->xkey;
  207. keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0);
  208. for(i = 0; i < len; i++)
  209. if(keysym == key[i].keysym &&
  210. CLEANMASK(key[i].mod) == CLEANMASK(ev->state)) {
  211. if(key[i].func)
  212. key[i].func(&key[i].arg);
  213. return;
  214. }
  215. }
  216. static void
  217. leavenotify(XEvent *e)
  218. {
  219. XCrossingEvent *ev = &e->xcrossing;
  220. if((ev->window == root) && !ev->same_screen)
  221. issel = True;
  222. }
  223. static void
  224. maprequest(XEvent *e)
  225. {
  226. static XWindowAttributes wa;
  227. XMapRequestEvent *ev = &e->xmaprequest;
  228. if(!XGetWindowAttributes(dpy, ev->window, &wa))
  229. return;
  230. if(wa.override_redirect) {
  231. XSelectInput(dpy, ev->window,
  232. (StructureNotifyMask | PropertyChangeMask));
  233. return;
  234. }
  235. if(!getclient(ev->window))
  236. manage(ev->window, &wa);
  237. }
  238. static void
  239. propertynotify(XEvent *e)
  240. {
  241. Client *c;
  242. Window trans;
  243. XPropertyEvent *ev = &e->xproperty;
  244. if(ev->state == PropertyDelete)
  245. return; /* ignore */
  246. if((c = getclient(ev->window))) {
  247. if(ev->atom == wmatom[WMProtocols]) {
  248. c->proto = getproto(c->win);
  249. return;
  250. }
  251. switch (ev->atom) {
  252. default: break;
  253. case XA_WM_TRANSIENT_FOR:
  254. XGetTransientForHint(dpy, c->win, &trans);
  255. if(!c->isfloat && (c->isfloat = (trans != 0)))
  256. arrange(NULL);
  257. break;
  258. case XA_WM_NORMAL_HINTS:
  259. setsize(c);
  260. break;
  261. }
  262. if(ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) {
  263. settitle(c);
  264. drawtitle(c);
  265. }
  266. }
  267. }
  268. static void
  269. unmapnotify(XEvent *e)
  270. {
  271. Client *c;
  272. XUnmapEvent *ev = &e->xunmap;
  273. if((c = getclient(ev->window)))
  274. unmanage(c);
  275. }
  276. /* extern */
  277. void (*handler[LASTEvent]) (XEvent *) = {
  278. [ButtonPress] = buttonpress,
  279. [ConfigureRequest] = configurerequest,
  280. [DestroyNotify] = destroynotify,
  281. [EnterNotify] = enternotify,
  282. [LeaveNotify] = leavenotify,
  283. [Expose] = expose,
  284. [KeyPress] = keypress,
  285. [MapRequest] = maprequest,
  286. [PropertyNotify] = propertynotify,
  287. [UnmapNotify] = unmapnotify
  288. };
  289. void
  290. grabkeys()
  291. {
  292. static unsigned int len = sizeof(key) / sizeof(key[0]);
  293. unsigned int i;
  294. KeyCode code;
  295. for(i = 0; i < len; i++) {
  296. code = XKeysymToKeycode(dpy, key[i].keysym);
  297. /* normal */
  298. XUngrabKey(dpy, code, key[i].mod, root);
  299. XGrabKey(dpy, code, key[i].mod, root, True,
  300. GrabModeAsync, GrabModeAsync);
  301. /* capslock */
  302. XUngrabKey(dpy, code, key[i].mod | LockMask, root);
  303. XGrabKey(dpy, code, key[i].mod | LockMask, root, True,
  304. GrabModeAsync, GrabModeAsync);
  305. /* numlock */
  306. XUngrabKey(dpy, code, key[i].mod | NUMLOCKMASK, root);
  307. XGrabKey(dpy, code, key[i].mod | NUMLOCKMASK, root, True,
  308. GrabModeAsync, GrabModeAsync);
  309. /* capslock & numlock */
  310. XUngrabKey(dpy, code, key[i].mod | NUMLOCKMASK | LockMask, root);
  311. XGrabKey(dpy, code, key[i].mod | NUMLOCKMASK | LockMask, root, True,
  312. GrabModeAsync, GrabModeAsync);
  313. }
  314. }