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-08-02 16:46:59 +02:00
|
|
|
#include "config.h"
|
2006-08-02 16:32:05 +02:00
|
|
|
#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 */
|
2006-08-01 15:29:37 +02:00
|
|
|
#define BUTTONMASK (ButtonPressMask | ButtonReleaseMask)
|
|
|
|
#define MOUSEMASK (BUTTONMASK | PointerMotionMask)
|
2006-08-01 16:44:23 +02:00
|
|
|
#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 {
|
2006-08-04 12:00:55 +02:00
|
|
|
const char *cmd;
|
2006-07-13 17:09:35 +02:00
|
|
|
int i;
|
|
|
|
};
|
2006-07-11 21:24:10 +02:00
|
|
|
|
2006-07-10 22:16:48 +02:00
|
|
|
/* atoms */
|
2006-08-08 18:12:18 +02:00
|
|
|
enum { NetSupported, NetWMName, NetLast };
|
2006-07-17 09:12:29 +02:00
|
|
|
enum { WMProtocols, WMDelete, WMLast };
|
2006-07-10 16:38:18 +02:00
|
|
|
|
2006-07-10 22:16:48 +02:00
|
|
|
/* cursor */
|
2006-07-17 09:12:29 +02:00
|
|
|
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-19 11:31:04 +02:00
|
|
|
|
2006-07-13 01:30:55 +02:00
|
|
|
struct Fnt {
|
|
|
|
int ascent;
|
|
|
|
int descent;
|
|
|
|
int height;
|
2006-07-17 09:12:29 +02:00
|
|
|
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;
|
2006-08-10 11:12:15 +02:00
|
|
|
unsigned long border;
|
2006-07-17 09:12:29 +02:00
|
|
|
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];
|
2006-07-11 16:14:22 +02:00
|
|
|
int proto;
|
2006-07-20 07:26:23 +02:00
|
|
|
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;
|
2006-08-02 16:32:05 +02:00
|
|
|
unsigned int border;
|
2006-07-16 00:47:40 +02:00
|
|
|
Bool isfloat;
|
2006-07-20 15:07:35 +02:00
|
|
|
Bool ismax;
|
2006-08-03 12:12:26 +02:00
|
|
|
Bool *tags;
|
2006-07-10 16:38:18 +02:00
|
|
|
Client *next;
|
2006-07-20 16:54:20 +02:00
|
|
|
Client *prev;
|
2006-07-17 09:12:29 +02:00
|
|
|
Window win;
|
|
|
|
Window title;
|
2006-07-10 16:38:18 +02:00
|
|
|
};
|
|
|
|
|
2006-08-03 12:12:26 +02:00
|
|
|
extern const char *tags[];
|
2006-08-03 10:55:07 +02:00
|
|
|
extern char stext[1024];
|
2006-08-11 18:37:41 +02:00
|
|
|
extern int screen, sx, sy, sw, sh, bx, by, bw, bh, mw;
|
2006-08-14 19:18:02 +02:00
|
|
|
extern unsigned int ntags, numlockmask;
|
2006-07-13 21:42:17 +02:00
|
|
|
extern void (*handler[LASTEvent])(XEvent *);
|
|
|
|
extern void (*arrange)(Arg *);
|
2006-07-17 09:12:29 +02:00
|
|
|
extern Atom wmatom[WMLast], netatom[NetLast];
|
2006-08-11 19:26:12 +02:00
|
|
|
extern Bool running, issel, *seltag;
|
2006-07-13 18:21:38 +02:00
|
|
|
extern Client *clients, *sel;
|
2006-07-17 09:12:29 +02:00
|
|
|
extern Cursor cursor[CurLast];
|
|
|
|
extern DC dc;
|
|
|
|
extern Display *dpy;
|
|
|
|
extern Window root, barwin;
|
2006-07-10 19:46:24 +02:00
|
|
|
|
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);
|
2006-07-15 17:00:56 +02:00
|
|
|
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);
|
2006-07-15 17:00:56 +02:00
|
|
|
extern void gravitate(Client *c, Bool invert);
|
|
|
|
extern void killclient(Arg *arg);
|
|
|
|
extern void manage(Window w, XWindowAttributes *wa);
|
2006-07-20 19:09:11 +02:00
|
|
|
extern void resize(Client *c, Bool sizehints, Corner sticky);
|
2006-07-15 17:00:56 +02:00
|
|
|
extern void setsize(Client *c);
|
|
|
|
extern void settitle(Client *c);
|
2006-07-20 15:07:35 +02:00
|
|
|
extern void togglemax(Arg *arg);
|
2006-07-15 17:00:56 +02:00
|
|
|
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();
|
2006-07-15 17:00:56 +02:00
|
|
|
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-08-03 10:55:07 +02:00
|
|
|
extern unsigned int textw(const 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 */
|
2006-07-15 17:00:56 +02:00
|
|
|
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);
|
2006-07-15 17:00:56 +02:00
|
|
|
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 dofloat(Arg *arg);
|
|
|
|
extern void dotile(Arg *arg);
|
2006-08-04 14:40:32 +02:00
|
|
|
extern void initrregs();
|
2006-08-11 18:37:41 +02:00
|
|
|
extern Bool isvisible(Client *c);
|
2006-08-01 11:49:19 +02:00
|
|
|
extern Client *getnext(Client *c);
|
2006-07-20 16:54:20 +02:00
|
|
|
extern Client *getprev(Client *c);
|
2006-08-14 10:18:24 +02:00
|
|
|
extern void restack();
|
2006-07-15 17:00:56 +02:00
|
|
|
extern void settags(Client *c);
|
2006-08-14 16:59:18 +02:00
|
|
|
extern void tag(Arg *arg);
|
2006-07-20 15:07:35 +02:00
|
|
|
extern void togglemode(Arg *arg);
|
2006-08-14 16:59:18 +02:00
|
|
|
extern void toggletag(Arg *arg);
|
2006-08-13 17:58:06 +02:00
|
|
|
extern void toggleview(Arg *arg);
|
2006-08-14 16:59:18 +02:00
|
|
|
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);
|
2006-07-15 17:00:56 +02:00
|
|
|
extern void eprint(const char *errstr, ...);
|
2006-08-14 10:18:24 +02:00
|
|
|
extern void *erealloc(void *ptr, unsigned int size);
|
2006-07-13 17:09:35 +02:00
|
|
|
extern void spawn(Arg *arg);
|