client.c 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452
  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 <string.h>
  8. #include <X11/Xatom.h>
  9. #include <X11/Xutil.h>
  10. /* static functions */
  11. static void
  12. resizetitle(Client *c)
  13. {
  14. int i;
  15. c->bw = 0;
  16. for(i = 0; i < TLast; i++)
  17. if(c->tags[i])
  18. c->bw += textw(c->tags[i]);
  19. c->bw += textw(c->name);
  20. if(c->bw > *c->w)
  21. c->bw = *c->w + 2;
  22. c->bx = *c->x + *c->w - c->bw + 2;
  23. c->by = *c->y;
  24. XMoveResizeWindow(dpy, c->title, c->bx, c->by, c->bw, c->bh);
  25. }
  26. static int
  27. xerrordummy(Display *dsply, XErrorEvent *ee)
  28. {
  29. return 0;
  30. }
  31. /* extern functions */
  32. void
  33. ban(Client *c)
  34. {
  35. XMoveWindow(dpy, c->win, *c->x + 2 * sw, *c->y);
  36. XMoveWindow(dpy, c->title, c->bx + 2 * sw, c->by);
  37. }
  38. void
  39. focus(Client *c)
  40. {
  41. Client *old = sel;
  42. XEvent ev;
  43. sel = c;
  44. if(old && old != c)
  45. drawtitle(old);
  46. drawtitle(c);
  47. XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
  48. XSync(dpy, False);
  49. while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
  50. }
  51. void
  52. focusnext(Arg *arg)
  53. {
  54. Client *c;
  55. if(!sel)
  56. return;
  57. if(!(c = getnext(sel->next, tsel)))
  58. c = getnext(clients, tsel);
  59. if(c) {
  60. higher(c);
  61. c->revert = sel;
  62. focus(c);
  63. }
  64. }
  65. void
  66. focusprev(Arg *arg)
  67. {
  68. Client *c;
  69. if(!sel)
  70. return;
  71. if((c = sel->revert && sel->revert->tags[tsel] ? sel->revert : NULL)) {
  72. higher(c);
  73. focus(c);
  74. }
  75. }
  76. Client *
  77. getclient(Window w)
  78. {
  79. Client *c;
  80. for(c = clients; c; c = c->next)
  81. if(c->win == w)
  82. return c;
  83. return NULL;
  84. }
  85. Client *
  86. getctitle(Window w)
  87. {
  88. Client *c;
  89. for(c = clients; c; c = c->next)
  90. if(c->title == w)
  91. return c;
  92. return NULL;
  93. }
  94. void
  95. gravitate(Client *c, Bool invert)
  96. {
  97. int dx = 0, dy = 0;
  98. switch(c->grav) {
  99. case StaticGravity:
  100. case NorthWestGravity:
  101. case NorthGravity:
  102. case NorthEastGravity:
  103. dy = c->border;
  104. break;
  105. case EastGravity:
  106. case CenterGravity:
  107. case WestGravity:
  108. dy = -(*c->h / 2) + c->border;
  109. break;
  110. case SouthEastGravity:
  111. case SouthGravity:
  112. case SouthWestGravity:
  113. dy = -(*c->h);
  114. break;
  115. default:
  116. break;
  117. }
  118. switch (c->grav) {
  119. case StaticGravity:
  120. case NorthWestGravity:
  121. case WestGravity:
  122. case SouthWestGravity:
  123. dx = c->border;
  124. break;
  125. case NorthGravity:
  126. case CenterGravity:
  127. case SouthGravity:
  128. dx = -(*c->w / 2) + c->border;
  129. break;
  130. case NorthEastGravity:
  131. case EastGravity:
  132. case SouthEastGravity:
  133. dx = -(*c->w + c->border);
  134. break;
  135. default:
  136. break;
  137. }
  138. if(invert) {
  139. dx = -dx;
  140. dy = -dy;
  141. }
  142. *c->x += dx;
  143. *c->y += dy;
  144. }
  145. void
  146. higher(Client *c)
  147. {
  148. XRaiseWindow(dpy, c->win);
  149. XRaiseWindow(dpy, c->title);
  150. }
  151. void
  152. killclient(Arg *arg)
  153. {
  154. if(!sel)
  155. return;
  156. if(sel->proto & WM_PROTOCOL_DELWIN)
  157. sendevent(sel->win, wmatom[WMProtocols], wmatom[WMDelete]);
  158. else
  159. XKillClient(dpy, sel->win);
  160. }
  161. void
  162. lower(Client *c)
  163. {
  164. XLowerWindow(dpy, c->title);
  165. XLowerWindow(dpy, c->win);
  166. }
  167. void
  168. manage(Window w, XWindowAttributes *wa)
  169. {
  170. Client *c;
  171. XSetWindowAttributes twa;
  172. Window trans;
  173. c = emallocz(sizeof(Client));
  174. c->win = w;
  175. c->bx = c->fx = c->tx = wa->x;
  176. c->by = c->fy = c->ty = wa->y;
  177. if(c->fy < bh)
  178. c->by = c->fy = c->ty += bh;
  179. c->bw = c->fw = c->tw = wa->width;
  180. c->fh = c->th = wa->height;
  181. c->bh = bh;
  182. c->border = 1;
  183. c->proto = getproto(c->win);
  184. setsize(c);
  185. XSelectInput(dpy, c->win,
  186. StructureNotifyMask | PropertyChangeMask | EnterWindowMask);
  187. XGetTransientForHint(dpy, c->win, &trans);
  188. twa.override_redirect = 1;
  189. twa.background_pixmap = ParentRelative;
  190. twa.event_mask = ExposureMask;
  191. c->title = XCreateWindow(dpy, root, c->bx, c->by, c->bw, c->bh,
  192. 0, DefaultDepth(dpy, screen), CopyFromParent,
  193. DefaultVisual(dpy, screen),
  194. CWOverrideRedirect | CWBackPixmap | CWEventMask, &twa);
  195. settags(c);
  196. c->next = clients;
  197. clients = c;
  198. XGrabButton(dpy, Button1, ControlMask, c->win, False, ButtonPressMask,
  199. GrabModeAsync, GrabModeSync, None, None);
  200. XGrabButton(dpy, Button1, Mod1Mask, c->win, False, ButtonPressMask,
  201. GrabModeAsync, GrabModeSync, None, None);
  202. XGrabButton(dpy, Button2, Mod1Mask, c->win, False, ButtonPressMask,
  203. GrabModeAsync, GrabModeSync, None, None);
  204. XGrabButton(dpy, Button3, Mod1Mask, c->win, False, ButtonPressMask,
  205. GrabModeAsync, GrabModeSync, None, None);
  206. if(!c->isfloat)
  207. c->isfloat = trans
  208. || ((c->maxw == c->minw) && (c->maxh == c->minh));
  209. setgeom(c);
  210. settitle(c);
  211. arrange(NULL);
  212. /* mapping the window now prevents flicker */
  213. if(c->tags[tsel]) {
  214. XMapRaised(dpy, c->win);
  215. XMapRaised(dpy, c->title);
  216. focus(c);
  217. }
  218. else {
  219. ban(c);
  220. XMapRaised(dpy, c->win);
  221. XMapRaised(dpy, c->title);
  222. XSync(dpy, False);
  223. }
  224. }
  225. void
  226. maximize(Arg *arg)
  227. {
  228. if(!sel)
  229. return;
  230. *sel->x = sx;
  231. *sel->y = sy + bh;
  232. *sel->w = sw - 2 * sel->border;
  233. *sel->h = sh - 2 * sel->border - bh;
  234. higher(sel);
  235. resize(sel, False);
  236. }
  237. void
  238. pop(Client *c)
  239. {
  240. Client **l;
  241. for(l = &clients; *l && *l != c; l = &(*l)->next);
  242. *l = c->next;
  243. c->next = clients; /* pop */
  244. clients = c;
  245. arrange(NULL);
  246. }
  247. void
  248. resize(Client *c, Bool inc)
  249. {
  250. XConfigureEvent e;
  251. if(inc) {
  252. if(c->incw)
  253. *c->w -= (*c->w - c->basew) % c->incw;
  254. if(c->inch)
  255. *c->h -= (*c->h - c->baseh) % c->inch;
  256. }
  257. if(*c->x > sw) /* might happen on restart */
  258. *c->x = sw - *c->w;
  259. if(*c->y > sh)
  260. *c->y = sh - *c->h;
  261. if(c->minw && *c->w < c->minw)
  262. *c->w = c->minw;
  263. if(c->minh && *c->h < c->minh)
  264. *c->h = c->minh;
  265. if(c->maxw && *c->w > c->maxw)
  266. *c->w = c->maxw;
  267. if(c->maxh && *c->h > c->maxh)
  268. *c->h = c->maxh;
  269. resizetitle(c);
  270. XSetWindowBorderWidth(dpy, c->win, 1);
  271. XMoveResizeWindow(dpy, c->win, *c->x, *c->y, *c->w, *c->h);
  272. e.type = ConfigureNotify;
  273. e.event = c->win;
  274. e.window = c->win;
  275. e.x = *c->x;
  276. e.y = *c->y;
  277. e.width = *c->w;
  278. e.height = *c->h;
  279. e.border_width = c->border;
  280. e.above = None;
  281. e.override_redirect = False;
  282. XSendEvent(dpy, c->win, False, StructureNotifyMask, (XEvent *)&e);
  283. XSync(dpy, False);
  284. }
  285. void
  286. setgeom(Client *c)
  287. {
  288. if((arrange == dotile) && !c->isfloat) {
  289. c->x = &c->tx;
  290. c->y = &c->ty;
  291. c->w = &c->tw;
  292. c->h = &c->th;
  293. }
  294. else {
  295. c->x = &c->fx;
  296. c->y = &c->fy;
  297. c->w = &c->fw;
  298. c->h = &c->fh;
  299. }
  300. }
  301. void
  302. setsize(Client *c)
  303. {
  304. XSizeHints size;
  305. long msize;
  306. if(!XGetWMNormalHints(dpy, c->win, &size, &msize) || !size.flags)
  307. size.flags = PSize;
  308. c->flags = size.flags;
  309. if(c->flags & PBaseSize) {
  310. c->basew = size.base_width;
  311. c->baseh = size.base_height;
  312. }
  313. else
  314. c->basew = c->baseh = 0;
  315. if(c->flags & PResizeInc) {
  316. c->incw = size.width_inc;
  317. c->inch = size.height_inc;
  318. }
  319. else
  320. c->incw = c->inch = 0;
  321. if(c->flags & PMaxSize) {
  322. c->maxw = size.max_width;
  323. c->maxh = size.max_height;
  324. }
  325. else
  326. c->maxw = c->maxh = 0;
  327. if(c->flags & PMinSize) {
  328. c->minw = size.min_width;
  329. c->minh = size.min_height;
  330. }
  331. else
  332. c->minw = c->minh = 0;
  333. if(c->flags & PWinGravity)
  334. c->grav = size.win_gravity;
  335. else
  336. c->grav = NorthWestGravity;
  337. }
  338. void
  339. settitle(Client *c)
  340. {
  341. XTextProperty name;
  342. int n;
  343. char **list = NULL;
  344. name.nitems = 0;
  345. c->name[0] = 0;
  346. XGetTextProperty(dpy, c->win, &name, netatom[NetWMName]);
  347. if(!name.nitems)
  348. XGetWMName(dpy, c->win, &name);
  349. if(!name.nitems)
  350. return;
  351. if(name.encoding == XA_STRING)
  352. strncpy(c->name, (char *)name.value, sizeof(c->name));
  353. else {
  354. if(XmbTextPropertyToTextList(dpy, &name, &list, &n) >= Success
  355. && n > 0 && *list)
  356. {
  357. strncpy(c->name, *list, sizeof(c->name));
  358. XFreeStringList(list);
  359. }
  360. }
  361. XFree(name.value);
  362. resizetitle(c);
  363. }
  364. void
  365. unmanage(Client *c)
  366. {
  367. Client **l;
  368. XGrabServer(dpy);
  369. XSetErrorHandler(xerrordummy);
  370. XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
  371. XDestroyWindow(dpy, c->title);
  372. for(l = &clients; *l && *l != c; l = &(*l)->next);
  373. *l = c->next;
  374. for(l = &clients; *l; l = &(*l)->next)
  375. if((*l)->revert == c)
  376. (*l)->revert = NULL;
  377. if(sel == c)
  378. sel = sel->revert ? sel->revert : clients;
  379. free(c);
  380. XSync(dpy, False);
  381. XSetErrorHandler(xerror);
  382. XUngrabServer(dpy);
  383. arrange(NULL);
  384. if(sel)
  385. focus(sel);
  386. }
  387. void
  388. zoom(Arg *arg)
  389. {
  390. Client *c;
  391. if(!sel)
  392. return;
  393. if(sel == getnext(clients, tsel) && sel->next) {
  394. if((c = getnext(sel->next, tsel)))
  395. sel = c;
  396. }
  397. pop(sel);
  398. focus(sel);
  399. }