-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisplay.c
262 lines (226 loc) · 6.9 KB
/
display.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
/* evilwm - minimalist window manager for X11
* Copyright (C) 1999-2022 Ciaran Anscomb <[email protected]>
* see README for license and other details. */
// Display management
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <assert.h>
#include <stdlib.h>
#include <string.h>
#include <X11/X.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/cursorfont.h>
#include <X11/keysymdef.h>
#ifdef SHAPE
#include <X11/extensions/shape.h>
#endif
#ifdef RANDR
#include <X11/extensions/Xrandr.h>
#endif
#include "client.h"
#include "display.h"
#include "evilwm.h"
#include "ewmh.h"
#include "list.h"
#include "log.h"
#include "screen.h"
#include "util.h"
#include "xalloc.h"
// evilwm only supports one display at a time; this variable is global:
struct display display = { 0 };
// List of atom names. Reflect any changes here in the enum in display.h.
static const char *atom_list[] = {
// Standard X protocol atoms
"WM_STATE",
"WM_PROTOCOLS",
"WM_DELETE_WINDOW",
"WM_COLORMAP_WINDOWS",
// Motif atoms
"_MOTIF_WM_HINTS",
// evilwm atoms
"_EVILWM_UNMAXIMISED_HORZ",
"_EVILWM_UNMAXIMISED_VERT",
// EWMH: Root Window Properties (and Related Messages)
"_NET_SUPPORTED",
"_NET_CLIENT_LIST",
"_NET_CLIENT_LIST_STACKING",
"_NET_NUMBER_OF_DESKTOPS",
"_NET_DESKTOP_GEOMETRY",
"_NET_DESKTOP_VIEWPORT",
"_NET_CURRENT_DESKTOP",
"_NET_ACTIVE_WINDOW",
"_NET_WORKAREA",
"_NET_SUPPORTING_WM_CHECK",
// EWMH: Other Root Window Messages
"_NET_CLOSE_WINDOW",
"_NET_MOVERESIZE_WINDOW",
"_NET_RESTACK_WINDOW",
"_NET_REQUEST_FRAME_EXTENTS",
// EWMH: Application Window Properties
"_NET_WM_NAME",
"_NET_WM_DESKTOP",
"_NET_WM_WINDOW_TYPE",
"_NET_WM_WINDOW_TYPE_DESKTOP",
"_NET_WM_WINDOW_TYPE_DOCK",
"_NET_WM_WINDOW_TYPE_NOTIFICATION",
"_NET_WM_STATE",
"_NET_WM_STATE_MAXIMIZED_VERT",
"_NET_WM_STATE_MAXIMIZED_HORZ",
"_NET_WM_STATE_HIDDEN",
"_NET_WM_STATE_FULLSCREEN",
"_NET_WM_STATE_FOCUSED",
"_NET_WM_ALLOWED_ACTIONS",
"_NET_WM_ACTION_MOVE",
"_NET_WM_ACTION_RESIZE",
"_NET_WM_ACTION_MAXIMIZE_HORZ",
"_NET_WM_ACTION_MAXIMIZE_VERT",
"_NET_WM_ACTION_FULLSCREEN",
"_NET_WM_ACTION_CHANGE_DESKTOP",
"_NET_WM_ACTION_CLOSE",
"_NET_WM_PID",
"_NET_FRAME_EXTENTS",
};
// Open and initialise display. Exits the process on failure.
void display_open(void) {
LOG_ENTER("display_open()");
display.dpy = XOpenDisplay(option.display);
if (!display.dpy) {
LOG_ERROR("can't open display %s\n", option.display);
exit(1);
}
#ifdef INFOBANNER
display.info_window = None;
#endif
XSetErrorHandler(handle_xerror);
// While debugging, synchronous behaviour may be desirable:
//XSynchronize(display.dpy, True);
// Sanity check that there's a name for each atom in the enum:
assert(NUM_ATOMS == (sizeof(atom_list)/sizeof(atom_list[0])));
// Get or create all required atom IDs
for (int i = 0; i < NUM_ATOMS; i++) {
display.atom[i] = XInternAtom(display.dpy, atom_list[i], False);
}
#ifdef FONT
// Get the font used for window info
//https://wiki.archlinux.org/title/X_Logical_Font_Description is useful
display.font = XLoadQueryFont(display.dpy, option.font);
if (!display.font) {
LOG_DEBUG("failed to load specified font, trying default: %s\n", DEF_FONT);
display.font = XLoadQueryFont(display.dpy, DEF_FONT);
}
if (!display.font) {
LOG_DEBUG("failed to load specified font, trying fallback: *\n");
display.font = XLoadQueryFont(display.dpy, "*");
}
if (!display.font) {
LOG_ERROR("XLoadQueryFont couldn't find a font to use: try starting with --fn '<X Logical Font Description>'\n");
exit(1);
}
#ifdef DEBUG
Atom fontatom;
if (!XGetFontProperty(display.font, XA_FONT, &fontatom))
LOG_DEBUG("XGetFontProperty(display.font, XA_FONT) failed\n");
else {
char* fontname = XGetAtomName(display.dpy, fontatom);
LOG_DEBUG("Font name is %s\n", fontname);
XFree(fontname);
}
#endif
#endif
// Cursors used for different actions
display.move_curs = XCreateFontCursor(display.dpy, XC_fleur);
display.resize_curs = XCreateFontCursor(display.dpy, XC_plus);
display.disable_curs = XCreateFontCursor(display.dpy, XC_dot);
// Find out which modifier is NumLock - for every grab, we need to also
// grab the combination where this is set.
numlockmask = 0;
XModifierKeymap *modmap = XGetModifierMapping(display.dpy);
for (unsigned i = 0; i < 8; i++) {
for (unsigned j = 0; j < (unsigned)modmap->max_keypermod; j++) {
if (modmap->modifiermap[i*modmap->max_keypermod+j] == XKeysymToKeycode(display.dpy, XK_Num_Lock)) {
numlockmask = (1<<i);
LOG_DEBUG("XK_Num_Lock is (1<<0x%02x)\n", i);
}
}
}
XFreeModifiermap(modmap);
// SHAPE extension?
#ifdef SHAPE
{
int e_dummy;
display.have_shape = XShapeQueryExtension(display.dpy, &display.shape_event, &e_dummy);
}
#endif
// XRandR extension?
#ifdef RANDR
{
int e_dummy;
display.have_randr = XRRQueryExtension(display.dpy, &display.randr_event_base, &e_dummy);
if (!display.have_randr) {
LOG_DEBUG("XRandR is not supported on this display.\n");
}
}
#endif
// Initialise screens
display.nscreens = ScreenCount(display.dpy);
if (display.nscreens < 0) {
LOG_ERROR("Can't count screens\n");
exit(1);
}
display.screens = xmalloc(display.nscreens * sizeof(struct screen));
for (int i = 0; i < display.nscreens; i++) {
display.screens[i].screen = i;
screen_init(&display.screens[i]);
}
LOG_LEAVE();
}
// Close display. Unmanages all windows cleanly. While managing, windows will
// have been offset to account for borders, gravity, etc. This will undo those
// offsets so that repeatedly restarting window managers doesn't result in
// moved windows.
void display_close(void) {
XSetInputFocus(display.dpy, PointerRoot, RevertToPointerRoot, CurrentTime);
#ifdef FONT
if (display.font)
XFreeFont(display.dpy, display.font);
#endif
for (int i = 0; i < display.nscreens; i++) {
screen_deinit(&display.screens[i]);
#ifdef GC_INVERT
XFreeGC(display.dpy, display.screens[i].invert_gc);
#endif
XInstallColormap(display.dpy, DefaultColormap(display.dpy, i));
free(display.screens[i].display);
}
free(display.screens);
XCloseDisplay(display.dpy);
display.dpy = 0;
}
void display_manage_clients(void) {
for (int i = 0; i < display.nscreens; i++) {
struct screen *s = &display.screens[i];
LOG_XENTER("XQueryTree(screen=%d)", i);
unsigned nwins;
Window dw1, dw2, *wins;
XQueryTree(display.dpy, s->root, &dw1, &dw2, &wins, &nwins);
LOG_XDEBUG("%u windows\n", nwins);
LOG_XLEAVE();
// Manage all relevant windows
for (unsigned j = 0; j < nwins; j++) {
XWindowAttributes winattr;
XGetWindowAttributes(display.dpy, wins[j], &winattr);
// Override redirect implies a pop-up that we should ignore.
// If map_state is not IsViewable, it shouldn't be shown right
// now, so don't try to manage it.
if (!winattr.override_redirect && winattr.map_state == IsViewable)
client_manage_new(wins[j], s);
}
XFree(wins);
}
}
void display_unmanage_clients(void) {
while (clients_stacking_order)
client_remove(clients_stacking_order->data);
}