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
|
/*
* \/\/\
*
* Copyright (C) 2012-2016 Vito Caputo - <vcaputo@gnugeneration.com>
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3 as published
* by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/* bare X windows stuff, there's a distinction between bare xwindows and the vwm managed windows */
#include <X11/Xatom.h>
#include <X11/Xlib.h>
#include <stdlib.h>
#include <string.h>
#include "composite.h"
#include "list.h"
#include "overlays.h"
#include "vwm.h"
#include "window.h"
#include "xwindow.h"
#define HONOR_OVERRIDE_REDIRECT
/* send a client message to a window (currently used for WM_DELETE) */
void vwm_xwin_message(vwm_t *vwm, vwm_xwindow_t *xwin, Atom type, long foo)
{
XEvent event;
memset(&event, 0, sizeof(event));
event.xclient.type = ClientMessage;
event.xclient.window = xwin->id;
event.xclient.message_type = type;
event.xclient.format = 32;
event.xclient.data.l[0] = foo;
event.xclient.data.l[1] = CurrentTime; /* XXX TODO: is CurrentTime actually correct to use for this purpose? */
XSendEvent(VWM_XDISPLAY(vwm), xwin->id, False, 0, &event);
}
/* look up the X window in the global xwindows list (includes unmanaged windows like override_redirect/popup menus) */
vwm_xwindow_t * vwm_xwin_lookup(vwm_t *vwm, Window win)
{
vwm_xwindow_t *tmp, *xwin = NULL;
list_for_each_entry(tmp, &vwm->xwindows, xwindows) {
if (tmp->id == win) {
xwin = tmp;
break;
}
}
return xwin;
}
/* determine if a window is mapped (vwm-mapped) according to the current context */
int vwm_xwin_is_mapped(vwm_t *vwm, vwm_xwindow_t *xwin)
{
int ret = 0;
if (!xwin->mapped) return 0;
if (xwin->managed) {
switch (vwm->focused_context) {
case VWM_CONTEXT_SHELF:
if (vwm->focused_shelf == xwin->managed) ret = xwin->mapped;
break;
case VWM_CONTEXT_DESKTOP:
if (vwm->focused_desktop == xwin->managed->desktop && !xwin->managed->shelved) ret = xwin->mapped;
break;
default:
VWM_BUG("Unsupported context");
break;
}
} else { /* unmanaged xwins like popup dialogs when mapped are always visible */
ret = 1;
}
/* annoyingly, Xorg stops delivering VisibilityNotify events for redirected windows, so we don't conveniently know if a window is obscured or not :( */
/* I could maintain my own data structure for answering this question, but that's pretty annoying when Xorg already has that knowledge. */
return ret;
}
/* helper to get the client pid for a window */
static int vwm_xwin_get_pid(vwm_t *vwm, vwm_xwindow_t *xwin)
{
Atom type;
int fmt;
unsigned long nitems;
unsigned long nbytes;
long *foo = NULL;
int pid;
if (XGetWindowProperty(VWM_XDISPLAY(vwm), xwin->id, vwm->wm_pid_atom, 0, 1, False, XA_CARDINAL,
&type, &fmt, &nitems, &nbytes, (unsigned char **)&foo) != Success || !foo) return -1;
pid = *foo;
XFree(foo);
return pid;
}
/* establishes an overlay on xwin if appropriate and the pid is available */
void vwm_xwin_setup_overlay(vwm_t *vwm, vwm_xwindow_t *xwin)
{
/* XXX FIXME: handle getting called multiple times on the same xwin */
/* for regular windows create a monitoring overlay */
if (!xwin->attrs.override_redirect) {
int pid = vwm_xwin_get_pid(vwm, xwin);
if (pid != -1) xwin->overlay = vwm_overlay_create(vwm->overlays, pid, xwin->attrs.width, xwin->attrs.height);
}
}
/* creates and potentially manages a new window (called in response to CreateNotify events, and during startup for all existing windows) */
/* if the window is already mapped and not an override_redirect window, it becomes managed here. */
vwm_xwindow_t * vwm_xwin_create(vwm_t *vwm, Window win, vwm_grab_mode_t grabbed)
{
XWindowAttributes attrs;
vwm_xwindow_t *xwin = NULL;
VWM_TRACE("creating %#x", (unsigned int)win);
/* prevent races */
if (!grabbed) {
XGrabServer(VWM_XDISPLAY(vwm));
XSync(VWM_XDISPLAY(vwm), False);
}
/* verify the window still exists */
if (!XGetWindowAttributes(VWM_XDISPLAY(vwm), win, &attrs)) goto _out_grabbed;
/* don't create InputOnly windows */
if (attrs.class == InputOnly) goto _out_grabbed;
if (!(xwin = (vwm_xwindow_t *)calloc(1, sizeof(vwm_xwindow_t)))) {
VWM_PERROR("Failed to allocate xwin");
goto _out_grabbed;
}
xwin->id = win;
xwin->attrs = attrs;
XFetchName(VWM_XDISPLAY(vwm), win, &xwin->name);
/* This is so we get the PropertyNotify event and can get the pid when it's set post-create,
* with my _NET_WM_PID patch the property is immediately available */
XSelectInput(VWM_XDISPLAY(vwm), win, PropertyChangeMask);
/* we must track the mapped-by-client state of the window independent of managed vs. unmanaged because
* in the case of override_redirect windows they may be unmapped (invisible) or mapped (visible) like menus without being managed.
* otherwise we could just use !xwin.managed to indicate unmapped, which is more vwm2-like, but insufficient when compositing. */
xwin->mapped = (attrs.map_state != IsUnmapped);
vwm_xwin_setup_overlay(vwm, xwin);
vwm_composite_xwin_create(vwm, xwin);
list_add_tail(&xwin->xwindows, &vwm->xwindows); /* created windows are always placed on the top of the stacking order */
#ifdef HONOR_OVERRIDE_REDIRECT
if (!attrs.override_redirect && xwin->mapped) vwm_win_manage_xwin(vwm, xwin);
#else
if (xwin->mapped) vwm_win_manage_xwin(vwm, xwin);
#endif
_out_grabbed:
if (!grabbed) XUngrabServer(VWM_XDISPLAY(vwm));
return xwin;
}
/* destroy a window, called in response to DestroyNotify events */
/* if the window is also managed it will be unmanaged first */
void vwm_xwin_destroy(vwm_t *vwm, vwm_xwindow_t *xwin)
{
XGrabServer(VWM_XDISPLAY(vwm));
XSync(VWM_XDISPLAY(vwm), False);
if (xwin->managed) vwm_win_unmanage(vwm, xwin->managed);
list_del(&xwin->xwindows);
if (xwin->name) XFree(xwin->name);
if (xwin->overlay) vwm_overlay_destroy(vwm->overlays, xwin->overlay);
vwm_composite_xwin_destroy(vwm, xwin);
free(xwin);
XUngrabServer(VWM_XDISPLAY(vwm));
}
/* maintain the stack-ordered xwindows list, when new_above is != None xwin is to be placed above new_above, when == None xwin goes to the bottom. */
void vwm_xwin_restack(vwm_t *vwm, vwm_xwindow_t *xwin, Window new_above)
{
Window old_above;
#ifdef TRACE
vwm_xwindow_t *tmp;
fprintf(stderr, "restack of %#x new_above=%#x\n", (unsigned int)xwin->id, (unsigned int)new_above);
fprintf(stderr, "restack pre:");
list_for_each_entry(tmp, &vwm->xwindows, xwindows) {
fprintf(stderr, " %#x", (unsigned int)tmp->id);
}
fprintf(stderr, "\n");
#endif
if (xwin->xwindows.prev != &vwm->xwindows) {
old_above = list_entry(xwin->xwindows.prev, vwm_xwindow_t, xwindows)->id;
} else {
old_above = None;
}
if (old_above != new_above) {
vwm_xwindow_t *new;
if (new_above == None) { /* to the bottom of the stack, so just above the &xwindows head */
list_move(&xwin->xwindows, &vwm->xwindows);
} else if ((new = vwm_xwin_lookup(vwm, new_above))) { /* to just above new_above */
list_move(&xwin->xwindows, &new->xwindows);
}
}
#ifdef TRACE
fprintf(stderr, "restack post:");
list_for_each_entry(tmp, &vwm->xwindows, xwindows) {
fprintf(stderr, " %#x", (unsigned int)tmp->id);
}
fprintf(stderr, "\n\n");
#endif
}
/* create xwindows for all existing windows (for startup) */
int vwm_xwin_create_existing(vwm_t *vwm)
{
Window root, parent;
Window *children = NULL;
unsigned int n_children, i;
/* TODO FIXME I don't think this is right anymore, not since we went compositing and split managed vs. bare xwindows... */
XGrabServer(VWM_XDISPLAY(vwm));
XSync(VWM_XDISPLAY(vwm), False);
XQueryTree(VWM_XDISPLAY(vwm), VWM_XROOT(vwm), &root, &parent, &children, &n_children);
for (i = 0; i < n_children; i++) {
if (children[i] == None) continue;
if ((vwm_xwin_create(vwm, children[i], VWM_GRABBED) == NULL)) goto _fail_grabbed;
}
XUngrabServer(VWM_XDISPLAY(vwm));
if (children) XFree(children);
return 1;
_fail_grabbed:
XUngrabServer(VWM_XDISPLAY(vwm));
if (children) XFree(children);
return 0;
}
|