dwm/dwm.h

135 lines
3.1 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.
*/
#include CONFIG
#include <X11/Xlib.h>
2006-07-13 01:30:55 +02:00
2006-08-01 12:32:33 +02:00
/* mask shorthands, used in event.c and client.c */
#define BUTTONMASK (ButtonPressMask | ButtonReleaseMask)
#define MOUSEMASK (BUTTONMASK | PointerMotionMask)
#define PROTODELWIN 1
2006-08-01 12:32:33 +02:00
2006-07-13 19:55:07 +02:00
typedef union Arg Arg;
2006-07-19 13:52:31 +02:00
typedef struct Client Client;
2006-07-13 09:32:22 +02:00
typedef struct DC DC;
2006-07-13 01:30:55 +02:00
typedef struct Fnt Fnt;
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-10 16:38:18 +02:00
enum { NetSupported, NetWMName, NetLast };
enum { WMProtocols, WMDelete, WMLast };
2006-07-10 16:38:18 +02:00
2006-07-10 22:16:48 +02:00
/* cursor */
enum { CurNormal, CurResize, CurMove, CurLast };
2006-07-10 16:38:18 +02:00
2006-08-01 12:32:33 +02:00
/* windowcorners */
typedef enum { TopLeft, TopRight, BotLeft, BotRight } Corner;
2006-07-13 01:30:55 +02:00
struct Fnt {
int ascent;
int descent;
int height;
XFontSet set;
XFontStruct *xfont;
2006-07-13 01:30:55 +02:00
};
2006-07-13 09:32:22 +02:00
struct DC { /* draw context */
2006-07-13 01:30:55 +02:00
int x, y, w, h;
unsigned long bg;
unsigned long fg;
unsigned long border;
Drawable drawable;
Fnt font;
GC gc;
2006-07-13 01:30:55 +02:00
};
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;
int x, y, w, h;
int tx, ty, tw, th; /* title */
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;
2006-07-11 22:49:09 +02:00
long flags;
unsigned int border;
2006-07-16 00:47:40 +02:00
Bool isfloat;
Bool ismax;
2006-07-10 16:38:18 +02:00
Client *next;
Client *prev;
Window win;
Window title;
2006-07-10 16:38:18 +02:00
};
extern char *tags[TLast], stext[1024];
extern int tsel, screen, sx, sy, sw, sh, bx, by, bw, bh, mw;
2006-07-13 21:42:17 +02:00
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;
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);
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);
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 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 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);
extern Client *getprev(Client *c);
2006-07-15 16:30:50 +02:00
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);
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);