X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=blobdiff_plain;f=wm.h;h=038078ffff19ad463b36616d8a1e8d5b2b95fd32;hp=3885cb52ca80cdfa314bbd7760e39d7f4237a19d;hb=439e15d09f6fa9271d3b49ef97194f0c80ebe161;hpb=1076f2b6b3d3751d5d5db6fcb9ac8c247e04e893 diff --git a/wm.h b/wm.h index 3885cb5..038078f 100644 --- a/wm.h +++ b/wm.h @@ -3,19 +3,20 @@ * See LICENSE file for license details. */ -#include +#include "config.h" +#include "draw.h" +#include "util.h" + #include -/* WM atoms */ +/* atoms */ enum { WMState, WMProtocols, WMDelete, WMLast }; - -/* NET atoms */ enum { NetSupported, NetWMName, NetLast }; -/* Cursor */ +/* cursor */ enum { CurNormal, CurResize, CurMove, CurInput, CurLast }; -/* Rects */ +/* rects */ enum { RFloat, RGrid, RLast }; typedef struct Client Client; @@ -25,33 +26,45 @@ struct Client { Tag *tag; char name[256]; int proto; + unsigned int border; + Bool fixedsize; Window win; Window trans; Window title; - GC gc; XSizeHints size; XRectangle r[RLast]; Client *next; - Client *tnext; - Client *tprev; + Client *snext; }; struct Tag { char name[256]; - Client *clients; - Client *sel; + Client *stack; XRectangle r; + Tag *next; + Tag *cnext; }; extern Display *dpy; -extern Window root; -extern XRectangle rect; -extern int screen, sel_screen; -extern unsigned int kmask, numlock_mask; -extern Atom wm_atom[WMLast]; -extern Atom net_atom[NetLast]; +extern Window root, barwin; +extern Atom wm_atom[WMLast], net_atom[NetLast]; extern Cursor cursor[CurLast]; -extern Pixmap pmap; +extern XRectangle rect, barrect; +extern Bool running; +extern void (*handler[LASTEvent]) (XEvent *); + +extern int screen, sel_screen; +extern unsigned int lock_mask, numlock_mask; +extern char *bartext, *shell; + +extern Brush brush; + +/* bar.c */ +extern void draw_bar(); + +/* client.c */ +extern Client *create_client(Window w, XWindowAttributes *wa); +extern void manage(Client *c); /* wm.c */ -extern void error(char *errstr, ...); +extern int win_proto(Window w);