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 01:30:55 +02:00
|
|
|
#define FONT "-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*"
|
|
|
|
#define BGCOLOR "#666699"
|
|
|
|
#define FGCOLOR "#ffffff"
|
|
|
|
#define BORDERCOLOR "#9999CC"
|
|
|
|
#define STATUSDELAY 10 /* seconds */
|
2006-07-11 16:14:22 +02:00
|
|
|
#define WM_PROTOCOL_DELWIN 1
|
|
|
|
|
2006-07-13 01:30:55 +02:00
|
|
|
/* tags */
|
|
|
|
enum { Tscratch, Tdev, Tirc, Twww, Twork, TLast };
|
|
|
|
|
|
|
|
/********** CUSTOMIZE **********/
|
|
|
|
|
|
|
|
typedef struct Brush Brush;
|
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-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;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Brush {
|
|
|
|
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;
|
2006-07-11 23:46:39 +02:00
|
|
|
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-10 16:38:18 +02:00
|
|
|
Window win;
|
|
|
|
Window trans;
|
|
|
|
Window title;
|
|
|
|
Client *next;
|
2006-07-10 22:16:48 +02:00
|
|
|
Client *snext;
|
2006-07-10 16:38:18 +02:00
|
|
|
};
|
|
|
|
|
2006-07-11 11:50:18 +02:00
|
|
|
struct Key {
|
|
|
|
unsigned long mod;
|
|
|
|
KeySym keysym;
|
2006-07-11 18:15:11 +02:00
|
|
|
void (*func)(void *aux);
|
|
|
|
void *aux;
|
2006-07-11 11:50:18 +02:00
|
|
|
};
|
|
|
|
|
2006-07-10 16:38:18 +02:00
|
|
|
extern Display *dpy;
|
2006-07-13 01:30:55 +02:00
|
|
|
extern Window root;
|
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-10 22:16:48 +02:00
|
|
|
extern void (*handler[LASTEvent]) (XEvent *);
|
2006-07-13 01:04:38 +02:00
|
|
|
extern void (*arrange)(void *aux);
|
2006-07-10 16:38:18 +02:00
|
|
|
|
2006-07-13 01:30:55 +02:00
|
|
|
extern int tsel, screen, sx, sy, sw, sh, th;
|
2006-07-13 01:04:38 +02:00
|
|
|
extern char stext[1024], *tags[TLast];
|
2006-07-10 19:46:24 +02:00
|
|
|
|
|
|
|
extern Brush brush;
|
2006-07-11 16:14:22 +02:00
|
|
|
extern Client *clients, *stack;
|
2006-07-10 19:46:24 +02:00
|
|
|
|
2006-07-10 22:16:48 +02:00
|
|
|
/* client.c */
|
2006-07-11 13:02:22 +02:00
|
|
|
extern void manage(Window w, XWindowAttributes *wa);
|
2006-07-11 16:14:22 +02:00
|
|
|
extern void unmanage(Client *c);
|
|
|
|
extern Client *getclient(Window w);
|
|
|
|
extern void focus(Client *c);
|
|
|
|
extern void update_name(Client *c);
|
2006-07-11 18:53:41 +02:00
|
|
|
extern void draw_client(Client *c);
|
2006-07-11 21:24:10 +02:00
|
|
|
extern void resize(Client *c);
|
2006-07-11 22:49:09 +02:00
|
|
|
extern void update_size(Client *c);
|
2006-07-12 00:00:25 +02:00
|
|
|
extern Client *gettitle(Window w);
|
2006-07-13 01:30:55 +02:00
|
|
|
extern void craise(Client *c);
|
2006-07-12 15:17:22 +02:00
|
|
|
extern void lower(Client *c);
|
2006-07-13 01:30:55 +02:00
|
|
|
extern void ckill(void *aux);
|
2006-07-12 16:00:51 +02:00
|
|
|
extern void sel(void *aux);
|
2006-07-12 16:40:37 +02:00
|
|
|
extern void max(void *aux);
|
2006-07-13 01:04:38 +02:00
|
|
|
extern void floating(void *aux);
|
|
|
|
extern void grid(void *aux);
|
2006-07-12 17:17:15 +02:00
|
|
|
extern void gravitate(Client *c, Bool invert);
|
2006-07-11 16:14:22 +02:00
|
|
|
|
2006-07-13 01:55:54 +02:00
|
|
|
/* draw.c */
|
|
|
|
extern void draw(Brush *b, Bool border, const char *text);
|
|
|
|
extern void loadcolors(int scr, Brush *b,
|
|
|
|
const char *bg, const char *fg, const char *bo);
|
|
|
|
extern void loadfont(Fnt *font, const char *fontstr);
|
|
|
|
extern unsigned int textnw(Fnt *font, char *text, unsigned int len);
|
|
|
|
extern unsigned int textw(Fnt *font, char *text);
|
|
|
|
extern unsigned int texth(Fnt *font);
|
|
|
|
|
2006-07-11 16:14:22 +02:00
|
|
|
/* event.c */
|
2006-07-12 15:17:22 +02:00
|
|
|
extern void discard_events(long even_mask);
|
2006-07-10 22:16:48 +02:00
|
|
|
|
2006-07-13 01:55:54 +02:00
|
|
|
/* kb.c */
|
|
|
|
extern void update_keys(void);
|
2006-07-11 12:52:57 +02:00
|
|
|
extern void keypress(XEvent *e);
|
2006-07-11 11:50:18 +02:00
|
|
|
|
2006-07-11 21:24:10 +02:00
|
|
|
/* mouse.c */
|
|
|
|
extern void mresize(Client *c);
|
|
|
|
extern void mmove(Client *c);
|
|
|
|
|
2006-07-13 01:30:55 +02:00
|
|
|
/* util.c */
|
2006-07-13 01:55:54 +02:00
|
|
|
extern void error(const char *errstr, ...);
|
2006-07-13 01:30:55 +02:00
|
|
|
extern void *emallocz(unsigned int size);
|
|
|
|
extern void *emalloc(unsigned int size);
|
|
|
|
extern void *erealloc(void *ptr, unsigned int size);
|
|
|
|
extern char *estrdup(const char *str);
|
2006-07-13 01:55:54 +02:00
|
|
|
extern void spawn(char *argv[]);
|
2006-07-13 01:30:55 +02:00
|
|
|
extern void swap(void **p1, void **p2);
|
|
|
|
|
2006-07-10 16:38:18 +02:00
|
|
|
/* wm.c */
|
2006-07-13 01:55:54 +02:00
|
|
|
extern int error_handler(Display *dsply, XErrorEvent *e);
|
2006-07-11 16:14:22 +02:00
|
|
|
extern void send_message(Window w, Atom a, long value);
|
|
|
|
extern int win_proto(Window w);
|
2006-07-12 16:00:51 +02:00
|
|
|
extern void quit(void *aux);
|