rev |
line source |
garbeam@0
|
1 /*
|
garbeam@0
|
2 * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
garbeam@0
|
3 * See LICENSE file for license details.
|
garbeam@0
|
4 */
|
garbeam@0
|
5
|
garbeam@32
|
6 #include <X11/Xlib.h>
|
garbeam@2
|
7
|
garbeam@32
|
8 /********** CUSTOMIZE **********/
|
garbeam@0
|
9
|
garbeam@51
|
10 #define FONT "-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*"
|
garbeam@78
|
11 #define BGCOLOR "#0a2c2d"
|
garbeam@78
|
12 #define FGCOLOR "#ddeeee"
|
garbeam@78
|
13 #define BORDERCOLOR "#176164"
|
garbeam@78
|
14 /*
|
garbeam@51
|
15 #define BGCOLOR "#666699"
|
garbeam@59
|
16 #define FGCOLOR "#eeeeee"
|
garbeam@51
|
17 #define BORDERCOLOR "#9999CC"
|
garbeam@78
|
18 */
|
garbeam@51
|
19 #define MASTERW 52 /* percent */
|
garbeam@51
|
20 #define WM_PROTOCOL_DELWIN 1
|
garbeam@13
|
21
|
garbeam@32
|
22 /* tags */
|
garbeam@59
|
23 enum { Tscratch, Tdev, Twww, Twork, TLast };
|
garbeam@32
|
24
|
garbeam@32
|
25 /********** CUSTOMIZE **********/
|
garbeam@32
|
26
|
garbeam@51
|
27 typedef union Arg Arg;
|
garbeam@34
|
28 typedef struct DC DC;
|
garbeam@18
|
29 typedef struct Client Client;
|
garbeam@32
|
30 typedef struct Fnt Fnt;
|
garbeam@18
|
31 typedef struct Key Key;
|
garbeam@51
|
32 typedef struct Rule Rule;
|
garbeam@49
|
33
|
garbeam@49
|
34 union Arg {
|
garbeam@49
|
35 const char **argv;
|
garbeam@49
|
36 int i;
|
garbeam@49
|
37 };
|
garbeam@18
|
38
|
garbeam@5
|
39 /* atoms */
|
garbeam@84
|
40 enum { NetSupported, NetWMName, NetLast };
|
garbeam@13
|
41 enum { WMProtocols, WMDelete, WMLast };
|
garbeam@0
|
42
|
garbeam@5
|
43 /* cursor */
|
garbeam@84
|
44 enum { CurNormal, CurResize, CurMove, CurLast };
|
garbeam@0
|
45
|
garbeam@32
|
46 struct Fnt {
|
garbeam@32
|
47 int ascent;
|
garbeam@32
|
48 int descent;
|
garbeam@32
|
49 int height;
|
garbeam@84
|
50 XFontSet set;
|
garbeam@84
|
51 XFontStruct *xfont;
|
garbeam@32
|
52 };
|
garbeam@32
|
53
|
garbeam@34
|
54 struct DC { /* draw context */
|
garbeam@32
|
55 int x, y, w, h;
|
garbeam@32
|
56 unsigned long bg;
|
garbeam@32
|
57 unsigned long fg;
|
garbeam@32
|
58 unsigned long border;
|
garbeam@84
|
59 Drawable drawable;
|
garbeam@84
|
60 Fnt font;
|
garbeam@84
|
61 GC gc;
|
garbeam@32
|
62 };
|
garbeam@32
|
63
|
garbeam@0
|
64 struct Client {
|
garbeam@31
|
65 char name[256];
|
garbeam@31
|
66 char *tags[TLast];
|
garbeam@13
|
67 int proto;
|
garbeam@95
|
68 int *x, *y, *w, *h; /* current geom */
|
garbeam@95
|
69 int bx, by, bw, bh; /* title bar */
|
garbeam@95
|
70 int fx, fy, fw, fh; /* floating geom */
|
garbeam@95
|
71 int tx, ty, tw, th; /* tiled geom */
|
garbeam@20
|
72 int basew, baseh, incw, inch, maxw, maxh, minw, minh;
|
garbeam@29
|
73 int grav;
|
garbeam@29
|
74 unsigned int border;
|
garbeam@20
|
75 long flags;
|
garbeam@80
|
76 Bool isfloat;
|
garbeam@84
|
77 Client *next;
|
garbeam@84
|
78 Client *revert;
|
garbeam@0
|
79 Window win;
|
garbeam@0
|
80 Window title;
|
garbeam@0
|
81 };
|
garbeam@0
|
82
|
garbeam@51
|
83 struct Rule {
|
garbeam@51
|
84 const char *class;
|
garbeam@51
|
85 const char *instance;
|
garbeam@51
|
86 char *tags[TLast];
|
garbeam@80
|
87 Bool isfloat;
|
garbeam@51
|
88 };
|
garbeam@51
|
89
|
garbeam@8
|
90 struct Key {
|
garbeam@8
|
91 unsigned long mod;
|
garbeam@8
|
92 KeySym keysym;
|
garbeam@49
|
93 void (*func)(Arg *arg);
|
garbeam@49
|
94 Arg arg;
|
garbeam@8
|
95 };
|
garbeam@8
|
96
|
garbeam@84
|
97 extern char *tags[TLast], stext[1024];
|
garbeam@84
|
98 extern int tsel, screen, sx, sy, sw, sh, bx, by, bw, bh, mw;
|
garbeam@53
|
99 extern void (*handler[LASTEvent])(XEvent *);
|
garbeam@53
|
100 extern void (*arrange)(Arg *);
|
garbeam@84
|
101 extern Atom wmatom[WMLast], netatom[NetLast];
|
garbeam@84
|
102 extern Bool running, issel;
|
garbeam@84
|
103 extern Client *clients, *sel;
|
garbeam@84
|
104 extern Cursor cursor[CurLast];
|
garbeam@84
|
105 extern DC dc;
|
garbeam@84
|
106 extern Display *dpy;
|
garbeam@73
|
107 extern Key key[];
|
garbeam@84
|
108 extern Window root, barwin;
|
garbeam@3
|
109
|
garbeam@5
|
110 /* client.c */
|
garbeam@75
|
111 extern void ban(Client *c);
|
garbeam@76
|
112 extern void focus(Client *c);
|
garbeam@76
|
113 extern void focusnext(Arg *arg);
|
garbeam@76
|
114 extern void focusprev(Arg *arg);
|
garbeam@76
|
115 extern Client *getclient(Window w);
|
garbeam@76
|
116 extern Client *getctitle(Window w);
|
garbeam@76
|
117 extern void gravitate(Client *c, Bool invert);
|
garbeam@76
|
118 extern void higher(Client *c);
|
garbeam@76
|
119 extern void killclient(Arg *arg);
|
garbeam@76
|
120 extern void lower(Client *c);
|
garbeam@10
|
121 extern void manage(Window w, XWindowAttributes *wa);
|
garbeam@76
|
122 extern void maximize(Arg *arg);
|
garbeam@94
|
123 extern void pop(Client *c);
|
garbeam@52
|
124 extern void resize(Client *c, Bool inc);
|
garbeam@95
|
125 extern void setgeom(Client *c);
|
garbeam@74
|
126 extern void setsize(Client *c);
|
garbeam@76
|
127 extern void settitle(Client *c);
|
garbeam@76
|
128 extern void unmanage(Client *c);
|
garbeam@75
|
129 extern void zoom(Arg *arg);
|
garbeam@13
|
130
|
garbeam@33
|
131 /* draw.c */
|
garbeam@75
|
132 extern void drawall();
|
garbeam@74
|
133 extern void drawstatus();
|
garbeam@74
|
134 extern void drawtitle(Client *c);
|
garbeam@74
|
135 extern unsigned long getcolor(const char *colstr);
|
garbeam@74
|
136 extern void setfont(const char *fontstr);
|
garbeam@43
|
137 extern unsigned int textw(char *text);
|
garbeam@33
|
138
|
garbeam@75
|
139 /* event.c */
|
garbeam@73
|
140 extern void grabkeys();
|
garbeam@18
|
141
|
garbeam@43
|
142 /* main.c */
|
garbeam@76
|
143 extern int getproto(Window w);
|
garbeam@75
|
144 extern void quit(Arg *arg);
|
garbeam@76
|
145 extern void sendevent(Window w, Atom a, long value);
|
garbeam@75
|
146 extern int xerror(Display *dsply, XErrorEvent *ee);
|
garbeam@43
|
147
|
garbeam@75
|
148 /* tag.c */
|
garbeam@76
|
149 extern void appendtag(Arg *arg);
|
garbeam@75
|
150 extern void dofloat(Arg *arg);
|
garbeam@75
|
151 extern void dotile(Arg *arg);
|
garbeam@93
|
152 extern Client *getnext(Client *c, unsigned int t);
|
garbeam@93
|
153 extern void heretag(Arg *arg);
|
garbeam@76
|
154 extern void replacetag(Arg *arg);
|
garbeam@76
|
155 extern void settags(Client *c);
|
garbeam@73
|
156 extern void view(Arg *arg);
|
garbeam@73
|
157
|
garbeam@32
|
158 /* util.c */
|
garbeam@76
|
159 extern void *emallocz(unsigned int size);
|
garbeam@75
|
160 extern void eprint(const char *errstr, ...);
|
garbeam@49
|
161 extern void spawn(Arg *arg);
|