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.

307 lines
8.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
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. /* (C)opyright MMVI-MMVII Anselm R. Garbe <garbeam at gmail dot com>
  2. * See LICENSE file for license details.
  3. */
  4. #include "dwm.h"
  5. #include <errno.h>
  6. #include <locale.h>
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <string.h>
  10. #include <unistd.h>
  11. #include <sys/select.h>
  12. #include <X11/cursorfont.h>
  13. #include <X11/keysym.h>
  14. #include <X11/Xatom.h>
  15. #include <X11/Xproto.h>
  16. /* extern */
  17. char stext[1024];
  18. Bool *seltag;
  19. int bx, by, bw, bh, bmw, masterd, screen, sx, sy, sw, sh, wax, way, waw, wah;
  20. unsigned int master, nmaster, ntags, numlockmask;
  21. Atom wmatom[WMLast], netatom[NetLast];
  22. Bool running = True;
  23. Bool issel = True;
  24. Client *clients = NULL;
  25. Client *sel = NULL;
  26. Client *stack = NULL;
  27. Cursor cursor[CurLast];
  28. Display *dpy;
  29. DC dc = {0};
  30. Window root, barwin;
  31. /* static */
  32. static int (*xerrorxlib)(Display *, XErrorEvent *);
  33. static Bool otherwm, readin;
  34. static void
  35. cleanup(void) {
  36. close(STDIN_FILENO);
  37. while(stack) {
  38. resize(stack, True, TopLeft);
  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 void
  57. scan(void) {
  58. unsigned int i, num;
  59. Window *wins, d1, d2;
  60. XWindowAttributes wa;
  61. wins = NULL;
  62. if(XQueryTree(dpy, root, &d1, &d2, &wins, &num)) {
  63. for(i = 0; i < num; i++) {
  64. if(!XGetWindowAttributes(dpy, wins[i], &wa))
  65. continue;
  66. if(wa.override_redirect || XGetTransientForHint(dpy, wins[i], &d1))
  67. continue;
  68. if(wa.map_state == IsViewable)
  69. manage(wins[i], &wa);
  70. }
  71. }
  72. if(wins)
  73. XFree(wins);
  74. }
  75. static void
  76. setup(void) {
  77. int i, j;
  78. unsigned int mask;
  79. Window w;
  80. XModifierKeymap *modmap;
  81. XSetWindowAttributes wa;
  82. /* init atoms */
  83. wmatom[WMProtocols] = XInternAtom(dpy, "WM_PROTOCOLS", False);
  84. wmatom[WMDelete] = XInternAtom(dpy, "WM_DELETE_WINDOW", False);
  85. netatom[NetSupported] = XInternAtom(dpy, "_NET_SUPPORTED", False);
  86. netatom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False);
  87. XChangeProperty(dpy, root, netatom[NetSupported], XA_ATOM, 32,
  88. PropModeReplace, (unsigned char *) netatom, NetLast);
  89. /* init cursors */
  90. cursor[CurNormal] = XCreateFontCursor(dpy, XC_left_ptr);
  91. cursor[CurResize] = XCreateFontCursor(dpy, XC_sizing);
  92. cursor[CurMove] = XCreateFontCursor(dpy, XC_fleur);
  93. /* init modifier map */
  94. modmap = XGetModifierMapping(dpy);
  95. for (i = 0; i < 8; i++) {
  96. for (j = 0; j < modmap->max_keypermod; j++) {
  97. if(modmap->modifiermap[i * modmap->max_keypermod + j] == XKeysymToKeycode(dpy, XK_Num_Lock))
  98. numlockmask = (1 << i);
  99. }
  100. }
  101. XFreeModifiermap(modmap);
  102. /* select for events */
  103. wa.event_mask = SubstructureRedirectMask | SubstructureNotifyMask
  104. | EnterWindowMask | LeaveWindowMask;
  105. wa.cursor = cursor[CurNormal];
  106. XChangeWindowAttributes(dpy, root, CWEventMask | CWCursor, &wa);
  107. grabkeys();
  108. initrregs();
  109. for(ntags = 0; tags[ntags]; ntags++);
  110. seltag = emallocz(sizeof(Bool) * ntags);
  111. seltag[0] = True;
  112. /* style */
  113. dc.norm[ColBG] = getcolor(NORMBGCOLOR);
  114. dc.norm[ColFG] = getcolor(NORMFGCOLOR);
  115. dc.sel[ColBG] = getcolor(SELBGCOLOR);
  116. dc.sel[ColFG] = getcolor(SELFGCOLOR);
  117. dc.status[ColBG] = getcolor(STATUSBGCOLOR);
  118. dc.status[ColFG] = getcolor(STATUSFGCOLOR);
  119. setfont(FONT);
  120. /* geometry */
  121. bmw = textw(TILESYMBOL) > textw(FLOATSYMBOL) ? textw(TILESYMBOL) : textw(FLOATSYMBOL);
  122. sx = sy = 0;
  123. sw = DisplayWidth(dpy, screen);
  124. sh = DisplayHeight(dpy, screen);
  125. master = MASTER;
  126. nmaster = NMASTER;
  127. /* bar */
  128. bx = sx;
  129. by = sy;
  130. bw = sw;
  131. dc.h = bh = dc.font.height + 2;
  132. wa.override_redirect = 1;
  133. wa.background_pixmap = ParentRelative;
  134. wa.event_mask = ButtonPressMask | ExposureMask;
  135. barwin = XCreateWindow(dpy, root, bx, by, bw, bh, 0, DefaultDepth(dpy, screen),
  136. CopyFromParent, DefaultVisual(dpy, screen),
  137. CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa);
  138. XDefineCursor(dpy, barwin, cursor[CurNormal]);
  139. XMapRaised(dpy, barwin);
  140. strcpy(stext, "dwm-"VERSION);
  141. /* windowarea */
  142. wax = sx;
  143. way = sy + bh;
  144. wah = sh - bh;
  145. waw = sw;
  146. /* pixmap for everything */
  147. dc.drawable = XCreatePixmap(dpy, root, sw, bh, DefaultDepth(dpy, screen));
  148. dc.gc = XCreateGC(dpy, root, 0, 0);
  149. XSetLineAttributes(dpy, dc.gc, 1, LineSolid, CapButt, JoinMiter);
  150. /* multihead support */
  151. issel = XQueryPointer(dpy, root, &w, &w, &i, &i, &i, &i, &mask);
  152. }
  153. /*
  154. * Startup Error handler to check if another window manager
  155. * is already running.
  156. */
  157. static int
  158. xerrorstart(Display *dsply, XErrorEvent *ee) {
  159. otherwm = True;
  160. return -1;
  161. }
  162. /* extern */
  163. int
  164. getproto(Window w) {
  165. int i, format, protos, status;
  166. unsigned long extra, res;
  167. Atom *protocols, real;
  168. protos = 0;
  169. status = XGetWindowProperty(dpy, w, wmatom[WMProtocols], 0L, 20L, False,
  170. XA_ATOM, &real, &format, &res, &extra, (unsigned char **)&protocols);
  171. if(status != Success || protocols == 0)
  172. return protos;
  173. for(i = 0; i < res; i++)
  174. if(protocols[i] == wmatom[WMDelete])
  175. protos |= PROTODELWIN;
  176. free(protocols);
  177. return protos;
  178. }
  179. void
  180. sendevent(Window w, Atom a, long value) {
  181. XEvent e;
  182. e.type = ClientMessage;
  183. e.xclient.window = w;
  184. e.xclient.message_type = a;
  185. e.xclient.format = 32;
  186. e.xclient.data.l[0] = value;
  187. e.xclient.data.l[1] = CurrentTime;
  188. XSendEvent(dpy, w, False, NoEventMask, &e);
  189. XSync(dpy, False);
  190. }
  191. void
  192. quit(Arg *arg) {
  193. readin = running = False;
  194. }
  195. /* There's no way to check accesses to destroyed windows, thus those cases are
  196. * ignored (especially on UnmapNotify's). Other types of errors call Xlibs
  197. * default error handler, which may call exit.
  198. */
  199. int
  200. xerror(Display *dpy, XErrorEvent *ee) {
  201. if(ee->error_code == BadWindow
  202. || (ee->request_code == X_SetInputFocus && ee->error_code == BadMatch)
  203. || (ee->request_code == X_PolyText8 && ee->error_code == BadDrawable)
  204. || (ee->request_code == X_PolyFillRectangle && ee->error_code == BadDrawable)
  205. || (ee->request_code == X_PolySegment && ee->error_code == BadDrawable)
  206. || (ee->request_code == X_ConfigureWindow && ee->error_code == BadMatch)
  207. || (ee->request_code == X_GrabKey && ee->error_code == BadAccess)
  208. || (ee->request_code == X_CopyArea && ee->error_code == BadDrawable))
  209. return 0;
  210. fprintf(stderr, "dwm: fatal error: request code=%d, error code=%d\n",
  211. ee->request_code, ee->error_code);
  212. return xerrorxlib(dpy, ee); /* may call exit */
  213. }
  214. int
  215. main(int argc, char *argv[]) {
  216. char *p;
  217. int r, xfd;
  218. fd_set rd;
  219. if(argc == 2 && !strncmp("-v", argv[1], 3)) {
  220. fputs("dwm-"VERSION", (C)opyright MMVI-MMVII Anselm R. Garbe\n", stdout);
  221. exit(EXIT_SUCCESS);
  222. }
  223. else if(argc != 1)
  224. eprint("usage: dwm [-v]\n");
  225. setlocale(LC_CTYPE, "");
  226. dpy = XOpenDisplay(0);
  227. if(!dpy)
  228. eprint("dwm: cannot open display\n");
  229. xfd = ConnectionNumber(dpy);
  230. screen = DefaultScreen(dpy);
  231. root = RootWindow(dpy, screen);
  232. otherwm = False;
  233. XSetErrorHandler(xerrorstart);
  234. /* this causes an error if some other window manager is running */
  235. XSelectInput(dpy, root, SubstructureRedirectMask);
  236. XSync(dpy, False);
  237. if(otherwm)
  238. eprint("dwm: another window manager is already running\n");
  239. XSync(dpy, False);
  240. XSetErrorHandler(NULL);
  241. xerrorxlib = XSetErrorHandler(xerror);
  242. XSync(dpy, False);
  243. setup();
  244. drawstatus();
  245. scan();
  246. /* main event loop, also reads status text from stdin */
  247. XSync(dpy, False);
  248. procevent();
  249. readin = True;
  250. while(running) {
  251. FD_ZERO(&rd);
  252. if(readin)
  253. FD_SET(STDIN_FILENO, &rd);
  254. FD_SET(xfd, &rd);
  255. if(select(xfd + 1, &rd, NULL, NULL, NULL) == -1) {
  256. if(errno == EINTR)
  257. continue;
  258. eprint("select failed\n");
  259. }
  260. if(FD_ISSET(STDIN_FILENO, &rd)) {
  261. switch(r = read(STDIN_FILENO, stext, sizeof stext - 1)) {
  262. case -1:
  263. strncpy(stext, strerror(errno), sizeof stext - 1);
  264. stext[sizeof stext - 1] = '\0';
  265. readin = False;
  266. break;
  267. case 0:
  268. strncpy(stext, "EOF", 4);
  269. readin = False;
  270. break;
  271. default:
  272. for(stext[r] = '\0', p = stext + strlen(stext) - 1; p >= stext && *p == '\n'; *p-- = '\0');
  273. for(p = stext + strlen(stext) - 1; p >= stext && *p != '\n'; --p);
  274. if(p > stext)
  275. strncpy(stext, p + 1, sizeof stext);
  276. }
  277. drawstatus();
  278. }
  279. if(FD_ISSET(xfd, &rd))
  280. procevent();
  281. }
  282. cleanup();
  283. XCloseDisplay(dpy);
  284. return 0;
  285. }