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.

289 lines
6.6 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
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
  1. /*
  2. * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
  3. * See LICENSE file for license details.
  4. */
  5. #include "dwm.h"
  6. #include <errno.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/Xatom.h>
  14. #include <X11/Xproto.h>
  15. /* static */
  16. static int (*xerrorxlib)(Display *, XErrorEvent *);
  17. static Bool otherwm;
  18. static void
  19. cleanup()
  20. {
  21. while(sel) {
  22. resize(sel, True, TopLeft);
  23. unmanage(sel);
  24. }
  25. XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime);
  26. }
  27. static void
  28. scan()
  29. {
  30. unsigned int i, num;
  31. Window *wins, d1, d2;
  32. XWindowAttributes wa;
  33. if(XQueryTree(dpy, root, &d1, &d2, &wins, &num)) {
  34. for(i = 0; i < num; i++) {
  35. if(!XGetWindowAttributes(dpy, wins[i], &wa))
  36. continue;
  37. if(wa.override_redirect || XGetTransientForHint(dpy, wins[i], &d1))
  38. continue;
  39. if(wa.map_state == IsViewable)
  40. manage(wins[i], &wa);
  41. }
  42. }
  43. if(wins)
  44. XFree(wins);
  45. }
  46. static int
  47. win_property(Window w, Atom a, Atom t, long l, unsigned char **prop)
  48. {
  49. int status, format;
  50. unsigned long res, extra;
  51. Atom real;
  52. status = XGetWindowProperty(dpy, w, a, 0L, l, False, t, &real, &format,
  53. &res, &extra, prop);
  54. if(status != Success || *prop == 0) {
  55. return 0;
  56. }
  57. if(res == 0) {
  58. free((void *) *prop);
  59. }
  60. return res;
  61. }
  62. /*
  63. * Startup Error handler to check if another window manager
  64. * is already running.
  65. */
  66. static int
  67. xerrorstart(Display *dsply, XErrorEvent *ee)
  68. {
  69. otherwm = True;
  70. return -1;
  71. }
  72. /* extern */
  73. char stext[1024];
  74. /* CUSTOMIZE */
  75. int tsel = Tdev; /* default tag */
  76. /* END CUSTOMIZE */
  77. int screen, sx, sy, sw, sh, bx, by, bw, bh, mw;
  78. Atom wmatom[WMLast], netatom[NetLast];
  79. Bool running = True;
  80. Bool issel = True;
  81. Client *clients = NULL;
  82. Client *sel = NULL;
  83. Cursor cursor[CurLast];
  84. Display *dpy;
  85. DC dc = {0};
  86. Window root, barwin;
  87. int
  88. getproto(Window w)
  89. {
  90. int protos = 0;
  91. int i;
  92. long res;
  93. unsigned char *protocols;
  94. res = win_property(w, wmatom[WMProtocols], XA_ATOM, 20L, &protocols);
  95. if(res <= 0) {
  96. return protos;
  97. }
  98. for(i = 0; i < res; i++) {
  99. if(protocols[i] == wmatom[WMDelete])
  100. protos |= WM_PROTOCOL_DELWIN;
  101. }
  102. free((char *) protocols);
  103. return protos;
  104. }
  105. void
  106. sendevent(Window w, Atom a, long value)
  107. {
  108. XEvent e;
  109. e.type = ClientMessage;
  110. e.xclient.window = w;
  111. e.xclient.message_type = a;
  112. e.xclient.format = 32;
  113. e.xclient.data.l[0] = value;
  114. e.xclient.data.l[1] = CurrentTime;
  115. XSendEvent(dpy, w, False, NoEventMask, &e);
  116. XSync(dpy, False);
  117. }
  118. void
  119. quit(Arg *arg)
  120. {
  121. running = False;
  122. }
  123. /*
  124. * There's no way to check accesses to destroyed windows, thus those cases are
  125. * ignored (especially on UnmapNotify's). Other types of errors call Xlibs
  126. * default error handler, which calls exit().
  127. */
  128. int
  129. xerror(Display *dpy, XErrorEvent *ee)
  130. {
  131. if(ee->error_code == BadWindow
  132. || (ee->request_code == X_SetInputFocus && ee->error_code == BadMatch)
  133. || (ee->request_code == X_PolyText8 && ee->error_code == BadDrawable)
  134. || (ee->request_code == X_PolyFillRectangle && ee->error_code == BadDrawable)
  135. || (ee->request_code == X_PolySegment && ee->error_code == BadDrawable)
  136. || (ee->request_code == X_ConfigureWindow && ee->error_code == BadMatch)
  137. || (ee->request_code == X_GrabKey && ee->error_code == BadAccess))
  138. return 0;
  139. fprintf(stderr, "dwm: fatal error: request code=%d, error code=%d\n",
  140. ee->request_code, ee->error_code);
  141. return xerrorxlib(dpy, ee); /* may call exit() */
  142. }
  143. int
  144. main(int argc, char *argv[])
  145. {
  146. int i;
  147. unsigned int mask;
  148. fd_set rd;
  149. Bool readin = True;
  150. Window w;
  151. XEvent ev;
  152. XSetWindowAttributes wa;
  153. if(argc == 2 && !strncmp("-v", argv[1], 3)) {
  154. fputs("dwm-"VERSION", (C)opyright MMVI Anselm R. Garbe\n", stdout);
  155. exit(EXIT_SUCCESS);
  156. }
  157. else if(argc != 1)
  158. eprint("usage: dwm [-v]\n");
  159. dpy = XOpenDisplay(0);
  160. if(!dpy)
  161. eprint("dwm: cannot connect X server\n");
  162. screen = DefaultScreen(dpy);
  163. root = RootWindow(dpy, screen);
  164. /* check if another WM is already running */
  165. otherwm = False;
  166. XSetErrorHandler(xerrorstart);
  167. /* this causes an error if some other WM is running */
  168. XSelectInput(dpy, root, SubstructureRedirectMask);
  169. XSync(dpy, False);
  170. if(otherwm)
  171. eprint("dwm: another window manager is already running\n");
  172. XSetErrorHandler(NULL);
  173. xerrorxlib = XSetErrorHandler(xerror);
  174. /* init atoms */
  175. wmatom[WMProtocols] = XInternAtom(dpy, "WM_PROTOCOLS", False);
  176. wmatom[WMDelete] = XInternAtom(dpy, "WM_DELETE_WINDOW", False);
  177. netatom[NetSupported] = XInternAtom(dpy, "_NET_SUPPORTED", False);
  178. netatom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False);
  179. XChangeProperty(dpy, root, netatom[NetSupported], XA_ATOM, 32,
  180. PropModeReplace, (unsigned char *) netatom, NetLast);
  181. /* init cursors */
  182. cursor[CurNormal] = XCreateFontCursor(dpy, XC_left_ptr);
  183. cursor[CurResize] = XCreateFontCursor(dpy, XC_sizing);
  184. cursor[CurMove] = XCreateFontCursor(dpy, XC_fleur);
  185. grabkeys();
  186. /* style */
  187. dc.bg = getcolor(BGCOLOR);
  188. dc.fg = getcolor(FGCOLOR);
  189. dc.border = getcolor(BORDERCOLOR);
  190. setfont(FONT);
  191. sx = sy = 0;
  192. sw = DisplayWidth(dpy, screen);
  193. sh = DisplayHeight(dpy, screen);
  194. mw = (sw * MASTERW) / 100;
  195. wa.override_redirect = 1;
  196. wa.background_pixmap = ParentRelative;
  197. wa.event_mask = ButtonPressMask | ExposureMask;
  198. bx = by = 0;
  199. bw = sw;
  200. dc.h = bh = dc.font.height + 4;
  201. barwin = XCreateWindow(dpy, root, bx, by, bw, bh, 0, DefaultDepth(dpy, screen),
  202. CopyFromParent, DefaultVisual(dpy, screen),
  203. CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa);
  204. XDefineCursor(dpy, barwin, cursor[CurNormal]);
  205. XMapRaised(dpy, barwin);
  206. dc.drawable = XCreatePixmap(dpy, root, sw, bh, DefaultDepth(dpy, screen));
  207. dc.gc = XCreateGC(dpy, root, 0, 0);
  208. drawstatus();
  209. issel = XQueryPointer(dpy, root, &w, &w, &i, &i, &i, &i, &mask);
  210. wa.event_mask = SubstructureRedirectMask | EnterWindowMask | LeaveWindowMask;
  211. wa.cursor = cursor[CurNormal];
  212. XChangeWindowAttributes(dpy, root, CWEventMask | CWCursor, &wa);
  213. strcpy(stext, "dwm-"VERSION);
  214. scan();
  215. /* main event loop, reads status text from stdin as well */
  216. while(running) {
  217. FD_ZERO(&rd);
  218. if(readin)
  219. FD_SET(STDIN_FILENO, &rd);
  220. FD_SET(ConnectionNumber(dpy), &rd);
  221. i = select(ConnectionNumber(dpy) + 1, &rd, 0, 0, 0);
  222. if(i == -1 && errno == EINTR)
  223. continue;
  224. if(i < 0)
  225. eprint("select failed\n");
  226. else if(i > 0) {
  227. if(FD_ISSET(ConnectionNumber(dpy), &rd)) {
  228. while(XPending(dpy)) {
  229. XNextEvent(dpy, &ev);
  230. if(handler[ev.type])
  231. (handler[ev.type])(&ev); /* call handler */
  232. }
  233. }
  234. if(readin && FD_ISSET(STDIN_FILENO, &rd)) {
  235. readin = NULL != fgets(stext, sizeof(stext), stdin);
  236. if(readin)
  237. stext[strlen(stext) - 1] = 0;
  238. else
  239. strcpy(stext, "broken pipe");
  240. drawstatus();
  241. }
  242. }
  243. }
  244. cleanup();
  245. XCloseDisplay(dpy);
  246. return 0;
  247. }