dwm/wm.h

95 lines
2.0 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-11 14:14:22 +00:00
#define WM_PROTOCOL_DELWIN 1
2006-07-11 19:24:10 +00:00
typedef struct Client Client;
typedef struct Key Key;
2006-07-10 20:16:48 +00:00
/* atoms */
2006-07-11 14:14:22 +00:00
enum { WMProtocols, WMDelete, WMLast };
2006-07-10 14:38:18 +00:00
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 };
struct Client {
2006-07-11 20:49:09 +00:00
char name[256], tag[256];
2006-07-11 14:14:22 +00:00
int proto;
2006-07-11 20:49:09 +00:00
int x, y, w, h;
int tx, ty, tw, th;
2006-07-11 20:49:09 +00:00
int basew, baseh, incw, inch, maxw, maxh, minw, minh;
long flags;
2006-07-10 14:38:18 +00:00
Window win;
Window trans;
Window title;
Client *next;
2006-07-10 20:16:48 +00:00
Client *snext;
2006-07-10 14:38:18 +00:00
};
2006-07-11 09:50:18 +00:00
struct Key {
unsigned long mod;
KeySym keysym;
2006-07-11 16:15:11 +00:00
void (*func)(void *aux);
void *aux;
2006-07-11 09:50:18 +00:00
};
2006-07-10 14:38:18 +00:00
extern Display *dpy;
2006-07-10 20:16:48 +00:00
extern Window root, barwin;
2006-07-11 14:14:22 +00:00
extern Atom wm_atom[WMLast], net_atom[NetLast];
2006-07-10 14:38:18 +00:00
extern Cursor cursor[CurLast];
2006-07-11 14:14:22 +00:00
extern Bool running, sel_screen, 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, sx, sy, sw, sh, bx, by, bw, bh;
2006-07-11 16:53:41 +00:00
extern char statustext[1024], tag[256];
extern Brush brush;
2006-07-11 14:14:22 +00:00
extern Client *clients, *stack;
2006-07-10 20:16:48 +00:00
/* bar.c */
extern void draw_bar();
2006-07-11 09:50:18 +00:00
/* cmd.c */
2006-07-11 16:15:11 +00:00
extern void run(void *aux);
extern void quit(void *aux);
extern void kill(void *aux);
2006-07-11 22:00:25 +00:00
extern void sel(void *aux);
2006-07-11 09:50:18 +00:00
2006-07-10 20:16:48 +00:00
/* client.c */
2006-07-11 11:02:22 +00:00
extern void manage(Window w, XWindowAttributes *wa);
2006-07-11 14:14:22 +00: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 16:53:41 +00:00
extern void draw_client(Client *c);
2006-07-11 19:24:10 +00:00
extern void resize(Client *c);
2006-07-11 20:49:09 +00:00
extern void update_size(Client *c);
2006-07-11 22:00:25 +00:00
extern Client *gettitle(Window w);
extern void raise(Client *c);
extern void lower(Client *c);
2006-07-11 14:14:22 +00:00
/* event.c */
extern void discard_events(long even_mask);
2006-07-10 20:16:48 +00:00
2006-07-11 09:50:18 +00:00
/* key.c */
extern void update_keys();
extern void keypress(XEvent *e);
2006-07-11 09:50:18 +00:00
2006-07-11 19:24:10 +00:00
/* mouse.c */
extern void mresize(Client *c);
extern void mmove(Client *c);
2006-07-10 14:38:18 +00:00
/* wm.c */
2006-07-11 11:02:22 +00:00
extern int error_handler(Display *dpy, XErrorEvent *error);
2006-07-11 14:14:22 +00:00
extern void send_message(Window w, Atom a, long value);
extern int win_proto(Window w);