taglist: append area even if function fails
[awesome.git] / ewmh.c
blob54607342ff57e70d50dabab8c9ea1d2e5f7e34c9
1 /*
2 * ewmh.c - EWMH support functions
4 * Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include <sys/types.h>
23 #include <unistd.h>
25 #include <xcb/xcb.h>
26 #include <xcb/xcb_atom.h>
28 #include "ewmh.h"
29 #include "tag.h"
30 #include "screen.h"
31 #include "client.h"
32 #include "widget.h"
33 #include "cnode.h"
34 #include "titlebar.h"
35 #include "common/atoms.h"
37 extern awesome_t globalconf;
39 #define _NET_WM_STATE_REMOVE 0
40 #define _NET_WM_STATE_ADD 1
41 #define _NET_WM_STATE_TOGGLE 2
43 void
44 ewmh_init(int phys_screen)
46 xcb_window_t father;
47 xcb_screen_t *xscreen = xutil_screen_get(globalconf.connection, phys_screen);
48 xcb_atom_t atom[] =
50 _NET_SUPPORTED,
51 _NET_SUPPORTING_WM_CHECK,
52 _NET_CLIENT_LIST,
53 _NET_CLIENT_LIST_STACKING,
54 _NET_NUMBER_OF_DESKTOPS,
55 _NET_CURRENT_DESKTOP,
56 _NET_DESKTOP_NAMES,
57 _NET_ACTIVE_WINDOW,
58 _NET_WORKAREA,
59 _NET_CLOSE_WINDOW,
60 _NET_WM_NAME,
61 _NET_WM_ICON_NAME,
62 _NET_WM_VISIBLE_ICON_NAME,
63 _NET_WM_DESKTOP,
64 _NET_WM_WINDOW_TYPE,
65 _NET_WM_WINDOW_TYPE_NORMAL,
66 _NET_WM_WINDOW_TYPE_DESKTOP,
67 _NET_WM_WINDOW_TYPE_DOCK,
68 _NET_WM_WINDOW_TYPE_SPLASH,
69 _NET_WM_WINDOW_TYPE_DIALOG,
70 _NET_WM_ICON,
71 _NET_WM_PID,
72 _NET_WM_STATE,
73 _NET_WM_STATE_STICKY,
74 _NET_WM_STATE_SKIP_TASKBAR,
75 _NET_WM_STATE_FULLSCREEN,
76 _NET_WM_STATE_ABOVE,
77 _NET_WM_STATE_BELOW,
78 _NET_WM_STATE_MODAL,
79 _NET_WM_STATE_HIDDEN,
80 _NET_WM_STATE_DEMANDS_ATTENTION
82 int i;
84 xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
85 xscreen->root, _NET_SUPPORTED, ATOM, 32,
86 countof(atom), atom);
88 /* create our own window */
89 father = xcb_generate_id(globalconf.connection);
90 xcb_create_window(globalconf.connection, xscreen->root_depth,
91 father, xscreen->root, -1, -1, 1, 1, 0,
92 XCB_COPY_FROM_PARENT, xscreen->root_visual, 0, NULL);
94 xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
95 xscreen->root, _NET_SUPPORTING_WM_CHECK, WINDOW, 32,
96 1, &father);
98 xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
99 father, _NET_SUPPORTING_WM_CHECK, WINDOW, 32,
100 1, &father);
102 /* set the window manager name */
103 xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
104 father, _NET_WM_NAME, UTF8_STRING, 8, 7, "awesome");
106 /* set the window manager PID */
107 i = getpid();
108 xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
109 father, _NET_WM_PID, CARDINAL, 32, 1, &i);
112 void
113 ewmh_update_net_client_list(int phys_screen)
115 xcb_window_t *wins;
116 client_t *c;
117 int n = 0;
119 for(c = globalconf.clients; c; c = c->next)
120 n++;
122 wins = p_new(xcb_window_t, n);
124 for(n = 0, c = globalconf.clients; c; c = c->next, n++)
125 if(c->phys_screen == phys_screen)
126 wins[n] = c->win;
128 xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
129 xutil_screen_get(globalconf.connection, phys_screen)->root,
130 _NET_CLIENT_LIST, WINDOW, 32, n, wins);
132 p_delete(&wins);
135 /** Set the client list in stacking order, bottom to top.
136 * \param phys_screen The physical screen id.
138 void
139 ewmh_update_net_client_list_stacking(int phys_screen)
141 xcb_window_t *wins;
142 client_node_t *c;
143 int n = 0;
145 for(c = globalconf.stack; c; c = c->next)
146 n++;
148 wins = p_new(xcb_window_t, n);
150 for(n = 0, c = *client_node_list_last(&globalconf.stack); c; c = c->prev, n++)
151 if(c->client->phys_screen == phys_screen)
152 wins[n] = c->client->win;
154 xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
155 xutil_screen_get(globalconf.connection, phys_screen)->root,
156 _NET_CLIENT_LIST_STACKING, WINDOW, 32, n, wins);
158 p_delete(&wins);
161 void
162 ewmh_update_net_numbers_of_desktop(int phys_screen)
164 uint32_t count = globalconf.screens[phys_screen].tags.len;
166 xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
167 xutil_screen_get(globalconf.connection, phys_screen)->root,
168 _NET_NUMBER_OF_DESKTOPS, CARDINAL, 32, 1, &count);
171 void
172 ewmh_update_net_current_desktop(int phys_screen)
174 tag_array_t *tags = &globalconf.screens[phys_screen].tags;
175 uint32_t count = 0;
176 tag_t **curtags = tags_get_current(phys_screen);
178 while(count < (uint32_t) tags->len && tags->tab[count] != curtags[0])
179 count++;
181 xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
182 xutil_screen_get(globalconf.connection, phys_screen)->root,
183 _NET_CURRENT_DESKTOP, CARDINAL, 32, 1, &count);
185 p_delete(&curtags);
188 void
189 ewmh_update_net_desktop_names(int phys_screen)
191 tag_array_t *tags = &globalconf.screens[phys_screen].tags;
192 buffer_t buf;
194 buffer_inita(&buf, BUFSIZ);
196 for(int i = 0; i < tags->len; i++)
198 buffer_adds(&buf, tags->tab[i]->name);
199 buffer_addc(&buf, '\0');
202 xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
203 xutil_screen_get(globalconf.connection, phys_screen)->root,
204 _NET_DESKTOP_NAMES, UTF8_STRING, 8, buf.len, buf.s);
205 buffer_wipe(&buf);
208 /** Update the work area space for each physical screen and each desktop.
209 * \param phys_screen The physical screen id.
211 void
212 ewmh_update_workarea(int phys_screen)
214 tag_array_t *tags = &globalconf.screens[phys_screen].tags;
215 uint32_t *area = p_alloca(uint32_t, tags->len * 4);
216 area_t geom = screen_area_get(phys_screen,
217 globalconf.screens[phys_screen].statusbar,
218 &globalconf.screens[phys_screen].padding);
221 for(int i = 0; i < tags->len; i++)
223 area[4 * i + 0] = geom.x;
224 area[4 * i + 1] = geom.y;
225 area[4 * i + 2] = geom.width;
226 area[4 * i + 3] = geom.height;
229 xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
230 xutil_screen_get(globalconf.connection, phys_screen)->root,
231 _NET_WORKAREA, CARDINAL, 32, tags->len * 4, area);
234 void
235 ewmh_update_net_active_window(int phys_screen)
237 xcb_window_t win;
239 if(globalconf.screen_focus->client_focus
240 && globalconf.screen_focus->client_focus->phys_screen == phys_screen)
241 win = globalconf.screen_focus->client_focus->win;
242 else
243 win = XCB_NONE;
245 xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
246 xutil_screen_get(globalconf.connection, phys_screen)->root,
247 _NET_ACTIVE_WINDOW, WINDOW, 32, 1, &win);
250 static void
251 ewmh_process_state_atom(client_t *c, xcb_atom_t state, int set)
253 if(state == _NET_WM_STATE_STICKY)
255 tag_array_t *tags = &globalconf.screens[c->screen].tags;
256 for(int i = 0; i < tags->len; i++)
257 tag_client(c, tags->tab[i]);
259 else if(state == _NET_WM_STATE_SKIP_TASKBAR)
261 if(set == _NET_WM_STATE_REMOVE)
263 c->skiptb = false;
264 c->skip = false;
266 else if(set == _NET_WM_STATE_ADD)
268 c->skiptb = true;
269 c->skip = true;
272 else if(state == _NET_WM_STATE_FULLSCREEN)
274 area_t geometry = c->geometry;
275 if(set == _NET_WM_STATE_REMOVE)
277 /* restore geometry */
278 geometry = c->m_geometry;
279 /* restore borders and titlebar */
280 if(c->titlebar && c->titlebar->sw && (c->titlebar->position = c->titlebar->oldposition))
281 xcb_map_window(globalconf.connection, c->titlebar->sw->window);
282 c->noborder = false;
283 c->ismax = false;
284 client_setlayer(c, c->oldlayer);
285 client_setborder(c, c->oldborder);
286 client_setfloating(c, c->wasfloating);
288 else if(set == _NET_WM_STATE_ADD)
290 geometry = screen_area_get(c->screen, NULL, &globalconf.screens[c->screen].padding);
291 /* save geometry */
292 c->m_geometry = c->geometry;
293 c->wasfloating = c->isfloating;
294 /* disable titlebar and borders */
295 if(c->titlebar && c->titlebar->sw && (c->titlebar->oldposition = c->titlebar->position))
297 xcb_unmap_window(globalconf.connection, c->titlebar->sw->window);
298 c->titlebar->position = Off;
300 c->ismax = true;
301 c->oldborder = c->border;
302 client_setborder(c, 0);
303 c->noborder = true;
304 c->oldlayer = c->layer;
305 client_setlayer(c, LAYER_FULLSCREEN);
306 client_setfloating(c, true);
308 widget_invalidate_cache(c->screen, WIDGET_CACHE_CLIENTS);
309 client_resize(c, geometry, false);
311 else if(state == _NET_WM_STATE_ABOVE)
313 if(set == _NET_WM_STATE_REMOVE)
314 client_setlayer(c, c->oldlayer);
315 else if(set == _NET_WM_STATE_ADD)
317 c->oldlayer = c->layer;
318 client_setlayer(c, LAYER_ABOVE);
321 else if(state == _NET_WM_STATE_BELOW)
323 if(set == _NET_WM_STATE_REMOVE)
324 client_setlayer(c, c->oldlayer);
325 else if(set == _NET_WM_STATE_ADD)
327 c->oldlayer = c->layer;
328 client_setlayer(c, LAYER_BELOW);
331 else if(state == _NET_WM_STATE_MODAL)
333 if(set == _NET_WM_STATE_REMOVE)
334 client_setlayer(c, c->oldlayer);
335 else if(set == _NET_WM_STATE_ADD)
337 c->oldlayer = c->layer;
338 client_setlayer(c, LAYER_MODAL);
341 else if(state == _NET_WM_STATE_HIDDEN)
343 if(set == _NET_WM_STATE_REMOVE)
344 c->ishidden = false;
345 else if(set == _NET_WM_STATE_ADD)
346 c->ishidden = true;
347 globalconf.screens[c->screen].need_arrange = true;
349 else if(state == _NET_WM_STATE_DEMANDS_ATTENTION)
351 if(set == _NET_WM_STATE_REMOVE)
352 c->isurgent = false;
353 else if(set == _NET_WM_STATE_ADD)
355 c->isurgent = true;
356 /* execute hook */
357 luaA_client_userdata_new(globalconf.L, c);
358 luaA_dofunction(globalconf.L, globalconf.hooks.urgent, 1, 0);
359 widget_invalidate_cache(c->screen, WIDGET_CACHE_CLIENTS);
364 static void
365 ewmh_process_window_type_atom(client_t *c, xcb_atom_t state)
367 if(state == _NET_WM_WINDOW_TYPE_NORMAL)
369 /* do nothing. this is REALLY IMPORTANT */
371 else if(state == _NET_WM_WINDOW_TYPE_DOCK
372 || state == _NET_WM_WINDOW_TYPE_SPLASH)
374 c->skip = true;
375 c->isfixed = true;
376 if(c->titlebar && c->titlebar->position && c->titlebar->sw)
378 xcb_unmap_window(globalconf.connection, c->titlebar->sw->window);
379 c->titlebar->position = Off;
381 client_setborder(c, 0);
382 c->noborder = true;
383 client_setlayer(c, LAYER_ABOVE);
384 client_setfloating(c, true);
386 else if(state == _NET_WM_WINDOW_TYPE_DIALOG)
388 client_setlayer(c, LAYER_MODAL);
389 client_setfloating(c, true);
391 else if(state == _NET_WM_WINDOW_TYPE_DESKTOP)
393 tag_array_t *tags = &globalconf.screens[c->screen].tags;
394 c->noborder = true;
395 c->isfixed = true;
396 c->skip = true;
397 client_setlayer(c, LAYER_DESKTOP);
398 for(int i = 0; i < tags->len; i++)
399 tag_client(c, tags->tab[i]);
404 ewmh_process_client_message(xcb_client_message_event_t *ev)
406 client_t *c;
407 int screen;
409 if(ev->type == _NET_CURRENT_DESKTOP)
410 for(screen = 0;
411 screen < xcb_setup_roots_length(xcb_get_setup(globalconf.connection));
412 screen++)
414 if(ev->window == xutil_screen_get(globalconf.connection, screen)->root)
415 tag_view_only_byindex(screen, ev->data.data32[0]);
417 else if(ev->type == _NET_CLOSE_WINDOW)
419 if((c = client_getbywin(ev->window)))
420 client_kill(c);
422 else if(ev->type == _NET_WM_DESKTOP)
424 if((c = client_getbywin(ev->window)))
426 tag_array_t *tags = &globalconf.screens[c->screen].tags;
428 if(ev->data.data32[0] == 0xffffffff)
429 for(int i = 0; i < tags->len; i++)
430 tag_client(c, tags->tab[i]);
431 else
432 for(int i = 0; i < tags->len; i++)
433 if((int)ev->data.data32[0] == i)
434 tag_client(c, tags->tab[i]);
435 else
436 untag_client(c, tags->tab[i]);
439 else if(ev->type == _NET_WM_STATE)
441 if((c = client_getbywin(ev->window)))
443 ewmh_process_state_atom(c, (xcb_atom_t) ev->data.data32[1], ev->data.data32[0]);
444 if(ev->data.data32[2])
445 ewmh_process_state_atom(c, (xcb_atom_t) ev->data.data32[2],
446 ev->data.data32[0]);
450 return 0;
453 void
454 ewmh_check_client_hints(client_t *c)
456 xcb_atom_t *state;
457 void *data = NULL;
458 int desktop;
459 xcb_get_property_cookie_t c0, c1, c2;
460 xcb_get_property_reply_t *reply;
462 /* Send the GetProperty requests which will be processed later */
463 c0 = xcb_get_property_unchecked(globalconf.connection, false, c->win,
464 _NET_WM_DESKTOP, XCB_GET_PROPERTY_TYPE_ANY, 0, 1);
466 c1 = xcb_get_property_unchecked(globalconf.connection, false, c->win,
467 _NET_WM_STATE, ATOM, 0, UINT32_MAX);
469 c2 = xcb_get_property_unchecked(globalconf.connection, false, c->win,
470 _NET_WM_WINDOW_TYPE, ATOM, 0, UINT32_MAX);
472 reply = xcb_get_property_reply(globalconf.connection, c0, NULL);
473 if(reply && reply->value_len && (data = xcb_get_property_value(reply)))
475 tag_array_t *tags = &globalconf.screens[c->screen].tags;
477 desktop = *(uint32_t *) data;
478 if(desktop == -1)
479 for(int i = 0; i < tags->len; i++)
480 tag_client(c, tags->tab[i]);
481 else
482 for(int i = 0; i < tags->len; i++)
483 if(desktop == i)
484 tag_client(c, tags->tab[i]);
485 else
486 untag_client(c, tags->tab[i]);
489 p_delete(&reply);
491 reply = xcb_get_property_reply(globalconf.connection, c1, NULL);
492 if(reply && (data = xcb_get_property_value(reply)))
494 state = (xcb_atom_t *) data;
495 for(int i = 0; i < xcb_get_property_value_length(reply); i++)
496 ewmh_process_state_atom(c, state[i], _NET_WM_STATE_ADD);
499 p_delete(&reply);
501 reply = xcb_get_property_reply(globalconf.connection, c2, NULL);
502 if(reply && (data = xcb_get_property_value(reply)))
504 state = (xcb_atom_t *) data;
505 for(int i = 0; i < xcb_get_property_value_length(reply); i++)
506 ewmh_process_window_type_atom(c, state[i]);
509 p_delete(&reply);
512 /** Get NET_WM_ICON.
513 * \param w The window.
514 * \return A netwm_icon_t structure which must be deleted after usage.
516 netwm_icon_t *
517 ewmh_get_window_icon(xcb_window_t w)
519 double alpha;
520 netwm_icon_t *icon;
521 int size, i;
522 uint32_t *data;
523 unsigned char *imgdata;
524 xcb_get_property_reply_t *r;
526 r = xcb_get_property_reply(globalconf.connection,
527 xcb_get_property_unchecked(globalconf.connection, false, w,
528 _NET_WM_ICON, CARDINAL, 0, UINT32_MAX),
529 NULL);
530 if(!r || r->type != CARDINAL || r->format != 32 || r->length < 2 ||
531 !(data = (uint32_t *) xcb_get_property_value(r)))
533 p_delete(&r);
534 return NULL;
537 icon = p_new(netwm_icon_t, 1);
539 icon->width = data[0];
540 icon->height = data[1];
541 size = icon->width * icon->height;
543 if(!size)
545 p_delete(&icon);
546 p_delete(&r);
547 return NULL;
550 icon->image = p_new(unsigned char, size * 4);
551 for(imgdata = icon->image, i = 2; i < size + 2; i++, imgdata += 4)
553 imgdata[3] = (data[i] >> 24) & 0xff; /* A */
554 alpha = imgdata[3] / 255.0;
555 imgdata[2] = ((data[i] >> 16) & 0xff) * alpha; /* R */
556 imgdata[1] = ((data[i] >> 8) & 0xff) * alpha; /* G */
557 imgdata[0] = (data[i] & 0xff) * alpha; /* B */
560 p_delete(&r);
562 return icon;
566 * Restart awesome.
568 void
569 ewmh_restart(void)
571 client_t *c;
573 for(c = globalconf.clients; c; c = c->next)
574 client_unban(c);
576 xcb_aux_sync(globalconf.connection);
577 xcb_disconnect(globalconf.connection);
579 a_exec(globalconf.argv);
582 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80