dwm/wm.h

64 lines
1.2 KiB
C
Raw Normal View History

2006-07-10 14:38:18 +00:00
/*
* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
* See LICENSE file for license details.
*/
#include "config.h"
2006-07-10 16:35:39 +00:00
#include "draw.h"
#include "util.h"
2006-07-10 14:38:18 +00:00
#include <X11/Xutil.h>
2006-07-10 20:16:48 +00:00
/* atoms */
2006-07-10 14:38:18 +00:00
enum { WMState, WMProtocols, WMDelete, WMLast };
enum { NetSupported, NetWMName, NetLast };
2006-07-10 20:16:48 +00:00
/* cursor */
2006-07-10 14:38:18 +00:00
enum { CurNormal, CurResize, CurMove, CurInput, CurLast };
2006-07-10 20:16:48 +00:00
/* rects */
2006-07-10 14:38:18 +00:00
enum { RFloat, RGrid, RLast };
typedef struct Client Client;
struct Client {
char name[256];
2006-07-11 09:27:56 +00:00
char tag[256];
2006-07-10 14:38:18 +00:00
int proto;
2006-07-10 20:16:48 +00:00
unsigned int border;
Bool fixedsize;
2006-07-10 14:38:18 +00:00
Window win;
Window trans;
Window title;
XSizeHints size;
XRectangle r[RLast];
Client *next;
2006-07-10 20:16:48 +00:00
Client *snext;
2006-07-10 14:38:18 +00:00
};
extern Display *dpy;
2006-07-10 20:16:48 +00:00
extern Window root, barwin;
extern Atom wm_atom[WMLast], net_atom[NetLast];
2006-07-10 14:38:18 +00:00
extern Cursor cursor[CurLast];
2006-07-10 20:16:48 +00:00
extern XRectangle rect, barrect;
extern Bool running;
2006-07-11 09:27:56 +00:00
extern Bool grid;
2006-07-10 20:16:48 +00:00
extern void (*handler[LASTEvent]) (XEvent *);
2006-07-10 14:38:18 +00:00
extern int screen, sel_screen;
2006-07-10 20:16:48 +00:00
extern unsigned int lock_mask, numlock_mask;
2006-07-11 09:27:56 +00:00
extern char *bartext, tag[256];
extern Brush brush;
2006-07-11 09:27:56 +00:00
extern Client *client;
2006-07-10 20:16:48 +00:00
/* bar.c */
extern void draw_bar();
/* client.c */
extern Client *create_client(Window w, XWindowAttributes *wa);
extern void manage(Client *c);
2006-07-10 14:38:18 +00:00
/* wm.c */
2006-07-10 20:16:48 +00:00
extern int win_proto(Window w);