dwm/wm.h

71 lines
1.3 KiB
C
Raw Normal View History

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.
*/
#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;
typedef struct Tag Tag;
struct Client {
Tag *tag;
char name[256];
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
};
struct Tag {
char name[256];
2006-07-10 22:16:48 +02:00
Client *stack;
2006-07-10 16:38:18 +02:00
XRectangle r;
2006-07-10 22:16:48 +02:00
Tag *next;
Tag *cnext;
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;
extern void (*handler[LASTEvent]) (XEvent *);
2006-07-10 16:38:18 +02:00
extern int screen, sel_screen;
2006-07-10 22:16:48 +02:00
extern unsigned int lock_mask, numlock_mask;
2006-07-11 11:10:05 +02:00
extern char *bartext;
extern Brush brush;
2006-07-10 22:16:48 +02: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 16:38:18 +02:00
/* wm.c */
2006-07-10 22:16:48 +02:00
extern int win_proto(Window w);