dwm.h 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. /*
  2. * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
  3. * See LICENSE file for license details.
  4. *
  5. * dynamic window manager is designed like any other X client as well. It is
  6. * driven through handling X events. In contrast to other X clients, a window
  7. * manager selects for SubstructureRedirectMask on the root window, to receive
  8. * events about window (dis-)appearance. Only one X connection at a time is
  9. * allowed to select for this event mask.
  10. *
  11. * Calls to fetch an X event from the event queue are blocking. Due reading
  12. * status text from standard input, a select()-driven main loop has been
  13. * implemented which selects for reads on the X connection and STDIN_FILENO to
  14. * handle all data smoothly. The event handlers of dwm are organized in an
  15. * array which is accessed whenever a new event has been fetched. This allows
  16. * event dispatching in O(1) time.
  17. *
  18. * Each child of the root window is called a client, except windows which have
  19. * set the override_redirect flag. Clients are organized in a global
  20. * doubly-linked client list, the focus history is remembered through a global
  21. * stack list. Each client contains an array of Bools of the same size as the
  22. * global tags array to indicate the tags of a client. For each client dwm
  23. * creates a small title window, which is resized whenever the (_NET_)WM_NAME
  24. * properties are updated or the client is moved/resized.
  25. *
  26. * Keys and tagging rules are organized as arrays and defined in the config.h
  27. * file. These arrays are kept static in event.o and tag.o respectively,
  28. * because no other part of dwm needs access to them. The current mode is
  29. * represented by the arrange() function pointer, which wether points to
  30. * dofloat() or dotile().
  31. *
  32. * To understand everything else, start reading main.c:main().
  33. */
  34. #include "config.h"
  35. #include <X11/Xlib.h>
  36. /* mask shorthands, used in event.c and client.c */
  37. #define BUTTONMASK (ButtonPressMask | ButtonReleaseMask)
  38. #define MOUSEMASK (BUTTONMASK | PointerMotionMask)
  39. /* other stuff used in different places */
  40. #define BORDERPX 1
  41. #define PROTODELWIN 1
  42. enum { NetSupported, NetWMName, NetLast }; /* EWMH atoms */
  43. enum { WMProtocols, WMDelete, WMLast }; /* default atoms */
  44. enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */
  45. enum { ColFG, ColBG, ColLast }; /* color */
  46. typedef enum {
  47. TopLeft, TopRight, BotLeft, BotRight
  48. } Corner; /* window corners */
  49. typedef union {
  50. const char *cmd;
  51. int i;
  52. } Arg; /* argument type */
  53. typedef struct {
  54. int ascent;
  55. int descent;
  56. int height;
  57. XFontSet set;
  58. XFontStruct *xfont;
  59. } Fnt;
  60. typedef struct {
  61. int x, y, w, h;
  62. unsigned long norm[ColLast];
  63. unsigned long sel[ColLast];
  64. unsigned long status[ColLast];
  65. Drawable drawable;
  66. Fnt font;
  67. GC gc;
  68. } DC; /* draw context */
  69. typedef struct Client Client;
  70. struct Client {
  71. char name[256];
  72. int proto;
  73. int x, y, w, h;
  74. int rx, ry, rw, rh; /* revert geometry */
  75. int tx, ty, tw, th; /* title window geometry */
  76. int basew, baseh, incw, inch, maxw, maxh, minw, minh;
  77. int grav;
  78. long flags;
  79. unsigned int border, weight;
  80. Bool isfloat, ismax;
  81. Bool *tags;
  82. Client *next;
  83. Client *prev;
  84. Client *snext;
  85. Window win;
  86. Window twin;
  87. };
  88. extern const char *tags[]; /* all tags */
  89. extern char stext[1024]; /* status text */
  90. extern int bx, by, bw, bh, bmw; /* bar geometry, bar mode label width */
  91. extern int mw, screen, sx, sy, sw, sh; /* screen geometry, master width */
  92. extern unsigned int ntags, numlockmask; /* number of tags, dynamic lock mask */
  93. extern void (*handler[LASTEvent])(XEvent *); /* event handler */
  94. extern void (*arrange)(Arg *); /* arrange function, indicates mode */
  95. extern Atom wmatom[WMLast], netatom[NetLast];
  96. extern Bool running, issel, *seltag; /* seltag is array of Bool */
  97. extern Client *clients, *sel, *stack; /* global client list and stack */
  98. extern Cursor cursor[CurLast];
  99. extern DC dc; /* global draw context */
  100. extern Display *dpy;
  101. extern Window root, barwin;
  102. /* client.c */
  103. extern void ban(Client *c); /* ban c from screen */
  104. extern void configure(Client *c); /* send synthetic configure event */
  105. extern void focus(Client *c); /* focus c, c may be NULL */
  106. extern Client *getclient(Window w); /* return client of w */
  107. extern Client *getctitle(Window w); /* return client of title window */
  108. extern void gravitate(Client *c, Bool invert); /* gravitate c */
  109. extern void killclient(Arg *arg); /* kill c nicely */
  110. extern void manage(Window w, XWindowAttributes *wa); /* manage new client */
  111. extern void resize(Client *c, Bool sizehints, Corner sticky); /* resize c*/
  112. extern void resizetitle(Client *c); /* resizes c->twin correctly */
  113. extern void updatesize(Client *c); /* update the size structs of c */
  114. extern void updatetitle(Client *c); /* update the name of c */
  115. extern void unmanage(Client *c); /* destroy c */
  116. /* draw.c */
  117. extern void drawall(void); /* draw all visible client titles and the bar */
  118. extern void drawstatus(void); /* draw the bar */
  119. extern void drawtitle(Client *c); /* draw title of c */
  120. extern unsigned long getcolor(const char *colstr); /* return color of colstr */
  121. extern void setfont(const char *fontstr); /* set the font for DC */
  122. extern unsigned int textw(const char *text); /* return the width of text in px*/
  123. /* event.c */
  124. extern void grabkeys(void); /* grab all keys defined in config.h */
  125. extern void procevent(void); /* process pending X events */
  126. /* main.c */
  127. extern int getproto(Window w); /* return protocol mask of WMProtocols property of w */
  128. extern void quit(Arg *arg); /* quit dwm nicely */
  129. extern void sendevent(Window w, Atom a, long value); /* send synthetic event to w */
  130. extern int xerror(Display *dsply, XErrorEvent *ee); /* dwm's X error handler */
  131. /* tag.c */
  132. extern void initrregs(void); /* initialize regexps of rules defined in config.h */
  133. extern Client *getnext(Client *c); /* returns next visible client */
  134. extern Client *getprev(Client *c); /* returns previous visible client */
  135. extern void settags(Client *c, Client *trans); /* sets tags of c */
  136. extern void tag(Arg *arg); /* tags c with arg's index */
  137. extern void toggletag(Arg *arg); /* toggles c tags with arg's index */
  138. /* util.c */
  139. extern void *emallocz(unsigned int size); /* allocates zero-initialized memory, exits on error */
  140. extern void eprint(const char *errstr, ...); /* prints errstr and exits with 1 */
  141. extern void *erealloc(void *ptr, unsigned int size); /* reallocates memory, exits on error */
  142. extern void spawn(Arg *arg); /* forks a new subprocess with to arg's cmd */
  143. /* view.c */
  144. extern void detach(Client *c); /* detaches c from global client list */
  145. extern void dofloat(Arg *arg); /* arranges all windows floating, arg is ignored */
  146. extern void dotile(Arg *arg); /* arranges all windows, arg is ignored */
  147. extern void focusnext(Arg *arg); /* focuses next visible client, arg is ignored */
  148. extern void focusprev(Arg *arg); /* focuses previous visible client, arg is ignored */
  149. extern Bool isvisible(Client *c); /* returns True if client is visible */
  150. extern void resizecol(Arg *arg); /* resizes the master width with arg's index value */
  151. extern void restack(void); /* restores z layers of all clients */
  152. extern void togglemode(Arg *arg); /* toggles global arrange function (dotile/dofloat) */
  153. extern void toggleview(Arg *arg); /* toggles the tag with arg's index (in)visible */
  154. extern void view(Arg *arg); /* views the tag with arg's index */
  155. extern void viewall(Arg *arg); /* views all tags, arg is ignored */
  156. extern void zoom(Arg *arg); /* zooms the focused client to master column, arg is ignored */