-
Notifications
You must be signed in to change notification settings - Fork 7
/
client.c
282 lines (250 loc) · 6.92 KB
/
client.c
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
/* evilwm - Minimalist Window Manager for X
* Copyright (C) 1999-2015 Ciaran Anscomb <[email protected]>
* see README for license and other details. */
#include <stdio.h>
#include <stdlib.h>
#include "evilwm.h"
#include "log.h"
#define MAXIMUM_PROPERTY_LENGTH 4096
static int send_xmessage(Window w, Atom a, long x);
/* used all over the place. return the client that has specified window as
* either window or parent */
Client *find_client(Window w) {
struct list *iter;
for (iter = clients_tab_order; iter; iter = iter->next) {
Client *c = iter->data;
if (w == c->parent || w == c->window)
return c;
}
return NULL;
}
void client_hide(Client *c) {
c->ignore_unmap++; /* Ignore unmap so we don't remove client */
XUnmapWindow(dpy, c->parent);
set_wm_state(c, IconicState);
}
void client_show(Client *c) {
XMapWindow(dpy, c->parent);
set_wm_state(c, NormalState);
}
void client_raise(Client *c) {
XRaiseWindow(dpy, c->parent);
clients_stacking_order = list_to_tail(clients_stacking_order, c);
ewmh_set_net_client_list_stacking(c->screen);
}
void client_lower(Client *c) {
XLowerWindow(dpy, c->parent);
clients_stacking_order = list_to_head(clients_stacking_order, c);
ewmh_set_net_client_list_stacking(c->screen);
}
void set_wm_state(Client *c, int state) {
/* Using "long" for the type of "data" looks wrong, but the
* fine people in the X Consortium defined it this way
* (even on 64-bit machines).
*/
long data[2];
data[0] = state;
data[1] = None;
XChangeProperty(dpy, c->window, xa_wm_state, xa_wm_state, 32,
PropModeReplace, (unsigned char *)data, 2);
}
void send_config(Client *c) {
XConfigureEvent ce;
ce.type = ConfigureNotify;
ce.event = c->window;
ce.window = c->window;
ce.x = c->x;
ce.y = c->y;
ce.width = c->width;
ce.height = c->height;
ce.border_width = 0;
ce.above = None;
ce.override_redirect = False;
XSendEvent(dpy, c->window, False, StructureNotifyMask, (XEvent *)&ce);
}
/* Shift client to show border according to window's gravity. */
void gravitate_border(Client *c, int bw) {
int dx = 0, dy = 0;
switch (c->win_gravity) {
default:
case NorthWestGravity:
dx = bw;
dy = bw;
break;
case NorthGravity:
dy = bw;
break;
case NorthEastGravity:
dx = -bw;
dy = bw;
break;
case EastGravity:
dx = -bw;
break;
case CenterGravity:
break;
case WestGravity:
dx = bw;
break;
case SouthWestGravity:
dx = bw;
dy = -bw;
break;
case SouthGravity:
dy = -bw;
break;
case SouthEastGravity:
dx = -bw;
dy = -bw;
break;
}
if (c->x != 0 || c->width != DisplayWidth(dpy, c->screen->screen)) {
c->x += dx;
}
if (c->y != 0 || c->height != DisplayHeight(dpy, c->screen->screen)) {
c->y += dy;
}
}
void select_client(Client *c) {
if (current)
XSetWindowBorder(dpy, current->parent, current->screen->bg.pixel);
if (c) {
unsigned long bpixel;
#ifdef VWM
if (is_fixed(c))
bpixel = c->screen->fc.pixel;
else
#endif
bpixel = c->screen->fg.pixel;
XSetWindowBorder(dpy, c->parent, bpixel);
XInstallColormap(dpy, c->cmap);
XSetInputFocus(dpy, c->window, RevertToPointerRoot, CurrentTime);
}
current = c;
ewmh_set_net_active_window(c);
}
#ifdef VWM
void client_to_vdesk(Client *c, unsigned int vdesk) {
if (valid_vdesk(vdesk)) {
c->vdesk = vdesk;
if (c->vdesk == c->screen->vdesk || c->vdesk == VDESK_FIXED) {
client_show(c);
} else {
client_hide(c);
}
ewmh_set_net_wm_desktop(c);
select_client(current);
}
}
#endif
void remove_client(Client *c) {
LOG_ENTER("remove_client(window=%lx, %s)", c->window, c->remove ? "withdrawing" : "wm quitting");
XGrabServer(dpy);
ignore_xerror = 1;
/* ICCCM 4.1.3.1
* "When the window is withdrawn, the window manager will either
* change the state field's value to WithdrawnState or it will
* remove the WM_STATE property entirely."
* EWMH 1.3
* "The Window Manager should remove the property whenever a
* window is withdrawn but it should leave the property in
* place when it is shutting down." (both _NET_WM_DESKTOP and
* _NET_WM_STATE) */
if (c->remove) {
LOG_DEBUG("setting WithdrawnState\n");
set_wm_state(c, WithdrawnState);
ewmh_withdraw_client(c);
} else {
ewmh_deinit_client(c);
}
gravitate_border(c, -c->border);
gravitate_border(c, c->old_border);
c->x -= c->old_border;
c->y -= c->old_border;
XReparentWindow(dpy, c->window, c->screen->root, c->x, c->y);
XSetWindowBorderWidth(dpy, c->window, c->old_border);
XRemoveFromSaveSet(dpy, c->window);
if (c->parent)
XDestroyWindow(dpy, c->parent);
clients_tab_order = list_delete(clients_tab_order, c);
clients_mapping_order = list_delete(clients_mapping_order, c);
clients_stacking_order = list_delete(clients_stacking_order, c);
/* If the wm is quitting, we'll remove the client list properties
* soon enough, otherwise: */
if (c->remove) {
ewmh_set_net_client_list(c->screen);
ewmh_set_net_client_list_stacking(c->screen);
}
if (current == c)
current = NULL; /* an enter event should set this up again */
free(c);
#ifdef DEBUG
{
struct list *iter;
int i = 0;
for (iter = clients_tab_order; iter; iter = iter->next)
i++;
LOG_DEBUG("free(), window count now %d\n", i);
}
#endif
XUngrabServer(dpy);
XSync(dpy, False);
ignore_xerror = 0;
LOG_LEAVE();
}
void send_wm_delete(Client *c, int kill_client) {
int i, n, found = 0;
Atom *protocols;
if (!kill_client && XGetWMProtocols(dpy, c->window, &protocols, &n)) {
for (i = 0; i < n; i++)
if (protocols[i] == xa_wm_delete)
found++;
XFree(protocols);
}
if (found)
send_xmessage(c->window, xa_wm_protos, xa_wm_delete);
else
XKillClient(dpy, c->window);
}
static int send_xmessage(Window w, Atom a, long x) {
XEvent ev;
ev.type = ClientMessage;
ev.xclient.window = w;
ev.xclient.message_type = a;
ev.xclient.format = 32;
ev.xclient.data.l[0] = x;
ev.xclient.data.l[1] = CurrentTime;
return XSendEvent(dpy, w, False, NoEventMask, &ev);
}
#ifdef SHAPE
void set_shape(Client *c) {
int bounding_shaped;
int i, b; unsigned int u; /* dummies */
if (!have_shape) return;
/* Logic to decide if we have a shaped window cribbed from fvwm-2.5.10.
* Previous method (more than one rectangle returned from
* XShapeGetRectangles) worked _most_ of the time. */
if (XShapeQueryExtents(dpy, c->window, &bounding_shaped, &i, &i,
&u, &u, &b, &i, &i, &u, &u) && bounding_shaped) {
LOG_DEBUG("%d shape extents\n", bounding_shaped);
XShapeCombineShape(dpy, c->parent, ShapeBounding, 0, 0,
c->window, ShapeBounding, ShapeSet);
}
}
#endif
void *get_property(Window w, Atom property, Atom req_type,
unsigned long *nitems_return) {
Atom actual_type;
int actual_format;
unsigned long bytes_after;
unsigned char *prop;
if (XGetWindowProperty(dpy, w, property,
0L, MAXIMUM_PROPERTY_LENGTH / 4, False,
req_type, &actual_type, &actual_format,
nitems_return, &bytes_after, &prop) == Success) {
if (actual_type == req_type)
return (void *)prop;
XFree(prop);
}
return NULL;
}