X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=dwm.h;h=94dbd8c293bbcf523b19810912c4e9297906d2e3;hb=8dc03d6e6be7092f9f5595e03295efc2488f65b9;hp=0b6b21f0f33c7feac9a127b0d5b920fc08508b68;hpb=1b63f832c528958042d72fddc318af5aefdcb68a;p=dwm.git diff --git a/dwm.h b/dwm.h index 0b6b21f..94dbd8c 100644 --- a/dwm.h +++ b/dwm.h @@ -1,152 +1,190 @@ -/* - * (C)opyright MMVI Anselm R. Garbe - * See LICENSE file for license details. - */ +/* See LICENSE file for copyright and license details. */ -#include +/* enums */ +enum { BarTop, BarBot, BarOff }; /* bar position */ +enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */ +enum { ColBorder, ColFG, ColBG, ColLast }; /* color */ +enum { NetSupported, NetWMName, NetLast }; /* EWMH atoms */ +enum { WMProtocols, WMDelete, WMName, WMState, WMLast };/* default atoms */ -/* CUSTOMIZE */ - -#define FONT "-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*" -#define BGCOLOR "#0a2c2d" -#define FGCOLOR "#ddeeee" -#define BORDERCOLOR "#176164" -#define MODKEY Mod1Mask /* Mod4Mask */ -/* -#define BGCOLOR "#666699" -#define FGCOLOR "#eeeeee" -#define BORDERCOLOR "#9999CC" -*/ -#define MASTERW 52 /* percent */ -#define WM_PROTOCOL_DELWIN 1 - -/* tags */ -enum { Tfnord, Tdev, Tnet, Twork, Tmisc, TLast }; - -/* END CUSTOMIZE */ - -/* mask shorthands, used in event.c and client.c */ -#define ButtonMask (ButtonPressMask | ButtonReleaseMask) -#define MouseMask (ButtonMask | PointerMotionMask) - -typedef union Arg Arg; +/* typedefs */ typedef struct Client Client; -typedef struct DC DC; -typedef struct Fnt Fnt; - -union Arg { - const char **argv; - int i; -}; - -/* atoms */ -enum { NetSupported, NetWMName, NetLast }; -enum { WMProtocols, WMDelete, WMLast }; - -/* cursor */ -enum { CurNormal, CurResize, CurMove, CurLast }; - -/* windowcorners */ -typedef enum { TopLeft, TopRight, BotLeft, BotRight } Corner; - -struct Fnt { - int ascent; - int descent; - int height; - XFontSet set; - XFontStruct *xfont; -}; - -struct DC { /* draw context */ - int x, y, w, h; - unsigned long bg; - unsigned long fg; - unsigned long border; - Drawable drawable; - Fnt font; - GC gc; -}; - struct Client { char name[256]; - char *tags[TLast]; - int proto; int x, y, w, h; - int tx, ty, tw, th; /* title */ + int rx, ry, rw, rh; /* revert geometry */ int basew, baseh, incw, inch, maxw, maxh, minw, minh; - int grav; - unsigned int border; - long flags; - Bool isfloat; - Bool ismax; + int minax, maxax, minay, maxay; + long flags; + unsigned int border, oldborder; + Bool isbanned, isfixed, ismax, isfloating, wasfloating; + Bool *tags; Client *next; Client *prev; + Client *snext; Window win; - Window title; }; -extern char *tags[TLast], stext[1024]; -extern int tsel, screen, sx, sy, sw, sh, bx, by, bw, bh, mw; -extern void (*handler[LASTEvent])(XEvent *); -extern void (*arrange)(Arg *); -extern Atom wmatom[WMLast], netatom[NetLast]; -extern Bool running, issel; -extern Client *clients, *sel; -extern Cursor cursor[CurLast]; -extern DC dc; -extern Display *dpy; -extern Window root, barwin; - -/* client.c */ -extern void ban(Client *c); -extern void focus(Client *c); -extern void focusnext(Arg *arg); -extern void focusprev(Arg *arg); -extern Client *getclient(Window w); -extern Client *getctitle(Window w); -extern void gravitate(Client *c, Bool invert); -extern void higher(Client *c); -extern void killclient(Arg *arg); -extern void lower(Client *c); -extern void manage(Window w, XWindowAttributes *wa); -extern void resize(Client *c, Bool sizehints, Corner sticky); -extern void setsize(Client *c); -extern void settitle(Client *c); -extern void togglemax(Arg *arg); -extern void unmanage(Client *c); -extern void zoom(Arg *arg); - -/* draw.c */ -extern void drawall(); -extern void drawstatus(); -extern void drawtitle(Client *c); -extern unsigned long getcolor(const char *colstr); -extern void setfont(const char *fontstr); -extern unsigned int textw(char *text); - -/* event.c */ -extern void grabkeys(); - -/* main.c */ -extern int getproto(Window w); -extern void quit(Arg *arg); -extern void sendevent(Window w, Atom a, long value); -extern int xerror(Display *dsply, XErrorEvent *ee); - -/* tag.c */ -extern void appendtag(Arg *arg); -extern void dofloat(Arg *arg); -extern void dotile(Arg *arg); -extern Client *getnext(Client *c); -extern Client *getprev(Client *c); -extern void replacetag(Arg *arg); -extern void settags(Client *c); -extern void togglemode(Arg *arg); -extern void view(Arg *arg); -extern void viewnext(Arg *arg); -extern void viewprev(Arg *arg); - -/* util.c */ -extern void *emallocz(unsigned int size); -extern void eprint(const char *errstr, ...); -extern void spawn(Arg *arg); +typedef struct { + int x, y, w, h; + unsigned long norm[ColLast]; + unsigned long sel[ColLast]; + Drawable drawable; + GC gc; + struct { + int ascent; + int descent; + int height; + XFontSet set; + XFontStruct *xfont; + } font; +} DC; /* draw context */ + +typedef struct { + unsigned long mod; + KeySym keysym; + void (*func)(const char *arg); + const char *arg; +} Key; + +typedef struct { + const char *symbol; + void (*arrange)(void); +} Layout; + +typedef struct { + const char *prop; + const char *tags; + Bool isfloating; +} Rule; + +typedef struct { + regex_t *propregex; + regex_t *tagregex; +} Regs; + +/* functions */ +void applyrules(Client *c); +void arrange(void); +void attach(Client *c); +void attachstack(Client *c); +void ban(Client *c); +void buttonpress(XEvent *e); +void checkotherwm(void); +void cleanup(void); +void compileregs(void); +void configure(Client *c); +void configurenotify(XEvent *e); +void configurerequest(XEvent *e); +void destroynotify(XEvent *e); +void detach(Client *c); +void detachstack(Client *c); +void drawbar(void); +void drawsquare(Bool filled, Bool empty, unsigned long col[ColLast]); +void drawtext(const char *text, unsigned long col[ColLast]); +void *emallocz(unsigned int size); +void enternotify(XEvent *e); +void eprint(const char *errstr, ...); +void expose(XEvent *e); +void floating(void); /* default floating layout */ +void focus(Client *c); +void focusnext(const char *arg); +void focusprev(const char *arg); +Client *getclient(Window w); +unsigned long getcolor(const char *colstr); +long getstate(Window w); +Bool gettextprop(Window w, Atom atom, char *text, unsigned int size); +void grabbuttons(Client *c, Bool focused); +unsigned int idxoftag(const char *tag); +void initfont(const char *fontstr); +Bool isarrange(void (*func)()); +Bool isoccupied(unsigned int t); +Bool isprotodel(Client *c); +Bool isvisible(Client *c); +void keypress(XEvent *e); +void killclient(const char *arg); +void leavenotify(XEvent *e); +void manage(Window w, XWindowAttributes *wa); +void mappingnotify(XEvent *e); +void maprequest(XEvent *e); +void movemouse(Client *c); +Client *nexttiled(Client *c); +void propertynotify(XEvent *e); +void quit(const char *arg); +void resize(Client *c, int x, int y, int w, int h, Bool sizehints); +void resizemouse(Client *c); +void restack(void); +void run(void); +void scan(void); +void setclientstate(Client *c, long state); +void setlayout(const char *arg); +void setmwfact(const char *arg); +void setup(void); +void spawn(const char *arg); +void tag(const char *arg); +unsigned int textnw(const char *text, unsigned int len); +unsigned int textw(const char *text); +void tile(void); +void togglebar(const char *arg); +void togglefloating(const char *arg); +void togglemax(const char *arg); +void toggletag(const char *arg); +void toggleview(const char *arg); +void unban(Client *c); +void unmanage(Client *c); +void unmapnotify(XEvent *e); +void updatebarpos(void); +void updatesizehints(Client *c); +void updatetitle(Client *c); +void view(const char *arg); +void viewprevtag(const char *arg); /* views previous selected tags */ +int xerror(Display *dpy, XErrorEvent *ee); +int xerrordummy(Display *dsply, XErrorEvent *ee); +int xerrorstart(Display *dsply, XErrorEvent *ee); +void zoom(const char *arg); + +/* variables */ +char stext[256]; +double mwfact; +int screen, sx, sy, sw, sh, wax, way, waw, wah; +int (*xerrorxlib)(Display *, XErrorEvent *); +unsigned int bh, bpos; +unsigned int blw = 0; +unsigned int ltidx = 0; /* default */ +unsigned int nlayouts = 0; +unsigned int nrules = 0; +unsigned int numlockmask = 0; +void (*handler[LASTEvent]) (XEvent *) = { + [ButtonPress] = buttonpress, + [ConfigureRequest] = configurerequest, + [ConfigureNotify] = configurenotify, + [DestroyNotify] = destroynotify, + [EnterNotify] = enternotify, + [LeaveNotify] = leavenotify, + [Expose] = expose, + [KeyPress] = keypress, + [MappingNotify] = mappingnotify, + [MapRequest] = maprequest, + [PropertyNotify] = propertynotify, + [UnmapNotify] = unmapnotify +}; +Atom wmatom[WMLast], netatom[NetLast]; +Bool otherwm, readin; +Bool running = True; +Bool selscreen = True; +Client *clients = NULL; +Client *sel = NULL; +Client *stack = NULL; +Cursor cursor[CurLast]; +Display *dpy; +DC dc = {0}; +Window barwin, root; +Regs *regs = NULL; + +/* configuration, allows nested code to access above variables */ +#include "config.h" + +/* statically define the number of tags. */ +unsigned int ntags = sizeof tags / sizeof tags[0]; +Bool seltags[sizeof tags / sizeof tags[0]] = {[0] = True}; +Bool prevtags[sizeof tags / sizeof tags[0]] = {[0] = True};