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-10 19:46:24 +02:00
|
|
|
#include "config.h"
|
2006-07-10 18:35:39 +02:00
|
|
|
#include "draw.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
2006-07-10 16:38:18 +02:00
|
|
|
#include <X11/Xutil.h>
|
|
|
|
|
2006-07-10 22:16:48 +02:00
|
|
|
/* atoms */
|
2006-07-10 16:38:18 +02:00
|
|
|
enum { WMState, WMProtocols, WMDelete, WMLast };
|
|
|
|
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-10 22:16:48 +02:00
|
|
|
/* rects */
|
2006-07-10 16:38:18 +02:00
|
|
|
enum { RFloat, RGrid, RLast };
|
|
|
|
|
|
|
|
typedef struct Client Client;
|
2006-07-11 11:50:18 +02:00
|
|
|
typedef struct Key Key;
|
2006-07-10 16:38:18 +02:00
|
|
|
|
|
|
|
struct Client {
|
|
|
|
char name[256];
|
2006-07-11 11:27:56 +02:00
|
|
|
char tag[256];
|
2006-07-10 16:38:18 +02:00
|
|
|
int proto;
|
2006-07-10 22:16:48 +02:00
|
|
|
unsigned int border;
|
|
|
|
Bool fixedsize;
|
2006-07-10 16:38:18 +02:00
|
|
|
Window win;
|
|
|
|
Window trans;
|
|
|
|
Window title;
|
|
|
|
XSizeHints size;
|
|
|
|
XRectangle r[RLast];
|
|
|
|
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;
|
|
|
|
void (*func)(char *arg);
|
|
|
|
char *arg;
|
|
|
|
};
|
|
|
|
|
2006-07-10 16:38:18 +02:00
|
|
|
extern Display *dpy;
|
2006-07-10 22:16:48 +02:00
|
|
|
extern Window root, barwin;
|
|
|
|
extern Atom wm_atom[WMLast], net_atom[NetLast];
|
2006-07-10 16:38:18 +02:00
|
|
|
extern Cursor cursor[CurLast];
|
2006-07-10 22:16:48 +02:00
|
|
|
extern XRectangle rect, barrect;
|
|
|
|
extern Bool running;
|
2006-07-11 11:27:56 +02:00
|
|
|
extern Bool grid;
|
2006-07-10 22:16:48 +02:00
|
|
|
extern void (*handler[LASTEvent]) (XEvent *);
|
2006-07-10 16:38:18 +02:00
|
|
|
|
2006-07-10 19:46:24 +02:00
|
|
|
extern int screen, sel_screen;
|
2006-07-11 11:27:56 +02:00
|
|
|
extern char *bartext, tag[256];
|
2006-07-10 19:46:24 +02:00
|
|
|
|
|
|
|
extern Brush brush;
|
2006-07-11 11:27:56 +02:00
|
|
|
extern Client *client;
|
2006-07-10 19:46:24 +02:00
|
|
|
|
2006-07-10 22:16:48 +02:00
|
|
|
/* bar.c */
|
|
|
|
extern void draw_bar();
|
|
|
|
|
2006-07-11 11:50:18 +02:00
|
|
|
/* cmd.c */
|
|
|
|
extern void run(char *arg);
|
|
|
|
|
2006-07-10 22:16:48 +02:00
|
|
|
/* client.c */
|
|
|
|
extern Client *create_client(Window w, XWindowAttributes *wa);
|
|
|
|
extern void manage(Client *c);
|
|
|
|
|
2006-07-11 11:50:18 +02:00
|
|
|
/* key.c */
|
|
|
|
extern void update_keys();
|
|
|
|
|
2006-07-10 16:38:18 +02:00
|
|
|
/* wm.c */
|
2006-07-10 22:16:48 +02:00
|
|
|
extern int win_proto(Window w);
|