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.

345 lines
9.2 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
17 years ago
17 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. /* See LICENSE file for copyright and license details. */
  2. #include "dwm.h"
  3. #include <errno.h>
  4. #include <locale.h>
  5. #include <stdio.h>
  6. #include <stdlib.h>
  7. #include <string.h>
  8. #include <unistd.h>
  9. #include <sys/select.h>
  10. #include <X11/cursorfont.h>
  11. #include <X11/keysym.h>
  12. #include <X11/Xatom.h>
  13. #include <X11/Xproto.h>
  14. /* extern */
  15. char stext[256];
  16. int screen, sx, sy, sw, sh, wax, way, waw, wah;
  17. unsigned int bh, ntags;
  18. unsigned int bpos = BARPOS;
  19. unsigned int numlockmask = 0;
  20. Atom wmatom[WMLast], netatom[NetLast];
  21. Bool *seltag;
  22. Bool selscreen = True;
  23. Client *clients = NULL;
  24. Client *sel = NULL;
  25. Client *stack = NULL;
  26. Cursor cursor[CurLast];
  27. Display *dpy;
  28. DC dc = {0};
  29. Window root, barwin;
  30. /* static */
  31. static int (*xerrorxlib)(Display *, XErrorEvent *);
  32. static Bool otherwm, readin;
  33. static Bool running = True;
  34. static void
  35. cleanup(void) {
  36. close(STDIN_FILENO);
  37. while(stack) {
  38. unban(stack);
  39. unmanage(stack);
  40. }
  41. if(dc.font.set)
  42. XFreeFontSet(dpy, dc.font.set);
  43. else
  44. XFreeFont(dpy, dc.font.xfont);
  45. XUngrabKey(dpy, AnyKey, AnyModifier, root);
  46. XFreePixmap(dpy, dc.drawable);
  47. XFreeGC(dpy, dc.gc);
  48. XDestroyWindow(dpy, barwin);
  49. XFreeCursor(dpy, cursor[CurNormal]);
  50. XFreeCursor(dpy, cursor[CurResize]);
  51. XFreeCursor(dpy, cursor[CurMove]);
  52. XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime);
  53. XSync(dpy, False);
  54. free(seltag);
  55. }
  56. static unsigned long
  57. initcolor(const char *colstr) {
  58. Colormap cmap = DefaultColormap(dpy, screen);
  59. XColor color;
  60. if(!XAllocNamedColor(dpy, cmap, colstr, &color, &color))
  61. eprint("error, cannot allocate color '%s'\n", colstr);
  62. return color.pixel;
  63. }
  64. static void
  65. initfont(const char *fontstr) {
  66. char *def, **missing;
  67. int i, n;
  68. missing = NULL;
  69. if(dc.font.set)
  70. XFreeFontSet(dpy, dc.font.set);
  71. dc.font.set = XCreateFontSet(dpy, fontstr, &missing, &n, &def);
  72. if(missing) {
  73. while(n--)
  74. fprintf(stderr, "dwm: missing fontset: %s\n", missing[n]);
  75. XFreeStringList(missing);
  76. }
  77. if(dc.font.set) {
  78. XFontSetExtents *font_extents;
  79. XFontStruct **xfonts;
  80. char **font_names;
  81. dc.font.ascent = dc.font.descent = 0;
  82. font_extents = XExtentsOfFontSet(dc.font.set);
  83. n = XFontsOfFontSet(dc.font.set, &xfonts, &font_names);
  84. for(i = 0, dc.font.ascent = 0, dc.font.descent = 0; i < n; i++) {
  85. if(dc.font.ascent < (*xfonts)->ascent)
  86. dc.font.ascent = (*xfonts)->ascent;
  87. if(dc.font.descent < (*xfonts)->descent)
  88. dc.font.descent = (*xfonts)->descent;
  89. xfonts++;
  90. }
  91. }
  92. else {
  93. if(dc.font.xfont)
  94. XFreeFont(dpy, dc.font.xfont);
  95. dc.font.xfont = NULL;
  96. if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr)))
  97. eprint("error, cannot load font: '%s'\n", fontstr);
  98. dc.font.ascent = dc.font.xfont->ascent;
  99. dc.font.descent = dc.font.xfont->descent;
  100. }
  101. dc.font.height = dc.font.ascent + dc.font.descent;
  102. }
  103. static void
  104. scan(void) {
  105. unsigned int i, num;
  106. Window *wins, d1, d2;
  107. XWindowAttributes wa;
  108. wins = NULL;
  109. if(XQueryTree(dpy, root, &d1, &d2, &wins, &num)) {
  110. for(i = 0; i < num; i++) {
  111. if(!XGetWindowAttributes(dpy, wins[i], &wa)
  112. || wa.override_redirect || XGetTransientForHint(dpy, wins[i], &d1))
  113. continue;
  114. if(wa.map_state == IsViewable)
  115. manage(wins[i], &wa);
  116. }
  117. }
  118. if(wins)
  119. XFree(wins);
  120. }
  121. static void
  122. setup(void) {
  123. int i, j;
  124. unsigned int mask;
  125. Window w;
  126. XModifierKeymap *modmap;
  127. XSetWindowAttributes wa;
  128. /* init atoms */
  129. wmatom[WMProtocols] = XInternAtom(dpy, "WM_PROTOCOLS", False);
  130. wmatom[WMDelete] = XInternAtom(dpy, "WM_DELETE_WINDOW", False);
  131. wmatom[WMState] = XInternAtom(dpy, "WM_STATE", False);
  132. netatom[NetSupported] = XInternAtom(dpy, "_NET_SUPPORTED", False);
  133. netatom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False);
  134. XChangeProperty(dpy, root, netatom[NetSupported], XA_ATOM, 32,
  135. PropModeReplace, (unsigned char *) netatom, NetLast);
  136. /* init cursors */
  137. cursor[CurNormal] = XCreateFontCursor(dpy, XC_left_ptr);
  138. cursor[CurResize] = XCreateFontCursor(dpy, XC_sizing);
  139. cursor[CurMove] = XCreateFontCursor(dpy, XC_fleur);
  140. /* init modifier map */
  141. modmap = XGetModifierMapping(dpy);
  142. for (i = 0; i < 8; i++)
  143. for (j = 0; j < modmap->max_keypermod; j++) {
  144. if(modmap->modifiermap[i * modmap->max_keypermod + j]
  145. == XKeysymToKeycode(dpy, XK_Num_Lock))
  146. numlockmask = (1 << i);
  147. }
  148. XFreeModifiermap(modmap);
  149. /* select for events */
  150. wa.event_mask = SubstructureRedirectMask | SubstructureNotifyMask
  151. | EnterWindowMask | LeaveWindowMask | StructureNotifyMask;
  152. wa.cursor = cursor[CurNormal];
  153. XChangeWindowAttributes(dpy, root, CWEventMask | CWCursor, &wa);
  154. XSelectInput(dpy, root, wa.event_mask);
  155. grabkeys();
  156. compileregs();
  157. for(ntags = 0; tags[ntags]; ntags++);
  158. seltag = emallocz(sizeof(Bool) * ntags);
  159. seltag[0] = True;
  160. /* style */
  161. dc.norm[ColBorder] = initcolor(NORMBORDERCOLOR);
  162. dc.norm[ColBG] = initcolor(NORMBGCOLOR);
  163. dc.norm[ColFG] = initcolor(NORMFGCOLOR);
  164. dc.sel[ColBorder] = initcolor(SELBORDERCOLOR);
  165. dc.sel[ColBG] = initcolor(SELBGCOLOR);
  166. dc.sel[ColFG] = initcolor(SELFGCOLOR);
  167. initfont(FONT);
  168. /* geometry */
  169. sx = sy = 0;
  170. sw = DisplayWidth(dpy, screen);
  171. sh = DisplayHeight(dpy, screen);
  172. initlayouts();
  173. /* bar */
  174. dc.h = bh = dc.font.height + 2;
  175. wa.override_redirect = 1;
  176. wa.background_pixmap = ParentRelative;
  177. wa.event_mask = ButtonPressMask | ExposureMask;
  178. barwin = XCreateWindow(dpy, root, sx, sy, sw, bh, 0,
  179. DefaultDepth(dpy, screen), CopyFromParent, DefaultVisual(dpy, screen),
  180. CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa);
  181. XDefineCursor(dpy, barwin, cursor[CurNormal]);
  182. updatebarpos();
  183. XMapRaised(dpy, barwin);
  184. strcpy(stext, "dwm-"VERSION);
  185. /* pixmap for everything */
  186. dc.drawable = XCreatePixmap(dpy, root, sw, bh, DefaultDepth(dpy, screen));
  187. dc.gc = XCreateGC(dpy, root, 0, 0);
  188. XSetLineAttributes(dpy, dc.gc, 1, LineSolid, CapButt, JoinMiter);
  189. if(!dc.font.set)
  190. XSetFont(dpy, dc.gc, dc.font.xfont->fid);
  191. /* multihead support */
  192. selscreen = XQueryPointer(dpy, root, &w, &w, &i, &i, &i, &i, &mask);
  193. }
  194. /*
  195. * Startup Error handler to check if another window manager
  196. * is already running.
  197. */
  198. static int
  199. xerrorstart(Display *dsply, XErrorEvent *ee) {
  200. otherwm = True;
  201. return -1;
  202. }
  203. /* extern */
  204. void
  205. quit(const char *arg) {
  206. readin = running = False;
  207. }
  208. void
  209. updatebarpos(void) {
  210. XEvent ev;
  211. wax = sx;
  212. way = sy;
  213. wah = sh;
  214. waw = sw;
  215. switch(bpos) {
  216. default:
  217. wah -= bh;
  218. way += bh;
  219. XMoveWindow(dpy, barwin, sx, sy);
  220. break;
  221. case BarBot:
  222. wah -= bh;
  223. XMoveWindow(dpy, barwin, sx, sy + wah);
  224. break;
  225. case BarOff:
  226. XMoveWindow(dpy, barwin, sx, sy - bh);
  227. break;
  228. }
  229. XSync(dpy, False);
  230. while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
  231. }
  232. /* There's no way to check accesses to destroyed windows, thus those cases are
  233. * ignored (especially on UnmapNotify's). Other types of errors call Xlibs
  234. * default error handler, which may call exit.
  235. */
  236. int
  237. xerror(Display *dpy, XErrorEvent *ee) {
  238. if(ee->error_code == BadWindow
  239. || (ee->request_code == X_SetInputFocus && ee->error_code == BadMatch)
  240. || (ee->request_code == X_PolyText8 && ee->error_code == BadDrawable)
  241. || (ee->request_code == X_PolyFillRectangle && ee->error_code == BadDrawable)
  242. || (ee->request_code == X_PolySegment && ee->error_code == BadDrawable)
  243. || (ee->request_code == X_ConfigureWindow && ee->error_code == BadMatch)
  244. || (ee->request_code == X_GrabKey && ee->error_code == BadAccess)
  245. || (ee->request_code == X_CopyArea && ee->error_code == BadDrawable))
  246. return 0;
  247. fprintf(stderr, "dwm: fatal error: request code=%d, error code=%d\n",
  248. ee->request_code, ee->error_code);
  249. return xerrorxlib(dpy, ee); /* may call exit */
  250. }
  251. int
  252. main(int argc, char *argv[]) {
  253. char *p;
  254. int r, xfd;
  255. fd_set rd;
  256. XEvent ev;
  257. if(argc == 2 && !strcmp("-v", argv[1]))
  258. eprint("dwm-"VERSION", © 2006-2007 A. R. Garbe, S. van Dijk, J. Salmi, P. Hruby, S. Nagy\n");
  259. else if(argc != 1)
  260. eprint("usage: dwm [-v]\n");
  261. setlocale(LC_CTYPE, "");
  262. if(!(dpy = XOpenDisplay(0)))
  263. eprint("dwm: cannot open display\n");
  264. xfd = ConnectionNumber(dpy);
  265. screen = DefaultScreen(dpy);
  266. root = RootWindow(dpy, screen);
  267. otherwm = False;
  268. XSetErrorHandler(xerrorstart);
  269. /* this causes an error if some other window manager is running */
  270. XSelectInput(dpy, root, SubstructureRedirectMask);
  271. XSync(dpy, False);
  272. if(otherwm)
  273. eprint("dwm: another window manager is already running\n");
  274. XSync(dpy, False);
  275. XSetErrorHandler(NULL);
  276. xerrorxlib = XSetErrorHandler(xerror);
  277. XSync(dpy, False);
  278. setup();
  279. drawstatus();
  280. scan();
  281. /* main event loop, also reads status text from stdin */
  282. XSync(dpy, False);
  283. readin = True;
  284. while(running) {
  285. FD_ZERO(&rd);
  286. if(readin)
  287. FD_SET(STDIN_FILENO, &rd);
  288. FD_SET(xfd, &rd);
  289. if(select(xfd + 1, &rd, NULL, NULL, NULL) == -1) {
  290. if(errno == EINTR)
  291. continue;
  292. eprint("select failed\n");
  293. }
  294. if(FD_ISSET(STDIN_FILENO, &rd)) {
  295. switch(r = read(STDIN_FILENO, stext, sizeof stext - 1)) {
  296. case -1:
  297. strncpy(stext, strerror(errno), sizeof stext - 1);
  298. stext[sizeof stext - 1] = '\0';
  299. readin = False;
  300. break;
  301. case 0:
  302. strncpy(stext, "EOF", 4);
  303. readin = False;
  304. break;
  305. default:
  306. for(stext[r] = '\0', p = stext + strlen(stext) - 1; p >= stext && *p == '\n'; *p-- = '\0');
  307. for(; p >= stext && *p != '\n'; --p);
  308. if(p > stext)
  309. strncpy(stext, p + 1, sizeof stext);
  310. }
  311. drawstatus();
  312. }
  313. while(XPending(dpy)) {
  314. XNextEvent(dpy, &ev);
  315. if(handler[ev.type])
  316. (handler[ev.type])(&ev); /* call handler */
  317. }
  318. }
  319. cleanup();
  320. XCloseDisplay(dpy);
  321. return 0;
  322. }