dwm-meillo

annotate dwm.h @ 84:052fe7498930

ordered variables in structs and source files alphabetically
author Anselm R. Garbe <garbeam@wmii.de>
date Mon, 17 Jul 2006 09:12:29 +0200
parents 8125f908c80c
children c498da7520c7
rev   line source
garbeam@0 1 /*
garbeam@0 2 * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
garbeam@0 3 * See LICENSE file for license details.
garbeam@0 4 */
garbeam@0 5
garbeam@32 6 #include <X11/Xlib.h>
garbeam@2 7
garbeam@32 8 /********** CUSTOMIZE **********/
garbeam@0 9
garbeam@51 10 #define FONT "-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*"
garbeam@78 11 #define BGCOLOR "#0a2c2d"
garbeam@78 12 #define FGCOLOR "#ddeeee"
garbeam@78 13 #define BORDERCOLOR "#176164"
garbeam@78 14 /*
garbeam@51 15 #define BGCOLOR "#666699"
garbeam@59 16 #define FGCOLOR "#eeeeee"
garbeam@51 17 #define BORDERCOLOR "#9999CC"
garbeam@78 18 */
garbeam@51 19 #define MASTERW 52 /* percent */
garbeam@51 20 #define WM_PROTOCOL_DELWIN 1
garbeam@13 21
garbeam@32 22 /* tags */
garbeam@59 23 enum { Tscratch, Tdev, Twww, Twork, TLast };
garbeam@32 24
garbeam@32 25 /********** CUSTOMIZE **********/
garbeam@32 26
garbeam@51 27 typedef union Arg Arg;
garbeam@34 28 typedef struct DC DC;
garbeam@18 29 typedef struct Client Client;
garbeam@32 30 typedef struct Fnt Fnt;
garbeam@18 31 typedef struct Key Key;
garbeam@51 32 typedef struct Rule Rule;
garbeam@49 33
garbeam@49 34 union Arg {
garbeam@49 35 const char **argv;
garbeam@49 36 int i;
garbeam@49 37 };
garbeam@18 38
garbeam@5 39 /* atoms */
garbeam@84 40 enum { NetSupported, NetWMName, NetLast };
garbeam@13 41 enum { WMProtocols, WMDelete, WMLast };
garbeam@0 42
garbeam@5 43 /* cursor */
garbeam@84 44 enum { CurNormal, CurResize, CurMove, CurLast };
garbeam@0 45
garbeam@32 46 struct Fnt {
garbeam@32 47 int ascent;
garbeam@32 48 int descent;
garbeam@32 49 int height;
garbeam@84 50 XFontSet set;
garbeam@84 51 XFontStruct *xfont;
garbeam@32 52 };
garbeam@32 53
garbeam@34 54 struct DC { /* draw context */
garbeam@32 55 int x, y, w, h;
garbeam@32 56 unsigned long bg;
garbeam@32 57 unsigned long fg;
garbeam@32 58 unsigned long border;
garbeam@84 59 Drawable drawable;
garbeam@84 60 Fnt font;
garbeam@84 61 GC gc;
garbeam@32 62 };
garbeam@32 63
garbeam@0 64 struct Client {
garbeam@31 65 char name[256];
garbeam@31 66 char *tags[TLast];
garbeam@13 67 int proto;
garbeam@20 68 int x, y, w, h;
garbeam@22 69 int tx, ty, tw, th;
garbeam@20 70 int basew, baseh, incw, inch, maxw, maxh, minw, minh;
garbeam@29 71 int grav;
garbeam@29 72 unsigned int border;
garbeam@20 73 long flags;
garbeam@80 74 Bool isfloat;
garbeam@84 75 Client *next;
garbeam@84 76 Client *revert;
garbeam@0 77 Window win;
garbeam@0 78 Window title;
garbeam@0 79 };
garbeam@0 80
garbeam@51 81 struct Rule {
garbeam@51 82 const char *class;
garbeam@51 83 const char *instance;
garbeam@51 84 char *tags[TLast];
garbeam@80 85 Bool isfloat;
garbeam@51 86 };
garbeam@51 87
garbeam@8 88 struct Key {
garbeam@8 89 unsigned long mod;
garbeam@8 90 KeySym keysym;
garbeam@49 91 void (*func)(Arg *arg);
garbeam@49 92 Arg arg;
garbeam@8 93 };
garbeam@8 94
garbeam@84 95 extern char *tags[TLast], stext[1024];
garbeam@84 96 extern int tsel, screen, sx, sy, sw, sh, bx, by, bw, bh, mw;
garbeam@53 97 extern void (*handler[LASTEvent])(XEvent *);
garbeam@53 98 extern void (*arrange)(Arg *);
garbeam@84 99 extern Atom wmatom[WMLast], netatom[NetLast];
garbeam@84 100 extern Bool running, issel;
garbeam@84 101 extern Client *clients, *sel;
garbeam@84 102 extern Cursor cursor[CurLast];
garbeam@84 103 extern DC dc;
garbeam@84 104 extern Display *dpy;
garbeam@73 105 extern Key key[];
garbeam@84 106 extern Window root, barwin;
garbeam@3 107
garbeam@5 108 /* client.c */
garbeam@75 109 extern void ban(Client *c);
garbeam@76 110 extern void focus(Client *c);
garbeam@76 111 extern void focusnext(Arg *arg);
garbeam@76 112 extern void focusprev(Arg *arg);
garbeam@76 113 extern Client *getclient(Window w);
garbeam@76 114 extern Client *getctitle(Window w);
garbeam@76 115 extern void gravitate(Client *c, Bool invert);
garbeam@76 116 extern void higher(Client *c);
garbeam@76 117 extern void killclient(Arg *arg);
garbeam@76 118 extern void lower(Client *c);
garbeam@10 119 extern void manage(Window w, XWindowAttributes *wa);
garbeam@76 120 extern void maximize(Arg *arg);
garbeam@52 121 extern void resize(Client *c, Bool inc);
garbeam@74 122 extern void setsize(Client *c);
garbeam@76 123 extern void settitle(Client *c);
garbeam@76 124 extern void unmanage(Client *c);
garbeam@75 125 extern void zoom(Arg *arg);
garbeam@13 126
garbeam@33 127 /* draw.c */
garbeam@75 128 extern void drawall();
garbeam@74 129 extern void drawstatus();
garbeam@74 130 extern void drawtitle(Client *c);
garbeam@74 131 extern unsigned long getcolor(const char *colstr);
garbeam@74 132 extern void setfont(const char *fontstr);
garbeam@43 133 extern unsigned int textw(char *text);
garbeam@33 134
garbeam@75 135 /* event.c */
garbeam@73 136 extern void grabkeys();
garbeam@18 137
garbeam@43 138 /* main.c */
garbeam@76 139 extern int getproto(Window w);
garbeam@75 140 extern void quit(Arg *arg);
garbeam@76 141 extern void sendevent(Window w, Atom a, long value);
garbeam@75 142 extern int xerror(Display *dsply, XErrorEvent *ee);
garbeam@43 143
garbeam@75 144 /* tag.c */
garbeam@76 145 extern void appendtag(Arg *arg);
garbeam@75 146 extern void dofloat(Arg *arg);
garbeam@75 147 extern void dotile(Arg *arg);
garbeam@76 148 extern Client *getnext(Client *c);
garbeam@76 149 extern void replacetag(Arg *arg);
garbeam@76 150 extern void settags(Client *c);
garbeam@73 151 extern void view(Arg *arg);
garbeam@73 152
garbeam@32 153 /* util.c */
garbeam@76 154 extern void *emallocz(unsigned int size);
garbeam@75 155 extern void eprint(const char *errstr, ...);
garbeam@49 156 extern void spawn(Arg *arg);