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-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;
|
|
|
|
|
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 };
|
|
|
|
|
|
|
|
struct Client {
|
2006-07-11 22:49:09 +02:00
|
|
|
char name[256], tag[256];
|
2006-07-11 16:14:22 +02:00
|
|
|
int proto;
|
2006-07-11 22:49:09 +02:00
|
|
|
int x, y, w, h;
|
2006-07-11 23:46:39 +02:00
|
|
|
int tx, ty, tw, th;
|
2006-07-11 22:49:09 +02:00
|
|
|
int basew, baseh, incw, inch, maxw, maxh, minw, minh;
|
|
|
|
long flags;
|
2006-07-10 16:38:18 +02:00
|
|
|
Window win;
|
|
|
|
Window trans;
|
|
|
|
Window title;
|
|
|
|
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-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-12 15:17:22 +02:00
|
|
|
extern int screen, sx, sy, sw, sh, bx, by, bw, bh;
|
2006-07-11 18:53:41 +02:00
|
|
|
extern char statustext[1024], tag[256];
|
2006-07-10 19:46:24 +02:00
|
|
|
|
|
|
|
extern Brush brush;
|
2006-07-11 16:14:22 +02:00
|
|
|
extern Client *clients, *stack;
|
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 */
|
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-12 00:00:25 +02:00
|
|
|
extern void sel(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 22:49:09 +02:00
|
|
|
extern void update_size(Client *c);
|
2006-07-12 00:00:25 +02:00
|
|
|
extern Client *gettitle(Window w);
|
2006-07-12 15:17:22 +02:00
|
|
|
extern void raise(Client *c);
|
|
|
|
extern void lower(Client *c);
|
2006-07-11 16:14:22 +02:00
|
|
|
|
|
|
|
/* event.c */
|
2006-07-12 15:17:22 +02:00
|
|
|
extern void 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();
|
2006-07-11 12:52:57 +02:00
|
|
|
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);
|