2007-12-27 17:27:20 +01:00
|
|
|
/*
|
|
|
|
* ewmh.c - EWMH support functions
|
|
|
|
*
|
2008-01-02 16:59:43 +01:00
|
|
|
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
|
2007-12-27 17:27:20 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2008-06-18 08:55:31 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
#include <xcb/xcb.h>
|
|
|
|
#include <xcb/xcb_atom.h>
|
2007-12-27 17:27:20 +01:00
|
|
|
|
|
|
|
#include "ewmh.h"
|
2008-06-09 21:43:09 +02:00
|
|
|
#include "tag.h"
|
2007-12-28 18:31:31 +01:00
|
|
|
#include "screen.h"
|
2008-01-01 17:25:48 +01:00
|
|
|
#include "client.h"
|
2008-01-07 18:12:38 +01:00
|
|
|
#include "widget.h"
|
2008-06-17 21:47:57 +02:00
|
|
|
#include "cnode.h"
|
2008-04-24 22:58:25 +02:00
|
|
|
#include "titlebar.h"
|
2008-09-03 22:15:14 +02:00
|
|
|
#include "statusbar.h"
|
2008-06-30 18:25:01 +02:00
|
|
|
#include "common/atoms.h"
|
2007-12-27 17:27:20 +01:00
|
|
|
|
2008-05-24 08:59:27 +02:00
|
|
|
extern awesome_t globalconf;
|
2007-12-27 17:27:20 +01:00
|
|
|
|
2007-12-28 18:31:31 +01:00
|
|
|
#define _NET_WM_STATE_REMOVE 0
|
|
|
|
#define _NET_WM_STATE_ADD 1
|
|
|
|
#define _NET_WM_STATE_TOGGLE 2
|
|
|
|
|
2007-12-27 17:27:20 +01:00
|
|
|
void
|
2008-06-30 18:25:01 +02:00
|
|
|
ewmh_init(int phys_screen)
|
2007-12-27 17:27:20 +01:00
|
|
|
{
|
2008-06-17 21:25:23 +02:00
|
|
|
xcb_window_t father;
|
|
|
|
xcb_screen_t *xscreen = xutil_screen_get(globalconf.connection, phys_screen);
|
2008-06-30 18:25:01 +02:00
|
|
|
xcb_atom_t atom[] =
|
|
|
|
{
|
2008-06-30 18:55:14 +02:00
|
|
|
_NET_SUPPORTED,
|
|
|
|
_NET_SUPPORTING_WM_CHECK,
|
|
|
|
_NET_CLIENT_LIST,
|
|
|
|
_NET_CLIENT_LIST_STACKING,
|
|
|
|
_NET_NUMBER_OF_DESKTOPS,
|
|
|
|
_NET_CURRENT_DESKTOP,
|
|
|
|
_NET_DESKTOP_NAMES,
|
|
|
|
_NET_ACTIVE_WINDOW,
|
|
|
|
_NET_WORKAREA,
|
|
|
|
_NET_CLOSE_WINDOW,
|
|
|
|
_NET_WM_NAME,
|
2008-09-03 22:15:14 +02:00
|
|
|
_NET_WM_STRUT_PARTIAL,
|
2008-06-30 18:55:14 +02:00
|
|
|
_NET_WM_ICON_NAME,
|
|
|
|
_NET_WM_VISIBLE_ICON_NAME,
|
|
|
|
_NET_WM_DESKTOP,
|
|
|
|
_NET_WM_WINDOW_TYPE,
|
|
|
|
_NET_WM_WINDOW_TYPE_NORMAL,
|
|
|
|
_NET_WM_WINDOW_TYPE_DESKTOP,
|
|
|
|
_NET_WM_WINDOW_TYPE_DOCK,
|
|
|
|
_NET_WM_WINDOW_TYPE_SPLASH,
|
|
|
|
_NET_WM_WINDOW_TYPE_DIALOG,
|
|
|
|
_NET_WM_ICON,
|
|
|
|
_NET_WM_PID,
|
|
|
|
_NET_WM_STATE,
|
|
|
|
_NET_WM_STATE_STICKY,
|
|
|
|
_NET_WM_STATE_SKIP_TASKBAR,
|
|
|
|
_NET_WM_STATE_FULLSCREEN,
|
|
|
|
_NET_WM_STATE_ABOVE,
|
|
|
|
_NET_WM_STATE_BELOW,
|
|
|
|
_NET_WM_STATE_MODAL,
|
|
|
|
_NET_WM_STATE_HIDDEN,
|
|
|
|
_NET_WM_STATE_DEMANDS_ATTENTION
|
2008-06-30 18:25:01 +02:00
|
|
|
};
|
|
|
|
int i;
|
2007-12-27 17:27:20 +01:00
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
|
2008-06-30 18:55:14 +02:00
|
|
|
xscreen->root, _NET_SUPPORTED, ATOM, 32,
|
2008-06-30 18:25:01 +02:00
|
|
|
countof(atom), atom);
|
2008-06-17 21:25:23 +02:00
|
|
|
|
|
|
|
/* create our own window */
|
|
|
|
father = xcb_generate_id(globalconf.connection);
|
|
|
|
xcb_create_window(globalconf.connection, xscreen->root_depth,
|
|
|
|
father, xscreen->root, -1, -1, 1, 1, 0,
|
|
|
|
XCB_COPY_FROM_PARENT, xscreen->root_visual, 0, NULL);
|
|
|
|
|
|
|
|
xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
|
2008-06-30 18:55:14 +02:00
|
|
|
xscreen->root, _NET_SUPPORTING_WM_CHECK, WINDOW, 32,
|
2008-06-17 22:12:30 +02:00
|
|
|
1, &father);
|
2008-06-17 21:25:23 +02:00
|
|
|
|
|
|
|
xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
|
2008-06-30 18:55:14 +02:00
|
|
|
father, _NET_SUPPORTING_WM_CHECK, WINDOW, 32,
|
2008-06-17 22:12:30 +02:00
|
|
|
1, &father);
|
2008-06-17 22:47:31 +02:00
|
|
|
|
2008-06-18 08:55:31 +02:00
|
|
|
/* set the window manager name */
|
2008-06-17 22:47:31 +02:00
|
|
|
xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
|
2008-06-30 18:55:14 +02:00
|
|
|
father, _NET_WM_NAME, UTF8_STRING, 8, 7, "awesome");
|
2008-06-18 08:55:31 +02:00
|
|
|
|
|
|
|
/* set the window manager PID */
|
|
|
|
i = getpid();
|
|
|
|
xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
|
2008-06-30 18:55:14 +02:00
|
|
|
father, _NET_WM_PID, CARDINAL, 32, 1, &i);
|
2007-12-27 17:27:20 +01:00
|
|
|
}
|
|
|
|
|
2007-12-27 18:01:36 +01:00
|
|
|
void
|
|
|
|
ewmh_update_net_client_list(int phys_screen)
|
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_window_t *wins;
|
2008-04-11 11:35:11 +02:00
|
|
|
client_t *c;
|
2007-12-27 18:01:36 +01:00
|
|
|
int n = 0;
|
|
|
|
|
|
|
|
for(c = globalconf.clients; c; c = c->next)
|
2008-02-25 13:19:39 +01:00
|
|
|
n++;
|
2007-12-27 18:01:36 +01:00
|
|
|
|
2008-09-05 02:40:31 +02:00
|
|
|
wins = p_alloca(xcb_window_t, n);
|
2007-12-27 18:01:36 +01:00
|
|
|
|
|
|
|
for(n = 0, c = globalconf.clients; c; c = c->next, n++)
|
2008-03-21 10:53:17 +01:00
|
|
|
if(c->phys_screen == phys_screen)
|
2007-12-27 18:01:36 +01:00
|
|
|
wins[n] = c->win;
|
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
|
2008-06-17 16:55:24 +02:00
|
|
|
xutil_screen_get(globalconf.connection, phys_screen)->root,
|
2008-06-30 18:55:14 +02:00
|
|
|
_NET_CLIENT_LIST, WINDOW, 32, n, wins);
|
2007-12-27 18:01:36 +01:00
|
|
|
}
|
2007-12-27 17:27:20 +01:00
|
|
|
|
2008-06-17 21:47:57 +02:00
|
|
|
/** Set the client list in stacking order, bottom to top.
|
|
|
|
* \param phys_screen The physical screen id.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
ewmh_update_net_client_list_stacking(int phys_screen)
|
|
|
|
{
|
|
|
|
xcb_window_t *wins;
|
|
|
|
client_node_t *c;
|
|
|
|
int n = 0;
|
|
|
|
|
|
|
|
for(c = globalconf.stack; c; c = c->next)
|
|
|
|
n++;
|
|
|
|
|
2008-09-05 02:40:31 +02:00
|
|
|
wins = p_alloca(xcb_window_t, n);
|
2008-06-17 21:47:57 +02:00
|
|
|
|
|
|
|
for(n = 0, c = *client_node_list_last(&globalconf.stack); c; c = c->prev, n++)
|
|
|
|
if(c->client->phys_screen == phys_screen)
|
|
|
|
wins[n] = c->client->win;
|
|
|
|
|
|
|
|
xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
|
|
|
|
xutil_screen_get(globalconf.connection, phys_screen)->root,
|
2008-06-30 18:55:14 +02:00
|
|
|
_NET_CLIENT_LIST_STACKING, WINDOW, 32, n, wins);
|
2008-06-17 21:47:57 +02:00
|
|
|
}
|
|
|
|
|
2007-12-27 18:18:12 +01:00
|
|
|
void
|
|
|
|
ewmh_update_net_numbers_of_desktop(int phys_screen)
|
|
|
|
{
|
2008-06-23 17:37:19 +02:00
|
|
|
uint32_t count = globalconf.screens[phys_screen].tags.len;
|
2007-12-27 18:18:12 +01:00
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
|
2008-06-17 16:55:24 +02:00
|
|
|
xutil_screen_get(globalconf.connection, phys_screen)->root,
|
2008-06-30 18:55:14 +02:00
|
|
|
_NET_NUMBER_OF_DESKTOPS, CARDINAL, 32, 1, &count);
|
2007-12-27 18:18:12 +01:00
|
|
|
}
|
|
|
|
|
2007-12-27 18:42:20 +01:00
|
|
|
void
|
|
|
|
ewmh_update_net_current_desktop(int phys_screen)
|
|
|
|
{
|
2008-06-23 17:37:19 +02:00
|
|
|
tag_array_t *tags = &globalconf.screens[phys_screen].tags;
|
2008-03-21 16:50:17 +01:00
|
|
|
uint32_t count = 0;
|
2008-06-23 17:37:19 +02:00
|
|
|
tag_t **curtags = tags_get_current(phys_screen);
|
2007-12-27 18:42:20 +01:00
|
|
|
|
2008-08-07 16:23:43 +02:00
|
|
|
while(count < (uint32_t) tags->len && tags->tab[count] != curtags[0])
|
|
|
|
count++;
|
2007-12-27 18:42:20 +01:00
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
|
2008-06-17 16:55:24 +02:00
|
|
|
xutil_screen_get(globalconf.connection, phys_screen)->root,
|
2008-06-30 18:55:14 +02:00
|
|
|
_NET_CURRENT_DESKTOP, CARDINAL, 32, 1, &count);
|
2008-06-09 21:43:09 +02:00
|
|
|
|
|
|
|
p_delete(&curtags);
|
2007-12-27 18:42:20 +01:00
|
|
|
}
|
|
|
|
|
2007-12-27 19:11:18 +01:00
|
|
|
void
|
|
|
|
ewmh_update_net_desktop_names(int phys_screen)
|
|
|
|
{
|
2008-06-23 17:37:19 +02:00
|
|
|
tag_array_t *tags = &globalconf.screens[phys_screen].tags;
|
|
|
|
buffer_t buf;
|
2007-12-27 19:11:18 +01:00
|
|
|
|
2008-06-23 17:37:19 +02:00
|
|
|
buffer_inita(&buf, BUFSIZ);
|
|
|
|
|
|
|
|
for(int i = 0; i < tags->len; i++)
|
2007-12-27 19:11:18 +01:00
|
|
|
{
|
2008-06-23 17:37:19 +02:00
|
|
|
buffer_adds(&buf, tags->tab[i]->name);
|
|
|
|
buffer_addc(&buf, '\0');
|
2007-12-27 19:11:18 +01:00
|
|
|
}
|
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
|
2008-06-17 16:55:24 +02:00
|
|
|
xutil_screen_get(globalconf.connection, phys_screen)->root,
|
2008-06-30 18:55:14 +02:00
|
|
|
_NET_DESKTOP_NAMES, UTF8_STRING, 8, buf.len, buf.s);
|
2008-06-23 17:37:19 +02:00
|
|
|
buffer_wipe(&buf);
|
2007-12-27 19:33:01 +01:00
|
|
|
}
|
|
|
|
|
2008-06-17 22:12:30 +02:00
|
|
|
/** Update the work area space for each physical screen and each desktop.
|
|
|
|
* \param phys_screen The physical screen id.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
ewmh_update_workarea(int phys_screen)
|
|
|
|
{
|
2008-06-23 17:37:19 +02:00
|
|
|
tag_array_t *tags = &globalconf.screens[phys_screen].tags;
|
|
|
|
uint32_t *area = p_alloca(uint32_t, tags->len * 4);
|
2008-09-03 22:15:14 +02:00
|
|
|
area_t geom = screen_area_get(phys_screen,
|
2008-06-17 22:12:30 +02:00
|
|
|
globalconf.screens[phys_screen].statusbar,
|
2008-09-03 22:15:14 +02:00
|
|
|
&globalconf.screens[phys_screen].padding,
|
|
|
|
true);
|
2008-06-17 22:12:30 +02:00
|
|
|
|
|
|
|
|
2008-06-23 17:37:19 +02:00
|
|
|
for(int i = 0; i < tags->len; i++)
|
2008-06-17 22:12:30 +02:00
|
|
|
{
|
2008-06-23 17:37:19 +02:00
|
|
|
area[4 * i + 0] = geom.x;
|
|
|
|
area[4 * i + 1] = geom.y;
|
|
|
|
area[4 * i + 2] = geom.width;
|
|
|
|
area[4 * i + 3] = geom.height;
|
2008-06-17 22:12:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
|
|
|
|
xutil_screen_get(globalconf.connection, phys_screen)->root,
|
2008-06-30 18:55:14 +02:00
|
|
|
_NET_WORKAREA, CARDINAL, 32, tags->len * 4, area);
|
2008-06-17 22:12:30 +02:00
|
|
|
}
|
|
|
|
|
2007-12-27 19:33:01 +01:00
|
|
|
void
|
|
|
|
ewmh_update_net_active_window(int phys_screen)
|
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_window_t win;
|
2007-12-27 19:33:01 +01:00
|
|
|
|
2008-07-31 15:51:28 +02:00
|
|
|
if(globalconf.screen_focus->client_focus
|
|
|
|
&& globalconf.screen_focus->client_focus->phys_screen == phys_screen)
|
|
|
|
win = globalconf.screen_focus->client_focus->win;
|
|
|
|
else
|
|
|
|
win = XCB_NONE;
|
2007-12-27 19:33:01 +01:00
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
|
2008-06-17 16:55:24 +02:00
|
|
|
xutil_screen_get(globalconf.connection, phys_screen)->root,
|
2008-06-30 18:55:14 +02:00
|
|
|
_NET_ACTIVE_WINDOW, WINDOW, 32, 1, &win);
|
2007-12-27 19:11:18 +01:00
|
|
|
}
|
|
|
|
|
2007-12-27 22:39:29 +01:00
|
|
|
static void
|
2008-04-11 11:35:11 +02:00
|
|
|
ewmh_process_state_atom(client_t *c, xcb_atom_t state, int set)
|
2007-12-27 22:39:29 +01:00
|
|
|
{
|
2008-06-30 18:55:14 +02:00
|
|
|
if(state == _NET_WM_STATE_STICKY)
|
2007-12-27 22:39:29 +01:00
|
|
|
{
|
2008-08-21 16:29:53 +02:00
|
|
|
if(set == _NET_WM_STATE_REMOVE)
|
|
|
|
client_setsticky(c, false);
|
|
|
|
else if(set == _NET_WM_STATE_ADD)
|
|
|
|
client_setsticky(c, true);
|
2008-09-18 09:44:51 +02:00
|
|
|
else if(set == _NET_WM_STATE_TOGGLE)
|
|
|
|
client_setsticky(c, !c->issticky);
|
2007-12-27 22:39:29 +01:00
|
|
|
}
|
2008-06-30 18:55:14 +02:00
|
|
|
else if(state == _NET_WM_STATE_SKIP_TASKBAR)
|
2008-01-03 13:15:15 +01:00
|
|
|
{
|
|
|
|
if(set == _NET_WM_STATE_REMOVE)
|
2008-03-21 16:50:17 +01:00
|
|
|
c->skiptb = false;
|
2008-01-03 13:15:15 +01:00
|
|
|
else if(set == _NET_WM_STATE_ADD)
|
2008-03-21 16:50:17 +01:00
|
|
|
c->skiptb = true;
|
2008-09-18 09:44:51 +02:00
|
|
|
else if(set == _NET_WM_STATE_TOGGLE)
|
|
|
|
c->skiptb = !c->skiptb;
|
2008-01-03 13:15:15 +01:00
|
|
|
}
|
2008-06-30 18:55:14 +02:00
|
|
|
else if(state == _NET_WM_STATE_FULLSCREEN)
|
2007-12-28 18:31:31 +01:00
|
|
|
{
|
|
|
|
if(set == _NET_WM_STATE_REMOVE)
|
2008-08-21 17:52:44 +02:00
|
|
|
client_setfullscreen(c, false);
|
2008-01-06 14:40:23 +01:00
|
|
|
else if(set == _NET_WM_STATE_ADD)
|
2008-08-21 17:52:44 +02:00
|
|
|
client_setfullscreen(c, true);
|
2008-09-18 09:44:51 +02:00
|
|
|
else if(set == _NET_WM_STATE_TOGGLE)
|
|
|
|
client_setfullscreen(c, !c->isfullscreen);
|
2007-12-28 18:31:31 +01:00
|
|
|
}
|
2008-06-30 18:55:14 +02:00
|
|
|
else if(state == _NET_WM_STATE_ABOVE)
|
2008-04-08 19:52:59 +02:00
|
|
|
{
|
|
|
|
if(set == _NET_WM_STATE_REMOVE)
|
2008-08-21 17:52:44 +02:00
|
|
|
client_setabove(c, false);
|
2008-04-08 19:52:59 +02:00
|
|
|
else if(set == _NET_WM_STATE_ADD)
|
2008-08-21 17:52:44 +02:00
|
|
|
client_setabove(c, true);
|
2008-09-18 09:44:51 +02:00
|
|
|
else if(set == _NET_WM_STATE_TOGGLE)
|
|
|
|
client_setabove(c, !c->isabove);
|
2008-04-08 19:52:59 +02:00
|
|
|
}
|
2008-06-30 18:55:14 +02:00
|
|
|
else if(state == _NET_WM_STATE_BELOW)
|
2008-04-08 19:52:59 +02:00
|
|
|
{
|
|
|
|
if(set == _NET_WM_STATE_REMOVE)
|
2008-08-21 17:52:44 +02:00
|
|
|
client_setbelow(c, false);
|
2008-04-08 19:52:59 +02:00
|
|
|
else if(set == _NET_WM_STATE_ADD)
|
2008-08-21 17:52:44 +02:00
|
|
|
client_setbelow(c, true);
|
2008-09-18 09:44:51 +02:00
|
|
|
else if(set == _NET_WM_STATE_TOGGLE)
|
|
|
|
client_setbelow(c, !c->isbelow);
|
2008-04-08 19:52:59 +02:00
|
|
|
}
|
2008-06-30 18:55:14 +02:00
|
|
|
else if(state == _NET_WM_STATE_MODAL)
|
2008-06-13 14:41:10 +02:00
|
|
|
{
|
|
|
|
if(set == _NET_WM_STATE_REMOVE)
|
2008-08-21 17:52:44 +02:00
|
|
|
client_setmodal(c, false);
|
2008-06-13 14:41:10 +02:00
|
|
|
else if(set == _NET_WM_STATE_ADD)
|
2008-08-21 17:52:44 +02:00
|
|
|
client_setmodal(c, true);
|
2008-09-18 09:44:51 +02:00
|
|
|
else if(set == _NET_WM_STATE_TOGGLE)
|
|
|
|
client_setmodal(c, !c->ismodal);
|
2008-06-13 14:41:10 +02:00
|
|
|
}
|
2008-06-30 18:55:14 +02:00
|
|
|
else if(state == _NET_WM_STATE_HIDDEN)
|
2008-06-13 17:33:59 +02:00
|
|
|
{
|
|
|
|
if(set == _NET_WM_STATE_REMOVE)
|
2008-08-21 15:36:54 +02:00
|
|
|
{
|
|
|
|
client_need_arrange(c);
|
2008-09-06 13:52:05 +02:00
|
|
|
c->isminimized = false;
|
|
|
|
client_need_arrange(c);
|
2008-08-21 15:36:54 +02:00
|
|
|
}
|
2008-06-13 17:33:59 +02:00
|
|
|
else if(set == _NET_WM_STATE_ADD)
|
2008-08-21 15:36:54 +02:00
|
|
|
{
|
|
|
|
client_need_arrange(c);
|
2008-09-06 13:52:05 +02:00
|
|
|
c->isminimized = true;
|
|
|
|
client_need_arrange(c);
|
2008-08-21 15:36:54 +02:00
|
|
|
}
|
2008-09-18 09:44:51 +02:00
|
|
|
else if(set == _NET_WM_STATE_TOGGLE)
|
|
|
|
{
|
|
|
|
client_need_arrange(c);
|
|
|
|
c->isminimized = !c->isminimized;
|
|
|
|
client_need_arrange(c);
|
|
|
|
}
|
2008-06-13 17:33:59 +02:00
|
|
|
}
|
2008-06-30 18:55:14 +02:00
|
|
|
else if(state == _NET_WM_STATE_DEMANDS_ATTENTION)
|
2008-06-17 22:57:54 +02:00
|
|
|
{
|
|
|
|
if(set == _NET_WM_STATE_REMOVE)
|
|
|
|
c->isurgent = false;
|
|
|
|
else if(set == _NET_WM_STATE_ADD)
|
|
|
|
c->isurgent = true;
|
2008-09-18 09:44:51 +02:00
|
|
|
else if(set == _NET_WM_STATE_TOGGLE)
|
|
|
|
c->isurgent = !c->isurgent;
|
2008-09-11 17:01:52 +02:00
|
|
|
|
|
|
|
/* execute hook */
|
|
|
|
luaA_client_userdata_new(globalconf.L, c);
|
|
|
|
luaA_dofunction(globalconf.L, globalconf.hooks.urgent, 1, 0);
|
|
|
|
widget_invalidate_cache(c->screen, WIDGET_CACHE_CLIENTS);
|
2008-06-17 22:57:54 +02:00
|
|
|
}
|
2007-12-27 22:39:29 +01:00
|
|
|
}
|
|
|
|
|
2008-06-14 18:12:16 +02:00
|
|
|
int
|
2008-03-21 16:50:17 +01:00
|
|
|
ewmh_process_client_message(xcb_client_message_event_t *ev)
|
2007-12-27 20:49:38 +01:00
|
|
|
{
|
2008-04-11 11:35:11 +02:00
|
|
|
client_t *c;
|
2007-12-28 22:16:27 +01:00
|
|
|
int screen;
|
|
|
|
|
2008-06-30 18:55:14 +02:00
|
|
|
if(ev->type == _NET_CURRENT_DESKTOP)
|
2008-03-21 16:50:17 +01:00
|
|
|
for(screen = 0;
|
|
|
|
screen < xcb_setup_roots_length(xcb_get_setup(globalconf.connection));
|
|
|
|
screen++)
|
2008-06-09 21:43:09 +02:00
|
|
|
{
|
2008-06-17 16:55:24 +02:00
|
|
|
if(ev->window == xutil_screen_get(globalconf.connection, screen)->root)
|
2008-06-09 21:43:09 +02:00
|
|
|
tag_view_only_byindex(screen, ev->data.data32[0]);
|
|
|
|
}
|
2008-06-30 18:55:14 +02:00
|
|
|
else if(ev->type == _NET_CLOSE_WINDOW)
|
2007-12-27 22:39:29 +01:00
|
|
|
{
|
2008-06-05 09:25:38 +02:00
|
|
|
if((c = client_getbywin(ev->window)))
|
2007-12-27 20:49:38 +01:00
|
|
|
client_kill(c);
|
2007-12-27 22:39:29 +01:00
|
|
|
}
|
2008-06-30 18:55:14 +02:00
|
|
|
else if(ev->type == _NET_WM_DESKTOP)
|
2008-06-18 00:08:04 +02:00
|
|
|
{
|
|
|
|
if((c = client_getbywin(ev->window)))
|
|
|
|
{
|
2008-06-23 17:37:19 +02:00
|
|
|
tag_array_t *tags = &globalconf.screens[c->screen].tags;
|
|
|
|
|
2008-06-18 00:08:04 +02:00
|
|
|
if(ev->data.data32[0] == 0xffffffff)
|
2008-08-21 16:29:53 +02:00
|
|
|
c->issticky = true;
|
2008-06-18 00:08:04 +02:00
|
|
|
else
|
2008-06-23 17:37:19 +02:00
|
|
|
for(int i = 0; i < tags->len; i++)
|
|
|
|
if((int)ev->data.data32[0] == i)
|
|
|
|
tag_client(c, tags->tab[i]);
|
2008-06-18 00:08:04 +02:00
|
|
|
else
|
2008-06-23 17:37:19 +02:00
|
|
|
untag_client(c, tags->tab[i]);
|
2008-06-18 00:08:04 +02:00
|
|
|
}
|
|
|
|
}
|
2008-06-30 18:55:14 +02:00
|
|
|
else if(ev->type == _NET_WM_STATE)
|
2007-12-27 22:39:29 +01:00
|
|
|
{
|
2008-06-05 09:25:38 +02:00
|
|
|
if((c = client_getbywin(ev->window)))
|
2007-12-27 22:39:29 +01:00
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
ewmh_process_state_atom(c, (xcb_atom_t) ev->data.data32[1], ev->data.data32[0]);
|
|
|
|
if(ev->data.data32[2])
|
|
|
|
ewmh_process_state_atom(c, (xcb_atom_t) ev->data.data32[2],
|
|
|
|
ev->data.data32[0]);
|
2007-12-27 22:39:29 +01:00
|
|
|
}
|
|
|
|
}
|
2008-06-14 18:12:16 +02:00
|
|
|
|
|
|
|
return 0;
|
2007-12-27 22:39:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-04-11 11:35:11 +02:00
|
|
|
ewmh_check_client_hints(client_t *c)
|
2007-12-27 22:39:29 +01:00
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_atom_t *state;
|
|
|
|
void *data = NULL;
|
2008-06-23 17:37:19 +02:00
|
|
|
int desktop;
|
2008-06-18 00:08:04 +02:00
|
|
|
xcb_get_property_cookie_t c0, c1, c2;
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_get_property_reply_t *reply;
|
|
|
|
|
|
|
|
/* Send the GetProperty requests which will be processed later */
|
2008-06-18 00:08:04 +02:00
|
|
|
c0 = xcb_get_property_unchecked(globalconf.connection, false, c->win,
|
2008-06-30 18:55:14 +02:00
|
|
|
_NET_WM_DESKTOP, XCB_GET_PROPERTY_TYPE_ANY, 0, 1);
|
2008-06-18 00:08:04 +02:00
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
c1 = xcb_get_property_unchecked(globalconf.connection, false, c->win,
|
2008-06-30 18:55:14 +02:00
|
|
|
_NET_WM_STATE, ATOM, 0, UINT32_MAX);
|
2008-03-21 16:50:17 +01:00
|
|
|
|
|
|
|
c2 = xcb_get_property_unchecked(globalconf.connection, false, c->win,
|
2008-06-30 18:55:14 +02:00
|
|
|
_NET_WM_WINDOW_TYPE, ATOM, 0, UINT32_MAX);
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2008-06-18 00:08:04 +02:00
|
|
|
reply = xcb_get_property_reply(globalconf.connection, c0, NULL);
|
|
|
|
if(reply && reply->value_len && (data = xcb_get_property_value(reply)))
|
|
|
|
{
|
2008-06-23 17:37:19 +02:00
|
|
|
tag_array_t *tags = &globalconf.screens[c->screen].tags;
|
|
|
|
|
2008-06-18 00:08:04 +02:00
|
|
|
desktop = *(uint32_t *) data;
|
|
|
|
if(desktop == -1)
|
2008-08-21 16:29:53 +02:00
|
|
|
c->issticky = true;
|
2008-06-18 00:08:04 +02:00
|
|
|
else
|
2008-06-23 17:37:19 +02:00
|
|
|
for(int i = 0; i < tags->len; i++)
|
2008-06-18 00:08:04 +02:00
|
|
|
if(desktop == i)
|
2008-06-23 17:37:19 +02:00
|
|
|
tag_client(c, tags->tab[i]);
|
2008-06-18 00:08:04 +02:00
|
|
|
else
|
2008-06-23 17:37:19 +02:00
|
|
|
untag_client(c, tags->tab[i]);
|
2008-06-18 00:08:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
p_delete(&reply);
|
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
reply = xcb_get_property_reply(globalconf.connection, c1, NULL);
|
|
|
|
if(reply && (data = xcb_get_property_value(reply)))
|
2007-12-28 20:48:29 +01:00
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
state = (xcb_atom_t *) data;
|
2008-06-23 17:37:19 +02:00
|
|
|
for(int i = 0; i < xcb_get_property_value_length(reply); i++)
|
2007-12-28 20:48:29 +01:00
|
|
|
ewmh_process_state_atom(c, state[i], _NET_WM_STATE_ADD);
|
|
|
|
}
|
2007-12-27 22:39:29 +01:00
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
p_delete(&reply);
|
|
|
|
|
|
|
|
reply = xcb_get_property_reply(globalconf.connection, c2, NULL);
|
|
|
|
if(reply && (data = xcb_get_property_value(reply)))
|
2007-12-28 20:48:29 +01:00
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
state = (xcb_atom_t *) data;
|
2008-06-23 17:37:19 +02:00
|
|
|
for(int i = 0; i < xcb_get_property_value_length(reply); i++)
|
2008-09-03 14:59:18 +02:00
|
|
|
if(state[i] == _NET_WM_WINDOW_TYPE_DESKTOP)
|
|
|
|
c->type = WINDOW_TYPE_DESKTOP;
|
|
|
|
else if(state[i] == _NET_WM_WINDOW_TYPE_DIALOG)
|
|
|
|
c->type = WINDOW_TYPE_DIALOG;
|
|
|
|
else if(state[i] == _NET_WM_WINDOW_TYPE_SPLASH)
|
|
|
|
c->type = WINDOW_TYPE_SPLASH;
|
|
|
|
else if(state[i] == _NET_WM_WINDOW_TYPE_DOCK)
|
|
|
|
c->type = WINDOW_TYPE_DOCK;
|
|
|
|
else
|
|
|
|
c->type = WINDOW_TYPE_NORMAL;
|
2007-12-28 20:48:29 +01:00
|
|
|
}
|
2008-03-21 16:50:17 +01:00
|
|
|
|
|
|
|
p_delete(&reply);
|
2007-12-27 20:49:38 +01:00
|
|
|
}
|
|
|
|
|
2008-09-03 22:15:14 +02:00
|
|
|
/** Update the WM strut of a client.
|
|
|
|
* \param c The client.
|
|
|
|
*/
|
|
|
|
void
|
2008-09-16 14:09:56 +02:00
|
|
|
ewmh_client_strut_update(client_t *c, xcb_get_property_reply_t *strut_r)
|
2008-09-03 22:15:14 +02:00
|
|
|
{
|
|
|
|
void *data;
|
2008-09-16 14:09:56 +02:00
|
|
|
xcb_get_property_reply_t *mstrut_r = NULL;
|
2008-09-03 22:15:14 +02:00
|
|
|
|
2008-09-16 14:09:56 +02:00
|
|
|
if(!strut_r)
|
|
|
|
{
|
|
|
|
xcb_get_property_cookie_t strut_q = xcb_get_property_unchecked(globalconf.connection, false, c->win,
|
|
|
|
_NET_WM_STRUT_PARTIAL, CARDINAL, 0, 12);
|
|
|
|
strut_r = mstrut_r = xcb_get_property_reply(globalconf.connection, strut_q, NULL);
|
|
|
|
}
|
2008-09-03 22:15:14 +02:00
|
|
|
|
|
|
|
if(strut_r
|
|
|
|
&& strut_r->value_len
|
|
|
|
&& (data = xcb_get_property_value(strut_r)))
|
|
|
|
{
|
|
|
|
uint32_t *strut = data;
|
|
|
|
|
|
|
|
if(c->strut.left != strut[0]
|
|
|
|
|| c->strut.right != strut[1]
|
|
|
|
|| c->strut.top != strut[2]
|
|
|
|
|| c->strut.bottom != strut[3]
|
|
|
|
|| c->strut.left_start_y != strut[4]
|
|
|
|
|| c->strut.left_end_y != strut[5]
|
|
|
|
|| c->strut.right_start_y != strut[6]
|
|
|
|
|| c->strut.right_end_y != strut[7]
|
|
|
|
|| c->strut.top_start_x != strut[8]
|
|
|
|
|| c->strut.top_end_x != strut[9]
|
|
|
|
|| c->strut.bottom_start_x != strut[10]
|
|
|
|
|| c->strut.bottom_end_x != strut[11])
|
|
|
|
{
|
|
|
|
c->strut.left = strut[0];
|
|
|
|
c->strut.right = strut[1];
|
|
|
|
c->strut.top = strut[2];
|
|
|
|
c->strut.bottom = strut[3];
|
|
|
|
c->strut.left_start_y = strut[4];
|
|
|
|
c->strut.left_end_y = strut[5];
|
|
|
|
c->strut.right_start_y = strut[6];
|
|
|
|
c->strut.right_end_y = strut[7];
|
|
|
|
c->strut.top_start_x = strut[8];
|
|
|
|
c->strut.top_end_x = strut[9];
|
|
|
|
c->strut.bottom_start_x = strut[10];
|
|
|
|
c->strut.bottom_end_x = strut[11];
|
|
|
|
|
|
|
|
client_need_arrange(c);
|
|
|
|
/* All the statusbars (may) need to be repositioned */
|
|
|
|
for(int screen = 0; screen < globalconf.screens_info->nscreen; screen++)
|
|
|
|
for(statusbar_t *s = globalconf.screens[screen].statusbar; s; s = s->next)
|
|
|
|
statusbar_position_update(s);
|
|
|
|
}
|
|
|
|
}
|
2008-09-16 14:09:56 +02:00
|
|
|
|
|
|
|
p_delete(&mstrut_r);
|
2008-09-03 22:15:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-08-13 02:02:19 +02:00
|
|
|
/** Send request to get NET_WM_ICON (EWMH)
|
2008-07-29 16:44:57 +02:00
|
|
|
* \param w The window.
|
2008-08-13 02:02:19 +02:00
|
|
|
* \return The cookie associated with the request.
|
|
|
|
*/
|
|
|
|
xcb_get_property_cookie_t
|
|
|
|
ewmh_window_icon_get_unchecked(xcb_window_t w)
|
|
|
|
{
|
|
|
|
return xcb_get_property_unchecked(globalconf.connection, false, w,
|
|
|
|
_NET_WM_ICON, CARDINAL, 0, UINT32_MAX);
|
|
|
|
}
|
|
|
|
|
2008-09-17 16:38:38 +02:00
|
|
|
image_t *
|
2008-09-16 14:09:56 +02:00
|
|
|
ewmh_window_icon_from_reply(xcb_get_property_reply_t *r)
|
2008-01-03 19:02:23 +01:00
|
|
|
{
|
2008-03-27 12:08:31 +01:00
|
|
|
uint32_t *data;
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2008-04-09 12:56:52 +02:00
|
|
|
if(!r || r->type != CARDINAL || r->format != 32 || r->length < 2 ||
|
2008-03-27 12:34:19 +01:00
|
|
|
!(data = (uint32_t *) xcb_get_property_value(r)))
|
2008-01-03 19:02:23 +01:00
|
|
|
return NULL;
|
|
|
|
|
2008-09-17 17:28:38 +02:00
|
|
|
if(data[0] && data[1])
|
|
|
|
return image_new_from_argb32(data[0], data[1], data + 2);
|
2008-01-03 19:02:23 +01:00
|
|
|
|
2008-09-17 17:28:38 +02:00
|
|
|
return NULL;
|
2008-09-16 14:09:56 +02:00
|
|
|
}
|
2008-01-03 19:02:23 +01:00
|
|
|
|
2008-09-16 14:09:56 +02:00
|
|
|
/** Get NET_WM_ICON.
|
|
|
|
* \param cookie The cookie.
|
|
|
|
* \return A draw_image_t structure which must be deleted after usage.
|
|
|
|
*/
|
2008-09-17 16:38:38 +02:00
|
|
|
image_t *
|
2008-09-16 14:09:56 +02:00
|
|
|
ewmh_window_icon_get_reply(xcb_get_property_cookie_t cookie)
|
|
|
|
{
|
|
|
|
xcb_get_property_reply_t *r = xcb_get_property_reply(globalconf.connection, cookie, NULL);
|
2008-09-17 16:38:38 +02:00
|
|
|
image_t *icon = ewmh_window_icon_from_reply(r);
|
2008-09-16 14:09:56 +02:00
|
|
|
p_delete(&r);
|
2008-01-03 19:02:23 +01:00
|
|
|
return icon;
|
|
|
|
}
|
|
|
|
|
2007-12-27 17:27:20 +01:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|