2005-11-18 18:54:58 +03:00
|
|
|
/*
|
2006-01-20 17:20:24 +03:00
|
|
|
* (C)opyright MMIV-MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
2005-11-18 18:54:58 +03:00
|
|
|
* See LICENSE file for license details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2006-01-21 14:57:20 +03:00
|
|
|
#include <X11/Xlib.h>
|
2005-11-18 18:54:58 +03:00
|
|
|
#include <X11/Xutil.h>
|
|
|
|
|
2006-02-10 00:48:01 +03:00
|
|
|
#include "ixp.h"
|
|
|
|
#include "blitz.h"
|
2005-11-18 18:54:58 +03:00
|
|
|
|
2006-03-05 02:11:08 +03:00
|
|
|
/* array indexes of atoms */
|
2005-12-27 23:13:50 +03:00
|
|
|
enum {
|
2006-03-05 02:11:08 +03:00
|
|
|
WMState,
|
|
|
|
WMProtocols,
|
|
|
|
WMDelete,
|
|
|
|
WMLast
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
NetNumWS,
|
|
|
|
NetSelWS,
|
|
|
|
NetWS,
|
|
|
|
NetLast
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
Colequal,
|
|
|
|
Colstack,
|
|
|
|
Colmax
|
2005-12-27 23:13:50 +03:00
|
|
|
};
|
|
|
|
|
2006-02-02 16:50:04 +03:00
|
|
|
/* 8-bit qid.path.type */
|
|
|
|
enum {
|
|
|
|
Droot,
|
2006-02-09 21:40:12 +03:00
|
|
|
Ddef,
|
2006-03-04 11:23:17 +03:00
|
|
|
Dtag,
|
2006-02-02 16:50:04 +03:00
|
|
|
Darea,
|
|
|
|
Dclient,
|
2006-02-09 21:40:12 +03:00
|
|
|
Dkeys,
|
2006-02-10 00:48:01 +03:00
|
|
|
Dbar,
|
2006-02-10 17:59:30 +03:00
|
|
|
Dlabel,
|
2006-02-10 00:48:01 +03:00
|
|
|
Fexpand,
|
|
|
|
Fdata, /* data to display */
|
2006-02-10 20:32:35 +03:00
|
|
|
Fcolors,
|
|
|
|
Ffont,
|
|
|
|
Fselcolors,
|
|
|
|
Fnormcolors,
|
2006-02-09 21:40:12 +03:00
|
|
|
Fkey,
|
2006-02-02 16:50:04 +03:00
|
|
|
Fborder,
|
|
|
|
Fsnap,
|
2006-02-02 22:36:10 +03:00
|
|
|
Fbar,
|
2006-02-02 16:50:04 +03:00
|
|
|
Fgeom,
|
|
|
|
Fevent,
|
|
|
|
Fctl,
|
2006-02-28 18:23:05 +03:00
|
|
|
Fname,
|
|
|
|
Fmode
|
2006-02-02 16:50:04 +03:00
|
|
|
};
|
|
|
|
|
2005-11-18 18:54:58 +03:00
|
|
|
#define PROTO_DEL 1
|
2006-02-02 21:32:25 +03:00
|
|
|
#define DEF_BORDER 3
|
|
|
|
#define DEF_SNAP 20
|
2005-11-18 18:54:58 +03:00
|
|
|
|
2005-12-15 04:08:26 +03:00
|
|
|
#define ROOT_MASK SubstructureRedirectMask
|
2006-01-12 20:03:49 +03:00
|
|
|
#define CLIENT_MASK (StructureNotifyMask | PropertyChangeMask)
|
2005-11-18 18:54:58 +03:00
|
|
|
|
2006-03-04 11:23:17 +03:00
|
|
|
typedef struct Tag Tag;
|
2006-03-05 03:55:45 +03:00
|
|
|
typedef struct Area Area;
|
|
|
|
typedef struct Frame Frame;
|
2005-11-18 18:54:58 +03:00
|
|
|
typedef struct Client Client;
|
|
|
|
|
2006-02-28 15:38:24 +03:00
|
|
|
|
2006-02-01 18:27:53 +03:00
|
|
|
struct Area {
|
2006-02-03 18:15:36 +03:00
|
|
|
unsigned short id;
|
2006-03-05 03:55:45 +03:00
|
|
|
Frame **frame;
|
2006-03-04 11:23:17 +03:00
|
|
|
Tag *tag;
|
2006-03-05 03:55:45 +03:00
|
|
|
unsigned int framesz;
|
2006-03-01 13:55:46 +03:00
|
|
|
unsigned int sel;
|
2006-03-05 03:55:45 +03:00
|
|
|
unsigned int nframe;
|
2006-03-05 02:11:08 +03:00
|
|
|
int mode;
|
2006-01-26 17:24:34 +03:00
|
|
|
XRectangle rect;
|
2005-11-18 18:54:58 +03:00
|
|
|
};
|
|
|
|
|
2006-03-04 11:23:17 +03:00
|
|
|
struct Tag {
|
2006-03-05 04:02:58 +03:00
|
|
|
char name[256];
|
2006-02-03 18:15:36 +03:00
|
|
|
unsigned short id;
|
2006-02-01 18:27:53 +03:00
|
|
|
Area **area;
|
2006-03-01 13:55:46 +03:00
|
|
|
unsigned int areasz;
|
|
|
|
unsigned int narea;
|
|
|
|
unsigned int sel;
|
2005-11-18 18:54:58 +03:00
|
|
|
};
|
|
|
|
|
2006-03-05 03:55:45 +03:00
|
|
|
struct Frame {
|
|
|
|
Area *area;
|
2006-02-03 18:15:36 +03:00
|
|
|
unsigned short id;
|
2006-03-05 03:55:45 +03:00
|
|
|
XRectangle rect;
|
|
|
|
Client *client;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Client {
|
2006-01-25 20:39:08 +03:00
|
|
|
char name[256];
|
2006-03-05 04:02:58 +03:00
|
|
|
char tags[256];
|
2005-12-21 18:18:11 +03:00
|
|
|
int proto;
|
|
|
|
unsigned int border;
|
|
|
|
Bool destroyed;
|
|
|
|
Window win;
|
|
|
|
Window trans;
|
|
|
|
XRectangle rect;
|
|
|
|
XSizeHints size;
|
2006-03-05 02:25:49 +03:00
|
|
|
Window framewin;
|
|
|
|
GC gc;
|
|
|
|
Cursor cursor;
|
2006-03-05 03:55:45 +03:00
|
|
|
Frame *frame;
|
2005-11-18 18:54:58 +03:00
|
|
|
};
|
|
|
|
|
2006-02-09 21:40:12 +03:00
|
|
|
typedef struct Key Key;
|
|
|
|
struct Key {
|
|
|
|
unsigned short id;
|
|
|
|
char name[128];
|
|
|
|
unsigned long mod;
|
|
|
|
KeyCode key;
|
|
|
|
Key *next;
|
|
|
|
};
|
|
|
|
|
2006-02-10 00:48:01 +03:00
|
|
|
typedef struct {
|
|
|
|
unsigned short id;
|
|
|
|
char data[256];
|
|
|
|
char colstr[24];
|
|
|
|
Color color;
|
|
|
|
XRectangle rect;
|
2006-02-10 17:59:30 +03:00
|
|
|
} Label;
|
2006-02-10 00:48:01 +03:00
|
|
|
|
|
|
|
/* default values */
|
|
|
|
typedef struct {
|
|
|
|
char selcolor[24];
|
|
|
|
char normcolor[24];
|
|
|
|
char *font;
|
|
|
|
Color sel;
|
|
|
|
Color norm;
|
|
|
|
unsigned int border;
|
|
|
|
unsigned int snap;
|
|
|
|
} Default;
|
|
|
|
|
2005-11-18 18:54:58 +03:00
|
|
|
/* global variables */
|
2006-03-04 11:23:17 +03:00
|
|
|
Tag **tag;
|
|
|
|
unsigned int ntag;
|
|
|
|
unsigned int tagsz;
|
2006-03-01 13:55:46 +03:00
|
|
|
unsigned int sel;
|
2006-01-26 17:24:34 +03:00
|
|
|
Client **client;
|
2006-03-01 13:55:46 +03:00
|
|
|
unsigned int nclient;
|
|
|
|
unsigned int clientsz;
|
2006-02-09 21:40:12 +03:00
|
|
|
Key **key;
|
2006-03-01 13:55:46 +03:00
|
|
|
unsigned int keysz;
|
|
|
|
unsigned int nkey;
|
2006-02-10 17:59:30 +03:00
|
|
|
Label **label;
|
2006-03-01 13:55:46 +03:00
|
|
|
unsigned int nlabel;
|
|
|
|
unsigned int labelsz;
|
|
|
|
unsigned int iexpand;
|
2005-12-16 04:59:27 +03:00
|
|
|
|
2005-12-05 01:45:59 +03:00
|
|
|
Display *dpy;
|
|
|
|
IXPServer *ixps;
|
2006-01-25 20:39:08 +03:00
|
|
|
int screen;
|
2005-12-05 01:45:59 +03:00
|
|
|
Window root;
|
|
|
|
XRectangle rect;
|
2006-01-30 21:08:58 +03:00
|
|
|
XFontStruct *xfont;
|
2006-01-25 20:39:08 +03:00
|
|
|
GC gc_xor;
|
2006-02-02 00:24:07 +03:00
|
|
|
IXPServer srv;
|
2006-02-10 00:48:01 +03:00
|
|
|
Pixmap pmapbar;
|
|
|
|
Window winbar;
|
|
|
|
GC gcbar;
|
|
|
|
XRectangle brect;
|
|
|
|
Qid root_qid;
|
2006-01-31 15:25:23 +03:00
|
|
|
|
|
|
|
Default def;
|
2006-03-05 02:11:08 +03:00
|
|
|
Atom wm_atom[WMLast];
|
|
|
|
Atom net_atom[NetLast];
|
2005-11-18 18:54:58 +03:00
|
|
|
|
2005-12-05 01:45:59 +03:00
|
|
|
Cursor normal_cursor;
|
|
|
|
Cursor resize_cursor;
|
|
|
|
Cursor move_cursor;
|
|
|
|
Cursor drag_cursor;
|
|
|
|
Cursor w_cursor;
|
|
|
|
Cursor e_cursor;
|
|
|
|
Cursor n_cursor;
|
|
|
|
Cursor s_cursor;
|
|
|
|
Cursor nw_cursor;
|
|
|
|
Cursor ne_cursor;
|
|
|
|
Cursor sw_cursor;
|
|
|
|
Cursor se_cursor;
|
2005-11-18 18:54:58 +03:00
|
|
|
|
2005-12-05 01:45:59 +03:00
|
|
|
unsigned int valid_mask, num_lock_mask;
|
2005-11-18 18:54:58 +03:00
|
|
|
|
2006-02-03 18:15:36 +03:00
|
|
|
/* area.c */
|
2006-03-04 11:23:17 +03:00
|
|
|
Area *alloc_area(Tag *t);
|
2006-02-03 18:15:36 +03:00
|
|
|
void destroy_area(Area *a);
|
2006-03-01 09:51:04 +03:00
|
|
|
int area2index(Area *a);
|
2006-03-04 11:23:17 +03:00
|
|
|
int aid2index(Tag *t, unsigned short id);
|
2006-02-19 17:40:44 +03:00
|
|
|
void update_area_geometry(Area *a);
|
2006-02-19 18:21:01 +03:00
|
|
|
void select_area(Area *a, char *arg);
|
2006-03-02 19:38:15 +03:00
|
|
|
void send_toarea(Area *to, Client *c);
|
|
|
|
void attach_toarea(Area *a, Client *c);
|
|
|
|
void detach_fromarea(Client *c);
|
2006-03-04 11:23:17 +03:00
|
|
|
void arrange_tag(Tag *t, Bool updategeometry);
|
2006-03-02 17:28:55 +03:00
|
|
|
void arrange_area(Area *a);
|
|
|
|
void resize_area(Client *c, XRectangle *r, XPoint *pt);
|
2006-03-04 11:23:17 +03:00
|
|
|
Area *new_area(Tag *t);
|
2006-03-05 02:11:08 +03:00
|
|
|
int str2mode(char *arg);
|
|
|
|
char *mode2str(int mode);
|
2005-11-18 18:54:58 +03:00
|
|
|
|
2006-02-10 00:48:01 +03:00
|
|
|
/* bar.c */
|
2006-02-10 17:59:30 +03:00
|
|
|
Label *new_label();
|
|
|
|
void detach_label(Label *l);
|
2006-02-10 00:48:01 +03:00
|
|
|
void draw_bar();
|
2006-03-01 09:51:04 +03:00
|
|
|
int lid2index(unsigned short id);
|
2006-02-10 20:32:35 +03:00
|
|
|
void update_bar_geometry();
|
2006-02-24 12:38:48 +03:00
|
|
|
unsigned int bar_height();
|
2006-02-10 00:48:01 +03:00
|
|
|
|
2005-11-18 18:54:58 +03:00
|
|
|
/* client.c */
|
2006-01-25 20:39:08 +03:00
|
|
|
Client *alloc_client(Window w, XWindowAttributes *wa);
|
2006-02-24 19:13:58 +03:00
|
|
|
void destroy_client(Client *c);
|
|
|
|
void configure_client(Client *c);
|
|
|
|
void handle_client_property(Client *c, XPropertyEvent *e);
|
|
|
|
void kill_client(Client *c);
|
|
|
|
void draw_client(Client *client);
|
2006-03-05 02:38:40 +03:00
|
|
|
void gravitate(Client *c, Bool invert);
|
2006-02-24 19:13:58 +03:00
|
|
|
void unmap_client(Client *c);
|
|
|
|
void map_client(Client *c);
|
|
|
|
void reparent_client(Client *c, Window w, int x, int y);
|
|
|
|
void attach_client(Client *c);
|
2006-03-04 11:23:17 +03:00
|
|
|
void attach_totag(Tag *t, Client *c);
|
2006-02-24 19:13:58 +03:00
|
|
|
void detach_client(Client *c, Bool unmap);
|
2005-12-16 04:59:27 +03:00
|
|
|
Client *sel_client();
|
2006-03-04 11:23:17 +03:00
|
|
|
Client *sel_client_of_tag(Tag *t);
|
2006-02-28 10:51:53 +03:00
|
|
|
void focus_client(Client *c);
|
2006-03-01 09:51:04 +03:00
|
|
|
Client *win2clientframe(Window w);
|
2006-03-01 18:20:02 +03:00
|
|
|
void resize_client(Client *c, XRectangle *r, XPoint *pt, Bool ignore_xcall);
|
2006-03-05 03:55:45 +03:00
|
|
|
int frid2index(Area *a, unsigned short id);
|
|
|
|
int frame2index(Frame *f);
|
2006-02-14 14:06:16 +03:00
|
|
|
void select_client(Client *c, char *arg);
|
2006-03-04 11:23:17 +03:00
|
|
|
void sendtotag_client(Client *c, char *arg);
|
2006-02-24 11:52:20 +03:00
|
|
|
void sendtoarea_client(Client *c, char *arg);
|
2006-02-24 12:38:48 +03:00
|
|
|
void resize_all_clients();
|
2006-02-28 10:51:53 +03:00
|
|
|
void focus(Client *c);
|
2005-11-18 18:54:58 +03:00
|
|
|
|
|
|
|
/* event.c */
|
2006-02-02 18:44:45 +03:00
|
|
|
void init_x_event_handler();
|
2006-02-03 20:11:22 +03:00
|
|
|
void check_x_event(IXPConn *c);
|
2005-11-18 18:54:58 +03:00
|
|
|
|
2006-02-02 00:24:07 +03:00
|
|
|
/* fs.c */
|
2006-02-02 16:50:04 +03:00
|
|
|
unsigned long long mkqpath(unsigned char type, unsigned short pg,
|
|
|
|
unsigned short area, unsigned short cl);
|
2006-02-16 13:53:10 +03:00
|
|
|
void write_event(char *event);
|
2006-02-03 20:11:22 +03:00
|
|
|
void new_ixp_conn(IXPConn *c);
|
2006-02-02 00:24:07 +03:00
|
|
|
|
2006-02-09 21:40:12 +03:00
|
|
|
/* kb.c */
|
|
|
|
void handle_key(Window w, unsigned long mod, KeyCode keycode);
|
|
|
|
void grab_key(Key *k);
|
|
|
|
void ungrab_key(Key *k);
|
2006-03-01 09:51:04 +03:00
|
|
|
Key * name2key(char *name);
|
|
|
|
int kid2index(unsigned short id);
|
2006-02-09 21:40:12 +03:00
|
|
|
Key *create_key(char *name);
|
|
|
|
void destroy_key(Key *k);
|
2006-02-10 00:48:01 +03:00
|
|
|
void init_lock_modifiers();
|
2006-02-09 21:40:12 +03:00
|
|
|
|
2005-11-18 18:54:58 +03:00
|
|
|
/* mouse.c */
|
2006-01-26 14:56:28 +03:00
|
|
|
void mouse_resize(Client *c, Align align);
|
|
|
|
void mouse_move(Client *c);
|
|
|
|
Cursor cursor_for_motion(Client *c, int x, int y);
|
2006-03-01 09:51:04 +03:00
|
|
|
Align cursor2align(Cursor cursor);
|
|
|
|
Align xy2align(XRectangle * rect, int x, int y);
|
2006-01-26 14:56:28 +03:00
|
|
|
void drop_move(Client *c, XRectangle *new, XPoint *pt);
|
2006-02-09 21:40:12 +03:00
|
|
|
void grab_mouse(Window w, unsigned long mod, unsigned int button);
|
|
|
|
void ungrab_mouse(Window w, unsigned long mod, unsigned int button);
|
2006-02-16 03:05:16 +03:00
|
|
|
char *warp_mouse(char *arg);
|
2005-11-18 18:54:58 +03:00
|
|
|
|
2006-03-04 11:23:17 +03:00
|
|
|
/* tag.c */
|
|
|
|
Tag *alloc_tag();
|
|
|
|
char *destroy_tag(Tag *t);
|
|
|
|
void focus_tag(Tag *t);
|
2005-12-05 01:45:59 +03:00
|
|
|
XRectangle *rectangles(unsigned int *num);
|
2006-03-01 09:51:04 +03:00
|
|
|
int pid2index(unsigned short id);
|
2006-03-04 11:23:17 +03:00
|
|
|
void select_tag(char *arg);
|
|
|
|
int tag2index(Tag *t);
|
2005-11-18 18:54:58 +03:00
|
|
|
|
2005-12-05 04:15:25 +03:00
|
|
|
/* wm.c */
|
|
|
|
void scan_wins();
|
2006-03-01 09:51:04 +03:00
|
|
|
Client *win2client(Window w);
|
2005-12-05 04:15:25 +03:00
|
|
|
int win_proto(Window w);
|
|
|
|
int win_state(Window w);
|