wm.c 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. /*
  2. * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
  3. * See LICENSE file for license details.
  4. */
  5. #include <stdarg.h>
  6. #include <stdio.h>
  7. #include <stdlib.h>
  8. #include <X11/cursorfont.h>
  9. #include <X11/Xatom.h>
  10. #include <X11/Xproto.h>
  11. #include "wm.h"
  12. /* X structs */
  13. Display *dpy;
  14. Window root, barwin;
  15. Atom wm_atom[WMLast], net_atom[NetLast];
  16. Cursor cursor[CurLast];
  17. XRectangle rect, barrect;
  18. Bool running = True;
  19. Client *client = NULL;
  20. char *bartext, tag[256];
  21. int screen, sel_screen;
  22. /* draw structs */
  23. Brush brush = {0};
  24. enum { WM_PROTOCOL_DELWIN = 1 };
  25. static Bool other_wm_running;
  26. static int (*x_error_handler) (Display *, XErrorEvent *);
  27. static char version[] = "gridwm - " VERSION ", (C)opyright MMVI Anselm R. Garbe\n";
  28. static void
  29. usage()
  30. {
  31. fputs("usage: gridwm [-v]\n", stderr);
  32. exit(1);
  33. }
  34. static void
  35. scan_wins()
  36. {
  37. unsigned int i, num;
  38. Window *wins;
  39. XWindowAttributes wa;
  40. Window d1, d2;
  41. if(XQueryTree(dpy, root, &d1, &d2, &wins, &num)) {
  42. for(i = 0; i < num; i++) {
  43. if(!XGetWindowAttributes(dpy, wins[i], &wa))
  44. continue;
  45. if(wa.override_redirect || XGetTransientForHint(dpy, wins[i], &d1))
  46. continue;
  47. if(wa.map_state == IsViewable)
  48. manage(create_client(wins[i], &wa));
  49. }
  50. }
  51. if(wins)
  52. XFree(wins);
  53. }
  54. static int
  55. win_property(Window w, Atom a, Atom t, long l, unsigned char **prop)
  56. {
  57. Atom real;
  58. int format;
  59. unsigned long res, extra;
  60. int status;
  61. status = XGetWindowProperty(dpy, w, a, 0L, l, False, t, &real, &format,
  62. &res, &extra, prop);
  63. if(status != Success || *prop == NULL) {
  64. return 0;
  65. }
  66. if(res == 0)
  67. free((void *) *prop);
  68. return res;
  69. }
  70. int
  71. win_proto(Window w)
  72. {
  73. Atom *protocols;
  74. long res;
  75. int protos = 0;
  76. int i;
  77. res = win_property(w, wm_atom[WMProtocols], XA_ATOM, 20L,
  78. ((unsigned char **) &protocols));
  79. if(res <= 0) {
  80. return protos;
  81. }
  82. for(i = 0; i < res; i++) {
  83. if(protocols[i] == wm_atom[WMDelete])
  84. protos |= WM_PROTOCOL_DELWIN;
  85. }
  86. free((char *) protocols);
  87. return protos;
  88. }
  89. /*
  90. * There's no way to check accesses to destroyed windows, thus
  91. * those cases are ignored (especially on UnmapNotify's).
  92. * Other types of errors call Xlib's default error handler, which
  93. * calls exit().
  94. */
  95. static int
  96. error_handler(Display *dpy, XErrorEvent *error)
  97. {
  98. if(error->error_code == BadWindow
  99. || (error->request_code == X_SetInputFocus
  100. && error->error_code == BadMatch)
  101. || (error->request_code == X_PolyText8
  102. && error->error_code == BadDrawable)
  103. || (error->request_code == X_PolyFillRectangle
  104. && error->error_code == BadDrawable)
  105. || (error->request_code == X_PolySegment
  106. && error->error_code == BadDrawable)
  107. || (error->request_code == X_ConfigureWindow
  108. && error->error_code == BadMatch)
  109. || (error->request_code == X_GrabKey
  110. && error->error_code == BadAccess))
  111. return 0;
  112. fprintf(stderr, "gridwm: fatal error: request code=%d, error code=%d\n",
  113. error->request_code, error->error_code);
  114. return x_error_handler(dpy, error); /* may call exit() */
  115. }
  116. /*
  117. * Startup Error handler to check if another window manager
  118. * is already running.
  119. */
  120. static int
  121. startup_error_handler(Display *dpy, XErrorEvent *error)
  122. {
  123. other_wm_running = True;
  124. return -1;
  125. }
  126. static void
  127. cleanup()
  128. {
  129. /*
  130. Client *c;
  131. for(c=client; c; c=c->next)
  132. reparent_client(c, root, c->sel->rect.x, c->sel->rect.y);
  133. XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime);
  134. */
  135. }
  136. int
  137. main(int argc, char *argv[])
  138. {
  139. int i;
  140. XSetWindowAttributes wa;
  141. unsigned int mask;
  142. Window w;
  143. XEvent ev;
  144. /* command line args */
  145. for(i = 1; (i < argc) && (argv[i][0] == '-'); i++) {
  146. switch (argv[i][1]) {
  147. case 'v':
  148. fprintf(stdout, "%s", version);
  149. exit(0);
  150. break;
  151. default:
  152. usage();
  153. break;
  154. }
  155. }
  156. dpy = XOpenDisplay(0);
  157. if(!dpy)
  158. error("gridwm: cannot connect X server\n");
  159. screen = DefaultScreen(dpy);
  160. root = RootWindow(dpy, screen);
  161. /* check if another WM is already running */
  162. other_wm_running = False;
  163. XSetErrorHandler(startup_error_handler);
  164. /* this causes an error if some other WM is running */
  165. XSelectInput(dpy, root, SubstructureRedirectMask);
  166. XFlush(dpy);
  167. if(other_wm_running)
  168. error("gridwm: another window manager is already running\n");
  169. rect.x = rect.y = 0;
  170. rect.width = DisplayWidth(dpy, screen);
  171. rect.height = DisplayHeight(dpy, screen);
  172. sel_screen = XQueryPointer(dpy, root, &w, &w, &i, &i, &i, &i, &mask);
  173. XSetErrorHandler(0);
  174. x_error_handler = XSetErrorHandler(error_handler);
  175. /* init atoms */
  176. wm_atom[WMState] = XInternAtom(dpy, "WM_STATE", False);
  177. wm_atom[WMProtocols] = XInternAtom(dpy, "WM_PROTOCOLS", False);
  178. wm_atom[WMDelete] = XInternAtom(dpy, "WM_DELETE_WINDOW", False);
  179. net_atom[NetSupported] = XInternAtom(dpy, "_NET_SUPPORTED", False);
  180. net_atom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False);
  181. XChangeProperty(dpy, root, net_atom[NetSupported], XA_ATOM, 32,
  182. PropModeReplace, (unsigned char *) net_atom, NetLast);
  183. /* init cursors */
  184. cursor[CurNormal] = XCreateFontCursor(dpy, XC_left_ptr);
  185. cursor[CurResize] = XCreateFontCursor(dpy, XC_sizing);
  186. cursor[CurMove] = XCreateFontCursor(dpy, XC_fleur);
  187. update_keys();
  188. brush.drawable = XCreatePixmap(dpy, root, rect.width, rect.height,
  189. DefaultDepth(dpy, screen));
  190. brush.gc = XCreateGC(dpy, root, 0, 0);
  191. /* style */
  192. loadcolors(dpy, screen, &brush, BGCOLOR, FGCOLOR, BORDERCOLOR);
  193. loadfont(dpy, &brush.font, FONT);
  194. wa.override_redirect = 1;
  195. wa.background_pixmap = ParentRelative;
  196. wa.event_mask = ExposureMask;
  197. barrect = rect;
  198. barrect.height = labelheight(&brush.font);
  199. barrect.y = rect.height - barrect.height;
  200. barwin = XCreateWindow(dpy, root, barrect.x, barrect.y,
  201. barrect.width, barrect.height, 0, DefaultDepth(dpy, screen),
  202. CopyFromParent, DefaultVisual(dpy, screen),
  203. CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa);
  204. bartext = NULL;
  205. XDefineCursor(dpy, barwin, cursor[CurNormal]);
  206. XMapRaised(dpy, barwin);
  207. draw_bar();
  208. wa.event_mask = SubstructureRedirectMask | EnterWindowMask | LeaveWindowMask;
  209. wa.cursor = cursor[CurNormal];
  210. XChangeWindowAttributes(dpy, root, CWEventMask | CWCursor, &wa);
  211. scan_wins();
  212. while(running) {
  213. XNextEvent(dpy, &ev);
  214. if(handler[ev.type])
  215. (handler[ev.type]) (&ev); /* call handler */
  216. }
  217. cleanup();
  218. XCloseDisplay(dpy);
  219. return 0;
  220. }