about summary refs log tree commit diff stats
path: root/arc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-10-28 14:16:26 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-10-28 14:16:26 -0700
commit78164bab59d20c2e5ddc25d336acb0266b451647 (patch)
tree7cd76ceab6225b1d935d3bf5b48ebcd799ecfdd7 /arc
parentebf6889f504b3a14ba077c59f3c3c7814b155ff2 (diff)
downloadmu-78164bab59d20c2e5ddc25d336acb0266b451647.tar.gz
2301 - test_all_layers fixes
Diffstat (limited to 'arc')
0 files changed, 0 insertions, 0 deletions
;id=2ca2e862e616eba862ac80f5ee0003d1aa984a32'>^
f07bb12f ^







34a60763 ^
4c13e1f2 ^




f07bb12f ^










34a60763 ^
4c13e1f2 ^


























f07bb12f ^


4c13e1f2 ^




f07bb12f ^







4c13e1f2 ^
f07bb12f ^
34a60763 ^
f07bb12f ^


4c13e1f2 ^
f07bb12f ^


4c13e1f2 ^

f07bb12f ^



4c13e1f2 ^
f07bb12f ^
4c13e1f2 ^


f07bb12f ^
34a60763 ^

4c13e1f2 ^
f07bb12f ^
4c13e1f2 ^
f07bb12f ^








62cd83ba ^

f07bb12f ^
34a60763 ^
f07bb12f ^


4c13e1f2 ^

f07bb12f ^


4c13e1f2 ^
34a60763 ^
f07bb12f ^
34a60763 ^
f07bb12f ^












f07bb12f ^















4c13e1f2 ^




34a60763 ^
4c13e1f2 ^
34a60763 ^
4c13e1f2 ^



f07bb12f ^
62cd83ba ^
f07bb12f ^



























4c13e1f2 ^



f07bb12f ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/*
 * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
 * See LICENSE file for license details.
 */

#include "config.h"
#include "draw.h"
#include "util.h"

#include <X11/Xutil.h>

#define WM_PROTOCOL_DELWIN 1

typedef struct Client Client;
typedef struct Key Key;

/* atoms */
enum { WMProtocols, WMDelete, WMLast };
enum { NetSupported, NetWMName, NetLast };

/* cursor */
enum { CurNormal, CurResize, CurMove, CurInput, CurLast };

/* rects */
enum { RFloat, RGrid, RLast };

struct Client {
	char name[256];
	char tag[256];
	int proto;
	Bool fixedsize;
	Window win;
	Window trans;
	Window title;
	XSizeHints size;
	XRectangle r[RLast];
	Client *next;
	Client *snext;
};

struct Key {
	unsigned long mod;
	KeySym keysym;
	void (*func)(void *aux);
	void *aux;
};

extern Display *dpy;
extern Window root, barwin;
extern Atom wm_atom[WMLast], net_atom[NetLast];
extern Cursor cursor[CurLast];
extern XRectangle rect, barrect;
extern Bool running, sel_screen, grid;
extern void (*handler[LASTEvent]) (XEvent *);

extern int screen;
extern char statustext[1024], tag[256];

extern Brush brush;
extern Client *clients, *stack;

/* bar.c */
extern void draw_bar();

/* cmd.c */
extern void run(void *aux);
extern void quit(void *aux);
extern void kill(void *aux);

/* client.c */
extern void manage(Window w, XWindowAttributes *wa);
extern void unmanage(Client *c);
extern Client *getclient(Window w);
extern void focus(Client *c);
extern void update_name(Client *c);
extern void draw_client(Client *c);
extern void resize(Client *c);

/* event.c */
extern unsigned int discard_events(long even_mask);

/* key.c */
extern void update_keys();
extern void keypress(XEvent *e);

/* mouse.c */
extern void mresize(Client *c);
extern void mmove(Client *c);

/* wm.c */
extern int error_handler(Display *dpy, XErrorEvent *error);
extern void send_message(Window w, Atom a, long value);
extern int win_proto(Window w);