2006-07-10 15:38:18 +01:00
|
|
|
/*
|
|
|
|
* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
|
|
|
* See LICENSE file for license details.
|
|
|
|
*/
|
|
|
|
|
2006-08-02 15:46:59 +01:00
|
|
|
#include "config.h"
|
2006-08-02 15:32:05 +01:00
|
|
|
#include <X11/Xlib.h>
|
2006-07-13 00:30:55 +01:00
|
|
|
|
2006-08-01 11:32:33 +01:00
|
|
|
/* mask shorthands, used in event.c and client.c */
|
2006-08-01 14:29:37 +01:00
|
|
|
#define BUTTONMASK (ButtonPressMask | ButtonReleaseMask)
|
|
|
|
#define MOUSEMASK (BUTTONMASK | PointerMotionMask)
|
2006-08-01 15:44:23 +01:00
|
|
|
#define PROTODELWIN 1
|
2006-08-01 11:32:33 +01:00
|
|
|
|
2006-07-13 18:55:07 +01:00
|
|
|
typedef union Arg Arg;
|
2006-07-19 12:52:31 +01:00
|
|
|
typedef struct Client Client;
|
2006-07-13 08:32:22 +01:00
|
|
|
typedef struct DC DC;
|
2006-07-13 00:30:55 +01:00
|
|
|
typedef struct Fnt Fnt;
|
2006-07-13 16:09:35 +01:00
|
|
|
|
|
|
|
union Arg {
|
2006-08-04 11:00:55 +01:00
|
|
|
const char *cmd;
|
2006-07-13 16:09:35 +01:00
|
|
|
int i;
|
|
|
|
};
|
2006-07-11 20:24:10 +01:00
|
|
|
|
2006-07-10 21:16:48 +01:00
|
|
|
/* atoms */
|
2006-08-08 17:12:18 +01:00
|
|
|
enum { NetSupported, NetWMName, NetLast };
|
2006-07-17 08:12:29 +01:00
|
|
|
enum { WMProtocols, WMDelete, WMLast };
|
2006-07-10 15:38:18 +01:00
|
|
|
|
2006-07-10 21:16:48 +01:00
|
|
|
/* cursor */
|
2006-07-17 08:12:29 +01:00
|
|
|
enum { CurNormal, CurResize, CurMove, CurLast };
|
2006-07-10 15:38:18 +01:00
|
|
|
|
2006-08-01 11:32:33 +01:00
|
|
|
/* windowcorners */
|
|
|
|
typedef enum { TopLeft, TopRight, BotLeft, BotRight } Corner;
|
2006-07-19 10:31:04 +01:00
|
|
|
|
2006-07-13 00:30:55 +01:00
|
|
|
struct Fnt {
|
|
|
|
int ascent;
|
|
|
|
int descent;
|
|
|
|
int height;
|
2006-07-17 08:12:29 +01:00
|
|
|
XFontSet set;
|
|
|
|
XFontStruct *xfont;
|
2006-07-13 00:30:55 +01:00
|
|
|
};
|
|
|
|
|
2006-07-13 08:32:22 +01:00
|
|
|
struct DC { /* draw context */
|
2006-07-13 00:30:55 +01:00
|
|
|
int x, y, w, h;
|
|
|
|
unsigned long bg;
|
|
|
|
unsigned long fg;
|
2006-08-10 10:12:15 +01:00
|
|
|
unsigned long border;
|
2006-07-17 08:12:29 +01:00
|
|
|
Drawable drawable;
|
|
|
|
Fnt font;
|
|
|
|
GC gc;
|
2006-07-13 00:30:55 +01:00
|
|
|
};
|
|
|
|
|
2006-07-10 15:38:18 +01:00
|
|
|
struct Client {
|
2006-07-13 00:04:38 +01:00
|
|
|
char name[256];
|
2006-07-11 15:14:22 +01:00
|
|
|
int proto;
|
2006-07-20 06:26:23 +01:00
|
|
|
int x, y, w, h;
|
|
|
|
int tx, ty, tw, th; /* title */
|
2006-07-11 21:49:09 +01:00
|
|
|
int basew, baseh, incw, inch, maxw, maxh, minw, minh;
|
2006-07-12 16:17:15 +01:00
|
|
|
int grav;
|
2006-07-11 21:49:09 +01:00
|
|
|
long flags;
|
2006-08-02 15:32:05 +01:00
|
|
|
unsigned int border;
|
2006-07-15 23:47:40 +01:00
|
|
|
Bool isfloat;
|
2006-07-20 14:07:35 +01:00
|
|
|
Bool ismax;
|
2006-08-03 11:12:26 +01:00
|
|
|
Bool *tags;
|
2006-07-10 15:38:18 +01:00
|
|
|
Client *next;
|
2006-07-20 15:54:20 +01:00
|
|
|
Client *prev;
|
2006-07-17 08:12:29 +01:00
|
|
|
Window win;
|
|
|
|
Window title;
|
2006-07-10 15:38:18 +01:00
|
|
|
};
|
|
|
|
|
2006-08-03 11:12:26 +01:00
|
|
|
extern const char *tags[];
|
2006-08-03 09:55:07 +01:00
|
|
|
extern char stext[1024];
|
2006-08-11 17:37:41 +01:00
|
|
|
extern int screen, sx, sy, sw, sh, bx, by, bw, bh, mw;
|
2006-08-03 11:12:26 +01:00
|
|
|
extern unsigned int ntags;
|
2006-07-13 20:42:17 +01:00
|
|
|
extern void (*handler[LASTEvent])(XEvent *);
|
|
|
|
extern void (*arrange)(Arg *);
|
2006-07-17 08:12:29 +01:00
|
|
|
extern Atom wmatom[WMLast], netatom[NetLast];
|
2006-08-11 18:26:12 +01:00
|
|
|
extern Bool running, issel, *seltag;
|
2006-07-13 17:21:38 +01:00
|
|
|
extern Client *clients, *sel;
|
2006-07-17 08:12:29 +01:00
|
|
|
extern Cursor cursor[CurLast];
|
|
|
|
extern DC dc;
|
|
|
|
extern Display *dpy;
|
|
|
|
extern Window root, barwin;
|
2006-07-10 18:46:24 +01:00
|
|
|
|
2006-07-10 21:16:48 +01:00
|
|
|
/* client.c */
|
2006-07-15 15:30:50 +01:00
|
|
|
extern void ban(Client *c);
|
2006-07-11 15:14:22 +01:00
|
|
|
extern void focus(Client *c);
|
2006-07-15 16:00:56 +01:00
|
|
|
extern void focusnext(Arg *arg);
|
|
|
|
extern void focusprev(Arg *arg);
|
|
|
|
extern Client *getclient(Window w);
|
2006-07-15 15:30:50 +01:00
|
|
|
extern Client *getctitle(Window w);
|
2006-07-15 16:00:56 +01:00
|
|
|
extern void gravitate(Client *c, Bool invert);
|
|
|
|
extern void killclient(Arg *arg);
|
|
|
|
extern void manage(Window w, XWindowAttributes *wa);
|
2006-07-20 18:09:11 +01:00
|
|
|
extern void resize(Client *c, Bool sizehints, Corner sticky);
|
2006-07-15 16:00:56 +01:00
|
|
|
extern void setsize(Client *c);
|
|
|
|
extern void settitle(Client *c);
|
2006-07-20 14:07:35 +01:00
|
|
|
extern void togglemax(Arg *arg);
|
2006-07-15 16:00:56 +01:00
|
|
|
extern void unmanage(Client *c);
|
|
|
|
extern void zoom(Arg *arg);
|
2006-07-11 15:14:22 +01:00
|
|
|
|
2006-07-13 00:55:54 +01:00
|
|
|
/* draw.c */
|
2006-07-15 15:30:50 +01:00
|
|
|
extern void drawall();
|
2006-07-14 21:54:09 +01:00
|
|
|
extern void drawstatus();
|
2006-07-15 16:00:56 +01:00
|
|
|
extern void drawtitle(Client *c);
|
2006-07-14 21:54:09 +01:00
|
|
|
extern unsigned long getcolor(const char *colstr);
|
|
|
|
extern void setfont(const char *fontstr);
|
2006-08-03 09:55:07 +01:00
|
|
|
extern unsigned int textw(const char *text);
|
2006-07-13 00:55:54 +01:00
|
|
|
|
2006-07-15 15:30:50 +01:00
|
|
|
/* event.c */
|
2006-07-14 21:33:38 +01:00
|
|
|
extern void grabkeys();
|
2006-07-11 20:24:10 +01:00
|
|
|
|
2006-07-13 10:43:05 +01:00
|
|
|
/* main.c */
|
2006-07-15 16:00:56 +01:00
|
|
|
extern int getproto(Window w);
|
2006-07-13 16:09:35 +01:00
|
|
|
extern void quit(Arg *arg);
|
2006-07-15 15:30:50 +01:00
|
|
|
extern void sendevent(Window w, Atom a, long value);
|
2006-07-15 16:00:56 +01:00
|
|
|
extern int xerror(Display *dsply, XErrorEvent *ee);
|
2006-07-13 10:43:05 +01:00
|
|
|
|
2006-07-15 15:30:50 +01:00
|
|
|
/* tag.c */
|
|
|
|
extern void dofloat(Arg *arg);
|
|
|
|
extern void dotile(Arg *arg);
|
2006-08-04 13:40:32 +01:00
|
|
|
extern void initrregs();
|
2006-08-11 17:37:41 +01:00
|
|
|
extern Bool isvisible(Client *c);
|
2006-08-01 10:49:19 +01:00
|
|
|
extern Client *getnext(Client *c);
|
2006-07-20 15:54:20 +01:00
|
|
|
extern Client *getprev(Client *c);
|
2006-08-14 09:18:24 +01:00
|
|
|
extern void restack();
|
2006-07-15 16:00:56 +01:00
|
|
|
extern void settags(Client *c);
|
2006-08-14 15:59:18 +01:00
|
|
|
extern void tag(Arg *arg);
|
2006-07-20 14:07:35 +01:00
|
|
|
extern void togglemode(Arg *arg);
|
2006-08-14 15:59:18 +01:00
|
|
|
extern void toggletag(Arg *arg);
|
2006-08-13 16:58:06 +01:00
|
|
|
extern void toggleview(Arg *arg);
|
2006-08-14 15:59:18 +01:00
|
|
|
extern void view(Arg *arg);
|
2006-07-14 21:33:38 +01:00
|
|
|
|
2006-07-13 00:30:55 +01:00
|
|
|
/* util.c */
|
|
|
|
extern void *emallocz(unsigned int size);
|
2006-07-15 16:00:56 +01:00
|
|
|
extern void eprint(const char *errstr, ...);
|
2006-08-14 09:18:24 +01:00
|
|
|
extern void *erealloc(void *ptr, unsigned int size);
|
2006-07-13 16:09:35 +01:00
|
|
|
extern void spawn(Arg *arg);
|