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.

2150 lines
52 KiB

9 years ago
9 years ago
9 years ago
17 years ago
9 years ago
15 years ago
9 years ago
9 years ago
13 years ago
9 years ago
9 years ago
9 years ago
16 years ago
15 years ago
9 years ago
9 years ago
15 years ago
17 years ago
9 years ago
16 years ago
9 years ago
9 years ago
9 years ago
15 years ago
9 years ago
9 years ago
9 years ago
15 years ago
15 years ago
9 years ago
9 years ago
15 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
13 years ago
9 years ago
9 years ago
15 years ago
15 years ago
9 years ago
9 years ago
16 years ago
16 years ago
9 years ago
16 years ago
9 years ago
9 years ago
9 years ago
15 years ago
15 years ago
9 years ago
9 years ago
15 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
16 years ago
16 years ago
16 years ago
9 years ago
15 years ago
13 years ago
9 years ago
9 years ago
16 years ago
16 years ago
16 years ago
16 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
16 years ago
16 years ago
15 years ago
16 years ago
  1. /* See LICENSE file for copyright and license details.
  2. *
  3. * dynamic window manager is designed like any other X client as well. It is
  4. * driven through handling X events. In contrast to other X clients, a window
  5. * manager selects for SubstructureRedirectMask on the root window, to receive
  6. * events about window (dis-)appearance. Only one X connection at a time is
  7. * allowed to select for this event mask.
  8. *
  9. * The event handlers of dwm are organized in an array which is accessed
  10. * whenever a new event has been fetched. This allows event dispatching
  11. * in O(1) time.
  12. *
  13. * Each child of the root window is called a client, except windows which have
  14. * set the override_redirect flag. Clients are organized in a linked client
  15. * list on each monitor, the focus history is remembered through a stack list
  16. * on each monitor. Each client contains a bit array to indicate the tags of a
  17. * client.
  18. *
  19. * Keys and tagging rules are organized as arrays and defined in config.h.
  20. *
  21. * To understand everything else, start reading main().
  22. */
  23. #include <errno.h>
  24. #include <locale.h>
  25. #include <signal.h>
  26. #include <stdarg.h>
  27. #include <stdio.h>
  28. #include <stdlib.h>
  29. #include <string.h>
  30. #include <unistd.h>
  31. #include <sys/types.h>
  32. #include <sys/wait.h>
  33. #include <X11/cursorfont.h>
  34. #include <X11/keysym.h>
  35. #include <X11/Xatom.h>
  36. #include <X11/Xlib.h>
  37. #include <X11/Xproto.h>
  38. #include <X11/Xutil.h>
  39. #ifdef XINERAMA
  40. #include <X11/extensions/Xinerama.h>
  41. #endif /* XINERAMA */
  42. #include <X11/Xft/Xft.h>
  43. #include "drw.h"
  44. #include "util.h"
  45. /* macros */
  46. #define BUTTONMASK (ButtonPressMask|ButtonReleaseMask)
  47. #define CLEANMASK(mask) (mask & ~(numlockmask|LockMask) & (ShiftMask|ControlMask|Mod1Mask|Mod2Mask|Mod3Mask|Mod4Mask|Mod5Mask))
  48. #define INTERSECT(x,y,w,h,m) (MAX(0, MIN((x)+(w),(m)->wx+(m)->ww) - MAX((x),(m)->wx)) \
  49. * MAX(0, MIN((y)+(h),(m)->wy+(m)->wh) - MAX((y),(m)->wy)))
  50. #define ISVISIBLE(C) ((C->tags & C->mon->tagset[C->mon->seltags]))
  51. #define LENGTH(X) (sizeof X / sizeof X[0])
  52. #define MOUSEMASK (BUTTONMASK|PointerMotionMask)
  53. #define WIDTH(X) ((X)->w + 2 * (X)->bw)
  54. #define HEIGHT(X) ((X)->h + 2 * (X)->bw)
  55. #define TAGMASK ((1 << LENGTH(tags)) - 1)
  56. #define TEXTW(X) (drw_fontset_getwidth(drw, (X)) + lrpad)
  57. /* enums */
  58. enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */
  59. enum { SchemeNorm, SchemeSel }; /* color schemes */
  60. enum { NetSupported, NetWMName, NetWMState, NetWMCheck,
  61. NetWMFullscreen, NetActiveWindow, NetWMWindowType,
  62. NetWMWindowTypeDialog, NetClientList, NetLast }; /* EWMH atoms */
  63. enum { WMProtocols, WMDelete, WMState, WMTakeFocus, WMLast }; /* default atoms */
  64. enum { ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle,
  65. ClkClientWin, ClkRootWin, ClkLast }; /* clicks */
  66. typedef union {
  67. int i;
  68. unsigned int ui;
  69. float f;
  70. const void *v;
  71. } Arg;
  72. typedef struct {
  73. unsigned int click;
  74. unsigned int mask;
  75. unsigned int button;
  76. void (*func)(const Arg *arg);
  77. const Arg arg;
  78. } Button;
  79. typedef struct Monitor Monitor;
  80. typedef struct Client Client;
  81. struct Client {
  82. char name[256];
  83. float mina, maxa;
  84. int x, y, w, h;
  85. int oldx, oldy, oldw, oldh;
  86. int basew, baseh, incw, inch, maxw, maxh, minw, minh;
  87. int bw, oldbw;
  88. unsigned int tags;
  89. int isfixed, isfloating, isurgent, neverfocus, oldstate, isfullscreen;
  90. Client *next;
  91. Client *snext;
  92. Monitor *mon;
  93. Window win;
  94. };
  95. typedef struct {
  96. unsigned int mod;
  97. KeySym keysym;
  98. void (*func)(const Arg *);
  99. const Arg arg;
  100. } Key;
  101. typedef struct {
  102. const char *symbol;
  103. void (*arrange)(Monitor *);
  104. } Layout;
  105. struct Monitor {
  106. char ltsymbol[16];
  107. float mfact;
  108. int nmaster;
  109. int num;
  110. int by; /* bar geometry */
  111. int mx, my, mw, mh; /* screen size */
  112. int wx, wy, ww, wh; /* window area */
  113. unsigned int seltags;
  114. unsigned int sellt;
  115. unsigned int tagset[2];
  116. int showbar;
  117. int topbar;
  118. Client *clients;
  119. Client *sel;
  120. Client *stack;
  121. Monitor *next;
  122. Window barwin;
  123. const Layout *lt[2];
  124. };
  125. typedef struct {
  126. const char *class;
  127. const char *instance;
  128. const char *title;
  129. unsigned int tags;
  130. int isfloating;
  131. int monitor;
  132. } Rule;
  133. /* function declarations */
  134. static void applyrules(Client *c);
  135. static int applysizehints(Client *c, int *x, int *y, int *w, int *h, int interact);
  136. static void arrange(Monitor *m);
  137. static void arrangemon(Monitor *m);
  138. static void attach(Client *c);
  139. static void attachstack(Client *c);
  140. static void buttonpress(XEvent *e);
  141. static void checkotherwm(void);
  142. static void cleanup(void);
  143. static void cleanupmon(Monitor *mon);
  144. static void clientmessage(XEvent *e);
  145. static void configure(Client *c);
  146. static void configurenotify(XEvent *e);
  147. static void configurerequest(XEvent *e);
  148. static Monitor *createmon(void);
  149. static void destroynotify(XEvent *e);
  150. static void detach(Client *c);
  151. static void detachstack(Client *c);
  152. static Monitor *dirtomon(int dir);
  153. static void drawbar(Monitor *m);
  154. static void drawbars(void);
  155. static void enternotify(XEvent *e);
  156. static void expose(XEvent *e);
  157. static void focus(Client *c);
  158. static void focusin(XEvent *e);
  159. static void focusmon(const Arg *arg);
  160. static void focusstack(const Arg *arg);
  161. static Atom getatomprop(Client *c, Atom prop);
  162. static int getrootptr(int *x, int *y);
  163. static long getstate(Window w);
  164. static int gettextprop(Window w, Atom atom, char *text, unsigned int size);
  165. static void grabbuttons(Client *c, int focused);
  166. static void grabkeys(void);
  167. static void incnmaster(const Arg *arg);
  168. static void keypress(XEvent *e);
  169. static void killclient(const Arg *arg);
  170. static void manage(Window w, XWindowAttributes *wa);
  171. static void mappingnotify(XEvent *e);
  172. static void maprequest(XEvent *e);
  173. static void monocle(Monitor *m);
  174. static void motionnotify(XEvent *e);
  175. static void movemouse(const Arg *arg);
  176. static Client *nexttiled(Client *c);
  177. static void pop(Client *);
  178. static void propertynotify(XEvent *e);
  179. static void quit(const Arg *arg);
  180. static Monitor *recttomon(int x, int y, int w, int h);
  181. static void resize(Client *c, int x, int y, int w, int h, int interact);
  182. static void resizeclient(Client *c, int x, int y, int w, int h);
  183. static void resizemouse(const Arg *arg);
  184. static void restack(Monitor *m);
  185. static void run(void);
  186. static void scan(void);
  187. static int sendevent(Client *c, Atom proto);
  188. static void sendmon(Client *c, Monitor *m);
  189. static void setclientstate(Client *c, long state);
  190. static void setfocus(Client *c);
  191. static void setfullscreen(Client *c, int fullscreen);
  192. static void setlayout(const Arg *arg);
  193. static void setmfact(const Arg *arg);
  194. static void setup(void);
  195. static void seturgent(Client *c, int urg);
  196. static void showhide(Client *c);
  197. static void sigchld(int unused);
  198. static void spawn(const Arg *arg);
  199. static void tag(const Arg *arg);
  200. static void tagmon(const Arg *arg);
  201. static void tile(Monitor *);
  202. static void togglebar(const Arg *arg);
  203. static void togglefloating(const Arg *arg);
  204. static void toggletag(const Arg *arg);
  205. static void toggleview(const Arg *arg);
  206. static void unfocus(Client *c, int setfocus);
  207. static void unmanage(Client *c, int destroyed);
  208. static void unmapnotify(XEvent *e);
  209. static void updatebarpos(Monitor *m);
  210. static void updatebars(void);
  211. static void updateclientlist(void);
  212. static int updategeom(void);
  213. static void updatenumlockmask(void);
  214. static void updatesizehints(Client *c);
  215. static void updatestatus(void);
  216. static void updatetitle(Client *c);
  217. static void updatewindowtype(Client *c);
  218. static void updatewmhints(Client *c);
  219. static void view(const Arg *arg);
  220. static Client *wintoclient(Window w);
  221. static Monitor *wintomon(Window w);
  222. static int xerror(Display *dpy, XErrorEvent *ee);
  223. static int xerrordummy(Display *dpy, XErrorEvent *ee);
  224. static int xerrorstart(Display *dpy, XErrorEvent *ee);
  225. static void zoom(const Arg *arg);
  226. /* variables */
  227. static const char broken[] = "broken";
  228. static char stext[256];
  229. static int screen;
  230. static int sw, sh; /* X display screen geometry width, height */
  231. static int bh, blw = 0; /* bar geometry */
  232. static int lrpad; /* sum of left and right padding for text */
  233. static int (*xerrorxlib)(Display *, XErrorEvent *);
  234. static unsigned int numlockmask = 0;
  235. static void (*handler[LASTEvent]) (XEvent *) = {
  236. [ButtonPress] = buttonpress,
  237. [ClientMessage] = clientmessage,
  238. [ConfigureRequest] = configurerequest,
  239. [ConfigureNotify] = configurenotify,
  240. [DestroyNotify] = destroynotify,
  241. [EnterNotify] = enternotify,
  242. [Expose] = expose,
  243. [FocusIn] = focusin,
  244. [KeyPress] = keypress,
  245. [MappingNotify] = mappingnotify,
  246. [MapRequest] = maprequest,
  247. [MotionNotify] = motionnotify,
  248. [PropertyNotify] = propertynotify,
  249. [UnmapNotify] = unmapnotify
  250. };
  251. static Atom wmatom[WMLast], netatom[NetLast];
  252. static int running = 1;
  253. static Cur *cursor[CurLast];
  254. static Clr **scheme;
  255. static Display *dpy;
  256. static Drw *drw;
  257. static Monitor *mons, *selmon;
  258. static Window root, wmcheckwin;
  259. /* configuration, allows nested code to access above variables */
  260. #include "config.h"
  261. /* compile-time check if all tags fit into an unsigned int bit array. */
  262. struct NumTags { char limitexceeded[LENGTH(tags) > 31 ? -1 : 1]; };
  263. /* function implementations */
  264. void
  265. applyrules(Client *c)
  266. {
  267. const char *class, *instance;
  268. unsigned int i;
  269. const Rule *r;
  270. Monitor *m;
  271. XClassHint ch = { NULL, NULL };
  272. /* rule matching */
  273. c->isfloating = 0;
  274. c->tags = 0;
  275. XGetClassHint(dpy, c->win, &ch);
  276. class = ch.res_class ? ch.res_class : broken;
  277. instance = ch.res_name ? ch.res_name : broken;
  278. for (i = 0; i < LENGTH(rules); i++) {
  279. r = &rules[i];
  280. if ((!r->title || strstr(c->name, r->title))
  281. && (!r->class || strstr(class, r->class))
  282. && (!r->instance || strstr(instance, r->instance)))
  283. {
  284. c->isfloating = r->isfloating;
  285. c->tags |= r->tags;
  286. for (m = mons; m && m->num != r->monitor; m = m->next);
  287. if (m)
  288. c->mon = m;
  289. }
  290. }
  291. if (ch.res_class)
  292. XFree(ch.res_class);
  293. if (ch.res_name)
  294. XFree(ch.res_name);
  295. c->tags = c->tags & TAGMASK ? c->tags & TAGMASK : c->mon->tagset[c->mon->seltags];
  296. }
  297. int
  298. applysizehints(Client *c, int *x, int *y, int *w, int *h, int interact)
  299. {
  300. int baseismin;
  301. Monitor *m = c->mon;
  302. /* set minimum possible */
  303. *w = MAX(1, *w);
  304. *h = MAX(1, *h);
  305. if (interact) {
  306. if (*x > sw)
  307. *x = sw - WIDTH(c);
  308. if (*y > sh)
  309. *y = sh - HEIGHT(c);
  310. if (*x + *w + 2 * c->bw < 0)
  311. *x = 0;
  312. if (*y + *h + 2 * c->bw < 0)
  313. *y = 0;
  314. } else {
  315. if (*x >= m->wx + m->ww)
  316. *x = m->wx + m->ww - WIDTH(c);
  317. if (*y >= m->wy + m->wh)
  318. *y = m->wy + m->wh - HEIGHT(c);
  319. if (*x + *w + 2 * c->bw <= m->wx)
  320. *x = m->wx;
  321. if (*y + *h + 2 * c->bw <= m->wy)
  322. *y = m->wy;
  323. }
  324. if (*h < bh)
  325. *h = bh;
  326. if (*w < bh)
  327. *w = bh;
  328. if (resizehints || c->isfloating || !c->mon->lt[c->mon->sellt]->arrange) {
  329. /* see last two sentences in ICCCM 4.1.2.3 */
  330. baseismin = c->basew == c->minw && c->baseh == c->minh;
  331. if (!baseismin) { /* temporarily remove base dimensions */
  332. *w -= c->basew;
  333. *h -= c->baseh;
  334. }
  335. /* adjust for aspect limits */
  336. if (c->mina > 0 && c->maxa > 0) {
  337. if (c->maxa < (float)*w / *h)
  338. *w = *h * c->maxa + 0.5;
  339. else if (c->mina < (float)*h / *w)
  340. *h = *w * c->mina + 0.5;
  341. }
  342. if (baseismin) { /* increment calculation requires this */
  343. *w -= c->basew;
  344. *h -= c->baseh;
  345. }
  346. /* adjust for increment value */
  347. if (c->incw)
  348. *w -= *w % c->incw;
  349. if (c->inch)
  350. *h -= *h % c->inch;
  351. /* restore base dimensions */
  352. *w = MAX(*w + c->basew, c->minw);
  353. *h = MAX(*h + c->baseh, c->minh);
  354. if (c->maxw)
  355. *w = MIN(*w, c->maxw);
  356. if (c->maxh)
  357. *h = MIN(*h, c->maxh);
  358. }
  359. return *x != c->x || *y != c->y || *w != c->w || *h != c->h;
  360. }
  361. void
  362. arrange(Monitor *m)
  363. {
  364. if (m)
  365. showhide(m->stack);
  366. else for (m = mons; m; m = m->next)
  367. showhide(m->stack);
  368. if (m) {
  369. arrangemon(m);
  370. restack(m);
  371. } else for (m = mons; m; m = m->next)
  372. arrangemon(m);
  373. }
  374. void
  375. arrangemon(Monitor *m)
  376. {
  377. strncpy(m->ltsymbol, m->lt[m->sellt]->symbol, sizeof m->ltsymbol);
  378. if (m->lt[m->sellt]->arrange)
  379. m->lt[m->sellt]->arrange(m);
  380. }
  381. void
  382. attach(Client *c)
  383. {
  384. c->next = c->mon->clients;
  385. c->mon->clients = c;
  386. }
  387. void
  388. attachstack(Client *c)
  389. {
  390. c->snext = c->mon->stack;
  391. c->mon->stack = c;
  392. }
  393. void
  394. buttonpress(XEvent *e)
  395. {
  396. unsigned int i, x, click;
  397. Arg arg = {0};
  398. Client *c;
  399. Monitor *m;
  400. XButtonPressedEvent *ev = &e->xbutton;
  401. click = ClkRootWin;
  402. /* focus monitor if necessary */
  403. if ((m = wintomon(ev->window)) && m != selmon) {
  404. unfocus(selmon->sel, 1);
  405. selmon = m;
  406. focus(NULL);
  407. }
  408. if (ev->window == selmon->barwin) {
  409. i = x = 0;
  410. do
  411. x += TEXTW(tags[i]);
  412. while (ev->x >= x && ++i < LENGTH(tags));
  413. if (i < LENGTH(tags)) {
  414. click = ClkTagBar;
  415. arg.ui = 1 << i;
  416. } else if (ev->x < x + blw)
  417. click = ClkLtSymbol;
  418. else if (ev->x > selmon->ww - TEXTW(stext))
  419. click = ClkStatusText;
  420. else
  421. click = ClkWinTitle;
  422. } else if ((c = wintoclient(ev->window))) {
  423. focus(c);
  424. restack(selmon);
  425. XAllowEvents(dpy, ReplayPointer, CurrentTime);
  426. click = ClkClientWin;
  427. }
  428. for (i = 0; i < LENGTH(buttons); i++)
  429. if (click == buttons[i].click && buttons[i].func && buttons[i].button == ev->button
  430. && CLEANMASK(buttons[i].mask) == CLEANMASK(ev->state))
  431. buttons[i].func(click == ClkTagBar && buttons[i].arg.i == 0 ? &arg : &buttons[i].arg);
  432. }
  433. void
  434. checkotherwm(void)
  435. {
  436. xerrorxlib = XSetErrorHandler(xerrorstart);
  437. /* this causes an error if some other window manager is running */
  438. XSelectInput(dpy, DefaultRootWindow(dpy), SubstructureRedirectMask);
  439. XSync(dpy, False);
  440. XSetErrorHandler(xerror);
  441. XSync(dpy, False);
  442. }
  443. void
  444. cleanup(void)
  445. {
  446. Arg a = {.ui = ~0};
  447. Layout foo = { "", NULL };
  448. Monitor *m;
  449. size_t i;
  450. view(&a);
  451. selmon->lt[selmon->sellt] = &foo;
  452. for (m = mons; m; m = m->next)
  453. while (m->stack)
  454. unmanage(m->stack, 0);
  455. XUngrabKey(dpy, AnyKey, AnyModifier, root);
  456. while (mons)
  457. cleanupmon(mons);
  458. for (i = 0; i < CurLast; i++)
  459. drw_cur_free(drw, cursor[i]);
  460. for (i = 0; i < LENGTH(colors); i++)
  461. free(scheme[i]);
  462. XDestroyWindow(dpy, wmcheckwin);
  463. drw_free(drw);
  464. XSync(dpy, False);
  465. XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime);
  466. XDeleteProperty(dpy, root, netatom[NetActiveWindow]);
  467. }
  468. void
  469. cleanupmon(Monitor *mon)
  470. {
  471. Monitor *m;
  472. if (mon == mons)
  473. mons = mons->next;
  474. else {
  475. for (m = mons; m && m->next != mon; m = m->next);
  476. m->next = mon->next;
  477. }
  478. XUnmapWindow(dpy, mon->barwin);
  479. XDestroyWindow(dpy, mon->barwin);
  480. free(mon);
  481. }
  482. void
  483. clientmessage(XEvent *e)
  484. {
  485. XClientMessageEvent *cme = &e->xclient;
  486. Client *c = wintoclient(cme->window);
  487. if (!c)
  488. return;
  489. if (cme->message_type == netatom[NetWMState]) {
  490. if (cme->data.l[1] == netatom[NetWMFullscreen]
  491. || cme->data.l[2] == netatom[NetWMFullscreen])
  492. setfullscreen(c, (cme->data.l[0] == 1 /* _NET_WM_STATE_ADD */
  493. || (cme->data.l[0] == 2 /* _NET_WM_STATE_TOGGLE */ && !c->isfullscreen)));
  494. } else if (cme->message_type == netatom[NetActiveWindow]) {
  495. if (c != selmon->sel && !c->isurgent)
  496. seturgent(c, 1);
  497. }
  498. }
  499. void
  500. configure(Client *c)
  501. {
  502. XConfigureEvent ce;
  503. ce.type = ConfigureNotify;
  504. ce.display = dpy;
  505. ce.event = c->win;
  506. ce.window = c->win;
  507. ce.x = c->x;
  508. ce.y = c->y;
  509. ce.width = c->w;
  510. ce.height = c->h;
  511. ce.border_width = c->bw;
  512. ce.above = None;
  513. ce.override_redirect = False;
  514. XSendEvent(dpy, c->win, False, StructureNotifyMask, (XEvent *)&ce);
  515. }
  516. void
  517. configurenotify(XEvent *e)
  518. {
  519. Monitor *m;
  520. Client *c;
  521. XConfigureEvent *ev = &e->xconfigure;
  522. int dirty;
  523. /* TODO: updategeom handling sucks, needs to be simplified */
  524. if (ev->window == root) {
  525. dirty = (sw != ev->width || sh != ev->height);
  526. sw = ev->width;
  527. sh = ev->height;
  528. if (updategeom() || dirty) {
  529. drw_resize(drw, sw, bh);
  530. updatebars();
  531. for (m = mons; m; m = m->next) {
  532. for (c = m->clients; c; c = c->next)
  533. if (c->isfullscreen)
  534. resizeclient(c, m->mx, m->my, m->mw, m->mh);
  535. XMoveResizeWindow(dpy, m->barwin, m->wx, m->by, m->ww, bh);
  536. }
  537. focus(NULL);
  538. arrange(NULL);
  539. }
  540. }
  541. }
  542. void
  543. configurerequest(XEvent *e)
  544. {
  545. Client *c;
  546. Monitor *m;
  547. XConfigureRequestEvent *ev = &e->xconfigurerequest;
  548. XWindowChanges wc;
  549. if ((c = wintoclient(ev->window))) {
  550. if (ev->value_mask & CWBorderWidth)
  551. c->bw = ev->border_width;
  552. else if (c->isfloating || !selmon->lt[selmon->sellt]->arrange) {
  553. m = c->mon;
  554. if (ev->value_mask & CWX) {
  555. c->oldx = c->x;
  556. c->x = m->mx + ev->x;
  557. }
  558. if (ev->value_mask & CWY) {
  559. c->oldy = c->y;
  560. c->y = m->my + ev->y;
  561. }
  562. if (ev->value_mask & CWWidth) {
  563. c->oldw = c->w;
  564. c->w = ev->width;
  565. }
  566. if (ev->value_mask & CWHeight) {
  567. c->oldh = c->h;
  568. c->h = ev->height;
  569. }
  570. if ((c->x + c->w) > m->mx + m->mw && c->isfloating)
  571. c->x = m->mx + (m->mw / 2 - WIDTH(c) / 2); /* center in x direction */
  572. if ((c->y + c->h) > m->my + m->mh && c->isfloating)
  573. c->y = m->my + (m->mh / 2 - HEIGHT(c) / 2); /* center in y direction */
  574. if ((ev->value_mask & (CWX|CWY)) && !(ev->value_mask & (CWWidth|CWHeight)))
  575. configure(c);
  576. if (ISVISIBLE(c))
  577. XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h);
  578. } else
  579. configure(c);
  580. } else {
  581. wc.x = ev->x;
  582. wc.y = ev->y;
  583. wc.width = ev->width;
  584. wc.height = ev->height;
  585. wc.border_width = ev->border_width;
  586. wc.sibling = ev->above;
  587. wc.stack_mode = ev->detail;
  588. XConfigureWindow(dpy, ev->window, ev->value_mask, &wc);
  589. }
  590. XSync(dpy, False);
  591. }
  592. Monitor *
  593. createmon(void)
  594. {
  595. Monitor *m;
  596. m = ecalloc(1, sizeof(Monitor));
  597. m->tagset[0] = m->tagset[1] = 1;
  598. m->mfact = mfact;
  599. m->nmaster = nmaster;
  600. m->showbar = showbar;
  601. m->topbar = topbar;
  602. m->lt[0] = &layouts[0];
  603. m->lt[1] = &layouts[1 % LENGTH(layouts)];
  604. strncpy(m->ltsymbol, layouts[0].symbol, sizeof m->ltsymbol);
  605. return m;
  606. }
  607. void
  608. destroynotify(XEvent *e)
  609. {
  610. Client *c;
  611. XDestroyWindowEvent *ev = &e->xdestroywindow;
  612. if ((c = wintoclient(ev->window)))
  613. unmanage(c, 1);
  614. }
  615. void
  616. detach(Client *c)
  617. {
  618. Client **tc;
  619. for (tc = &c->mon->clients; *tc && *tc != c; tc = &(*tc)->next);
  620. *tc = c->next;
  621. }
  622. void
  623. detachstack(Client *c)
  624. {
  625. Client **tc, *t;
  626. for (tc = &c->mon->stack; *tc && *tc != c; tc = &(*tc)->snext);
  627. *tc = c->snext;
  628. if (c == c->mon->sel) {
  629. for (t = c->mon->stack; t && !ISVISIBLE(t); t = t->snext);
  630. c->mon->sel = t;
  631. }
  632. }
  633. Monitor *
  634. dirtomon(int dir)
  635. {
  636. Monitor *m = NULL;
  637. if (dir > 0) {
  638. if (!(m = selmon->next))
  639. m = mons;
  640. } else if (selmon == mons)
  641. for (m = mons; m->next; m = m->next);
  642. else
  643. for (m = mons; m->next != selmon; m = m->next);
  644. return m;
  645. }
  646. void
  647. drawbar(Monitor *m)
  648. {
  649. int x, w, sw = 0;
  650. int boxs = drw->fonts->h / 9;
  651. int boxw = drw->fonts->h / 6 + 2;
  652. unsigned int i, occ = 0, urg = 0;
  653. Client *c;
  654. /* draw status first so it can be overdrawn by tags later */
  655. if (m == selmon) { /* status is only drawn on selected monitor */
  656. drw_setscheme(drw, scheme[SchemeNorm]);
  657. sw = TEXTW(stext) - lrpad + 2; /* 2px right padding */
  658. drw_text(drw, m->ww - sw, 0, sw, bh, 0, stext, 0);
  659. }
  660. for (c = m->clients; c; c = c->next) {
  661. occ |= c->tags;
  662. if (c->isurgent)
  663. urg |= c->tags;
  664. }
  665. x = 0;
  666. for (i = 0; i < LENGTH(tags); i++) {
  667. w = TEXTW(tags[i]);
  668. drw_setscheme(drw, scheme[m->tagset[m->seltags] & 1 << i ? SchemeSel : SchemeNorm]);
  669. drw_text(drw, x, 0, w, bh, lrpad / 2, tags[i], urg & 1 << i);
  670. if (occ & 1 << i)
  671. drw_rect(drw, x + boxs, boxs, boxw, boxw,
  672. m == selmon && selmon->sel && selmon->sel->tags & 1 << i,
  673. urg & 1 << i);
  674. x += w;
  675. }
  676. w = blw = TEXTW(m->ltsymbol);
  677. drw_setscheme(drw, scheme[SchemeNorm]);
  678. x = drw_text(drw, x, 0, w, bh, lrpad / 2, m->ltsymbol, 0);
  679. if ((w = m->ww - sw - x) > bh) {
  680. if (m->sel) {
  681. drw_setscheme(drw, scheme[m == selmon ? SchemeSel : SchemeNorm]);
  682. drw_text(drw, x, 0, w, bh, lrpad / 2, m->sel->name, 0);
  683. if (m->sel->isfloating)
  684. drw_rect(drw, x + boxs, boxs, boxw, boxw, m->sel->isfixed, 0);
  685. } else {
  686. drw_setscheme(drw, scheme[SchemeNorm]);
  687. drw_rect(drw, x, 0, w, bh, 1, 1);
  688. }
  689. }
  690. drw_map(drw, m->barwin, 0, 0, m->ww, bh);
  691. }
  692. void
  693. drawbars(void)
  694. {
  695. Monitor *m;
  696. for (m = mons; m; m = m->next)
  697. drawbar(m);
  698. }
  699. void
  700. enternotify(XEvent *e)
  701. {
  702. Client *c;
  703. Monitor *m;
  704. XCrossingEvent *ev = &e->xcrossing;
  705. if ((ev->mode != NotifyNormal || ev->detail == NotifyInferior) && ev->window != root)
  706. return;
  707. c = wintoclient(ev->window);
  708. m = c ? c->mon : wintomon(ev->window);
  709. if (m != selmon) {
  710. unfocus(selmon->sel, 1);
  711. selmon = m;
  712. } else if (!c || c == selmon->sel)
  713. return;
  714. focus(c);
  715. }
  716. void
  717. expose(XEvent *e)
  718. {
  719. Monitor *m;
  720. XExposeEvent *ev = &e->xexpose;
  721. if (ev->count == 0 && (m = wintomon(ev->window)))
  722. drawbar(m);
  723. }
  724. void
  725. focus(Client *c)
  726. {
  727. if (!c || !ISVISIBLE(c))
  728. for (c = selmon->stack; c && !ISVISIBLE(c); c = c->snext);
  729. if (selmon->sel && selmon->sel != c)
  730. unfocus(selmon->sel, 0);
  731. if (c) {
  732. if (c->mon != selmon)
  733. selmon = c->mon;
  734. if (c->isurgent)
  735. seturgent(c, 0);
  736. detachstack(c);
  737. attachstack(c);
  738. grabbuttons(c, 1);
  739. XSetWindowBorder(dpy, c->win, scheme[SchemeSel][ColBorder].pixel);
  740. setfocus(c);
  741. } else {
  742. XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
  743. XDeleteProperty(dpy, root, netatom[NetActiveWindow]);
  744. }
  745. selmon->sel = c;
  746. drawbars();
  747. }
  748. /* there are some broken focus acquiring clients needing extra handling */
  749. void
  750. focusin(XEvent *e)
  751. {
  752. XFocusChangeEvent *ev = &e->xfocus;
  753. if (selmon->sel && ev->window != selmon->sel->win)
  754. setfocus(selmon->sel);
  755. }
  756. void
  757. focusmon(const Arg *arg)
  758. {
  759. Monitor *m;
  760. if (!mons->next)
  761. return;
  762. if ((m = dirtomon(arg->i)) == selmon)
  763. return;
  764. unfocus(selmon->sel, 0);
  765. selmon = m;
  766. focus(NULL);
  767. }
  768. void
  769. focusstack(const Arg *arg)
  770. {
  771. Client *c = NULL, *i;
  772. if (!selmon->sel)
  773. return;
  774. if (arg->i > 0) {
  775. for (c = selmon->sel->next; c && !ISVISIBLE(c); c = c->next);
  776. if (!c)
  777. for (c = selmon->clients; c && !ISVISIBLE(c); c = c->next);
  778. } else {
  779. for (i = selmon->clients; i != selmon->sel; i = i->next)
  780. if (ISVISIBLE(i))
  781. c = i;
  782. if (!c)
  783. for (; i; i = i->next)
  784. if (ISVISIBLE(i))
  785. c = i;
  786. }
  787. if (c) {
  788. focus(c);
  789. restack(selmon);
  790. }
  791. }
  792. Atom
  793. getatomprop(Client *c, Atom prop)
  794. {
  795. int di;
  796. unsigned long dl;
  797. unsigned char *p = NULL;
  798. Atom da, atom = None;
  799. if (XGetWindowProperty(dpy, c->win, prop, 0L, sizeof atom, False, XA_ATOM,
  800. &da, &di, &dl, &dl, &p) == Success && p) {
  801. atom = *(Atom *)p;
  802. XFree(p);
  803. }
  804. return atom;
  805. }
  806. int
  807. getrootptr(int *x, int *y)
  808. {
  809. int di;
  810. unsigned int dui;
  811. Window dummy;
  812. return XQueryPointer(dpy, root, &dummy, &dummy, x, y, &di, &di, &dui);
  813. }
  814. long
  815. getstate(Window w)
  816. {
  817. int format;
  818. long result = -1;
  819. unsigned char *p = NULL;
  820. unsigned long n, extra;
  821. Atom real;
  822. if (XGetWindowProperty(dpy, w, wmatom[WMState], 0L, 2L, False, wmatom[WMState],
  823. &real, &format, &n, &extra, (unsigned char **)&p) != Success)
  824. return -1;
  825. if (n != 0)
  826. result = *p;
  827. XFree(p);
  828. return result;
  829. }
  830. int
  831. gettextprop(Window w, Atom atom, char *text, unsigned int size)
  832. {
  833. char **list = NULL;
  834. int n;
  835. XTextProperty name;
  836. if (!text || size == 0)
  837. return 0;
  838. text[0] = '\0';
  839. if (!XGetTextProperty(dpy, w, &name, atom) || !name.nitems)
  840. return 0;
  841. if (name.encoding == XA_STRING)
  842. strncpy(text, (char *)name.value, size - 1);
  843. else {
  844. if (XmbTextPropertyToTextList(dpy, &name, &list, &n) >= Success && n > 0 && *list) {
  845. strncpy(text, *list, size - 1);
  846. XFreeStringList(list);
  847. }
  848. }
  849. text[size - 1] = '\0';
  850. XFree(name.value);
  851. return 1;
  852. }
  853. void
  854. grabbuttons(Client *c, int focused)
  855. {
  856. updatenumlockmask();
  857. {
  858. unsigned int i, j;
  859. unsigned int modifiers[] = { 0, LockMask, numlockmask, numlockmask|LockMask };
  860. XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
  861. if (!focused)
  862. XGrabButton(dpy, AnyButton, AnyModifier, c->win, False,
  863. BUTTONMASK, GrabModeSync, GrabModeSync, None, None);
  864. for (i = 0; i < LENGTH(buttons); i++)
  865. if (buttons[i].click == ClkClientWin)
  866. for (j = 0; j < LENGTH(modifiers); j++)
  867. XGrabButton(dpy, buttons[i].button,
  868. buttons[i].mask | modifiers[j],
  869. c->win, False, BUTTONMASK,
  870. GrabModeAsync, GrabModeSync, None, None);
  871. }
  872. }
  873. void
  874. grabkeys(void)
  875. {
  876. updatenumlockmask();
  877. {
  878. unsigned int i, j;
  879. unsigned int modifiers[] = { 0, LockMask, numlockmask, numlockmask|LockMask };
  880. KeyCode code;
  881. XUngrabKey(dpy, AnyKey, AnyModifier, root);
  882. for (i = 0; i < LENGTH(keys); i++)
  883. if ((code = XKeysymToKeycode(dpy, keys[i].keysym)))
  884. for (j = 0; j < LENGTH(modifiers); j++)
  885. XGrabKey(dpy, code, keys[i].mod | modifiers[j], root,
  886. True, GrabModeAsync, GrabModeAsync);
  887. }
  888. }
  889. void
  890. incnmaster(const Arg *arg)
  891. {
  892. selmon->nmaster = MAX(selmon->nmaster + arg->i, 0);
  893. arrange(selmon);
  894. }
  895. #ifdef XINERAMA
  896. static int
  897. isuniquegeom(XineramaScreenInfo *unique, size_t n, XineramaScreenInfo *info)
  898. {
  899. while (n--)
  900. if (unique[n].x_org == info->x_org && unique[n].y_org == info->y_org
  901. && unique[n].width == info->width && unique[n].height == info->height)
  902. return 0;
  903. return 1;
  904. }
  905. #endif /* XINERAMA */
  906. void
  907. keypress(XEvent *e)
  908. {
  909. unsigned int i;
  910. KeySym keysym;
  911. XKeyEvent *ev;
  912. ev = &e->xkey;
  913. keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0);
  914. for (i = 0; i < LENGTH(keys); i++)
  915. if (keysym == keys[i].keysym
  916. && CLEANMASK(keys[i].mod) == CLEANMASK(ev->state)
  917. && keys[i].func)
  918. keys[i].func(&(keys[i].arg));
  919. }
  920. void
  921. killclient(const Arg *arg)
  922. {
  923. if (!selmon->sel)
  924. return;
  925. if (!sendevent(selmon->sel, wmatom[WMDelete])) {
  926. XGrabServer(dpy);
  927. XSetErrorHandler(xerrordummy);
  928. XSetCloseDownMode(dpy, DestroyAll);
  929. XKillClient(dpy, selmon->sel->win);
  930. XSync(dpy, False);
  931. XSetErrorHandler(xerror);
  932. XUngrabServer(dpy);
  933. }
  934. }
  935. void
  936. manage(Window w, XWindowAttributes *wa)
  937. {
  938. Client *c, *t = NULL;
  939. Window trans = None;
  940. XWindowChanges wc;
  941. c = ecalloc(1, sizeof(Client));
  942. c->win = w;
  943. /* geometry */
  944. c->x = c->oldx = wa->x;
  945. c->y = c->oldy = wa->y;
  946. c->w = c->oldw = wa->width;
  947. c->h = c->oldh = wa->height;
  948. c->oldbw = wa->border_width;
  949. updatetitle(c);
  950. if (XGetTransientForHint(dpy, w, &trans) && (t = wintoclient(trans))) {
  951. c->mon = t->mon;
  952. c->tags = t->tags;
  953. } else {
  954. c->mon = selmon;
  955. applyrules(c);
  956. }
  957. if (c->x + WIDTH(c) > c->mon->mx + c->mon->mw)
  958. c->x = c->mon->mx + c->mon->mw - WIDTH(c);
  959. if (c->y + HEIGHT(c) > c->mon->my + c->mon->mh)
  960. c->y = c->mon->my + c->mon->mh - HEIGHT(c);
  961. c->x = MAX(c->x, c->mon->mx);
  962. /* only fix client y-offset, if the client center might cover the bar */
  963. c->y = MAX(c->y, ((c->mon->by == c->mon->my) && (c->x + (c->w / 2) >= c->mon->wx)
  964. && (c->x + (c->w / 2) < c->mon->wx + c->mon->ww)) ? bh : c->mon->my);
  965. c->bw = borderpx;
  966. wc.border_width = c->bw;
  967. XConfigureWindow(dpy, w, CWBorderWidth, &wc);
  968. XSetWindowBorder(dpy, w, scheme[SchemeNorm][ColBorder].pixel);
  969. configure(c); /* propagates border_width, if size doesn't change */
  970. updatewindowtype(c);
  971. updatesizehints(c);
  972. updatewmhints(c);
  973. XSelectInput(dpy, w, EnterWindowMask|FocusChangeMask|PropertyChangeMask|StructureNotifyMask);
  974. grabbuttons(c, 0);
  975. if (!c->isfloating)
  976. c->isfloating = c->oldstate = trans != None || c->isfixed;
  977. if (c->isfloating)
  978. XRaiseWindow(dpy, c->win);
  979. attach(c);
  980. attachstack(c);
  981. XChangeProperty(dpy, root, netatom[NetClientList], XA_WINDOW, 32, PropModeAppend,
  982. (unsigned char *) &(c->win), 1);
  983. XMoveResizeWindow(dpy, c->win, c->x + 2 * sw, c->y, c->w, c->h); /* some windows require this */
  984. setclientstate(c, NormalState);
  985. if (c->mon == selmon)
  986. unfocus(selmon->sel, 0);
  987. c->mon->sel = c;
  988. arrange(c->mon);
  989. XMapWindow(dpy, c->win);
  990. focus(NULL);
  991. }
  992. void
  993. mappingnotify(XEvent *e)
  994. {
  995. XMappingEvent *ev = &e->xmapping;
  996. XRefreshKeyboardMapping(ev);
  997. if (ev->request == MappingKeyboard)
  998. grabkeys();
  999. }
  1000. void
  1001. maprequest(XEvent *e)
  1002. {
  1003. static XWindowAttributes wa;
  1004. XMapRequestEvent *ev = &e->xmaprequest;
  1005. if (!XGetWindowAttributes(dpy, ev->window, &wa))
  1006. return;
  1007. if (wa.override_redirect)
  1008. return;
  1009. if (!wintoclient(ev->window))
  1010. manage(ev->window, &wa);
  1011. }
  1012. void
  1013. monocle(Monitor *m)
  1014. {
  1015. unsigned int n = 0;
  1016. Client *c;
  1017. for (c = m->clients; c; c = c->next)
  1018. if (ISVISIBLE(c))
  1019. n++;
  1020. if (n > 0) /* override layout symbol */
  1021. snprintf(m->ltsymbol, sizeof m->ltsymbol, "[%d]", n);
  1022. for (c = nexttiled(m->clients); c; c = nexttiled(c->next))
  1023. resize(c, m->wx, m->wy, m->ww - 2 * c->bw, m->wh - 2 * c->bw, 0);
  1024. }
  1025. void
  1026. motionnotify(XEvent *e)
  1027. {
  1028. static Monitor *mon = NULL;
  1029. Monitor *m;
  1030. XMotionEvent *ev = &e->xmotion;
  1031. if (ev->window != root)
  1032. return;
  1033. if ((m = recttomon(ev->x_root, ev->y_root, 1, 1)) != mon && mon) {
  1034. unfocus(selmon->sel, 1);
  1035. selmon = m;
  1036. focus(NULL);
  1037. }
  1038. mon = m;
  1039. }
  1040. void
  1041. movemouse(const Arg *arg)
  1042. {
  1043. int x, y, ocx, ocy, nx, ny;
  1044. Client *c;
  1045. Monitor *m;
  1046. XEvent ev;
  1047. Time lasttime = 0;
  1048. if (!(c = selmon->sel))
  1049. return;
  1050. if (c->isfullscreen) /* no support moving fullscreen windows by mouse */
  1051. return;
  1052. restack(selmon);
  1053. ocx = c->x;
  1054. ocy = c->y;
  1055. if (XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
  1056. None, cursor[CurMove]->cursor, CurrentTime) != GrabSuccess)
  1057. return;
  1058. if (!getrootptr(&x, &y))
  1059. return;
  1060. do {
  1061. XMaskEvent(dpy, MOUSEMASK|ExposureMask|SubstructureRedirectMask, &ev);
  1062. switch(ev.type) {
  1063. case ConfigureRequest:
  1064. case Expose:
  1065. case MapRequest:
  1066. handler[ev.type](&ev);
  1067. break;
  1068. case MotionNotify:
  1069. if ((ev.xmotion.time - lasttime) <= (1000 / 60))
  1070. continue;
  1071. lasttime = ev.xmotion.time;
  1072. nx = ocx + (ev.xmotion.x - x);
  1073. ny = ocy + (ev.xmotion.y - y);
  1074. if (abs(selmon->wx - nx) < snap)
  1075. nx = selmon->wx;
  1076. else if (abs((selmon->wx + selmon->ww) - (nx + WIDTH(c))) < snap)
  1077. nx = selmon->wx + selmon->ww - WIDTH(c);
  1078. if (abs(selmon->wy - ny) < snap)
  1079. ny = selmon->wy;
  1080. else if (abs((selmon->wy + selmon->wh) - (ny + HEIGHT(c))) < snap)
  1081. ny = selmon->wy + selmon->wh - HEIGHT(c);
  1082. if (!c->isfloating && selmon->lt[selmon->sellt]->arrange
  1083. && (abs(nx - c->x) > snap || abs(ny - c->y) > snap))
  1084. togglefloating(NULL);
  1085. if (!selmon->lt[selmon->sellt]->arrange || c->isfloating)
  1086. resize(c, nx, ny, c->w, c->h, 1);
  1087. break;
  1088. }
  1089. } while (ev.type != ButtonRelease);
  1090. XUngrabPointer(dpy, CurrentTime);
  1091. if ((m = recttomon(c->x, c->y, c->w, c->h)) != selmon) {
  1092. sendmon(c, m);
  1093. selmon = m;
  1094. focus(NULL);
  1095. }
  1096. }
  1097. Client *
  1098. nexttiled(Client *c)
  1099. {
  1100. for (; c && (c->isfloating || !ISVISIBLE(c)); c = c->next);
  1101. return c;
  1102. }
  1103. void
  1104. pop(Client *c)
  1105. {
  1106. detach(c);
  1107. attach(c);
  1108. focus(c);
  1109. arrange(c->mon);
  1110. }
  1111. void
  1112. propertynotify(XEvent *e)
  1113. {
  1114. Client *c;
  1115. Window trans;
  1116. XPropertyEvent *ev = &e->xproperty;
  1117. if ((ev->window == root) && (ev->atom == XA_WM_NAME))
  1118. updatestatus();
  1119. else if (ev->state == PropertyDelete)
  1120. return; /* ignore */
  1121. else if ((c = wintoclient(ev->window))) {
  1122. switch(ev->atom) {
  1123. default: break;
  1124. case XA_WM_TRANSIENT_FOR:
  1125. if (!c->isfloating && (XGetTransientForHint(dpy, c->win, &trans)) &&
  1126. (c->isfloating = (wintoclient(trans)) != NULL))
  1127. arrange(c->mon);
  1128. break;
  1129. case XA_WM_NORMAL_HINTS:
  1130. updatesizehints(c);
  1131. break;
  1132. case XA_WM_HINTS:
  1133. updatewmhints(c);
  1134. drawbars();
  1135. break;
  1136. }
  1137. if (ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) {
  1138. updatetitle(c);
  1139. if (c == c->mon->sel)
  1140. drawbar(c->mon);
  1141. }
  1142. if (ev->atom == netatom[NetWMWindowType])
  1143. updatewindowtype(c);
  1144. }
  1145. }
  1146. void
  1147. quit(const Arg *arg)
  1148. {
  1149. running = 0;
  1150. }
  1151. Monitor *
  1152. recttomon(int x, int y, int w, int h)
  1153. {
  1154. Monitor *m, *r = selmon;
  1155. int a, area = 0;
  1156. for (m = mons; m; m = m->next)
  1157. if ((a = INTERSECT(x, y, w, h, m)) > area) {
  1158. area = a;
  1159. r = m;
  1160. }
  1161. return r;
  1162. }
  1163. void
  1164. resize(Client *c, int x, int y, int w, int h, int interact)
  1165. {
  1166. if (applysizehints(c, &x, &y, &w, &h, interact))
  1167. resizeclient(c, x, y, w, h);
  1168. }
  1169. void
  1170. resizeclient(Client *c, int x, int y, int w, int h)
  1171. {
  1172. XWindowChanges wc;
  1173. c->oldx = c->x; c->x = wc.x = x;
  1174. c->oldy = c->y; c->y = wc.y = y;
  1175. c->oldw = c->w; c->w = wc.width = w;
  1176. c->oldh = c->h; c->h = wc.height = h;
  1177. wc.border_width = c->bw;
  1178. XConfigureWindow(dpy, c->win, CWX|CWY|CWWidth|CWHeight|CWBorderWidth, &wc);
  1179. configure(c);
  1180. XSync(dpy, False);
  1181. }
  1182. void
  1183. resizemouse(const Arg *arg)
  1184. {
  1185. int ocx, ocy, nw, nh;
  1186. Client *c;
  1187. Monitor *m;
  1188. XEvent ev;
  1189. Time lasttime = 0;
  1190. if (!(c = selmon->sel))
  1191. return;
  1192. if (c->isfullscreen) /* no support resizing fullscreen windows by mouse */
  1193. return;
  1194. restack(selmon);
  1195. ocx = c->x;
  1196. ocy = c->y;
  1197. if (XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
  1198. None, cursor[CurResize]->cursor, CurrentTime) != GrabSuccess)
  1199. return;
  1200. XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->bw - 1, c->h + c->bw - 1);
  1201. do {
  1202. XMaskEvent(dpy, MOUSEMASK|ExposureMask|SubstructureRedirectMask, &ev);
  1203. switch(ev.type) {
  1204. case ConfigureRequest:
  1205. case Expose:
  1206. case MapRequest:
  1207. handler[ev.type](&ev);
  1208. break;
  1209. case MotionNotify:
  1210. if ((ev.xmotion.time - lasttime) <= (1000 / 60))
  1211. continue;
  1212. lasttime = ev.xmotion.time;
  1213. nw = MAX(ev.xmotion.x - ocx - 2 * c->bw + 1, 1);
  1214. nh = MAX(ev.xmotion.y - ocy - 2 * c->bw + 1, 1);
  1215. if (c->mon->wx + nw >= selmon->wx && c->mon->wx + nw <= selmon->wx + selmon->ww
  1216. && c->mon->wy + nh >= selmon->wy && c->mon->wy + nh <= selmon->wy + selmon->wh)
  1217. {
  1218. if (!c->isfloating && selmon->lt[selmon->sellt]->arrange
  1219. && (abs(nw - c->w) > snap || abs(nh - c->h) > snap))
  1220. togglefloating(NULL);
  1221. }
  1222. if (!selmon->lt[selmon->sellt]->arrange || c->isfloating)
  1223. resize(c, c->x, c->y, nw, nh, 1);
  1224. break;
  1225. }
  1226. } while (ev.type != ButtonRelease);
  1227. XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->bw - 1, c->h + c->bw - 1);
  1228. XUngrabPointer(dpy, CurrentTime);
  1229. while (XCheckMaskEvent(dpy, EnterWindowMask, &ev));
  1230. if ((m = recttomon(c->x, c->y, c->w, c->h)) != selmon) {
  1231. sendmon(c, m);
  1232. selmon = m;
  1233. focus(NULL);
  1234. }
  1235. }
  1236. void
  1237. restack(Monitor *m)
  1238. {
  1239. Client *c;
  1240. XEvent ev;
  1241. XWindowChanges wc;
  1242. drawbar(m);
  1243. if (!m->sel)
  1244. return;
  1245. if (m->sel->isfloating || !m->lt[m->sellt]->arrange)
  1246. XRaiseWindow(dpy, m->sel->win);
  1247. if (m->lt[m->sellt]->arrange) {
  1248. wc.stack_mode = Below;
  1249. wc.sibling = m->barwin;
  1250. for (c = m->stack; c; c = c->snext)
  1251. if (!c->isfloating && ISVISIBLE(c)) {
  1252. XConfigureWindow(dpy, c->win, CWSibling|CWStackMode, &wc);
  1253. wc.sibling = c->win;
  1254. }
  1255. }
  1256. XSync(dpy, False);
  1257. while (XCheckMaskEvent(dpy, EnterWindowMask, &ev));
  1258. }
  1259. void
  1260. run(void)
  1261. {
  1262. XEvent ev;
  1263. /* main event loop */
  1264. XSync(dpy, False);
  1265. while (running && !XNextEvent(dpy, &ev))
  1266. if (handler[ev.type])
  1267. handler[ev.type](&ev); /* call handler */
  1268. }
  1269. void
  1270. scan(void)
  1271. {
  1272. unsigned int i, num;
  1273. Window d1, d2, *wins = NULL;
  1274. XWindowAttributes wa;
  1275. if (XQueryTree(dpy, root, &d1, &d2, &wins, &num)) {
  1276. for (i = 0; i < num; i++) {
  1277. if (!XGetWindowAttributes(dpy, wins[i], &wa)
  1278. || wa.override_redirect || XGetTransientForHint(dpy, wins[i], &d1))
  1279. continue;
  1280. if (wa.map_state == IsViewable || getstate(wins[i]) == IconicState)
  1281. manage(wins[i], &wa);
  1282. }
  1283. for (i = 0; i < num; i++) { /* now the transients */
  1284. if (!XGetWindowAttributes(dpy, wins[i], &wa))
  1285. continue;
  1286. if (XGetTransientForHint(dpy, wins[i], &d1)
  1287. && (wa.map_state == IsViewable || getstate(wins[i]) == IconicState))
  1288. manage(wins[i], &wa);
  1289. }
  1290. if (wins)
  1291. XFree(wins);
  1292. }
  1293. }
  1294. void
  1295. sendmon(Client *c, Monitor *m)
  1296. {
  1297. if (c->mon == m)
  1298. return;
  1299. unfocus(c, 1);
  1300. detach(c);
  1301. detachstack(c);
  1302. c->mon = m;
  1303. c->tags = m->tagset[m->seltags]; /* assign tags of target monitor */
  1304. attach(c);
  1305. attachstack(c);
  1306. focus(NULL);
  1307. arrange(NULL);
  1308. }
  1309. void
  1310. setclientstate(Client *c, long state)
  1311. {
  1312. long data[] = { state, None };
  1313. XChangeProperty(dpy, c->win, wmatom[WMState], wmatom[WMState], 32,
  1314. PropModeReplace, (unsigned char *)data, 2);
  1315. }
  1316. int
  1317. sendevent(Client *c, Atom proto)
  1318. {
  1319. int n;
  1320. Atom *protocols;
  1321. int exists = 0;
  1322. XEvent ev;
  1323. if (XGetWMProtocols(dpy, c->win, &protocols, &n)) {
  1324. while (!exists && n--)
  1325. exists = protocols[n] == proto;
  1326. XFree(protocols);
  1327. }
  1328. if (exists) {
  1329. ev.type = ClientMessage;
  1330. ev.xclient.window = c->win;
  1331. ev.xclient.message_type = wmatom[WMProtocols];
  1332. ev.xclient.format = 32;
  1333. ev.xclient.data.l[0] = proto;
  1334. ev.xclient.data.l[1] = CurrentTime;
  1335. XSendEvent(dpy, c->win, False, NoEventMask, &ev);
  1336. }
  1337. return exists;
  1338. }
  1339. void
  1340. setfocus(Client *c)
  1341. {
  1342. if (!c->neverfocus) {
  1343. XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
  1344. XChangeProperty(dpy, root, netatom[NetActiveWindow],
  1345. XA_WINDOW, 32, PropModeReplace,
  1346. (unsigned char *) &(c->win), 1);
  1347. }
  1348. sendevent(c, wmatom[WMTakeFocus]);
  1349. }
  1350. void
  1351. setfullscreen(Client *c, int fullscreen)
  1352. {
  1353. if (fullscreen && !c->isfullscreen) {
  1354. XChangeProperty(dpy, c->win, netatom[NetWMState], XA_ATOM, 32,
  1355. PropModeReplace, (unsigned char*)&netatom[NetWMFullscreen], 1);
  1356. c->isfullscreen = 1;
  1357. c->oldstate = c->isfloating;
  1358. c->oldbw = c->bw;
  1359. c->bw = 0;
  1360. c->isfloating = 1;
  1361. resizeclient(c, c->mon->mx, c->mon->my, c->mon->mw, c->mon->mh);
  1362. XRaiseWindow(dpy, c->win);
  1363. } else if (!fullscreen && c->isfullscreen){
  1364. XChangeProperty(dpy, c->win, netatom[NetWMState], XA_ATOM, 32,
  1365. PropModeReplace, (unsigned char*)0, 0);
  1366. c->isfullscreen = 0;
  1367. c->isfloating = c->oldstate;
  1368. c->bw = c->oldbw;
  1369. c->x = c->oldx;
  1370. c->y = c->oldy;
  1371. c->w = c->oldw;
  1372. c->h = c->oldh;
  1373. resizeclient(c, c->x, c->y, c->w, c->h);
  1374. arrange(c->mon);
  1375. }
  1376. }
  1377. void
  1378. setlayout(const Arg *arg)
  1379. {
  1380. if (!arg || !arg->v || arg->v != selmon->lt[selmon->sellt])
  1381. selmon->sellt ^= 1;
  1382. if (arg && arg->v)
  1383. selmon->lt[selmon->sellt] = (Layout *)arg->v;
  1384. strncpy(selmon->ltsymbol, selmon->lt[selmon->sellt]->symbol, sizeof selmon->ltsymbol);
  1385. if (selmon->sel)
  1386. arrange(selmon);
  1387. else
  1388. drawbar(selmon);
  1389. }
  1390. /* arg > 1.0 will set mfact absolutely */
  1391. void
  1392. setmfact(const Arg *arg)
  1393. {
  1394. float f;
  1395. if (!arg || !selmon->lt[selmon->sellt]->arrange)
  1396. return;
  1397. f = arg->f < 1.0 ? arg->f + selmon->mfact : arg->f - 1.0;
  1398. if (f < 0.05 || f > 0.95)
  1399. return;
  1400. selmon->mfact = f;
  1401. arrange(selmon);
  1402. }
  1403. void
  1404. setup(void)
  1405. {
  1406. int i;
  1407. XSetWindowAttributes wa;
  1408. Atom utf8string;
  1409. /* clean up any zombies immediately */
  1410. sigchld(0);
  1411. /* init screen */
  1412. screen = DefaultScreen(dpy);
  1413. sw = DisplayWidth(dpy, screen);
  1414. sh = DisplayHeight(dpy, screen);
  1415. root = RootWindow(dpy, screen);
  1416. drw = drw_create(dpy, screen, root, sw, sh);
  1417. if (!drw_fontset_create(drw, fonts, LENGTH(fonts)))
  1418. die("no fonts could be loaded.");
  1419. lrpad = drw->fonts->h;
  1420. bh = drw->fonts->h + 2;
  1421. updategeom();
  1422. /* init atoms */
  1423. utf8string = XInternAtom(dpy, "UTF8_STRING", False);
  1424. wmatom[WMProtocols] = XInternAtom(dpy, "WM_PROTOCOLS", False);
  1425. wmatom[WMDelete] = XInternAtom(dpy, "WM_DELETE_WINDOW", False);
  1426. wmatom[WMState] = XInternAtom(dpy, "WM_STATE", False);
  1427. wmatom[WMTakeFocus] = XInternAtom(dpy, "WM_TAKE_FOCUS", False);
  1428. netatom[NetActiveWindow] = XInternAtom(dpy, "_NET_ACTIVE_WINDOW", False);
  1429. netatom[NetSupported] = XInternAtom(dpy, "_NET_SUPPORTED", False);
  1430. netatom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False);
  1431. netatom[NetWMState] = XInternAtom(dpy, "_NET_WM_STATE", False);
  1432. netatom[NetWMCheck] = XInternAtom(dpy, "_NET_SUPPORTING_WM_CHECK", False);
  1433. netatom[NetWMFullscreen] = XInternAtom(dpy, "_NET_WM_STATE_FULLSCREEN", False);
  1434. netatom[NetWMWindowType] = XInternAtom(dpy, "_NET_WM_WINDOW_TYPE", False);
  1435. netatom[NetWMWindowTypeDialog] = XInternAtom(dpy, "_NET_WM_WINDOW_TYPE_DIALOG", False);
  1436. netatom[NetClientList] = XInternAtom(dpy, "_NET_CLIENT_LIST", False);
  1437. /* init cursors */
  1438. cursor[CurNormal] = drw_cur_create(drw, XC_left_ptr);
  1439. cursor[CurResize] = drw_cur_create(drw, XC_sizing);
  1440. cursor[CurMove] = drw_cur_create(drw, XC_fleur);
  1441. /* init appearance */
  1442. scheme = ecalloc(LENGTH(colors), sizeof(Clr *));
  1443. for (i = 0; i < LENGTH(colors); i++)
  1444. scheme[i] = drw_scm_create(drw, colors[i], 3);
  1445. /* init bars */
  1446. updatebars();
  1447. updatestatus();
  1448. /* supporting window for NetWMCheck */
  1449. wmcheckwin = XCreateSimpleWindow(dpy, root, 0, 0, 1, 1, 0, 0, 0);
  1450. XChangeProperty(dpy, wmcheckwin, netatom[NetWMCheck], XA_WINDOW, 32,
  1451. PropModeReplace, (unsigned char *) &wmcheckwin, 1);
  1452. XChangeProperty(dpy, wmcheckwin, netatom[NetWMName], utf8string, 8,
  1453. PropModeReplace, (unsigned char *) "dwm", 3);
  1454. XChangeProperty(dpy, root, netatom[NetWMCheck], XA_WINDOW, 32,
  1455. PropModeReplace, (unsigned char *) &wmcheckwin, 1);
  1456. /* EWMH support per view */
  1457. XChangeProperty(dpy, root, netatom[NetSupported], XA_ATOM, 32,
  1458. PropModeReplace, (unsigned char *) netatom, NetLast);
  1459. XDeleteProperty(dpy, root, netatom[NetClientList]);
  1460. /* select events */
  1461. wa.cursor = cursor[CurNormal]->cursor;
  1462. wa.event_mask = SubstructureRedirectMask|SubstructureNotifyMask
  1463. |ButtonPressMask|PointerMotionMask|EnterWindowMask
  1464. |LeaveWindowMask|StructureNotifyMask|PropertyChangeMask;
  1465. XChangeWindowAttributes(dpy, root, CWEventMask|CWCursor, &wa);
  1466. XSelectInput(dpy, root, wa.event_mask);
  1467. grabkeys();
  1468. focus(NULL);
  1469. }
  1470. void
  1471. seturgent(Client *c, int urg)
  1472. {
  1473. XWMHints *wmh;
  1474. c->isurgent = urg;
  1475. if (!(wmh = XGetWMHints(dpy, c->win)))
  1476. return;
  1477. wmh->flags = urg ? (wmh->flags | XUrgencyHint) : (wmh->flags & ~XUrgencyHint);
  1478. XSetWMHints(dpy, c->win, wmh);
  1479. XFree(wmh);
  1480. }
  1481. void
  1482. showhide(Client *c)
  1483. {
  1484. if (!c)
  1485. return;
  1486. if (ISVISIBLE(c)) {
  1487. /* show clients top down */
  1488. XMoveWindow(dpy, c->win, c->x, c->y);
  1489. if ((!c->mon->lt[c->mon->sellt]->arrange || c->isfloating) && !c->isfullscreen)
  1490. resize(c, c->x, c->y, c->w, c->h, 0);
  1491. showhide(c->snext);
  1492. } else {
  1493. /* hide clients bottom up */
  1494. showhide(c->snext);
  1495. XMoveWindow(dpy, c->win, WIDTH(c) * -2, c->y);
  1496. }
  1497. }
  1498. void
  1499. sigchld(int unused)
  1500. {
  1501. if (signal(SIGCHLD, sigchld) == SIG_ERR)
  1502. die("can't install SIGCHLD handler:");
  1503. while (0 < waitpid(-1, NULL, WNOHANG));
  1504. }
  1505. void
  1506. spawn(const Arg *arg)
  1507. {
  1508. if (arg->v == dmenucmd)
  1509. dmenumon[0] = '0' + selmon->num;
  1510. if (fork() == 0) {
  1511. if (dpy)
  1512. close(ConnectionNumber(dpy));
  1513. setsid();
  1514. execvp(((char **)arg->v)[0], (char **)arg->v);
  1515. fprintf(stderr, "dwm: execvp %s", ((char **)arg->v)[0]);
  1516. perror(" failed");
  1517. exit(EXIT_SUCCESS);
  1518. }
  1519. }
  1520. void
  1521. tag(const Arg *arg)
  1522. {
  1523. if (selmon->sel && arg->ui & TAGMASK) {
  1524. selmon->sel->tags = arg->ui & TAGMASK;
  1525. focus(NULL);
  1526. arrange(selmon);
  1527. }
  1528. }
  1529. void
  1530. tagmon(const Arg *arg)
  1531. {
  1532. if (!selmon->sel || !mons->next)
  1533. return;
  1534. sendmon(selmon->sel, dirtomon(arg->i));
  1535. }
  1536. void
  1537. tile(Monitor *m)
  1538. {
  1539. unsigned int i, n, h, mw, my, ty;
  1540. Client *c;
  1541. for (n = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), n++);
  1542. if (n == 0)
  1543. return;
  1544. if (n > m->nmaster)
  1545. mw = m->nmaster ? m->ww * m->mfact : 0;
  1546. else
  1547. mw = m->ww;
  1548. for (i = my = ty = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), i++)
  1549. if (i < m->nmaster) {
  1550. h = (m->wh - my) / (MIN(n, m->nmaster) - i);
  1551. resize(c, m->wx, m->wy + my, mw - (2*c->bw), h - (2*c->bw), 0);
  1552. my += HEIGHT(c);
  1553. } else {
  1554. h = (m->wh - ty) / (n - i);
  1555. resize(c, m->wx + mw, m->wy + ty, m->ww - mw - (2*c->bw), h - (2*c->bw), 0);
  1556. ty += HEIGHT(c);
  1557. }
  1558. }
  1559. void
  1560. togglebar(const Arg *arg)
  1561. {
  1562. selmon->showbar = !selmon->showbar;
  1563. updatebarpos(selmon);
  1564. XMoveResizeWindow(dpy, selmon->barwin, selmon->wx, selmon->by, selmon->ww, bh);
  1565. arrange(selmon);
  1566. }
  1567. void
  1568. togglefloating(const Arg *arg)
  1569. {
  1570. if (!selmon->sel)
  1571. return;
  1572. if (selmon->sel->isfullscreen) /* no support for fullscreen windows */
  1573. return;
  1574. selmon->sel->isfloating = !selmon->sel->isfloating || selmon->sel->isfixed;
  1575. if (selmon->sel->isfloating)
  1576. resize(selmon->sel, selmon->sel->x, selmon->sel->y,
  1577. selmon->sel->w, selmon->sel->h, 0);
  1578. arrange(selmon);
  1579. }
  1580. void
  1581. toggletag(const Arg *arg)
  1582. {
  1583. unsigned int newtags;
  1584. if (!selmon->sel)
  1585. return;
  1586. newtags = selmon->sel->tags ^ (arg->ui & TAGMASK);
  1587. if (newtags) {
  1588. selmon->sel->tags = newtags;
  1589. focus(NULL);
  1590. arrange(selmon);
  1591. }
  1592. }
  1593. void
  1594. toggleview(const Arg *arg)
  1595. {
  1596. unsigned int newtagset = selmon->tagset[selmon->seltags] ^ (arg->ui & TAGMASK);
  1597. if (newtagset) {
  1598. selmon->tagset[selmon->seltags] = newtagset;
  1599. focus(NULL);
  1600. arrange(selmon);
  1601. }
  1602. }
  1603. void
  1604. unfocus(Client *c, int setfocus)
  1605. {
  1606. if (!c)
  1607. return;
  1608. grabbuttons(c, 0);
  1609. XSetWindowBorder(dpy, c->win, scheme[SchemeNorm][ColBorder].pixel);
  1610. if (setfocus) {
  1611. XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
  1612. XDeleteProperty(dpy, root, netatom[NetActiveWindow]);
  1613. }
  1614. }
  1615. void
  1616. unmanage(Client *c, int destroyed)
  1617. {
  1618. Monitor *m = c->mon;
  1619. XWindowChanges wc;
  1620. detach(c);
  1621. detachstack(c);
  1622. if (!destroyed) {
  1623. wc.border_width = c->oldbw;
  1624. XGrabServer(dpy); /* avoid race conditions */
  1625. XSetErrorHandler(xerrordummy);
  1626. XConfigureWindow(dpy, c->win, CWBorderWidth, &wc); /* restore border */
  1627. XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
  1628. setclientstate(c, WithdrawnState);
  1629. XSync(dpy, False);
  1630. XSetErrorHandler(xerror);
  1631. XUngrabServer(dpy);
  1632. }
  1633. free(c);
  1634. focus(NULL);
  1635. updateclientlist();
  1636. arrange(m);
  1637. }
  1638. void
  1639. unmapnotify(XEvent *e)
  1640. {
  1641. Client *c;
  1642. XUnmapEvent *ev = &e->xunmap;
  1643. if ((c = wintoclient(ev->window))) {
  1644. if (ev->send_event)
  1645. setclientstate(c, WithdrawnState);
  1646. else
  1647. unmanage(c, 0);
  1648. }
  1649. }
  1650. void
  1651. updatebars(void)
  1652. {
  1653. Monitor *m;
  1654. XSetWindowAttributes wa = {
  1655. .override_redirect = True,
  1656. .background_pixmap = ParentRelative,
  1657. .event_mask = ButtonPressMask|ExposureMask
  1658. };
  1659. XClassHint ch = {"dwm", "dwm"};
  1660. for (m = mons; m; m = m->next) {
  1661. if (m->barwin)
  1662. continue;
  1663. m->barwin = XCreateWindow(dpy, root, m->wx, m->by, m->ww, bh, 0, DefaultDepth(dpy, screen),
  1664. CopyFromParent, DefaultVisual(dpy, screen),
  1665. CWOverrideRedirect|CWBackPixmap|CWEventMask, &wa);
  1666. XDefineCursor(dpy, m->barwin, cursor[CurNormal]->cursor);
  1667. XMapRaised(dpy, m->barwin);
  1668. XSetClassHint(dpy, m->barwin, &ch);
  1669. }
  1670. }
  1671. void
  1672. updatebarpos(Monitor *m)
  1673. {
  1674. m->wy = m->my;
  1675. m->wh = m->mh;
  1676. if (m->showbar) {
  1677. m->wh -= bh;
  1678. m->by = m->topbar ? m->wy : m->wy + m->wh;
  1679. m->wy = m->topbar ? m->wy + bh : m->wy;
  1680. } else
  1681. m->by = -bh;
  1682. }
  1683. void
  1684. updateclientlist()
  1685. {
  1686. Client *c;
  1687. Monitor *m;
  1688. XDeleteProperty(dpy, root, netatom[NetClientList]);
  1689. for (m = mons; m; m = m->next)
  1690. for (c = m->clients; c; c = c->next)
  1691. XChangeProperty(dpy, root, netatom[NetClientList],
  1692. XA_WINDOW, 32, PropModeAppend,
  1693. (unsigned char *) &(c->win), 1);
  1694. }
  1695. int
  1696. updategeom(void)
  1697. {
  1698. int dirty = 0;
  1699. #ifdef XINERAMA
  1700. if (XineramaIsActive(dpy)) {
  1701. int i, j, n, nn;
  1702. Client *c;
  1703. Monitor *m;
  1704. XineramaScreenInfo *info = XineramaQueryScreens(dpy, &nn);
  1705. XineramaScreenInfo *unique = NULL;
  1706. for (n = 0, m = mons; m; m = m->next, n++);
  1707. /* only consider unique geometries as separate screens */
  1708. unique = ecalloc(nn, sizeof(XineramaScreenInfo));
  1709. for (i = 0, j = 0; i < nn; i++)
  1710. if (isuniquegeom(unique, j, &info[i]))
  1711. memcpy(&unique[j++], &info[i], sizeof(XineramaScreenInfo));
  1712. XFree(info);
  1713. nn = j;
  1714. if (n <= nn) { /* new monitors available */
  1715. for (i = 0; i < (nn - n); i++) {
  1716. for (m = mons; m && m->next; m = m->next);
  1717. if (m)
  1718. m->next = createmon();
  1719. else
  1720. mons = createmon();
  1721. }
  1722. for (i = 0, m = mons; i < nn && m; m = m->next, i++)
  1723. if (i >= n
  1724. || unique[i].x_org != m->mx || unique[i].y_org != m->my
  1725. || unique[i].width != m->mw || unique[i].height != m->mh)
  1726. {
  1727. dirty = 1;
  1728. m->num = i;
  1729. m->mx = m->wx = unique[i].x_org;
  1730. m->my = m->wy = unique[i].y_org;
  1731. m->mw = m->ww = unique[i].width;
  1732. m->mh = m->wh = unique[i].height;
  1733. updatebarpos(m);
  1734. }
  1735. } else { /* less monitors available nn < n */
  1736. for (i = nn; i < n; i++) {
  1737. for (m = mons; m && m->next; m = m->next);
  1738. while ((c = m->clients)) {
  1739. dirty = 1;
  1740. m->clients = c->next;
  1741. detachstack(c);
  1742. c->mon = mons;
  1743. attach(c);
  1744. attachstack(c);
  1745. }
  1746. if (m == selmon)
  1747. selmon = mons;
  1748. cleanupmon(m);
  1749. }
  1750. }
  1751. free(unique);
  1752. } else
  1753. #endif /* XINERAMA */
  1754. { /* default monitor setup */
  1755. if (!mons)
  1756. mons = createmon();
  1757. if (mons->mw != sw || mons->mh != sh) {
  1758. dirty = 1;
  1759. mons->mw = mons->ww = sw;
  1760. mons->mh = mons->wh = sh;
  1761. updatebarpos(mons);
  1762. }
  1763. }
  1764. if (dirty) {
  1765. selmon = mons;
  1766. selmon = wintomon(root);
  1767. }
  1768. return dirty;
  1769. }
  1770. void
  1771. updatenumlockmask(void)
  1772. {
  1773. unsigned int i, j;
  1774. XModifierKeymap *modmap;
  1775. numlockmask = 0;
  1776. modmap = XGetModifierMapping(dpy);
  1777. for (i = 0; i < 8; i++)
  1778. for (j = 0; j < modmap->max_keypermod; j++)
  1779. if (modmap->modifiermap[i * modmap->max_keypermod + j]
  1780. == XKeysymToKeycode(dpy, XK_Num_Lock))
  1781. numlockmask = (1 << i);
  1782. XFreeModifiermap(modmap);
  1783. }
  1784. void
  1785. updatesizehints(Client *c)
  1786. {
  1787. long msize;
  1788. XSizeHints size;
  1789. if (!XGetWMNormalHints(dpy, c->win, &size, &msize))
  1790. /* size is uninitialized, ensure that size.flags aren't used */
  1791. size.flags = PSize;
  1792. if (size.flags & PBaseSize) {
  1793. c->basew = size.base_width;
  1794. c->baseh = size.base_height;
  1795. } else if (size.flags & PMinSize) {
  1796. c->basew = size.min_width;
  1797. c->baseh = size.min_height;
  1798. } else
  1799. c->basew = c->baseh = 0;
  1800. if (size.flags & PResizeInc) {
  1801. c->incw = size.width_inc;
  1802. c->inch = size.height_inc;
  1803. } else
  1804. c->incw = c->inch = 0;
  1805. if (size.flags & PMaxSize) {
  1806. c->maxw = size.max_width;
  1807. c->maxh = size.max_height;
  1808. } else
  1809. c->maxw = c->maxh = 0;
  1810. if (size.flags & PMinSize) {
  1811. c->minw = size.min_width;
  1812. c->minh = size.min_height;
  1813. } else if (size.flags & PBaseSize) {
  1814. c->minw = size.base_width;
  1815. c->minh = size.base_height;
  1816. } else
  1817. c->minw = c->minh = 0;
  1818. if (size.flags & PAspect) {
  1819. c->mina = (float)size.min_aspect.y / size.min_aspect.x;
  1820. c->maxa = (float)size.max_aspect.x / size.max_aspect.y;
  1821. } else
  1822. c->maxa = c->mina = 0.0;
  1823. c->isfixed = (c->maxw && c->maxh && c->maxw == c->minw && c->maxh == c->minh);
  1824. }
  1825. void
  1826. updatestatus(void)
  1827. {
  1828. if (!gettextprop(root, XA_WM_NAME, stext, sizeof(stext)))
  1829. strcpy(stext, "dwm-"VERSION);
  1830. drawbar(selmon);
  1831. }
  1832. void
  1833. updatetitle(Client *c)
  1834. {
  1835. if (!gettextprop(c->win, netatom[NetWMName], c->name, sizeof c->name))
  1836. gettextprop(c->win, XA_WM_NAME, c->name, sizeof c->name);
  1837. if (c->name[0] == '\0') /* hack to mark broken clients */
  1838. strcpy(c->name, broken);
  1839. }
  1840. void
  1841. updatewindowtype(Client *c)
  1842. {
  1843. Atom state = getatomprop(c, netatom[NetWMState]);
  1844. Atom wtype = getatomprop(c, netatom[NetWMWindowType]);
  1845. if (state == netatom[NetWMFullscreen])
  1846. setfullscreen(c, 1);
  1847. if (wtype == netatom[NetWMWindowTypeDialog])
  1848. c->isfloating = 1;
  1849. }
  1850. void
  1851. updatewmhints(Client *c)
  1852. {
  1853. XWMHints *wmh;
  1854. if ((wmh = XGetWMHints(dpy, c->win))) {
  1855. if (c == selmon->sel && wmh->flags & XUrgencyHint) {
  1856. wmh->flags &= ~XUrgencyHint;
  1857. XSetWMHints(dpy, c->win, wmh);
  1858. } else
  1859. c->isurgent = (wmh->flags & XUrgencyHint) ? 1 : 0;
  1860. if (wmh->flags & InputHint)
  1861. c->neverfocus = !wmh->input;
  1862. else
  1863. c->neverfocus = 0;
  1864. XFree(wmh);
  1865. }
  1866. }
  1867. void
  1868. view(const Arg *arg)
  1869. {
  1870. if ((arg->ui & TAGMASK) == selmon->tagset[selmon->seltags])
  1871. return;
  1872. selmon->seltags ^= 1; /* toggle sel tagset */
  1873. if (arg->ui & TAGMASK)
  1874. selmon->tagset[selmon->seltags] = arg->ui & TAGMASK;
  1875. focus(NULL);
  1876. arrange(selmon);
  1877. }
  1878. Client *
  1879. wintoclient(Window w)
  1880. {
  1881. Client *c;
  1882. Monitor *m;
  1883. for (m = mons; m; m = m->next)
  1884. for (c = m->clients; c; c = c->next)
  1885. if (c->win == w)
  1886. return c;
  1887. return NULL;
  1888. }
  1889. Monitor *
  1890. wintomon(Window w)
  1891. {
  1892. int x, y;
  1893. Client *c;
  1894. Monitor *m;
  1895. if (w == root && getrootptr(&x, &y))
  1896. return recttomon(x, y, 1, 1);
  1897. for (m = mons; m; m = m->next)
  1898. if (w == m->barwin)
  1899. return m;
  1900. if ((c = wintoclient(w)))
  1901. return c->mon;
  1902. return selmon;
  1903. }
  1904. /* There's no way to check accesses to destroyed windows, thus those cases are
  1905. * ignored (especially on UnmapNotify's). Other types of errors call Xlibs
  1906. * default error handler, which may call exit. */
  1907. int
  1908. xerror(Display *dpy, XErrorEvent *ee)
  1909. {
  1910. if (ee->error_code == BadWindow
  1911. || (ee->request_code == X_SetInputFocus && ee->error_code == BadMatch)
  1912. || (ee->request_code == X_PolyText8 && ee->error_code == BadDrawable)
  1913. || (ee->request_code == X_PolyFillRectangle && ee->error_code == BadDrawable)
  1914. || (ee->request_code == X_PolySegment && ee->error_code == BadDrawable)
  1915. || (ee->request_code == X_ConfigureWindow && ee->error_code == BadMatch)
  1916. || (ee->request_code == X_GrabButton && ee->error_code == BadAccess)
  1917. || (ee->request_code == X_GrabKey && ee->error_code == BadAccess)
  1918. || (ee->request_code == X_CopyArea && ee->error_code == BadDrawable))
  1919. return 0;
  1920. fprintf(stderr, "dwm: fatal error: request code=%d, error code=%d\n",
  1921. ee->request_code, ee->error_code);
  1922. return xerrorxlib(dpy, ee); /* may call exit */
  1923. }
  1924. int
  1925. xerrordummy(Display *dpy, XErrorEvent *ee)
  1926. {
  1927. return 0;
  1928. }
  1929. /* Startup Error handler to check if another window manager
  1930. * is already running. */
  1931. int
  1932. xerrorstart(Display *dpy, XErrorEvent *ee)
  1933. {
  1934. die("dwm: another window manager is already running");
  1935. return -1;
  1936. }
  1937. void
  1938. zoom(const Arg *arg)
  1939. {
  1940. Client *c = selmon->sel;
  1941. if (!selmon->lt[selmon->sellt]->arrange
  1942. || (selmon->sel && selmon->sel->isfloating))
  1943. return;
  1944. if (c == nexttiled(selmon->clients))
  1945. if (!c || !(c = nexttiled(c->next)))
  1946. return;
  1947. pop(c);
  1948. }
  1949. int
  1950. main(int argc, char *argv[])
  1951. {
  1952. if (argc == 2 && !strcmp("-v", argv[1]))
  1953. die("dwm-"VERSION);
  1954. else if (argc != 1)
  1955. die("usage: dwm [-v]");
  1956. if (!setlocale(LC_CTYPE, "") || !XSupportsLocale())
  1957. fputs("warning: no locale support\n", stderr);
  1958. if (!(dpy = XOpenDisplay(NULL)))
  1959. die("dwm: cannot open display");
  1960. checkotherwm();
  1961. setup();
  1962. #ifdef __OpenBSD__
  1963. if (pledge("stdio rpath proc exec", NULL) == -1)
  1964. die("pledge");
  1965. #endif /* __OpenBSD__ */
  1966. scan();
  1967. run();
  1968. cleanup();
  1969. XCloseDisplay(dpy);
  1970. return EXIT_SUCCESS;
  1971. }