dwm.h 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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 MINW 100
  42. #define PROTODELWIN 1
  43. enum { NetSupported, NetWMName, NetLast }; /* EWMH atoms */
  44. enum { WMProtocols, WMDelete, WMLast }; /* default atoms */
  45. enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */
  46. enum { ColFG, ColBG, ColLast }; /* color */
  47. typedef enum {
  48. StackLeft, StackBottom, StackRight
  49. } StackPos; /* stack position*/
  50. typedef enum {
  51. TopLeft, TopRight, BotLeft, BotRight
  52. } Corner; /* window corners */
  53. typedef union {
  54. const char *cmd;
  55. int i;
  56. } Arg; /* argument type */
  57. typedef struct {
  58. int ascent;
  59. int descent;
  60. int height;
  61. XFontSet set;
  62. XFontStruct *xfont;
  63. } Fnt;
  64. typedef struct {
  65. int x, y, w, h;
  66. unsigned long norm[ColLast];
  67. unsigned long sel[ColLast];
  68. unsigned long status[ColLast];
  69. Drawable drawable;
  70. Fnt font;
  71. GC gc;
  72. } DC; /* draw context */
  73. typedef struct Client Client;
  74. struct Client {
  75. char name[256];
  76. int proto;
  77. int x, y, w, h;
  78. int rx, ry, rw, rh; /* revert geometry */
  79. int tx, ty, tw, th; /* title window geometry */
  80. int basew, baseh, incw, inch, maxw, maxh, minw, minh;
  81. int grav;
  82. long flags;
  83. unsigned int border, weight;
  84. Bool isfloat, ismax;
  85. Bool *tags;
  86. Client *next;
  87. Client *prev;
  88. Client *snext;
  89. Window win;
  90. Window twin;
  91. };
  92. extern const char *tags[]; /* all tags */
  93. extern char stext[1024]; /* status text */
  94. extern int bx, by, bw, bh, bmw; /* bar geometry, bar mode label width */
  95. extern int master, screen, sx, sy, sw, sh; /* screen geometry, master dimension*/
  96. extern unsigned int ntags, numlockmask; /* number of tags, dynamic lock mask */
  97. extern void (*handler[LASTEvent])(XEvent *); /* event handler */
  98. extern void (*arrange)(Arg *); /* arrange function, indicates mode */
  99. extern Atom wmatom[WMLast], netatom[NetLast];
  100. extern Bool running, issel, *seltag; /* seltag is array of Bool */
  101. extern Client *clients, *sel, *stack; /* global client list and stack */
  102. extern Cursor cursor[CurLast];
  103. extern DC dc; /* global draw context */
  104. extern Display *dpy;
  105. extern StackPos stackpos;
  106. extern Window root, barwin;
  107. /* client.c */
  108. extern void ban(Client *c); /* ban c from screen */
  109. extern void configure(Client *c); /* send synthetic configure event */
  110. extern void focus(Client *c); /* focus c, c may be NULL */
  111. extern Client *getclient(Window w); /* return client of w */
  112. extern Client *getctitle(Window w); /* return client of title window */
  113. extern void gravitate(Client *c, Bool invert); /* gravitate c */
  114. extern void killclient(Arg *arg); /* kill c nicely */
  115. extern void manage(Window w, XWindowAttributes *wa); /* manage new client */
  116. extern void resize(Client *c, Bool sizehints, Corner sticky); /* resize c*/
  117. extern void resizetitle(Client *c); /* resizes c->twin correctly */
  118. extern void updatesize(Client *c); /* update the size structs of c */
  119. extern void updatetitle(Client *c); /* update the name of c */
  120. extern void unmanage(Client *c); /* destroy c */
  121. /* draw.c */
  122. extern void drawall(void); /* draw all visible client titles and the bar */
  123. extern void drawstatus(void); /* draw the bar */
  124. extern void drawtitle(Client *c); /* draw title of c */
  125. extern unsigned long getcolor(const char *colstr); /* return color of colstr */
  126. extern void setfont(const char *fontstr); /* set the font for DC */
  127. extern unsigned int textw(const char *text); /* return the width of text in px*/
  128. /* event.c */
  129. extern void grabkeys(void); /* grab all keys defined in config.h */
  130. extern void procevent(void); /* process pending X events */
  131. /* main.c */
  132. extern int getproto(Window w); /* return protocol mask of WMProtocols property of w */
  133. extern void quit(Arg *arg); /* quit dwm nicely */
  134. extern void sendevent(Window w, Atom a, long value); /* send synthetic event to w */
  135. extern int xerror(Display *dsply, XErrorEvent *ee); /* dwm's X error handler */
  136. /* tag.c */
  137. extern void initrregs(void); /* initialize regexps of rules defined in config.h */
  138. extern Client *getnext(Client *c); /* returns next visible client */
  139. extern Client *getprev(Client *c); /* returns previous visible client */
  140. extern void settags(Client *c, Client *trans); /* sets tags of c */
  141. extern void tag(Arg *arg); /* tags c with arg's index */
  142. extern void toggletag(Arg *arg); /* toggles c tags with arg's index */
  143. /* util.c */
  144. extern void *emallocz(unsigned int size); /* allocates zero-initialized memory, exits on error */
  145. extern void eprint(const char *errstr, ...); /* prints errstr and exits with 1 */
  146. extern void *erealloc(void *ptr, unsigned int size); /* reallocates memory, exits on error */
  147. extern void spawn(Arg *arg); /* forks a new subprocess with to arg's cmd */
  148. /* view.c */
  149. extern void detach(Client *c); /* detaches c from global client list */
  150. extern void dofloat(Arg *arg); /* arranges all windows floating, arg is ignored */
  151. extern void dotile(Arg *arg); /* arranges all windows, arg is ignored */
  152. extern void focusnext(Arg *arg); /* focuses next visible client, arg is ignored */
  153. extern void focusprev(Arg *arg); /* focuses previous visible client, arg is ignored */
  154. extern Bool isvisible(Client *c); /* returns True if client is visible */
  155. extern void resizecol(Arg *arg); /* resizes the master dimension with arg's index value */
  156. extern void restack(void); /* restores z layers of all clients */
  157. extern void togglestackpos(Arg *arg); /* toggles stack position */
  158. extern void togglemode(Arg *arg); /* toggles global arrange function (dotile/dofloat) */
  159. extern void toggleview(Arg *arg); /* toggles the tag with arg's index (in)visible */
  160. extern void view(Arg *arg); /* views the tag with arg's index */
  161. extern void viewall(Arg *arg); /* views all tags, arg is ignored */
  162. extern void zoom(Arg *arg); /* zooms the focused client to master area, arg is ignored */