-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathnetwm.c
387 lines (295 loc) · 9.96 KB
/
netwm.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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
/*
* ion/ioncore/netwm.c
*
* Copyright (c) Tuomo Valkonen 1999-2007.
*
* See the included file LICENSE for details.
*/
#include <X11/Xatom.h>
#include <X11/Xmd.h>
#include <libtu/util.h>
#include "common.h"
#include "global.h"
#include "fullscreen.h"
#include "clientwin.h"
#include "netwm.h"
#include "property.h"
#include "focus.h"
#include "xwindow.h"
#include "extlconv.h"
#include "group.h"
#include "activity.h"
/*{{{ Atoms */
static Atom atom_net_wm_name=0;
static Atom atom_net_wm_state=0;
static Atom atom_net_wm_state_fullscreen=0;
static Atom atom_net_wm_state_demands_attention=0;
static Atom atom_net_supporting_wm_check=0;
static Atom atom_net_virtual_roots=0;
static Atom atom_net_active_window=0;
static Atom atom_net_wm_allowed_actions=0;
static Atom atom_net_wm_moveresize=0;
static Atom atom_net_wm_window_type=0;
static Atom atom_net_wm_window_type_dialog=0;
static Atom atom_net_frame_extents=0;
#define N_NETWM 10
static Atom atom_net_supported=0;
#define SOURCE_UNKNOWN 0
#define SOURCE_APPLICATION 1
#define SOURCE_PAGER 2
/*}}}*/
/*{{{ Initialisation */
void netwm_init()
{
atom_net_wm_name=XInternAtom(ioncore_g.dpy, "_NET_WM_NAME", False);
atom_net_wm_state=XInternAtom(ioncore_g.dpy, "_NET_WM_STATE", False);
atom_net_wm_state_fullscreen=XInternAtom(ioncore_g.dpy, "_NET_WM_STATE_FULLSCREEN", False);
atom_net_wm_state_demands_attention=XInternAtom(ioncore_g.dpy, "_NET_WM_STATE_DEMANDS_ATTENTION", False);
atom_net_supported=XInternAtom(ioncore_g.dpy, "_NET_SUPPORTED", False);
atom_net_supporting_wm_check=XInternAtom(ioncore_g.dpy, "_NET_SUPPORTING_WM_CHECK", False);
atom_net_virtual_roots=XInternAtom(ioncore_g.dpy, "_NET_VIRTUAL_ROOTS", False);
atom_net_active_window=XInternAtom(ioncore_g.dpy, "_NET_ACTIVE_WINDOW", False);
atom_net_wm_allowed_actions=XInternAtom(ioncore_g.dpy, "_NET_WM_ALLOWED_ACTIONS", False);
atom_net_wm_moveresize=XInternAtom(ioncore_g.dpy, "_NET_WM_MOVERESIZE", False);
atom_net_wm_window_type=XInternAtom(ioncore_g.dpy, "_NET_WM_WINDOW_TYPE", False);
atom_net_wm_window_type_dialog=XInternAtom(ioncore_g.dpy, "_NET_WM_WINDOW_TYPE_DIALOG", False);
atom_net_frame_extents=XInternAtom(ioncore_g.dpy, "_NET_FRAME_EXTENTS", False);
}
void netwm_init_rootwin(WRootWin *rw)
{
Atom atoms[N_NETWM];
const char *p[1];
atoms[0]=atom_net_wm_name;
atoms[1]=atom_net_wm_state;
atoms[2]=atom_net_wm_state_fullscreen;
atoms[3]=atom_net_wm_state_demands_attention;
atoms[4]=atom_net_supporting_wm_check;
atoms[5]=atom_net_virtual_roots;
atoms[6]=atom_net_active_window;
atoms[7]=atom_net_wm_allowed_actions;
atoms[8]=atom_net_wm_moveresize;
atoms[9]=atom_net_frame_extents;
XChangeProperty(ioncore_g.dpy, WROOTWIN_ROOT(rw),
atom_net_supporting_wm_check, XA_WINDOW,
32, PropModeReplace, (uchar*)&(rw->dummy_win), 1);
XChangeProperty(ioncore_g.dpy, rw->dummy_win,
atom_net_supporting_wm_check, XA_WINDOW,
32, PropModeReplace, (uchar*)&(rw->dummy_win), 1);
XChangeProperty(ioncore_g.dpy, WROOTWIN_ROOT(rw),
atom_net_supported, XA_ATOM,
32, PropModeReplace, (uchar*)atoms, N_NETWM);
p[0]=libtu_progbasename();
/**
* Unfortunately we cannot determine the charset of libtu_progbasename()
* so we'll just have to guess it makes sense in the current locale charset
*/
xwindow_set_utf8_property(rw->dummy_win, atom_net_wm_name, p, 1);
}
void netwm_set_frame_extents(WClientWin* cwin, int left, int right, int top, int bottom) {
unsigned long data[4];
data[0] = left;
data[1] = right;
data[2] = top;
data[3] = bottom;
XChangeProperty(ioncore_g.dpy, cwin->win, atom_net_frame_extents,
XA_CARDINAL, 32, PropModeReplace, (uchar*)data, 4);
}
/*}}}*/
/*{{{ _NET_WM_STATE */
bool netwm_check_initial_fullscreen(WClientWin *cwin)
{
int i, n;
long *data;
n=xwindow_get_property(cwin->win, atom_net_wm_state, XA_ATOM,
1, TRUE, (uchar**)&data);
if(n<0)
return FALSE;
for(i=0; i<n; i++){
if(data[i]==(long)atom_net_wm_state_fullscreen)
return TRUE;
}
XFree((void*)data);
return FALSE;
}
/*EXTL_DOC
* refresh \_NET\_WM\_STATE markers for this window
*/
EXTL_SAFE
EXTL_EXPORT
void ioncore_update_net_state(WClientWin *cwin)
{
netwm_update_state(cwin);
}
void netwm_update_state(WClientWin *cwin)
{
CARD32 data[2];
int n=0;
if(REGION_IS_FULLSCREEN(cwin))
data[n++]=atom_net_wm_state_fullscreen;
if(region_is_activity_r(&(cwin->region)))
data[n++]=atom_net_wm_state_demands_attention;
XChangeProperty(ioncore_g.dpy, cwin->win, atom_net_wm_state,
XA_ATOM, 32, PropModeReplace, (uchar*)data, n);
}
void netwm_update_allowed_actions(WClientWin *cwin)
{
CARD32 data[1];
int n=0;
/* TODO add support for 'resize' and list it here */
/* TODO add support for 'minimize' and list it here */
/* TODO add support for 'maximize_horz' and list it here */
/* TODO add support for 'maximize_vert' and list it here */
/* TODO add support for 'fullscreen' and list it here */
/* TODO add support for 'change desktop' and list it here */
/* TODO add support for 'close' and list it here */
/* TODO add support for 'above' and list it here */
/* TODO add support for 'below' and list it here */
XChangeProperty(ioncore_g.dpy, cwin->win, atom_net_wm_allowed_actions,
XA_ATOM, 32, PropModeReplace, (uchar*)data, n);
}
void netwm_delete_state(WClientWin *cwin)
{
XDeleteProperty(ioncore_g.dpy, cwin->win, atom_net_wm_state);
}
static void netwm_state_change_rq(WClientWin *cwin,
const XClientMessageEvent *ev)
{
if((ev->data.l[1]==0 ||
ev->data.l[1]!=(long)atom_net_wm_state_fullscreen) &&
(ev->data.l[2]==0 ||
ev->data.l[2]!=(long)atom_net_wm_state_fullscreen)){
return;
}
/* Ok, full screen add/remove/toggle */
if(!REGION_IS_FULLSCREEN(cwin)){
if(ev->data.l[0]==_NET_WM_STATE_ADD ||
ev->data.l[0]==_NET_WM_STATE_TOGGLE){
WRegion *grp=region_groupleader_of((WRegion*)cwin);
bool sw=clientwin_fullscreen_may_switchto(cwin);
cwin->flags|=CLIENTWIN_FS_RQ;
if(!region_enter_fullscreen(grp, sw))
cwin->flags&=~CLIENTWIN_FS_RQ;
}else{
/* Should not be set.. */
cwin->flags&=~CLIENTWIN_FS_RQ;
}
}else{
if(ev->data.l[0]==_NET_WM_STATE_REMOVE ||
ev->data.l[0]==_NET_WM_STATE_TOGGLE){
WRegion *grp=region_groupleader_of((WRegion*)cwin);
bool sw=clientwin_fullscreen_may_switchto(cwin);
cwin->flags&=~CLIENTWIN_FS_RQ;
region_leave_fullscreen(grp, sw);
}else{
/* Set the flag */
cwin->flags|=CLIENTWIN_FS_RQ;
}
}
}
/*}}}*/
/*{{{ _NET_ACTIVE_WINDOW */
void netwm_set_active(WRegion *reg)
{
CARD32 data[1]={None};
if(OBJ_IS(reg, WClientWin))
data[0]=region_xwindow(reg);
/* The spec doesn't say how multihead should be handled, so
* we just update the root window the window is on.
*/
XChangeProperty(ioncore_g.dpy, region_root_of(reg),
atom_net_active_window, XA_WINDOW,
32, PropModeReplace, (uchar*)data, 1);
}
static void netwm_active_window_rq(WClientWin *cwin,
const XClientMessageEvent *ev)
{
long source=ev->data.l[0];
/**
* By default we ignore non-pager activity requests, as they're known to
* steal focus from newly-created windows :(
*/
bool ignore=source!=SOURCE_PAGER;
extl_table_gets_b(cwin->proptab, "ignore_net_active_window", &ignore);
if(!ignore)
region_goto((WRegion*)cwin);
}
/*}}}*/
/*{{{ _NET_WM_NAME */
char **netwm_get_name(WClientWin *cwin)
{
return xwindow_get_text_property(cwin->win, atom_net_wm_name, NULL);
}
/*}}}*/
/*{{{ _NET_WM_WINDOW_TYPE */
Atom netwm_window_type(WClientWin *cwin)
{
Atom p;
if(xwindow_get_atom_property(cwin->win, atom_net_wm_window_type, &p)){
return p;
}
return None;
}
/*}}}*/
Atom netwm_window_type_get_atom_dialog(void)
{
return atom_net_wm_window_type_dialog;
}
/*{{{ netwm_handle_client_message */
void netwm_handle_client_message(const XClientMessageEvent *ev)
{
/* Check _NET_WM_STATE fullscreen request */
if(ev->message_type==atom_net_wm_state && ev->format==32){
WClientWin *cwin=XWINDOW_REGION_OF_T(ev->window, WClientWin);
if(cwin!=NULL)
netwm_state_change_rq(cwin, ev);
}
/* Check _NET_ACTIVE_WINDOW request */
else if(ev->message_type==atom_net_active_window && ev->format==32){
WClientWin *cwin=XWINDOW_REGION_OF_T(ev->window, WClientWin);
if(cwin!=NULL)
netwm_active_window_rq(cwin, ev);
}
}
/*}}}*/
/*{{{ netwm_handle_property */
bool netwm_handle_property(WClientWin *cwin, const XPropertyEvent *ev)
{
if(ev->atom!=atom_net_wm_name)
return FALSE;
clientwin_get_set_name(cwin);
return TRUE;
}
/*}}}*/
/*{{{ _NET_WM_VIRTUAL_ROOTS */
int count_screens()
{
int result = 0;
WScreen *scr;
FOR_ALL_SCREENS(scr){
result++;
}
return result;
}
/*EXTL_DOC
* refresh \_NET\_WM\_VIRTUAL\_ROOTS
*/
EXTL_SAFE
EXTL_EXPORT
void ioncore_screens_updated(WRootWin *rw)
{
int current_screen = 0;
int n_screens;
long *virtualroots;
WScreen *scr;
n_screens = count_screens();
virtualroots = (long*)malloc(n_screens * sizeof(long));
FOR_ALL_SCREENS(scr){
virtualroots[current_screen] = region_xwindow((WRegion *)scr);
current_screen++;
}
XChangeProperty(ioncore_g.dpy, WROOTWIN_ROOT(rw),
atom_net_virtual_roots, XA_WINDOW,
32, PropModeReplace, (uchar*)virtualroots, n_screens);
free(virtualroots);
}
/*}}}*/