JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
Jukka also belongs to Copyright holders after all he has contributed and done for...
[dwm.git] / dwm.h
1 /* © 2006-2007 Anselm R. Garbe <garbeam at gmail dot com>
2  * © 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
3  * © 2006-2007 Jukka Salmi <jukka at salmi dot ch>
4  * © 2007 Premysl Hruby <dfenze at gmail dot com>
5  * © 2007 Szabolcs Nagy <nszabolcs at gmail dot com>
6  * See LICENSE file for license details.
7  *
8  * dynamic window manager is designed like any other X client as well. It is
9  * driven through handling X events. In contrast to other X clients, a window
10  * manager selects for SubstructureRedirectMask on the root window, to receive
11  * events about window (dis-)appearance.  Only one X connection at a time is
12  * allowed to select for this event mask.
13  *
14  * Calls to fetch an X event from the event queue are blocking.  Due reading
15  * status text from standard input, a select()-driven main loop has been
16  * implemented which selects for reads on the X connection and STDIN_FILENO to
17  * handle all data smoothly. The event handlers of dwm are organized in an
18  * array which is accessed whenever a new event has been fetched. This allows
19  * event dispatching in O(1) time.
20  *
21  * Each child of the root window is called a client, except windows which have
22  * set the override_redirect flag.  Clients are organized in a global
23  * doubly-linked client list, the focus history is remembered through a global
24  * stack list. Each client contains an array of Bools of the same size as the
25  * global tags array to indicate the tags of a client.  For each client dwm
26  * creates a small title window, which is resized whenever the (_NET_)WM_NAME
27  * properties are updated or the client is moved/resized.
28  *
29  * Keys and tagging rules are organized as arrays and defined in the config.h
30  * file. These arrays are kept static in event.o and tag.o respectively,
31  * because no other part of dwm needs access to them.  The current layout is
32  * represented by the lt pointer.
33  *
34  * To understand everything else, start reading main.c:main().
35  */
36
37 #include "config.h"
38 #include <X11/Xlib.h>
39
40 /* mask shorthands, used in event.c and client.c */
41 #define BUTTONMASK              (ButtonPressMask | ButtonReleaseMask)
42
43 enum { BarTop, BarBot, BarOff };                        /* bar position */
44 enum { CurNormal, CurResize, CurMove, CurLast };        /* cursor */
45 enum { ColBorder, ColFG, ColBG, ColLast };              /* color */
46 enum { NetSupported, NetWMName, NetLast };              /* EWMH atoms */
47 enum { WMProtocols, WMDelete, WMState, WMLast };        /* default atoms */
48
49 typedef struct Client Client;
50 struct Client {
51         char name[256];
52         int x, y, w, h;
53         int rx, ry, rw, rh; /* revert geometry */
54         int basew, baseh, incw, inch, maxw, maxh, minw, minh;
55         int minax, maxax, minay, maxay;
56         long flags; 
57         unsigned int border, oldborder;
58         Bool isbanned, isfixed, ismax, isfloating;
59         Bool *tags;
60         Client *next;
61         Client *prev;
62         Client *snext;
63         Window win;
64 };
65
66 typedef struct {
67         int x, y, w, h;
68         unsigned long norm[ColLast];
69         unsigned long sel[ColLast];
70         Drawable drawable;
71         GC gc;
72         struct {
73                 int ascent;
74                 int descent;
75                 int height;
76                 XFontSet set;
77                 XFontStruct *xfont;
78         } font;
79 } DC; /* draw context */
80
81 typedef struct {
82         const char *symbol;
83         void (*arrange)(void);
84 } Layout;
85
86 extern const char *tags[];              /* all tags */
87 char stext[256];                        /* status text */
88 int screen, sx, sy, sw, sh;             /* screen geometry */
89 int wax, way, wah, waw;                 /* windowarea geometry */
90 unsigned int bh, blw, bpos;             /* bar height, bar layout label width, bar position */
91 unsigned int ntags, numlockmask;        /* number of tags, dynamic lock mask */
92 void (*handler[LASTEvent])(XEvent *);   /* event handler */
93 Atom wmatom[WMLast], netatom[NetLast];
94 Bool selscreen, *seltag;                /* seltag is array of Bool */
95 Client *clients, *sel, *stack;          /* global client list and stack */
96 Cursor cursor[CurLast];
97 DC dc;                                  /* global draw context */
98 Display *dpy;
99 Layout *lt;
100 Window root, barwin;
101
102 /* client.c */
103 void attach(Client *c);                 /* attaches c to global client list */
104 void configure(Client *c);              /* send synthetic configure event */
105 void detach(Client *c);                 /* detaches c from global client list */
106 void focus(Client *c);                  /* focus c if visible && !NULL, or focus top visible */
107 void killclient(const char *arg);       /* kill sel  nicely */
108 void manage(Window w, XWindowAttributes *wa);   /* manage new client */
109 void resize(Client *c, int x, int y,
110                 int w, int h, Bool sizehints);  /* resize with given coordinates c*/
111 void togglefloating(const char *arg);   /* toggles sel between floating/tiled state */
112 void updatesizehints(Client *c);        /* update the size hint variables of c */
113 void updatetitle(Client *c);            /* update the name of c */
114 void unmanage(Client *c);               /* destroy c */
115
116 /* draw.c */
117 void drawstatus(void);                  /* draw the bar */
118 void drawtext(const char *text, unsigned long col[ColLast]);    /* draw text */
119 unsigned int textw(const char *text);   /* return the width of text in px*/
120
121 /* event.c */
122 void grabkeys(void);                    /* grab all keys defined in config.h */
123
124 /* layout.c */
125 void floating(void);                    /* arranges all windows floating */
126 void focusclient(const char *arg);      /* focuses next(1)/previous(-1) visible client */
127 void incmasterw(const char *arg);       /* increments the master width with arg's index value */
128 void incnmaster(const char *arg);       /* increments nmaster with arg's index value */
129 void initlayouts(void);                 /* initialize layout array */
130 Client *nexttiled(Client *c);           /* returns tiled successor of c */
131 void restack(void);                     /* restores z layers of all clients */
132 void setlayout(const char *arg);        /* sets layout, NULL means next layout */
133 void togglebar(const char *arg);        /* shows/hides the bar */
134 void togglemax(const char *arg);        /* toggles maximization of floating client */
135 void zoom(const char *arg);             /* zooms the focused client to master area, arg is ignored */
136
137 /* main.c */
138 void updatebarpos(void);                /* updates the bar position */
139 void quit(const char *arg);             /* quit dwm nicely */
140 int xerror(Display *dsply, XErrorEvent *ee);    /* dwm's X error handler */
141
142 /* tag.c */
143 void compileregs(void);                 /* initialize regexps of rules defined in config.h */
144 Bool isvisible(Client *c);              /* returns True if client is visible */
145 void settags(Client *c, Client *trans); /* sets tags of c */
146 void tag(const char *arg);              /* tags sel with arg's index */
147 void toggletag(const char *arg);        /* toggles sel tags with arg's index */
148 void toggleview(const char *arg);       /* toggles the tag with arg's index (in)visible */
149 void view(const char *arg);             /* views the tag with arg's index */
150
151 /* util.c */
152 void *emallocz(unsigned int size);      /* allocates zero-initialized memory, exits on error */
153 void eprint(const char *errstr, ...);   /* prints errstr and exits with 1 */
154 void spawn(const char *arg);            /* forks a new subprocess with arg's cmd */