dwm/dwm.h

156 lines
3.4 KiB
C
Raw Normal View History

2006-07-10 16:38:18 +02:00
/*
* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
* See LICENSE file for license details.
*/
2006-07-13 01:30:55 +02:00
#include <X11/Xlib.h>
2006-07-10 18:35:39 +02:00
2006-07-13 01:30:55 +02:00
/********** CUSTOMIZE **********/
2006-07-10 16:38:18 +02:00
2006-07-13 19:55:07 +02:00
#define FONT "-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*"
#define BGCOLOR "#666699"
#define FGCOLOR "#eeeeee"
2006-07-13 19:55:07 +02:00
#define BORDERCOLOR "#9999CC"
#define MASTERW 52 /* percent */
#define WM_PROTOCOL_DELWIN 1
2006-07-11 16:14:22 +02:00
2006-07-13 01:30:55 +02:00
/* tags */
enum { Tscratch, Tdev, Twww, Twork, TLast };
2006-07-13 01:30:55 +02:00
/********** CUSTOMIZE **********/
2006-07-13 19:55:07 +02:00
typedef union Arg Arg;
2006-07-13 09:32:22 +02:00
typedef struct DC DC;
2006-07-11 21:24:10 +02:00
typedef struct Client Client;
2006-07-13 01:30:55 +02:00
typedef struct Fnt Fnt;
2006-07-11 21:24:10 +02:00
typedef struct Key Key;
2006-07-13 19:55:07 +02:00
typedef struct Rule Rule;
2006-07-13 17:09:35 +02:00
union Arg {
const char **argv;
int i;
};
2006-07-11 21:24:10 +02:00
2006-07-10 22:16:48 +02:00
/* atoms */
2006-07-11 16:14:22 +02:00
enum { WMProtocols, WMDelete, WMLast };
2006-07-10 16:38:18 +02:00
enum { NetSupported, NetWMName, NetLast };
2006-07-10 22:16:48 +02:00
/* cursor */
2006-07-10 16:38:18 +02:00
enum { CurNormal, CurResize, CurMove, CurInput, CurLast };
2006-07-13 01:30:55 +02:00
struct Fnt {
XFontStruct *xfont;
XFontSet set;
int ascent;
int descent;
int height;
};
2006-07-13 09:32:22 +02:00
struct DC { /* draw context */
2006-07-13 01:30:55 +02:00
GC gc;
Drawable drawable;
int x, y, w, h;
Fnt font;
unsigned long bg;
unsigned long fg;
unsigned long border;
};
2006-07-10 16:38:18 +02:00
struct Client {
2006-07-13 01:04:38 +02:00
char name[256];
char *tags[TLast];
2006-07-11 16:14:22 +02:00
int proto;
2006-07-11 22:49:09 +02:00
int x, y, w, h;
int tx, ty, tw, th;
2006-07-11 22:49:09 +02:00
int basew, baseh, incw, inch, maxw, maxh, minw, minh;
2006-07-12 17:17:15 +02:00
int grav;
unsigned int border;
2006-07-11 22:49:09 +02:00
long flags;
2006-07-15 16:30:50 +02:00
Bool dofloat;
2006-07-10 16:38:18 +02:00
Window win;
Window title;
Client *next;
Client *revert;
2006-07-10 16:38:18 +02:00
};
2006-07-13 19:55:07 +02:00
struct Rule {
const char *class;
const char *instance;
char *tags[TLast];
2006-07-15 16:30:50 +02:00
Bool dofloat;
2006-07-13 19:55:07 +02:00
};
2006-07-11 11:50:18 +02:00
struct Key {
unsigned long mod;
KeySym keysym;
2006-07-13 17:09:35 +02:00
void (*func)(Arg *arg);
Arg arg;
2006-07-11 11:50:18 +02:00
};
2006-07-10 16:38:18 +02:00
extern Display *dpy;
extern Window root, barwin;
2006-07-11 16:14:22 +02:00
extern Atom wm_atom[WMLast], net_atom[NetLast];
2006-07-10 16:38:18 +02:00
extern Cursor cursor[CurLast];
2006-07-13 01:04:38 +02:00
extern Bool running, issel;
2006-07-13 21:42:17 +02:00
extern void (*handler[LASTEvent])(XEvent *);
extern void (*arrange)(Arg *);
2006-07-14 22:33:38 +02:00
extern Key key[];
2006-07-10 16:38:18 +02:00
extern int tsel, screen, sx, sy, sw, sh, bx, by, bw, bh, mw;
extern char *tags[TLast], stext[1024];
2006-07-13 09:32:22 +02:00
extern DC dc;
extern Client *clients, *sel;
2006-07-10 22:16:48 +02:00
/* client.c */
2006-07-15 16:30:50 +02:00
extern void ban(Client *c);
2006-07-11 16:14:22 +02:00
extern void focus(Client *c);
extern void focusnext(Arg *arg);
extern void focusprev(Arg *arg);
extern Client *getclient(Window w);
2006-07-15 16:30:50 +02:00
extern Client *getctitle(Window w);
extern void gravitate(Client *c, Bool invert);
2006-07-14 22:54:09 +02:00
extern void higher(Client *c);
extern void killclient(Arg *arg);
extern void lower(Client *c);
extern void manage(Window w, XWindowAttributes *wa);
2006-07-15 16:30:50 +02:00
extern void maximize(Arg *arg);
extern void resize(Client *c, Bool inc);
extern void setsize(Client *c);
extern void settitle(Client *c);
extern void unmanage(Client *c);
extern void zoom(Arg *arg);
2006-07-11 16:14:22 +02:00
2006-07-13 01:55:54 +02:00
/* draw.c */
2006-07-15 16:30:50 +02:00
extern void drawall();
2006-07-14 22:54:09 +02:00
extern void drawstatus();
extern void drawtext(const char *text, Bool invert, Bool border);
extern void drawtitle(Client *c);
2006-07-14 22:54:09 +02:00
extern unsigned long getcolor(const char *colstr);
extern void setfont(const char *fontstr);
2006-07-13 11:43:05 +02:00
extern unsigned int textnw(char *text, unsigned int len);
extern unsigned int textw(char *text);
2006-07-13 01:55:54 +02:00
2006-07-15 16:30:50 +02:00
/* event.c */
2006-07-14 22:33:38 +02:00
extern void grabkeys();
2006-07-11 21:24:10 +02:00
2006-07-13 11:43:05 +02:00
/* main.c */
extern int getproto(Window w);
2006-07-13 17:09:35 +02:00
extern void quit(Arg *arg);
2006-07-15 16:30:50 +02:00
extern void sendevent(Window w, Atom a, long value);
extern int xerror(Display *dsply, XErrorEvent *ee);
2006-07-13 11:43:05 +02:00
2006-07-15 16:30:50 +02:00
/* tag.c */
extern void appendtag(Arg *arg);
2006-07-15 16:30:50 +02:00
extern void dofloat(Arg *arg);
extern void dotile(Arg *arg);
extern Client *getnext(Client *c);
2006-07-15 16:30:50 +02:00
extern void replacetag(Arg *arg);
extern void settags(Client *c);
extern void view(Arg *arg);
2006-07-14 22:33:38 +02:00
2006-07-13 01:30:55 +02:00
/* util.c */
extern void *emallocz(unsigned int size);
extern void eprint(const char *errstr, ...);
2006-07-13 17:09:35 +02:00
extern void spawn(Arg *arg);