dwm/wm.h

108 lines
2.1 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-11 16:14:22 +02:00
#define WM_PROTOCOL_DELWIN 1
2006-07-11 21:24:10 +02:00
typedef struct Client Client;
typedef struct Key Key;
typedef enum Align Align;
enum Align {
NORTH = 0x01,
EAST = 0x02,
SOUTH = 0x04,
WEST = 0x08,
NEAST = NORTH | EAST,
NWEST = NORTH | WEST,
SEAST = SOUTH | EAST,
SWEST = SOUTH | WEST,
CENTER = NEAST | SWEST
};
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-10 22:16:48 +02:00
/* rects */
2006-07-10 16:38:18 +02:00
enum { RFloat, RGrid, RLast };
struct Client {
char name[256];
2006-07-11 11:27:56 +02:00
char tag[256];
2006-07-10 22:16:48 +02:00
unsigned int border;
2006-07-11 16:14:22 +02:00
int proto;
2006-07-10 22:16:48 +02:00
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;
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-10 22:16:48 +02:00
extern Window root, barwin;
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-10 22:16:48 +02:00
extern XRectangle rect, barrect;
2006-07-11 16:14:22 +02:00
extern Bool running, sel_screen, grid;
2006-07-10 22:16:48 +02:00
extern void (*handler[LASTEvent]) (XEvent *);
2006-07-10 16:38:18 +02:00
2006-07-11 16:14:22 +02:00
extern int screen;
2006-07-11 18:53:41 +02:00
extern char statustext[1024], tag[256];
extern Brush brush;
2006-07-11 16:14:22 +02:00
extern Client *clients, *stack;
2006-07-10 22:16:48 +02:00
/* bar.c */
extern void draw_bar();
2006-07-11 11:50:18 +02:00
/* cmd.c */
2006-07-11 18:15:11 +02:00
extern void run(void *aux);
extern void quit(void *aux);
extern void kill(void *aux);
2006-07-11 11:50:18 +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 16:14:22 +02:00
/* event.c */
2006-07-11 21:24:10 +02:00
extern unsigned int discard_events(long even_mask);
2006-07-10 22:16:48 +02:00
2006-07-11 11:50:18 +02:00
/* key.c */
extern void update_keys();
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-10 16:38:18 +02:00
/* wm.c */
2006-07-11 13:02:22 +02:00
extern int error_handler(Display *dpy, XErrorEvent *error);
2006-07-11 16:14:22 +02:00
extern void send_message(Window w, Atom a, long value);
extern int win_proto(Window w);