awesome/ewmh.c

485 lines
14 KiB
C
Raw Normal View History

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-03-21 16:50:17 +01:00
#include <xcb/xcb.h>
#include <xcb/xcb_atom.h>
2008-03-27 16:05:37 +01:00
#include <xcb/xcb_aux.h>
2007-12-27 17:27:20 +01:00
#include "ewmh.h"
2007-12-27 18:42:20 +01:00
#include "tag.h"
2007-12-27 19:33:01 +01:00
#include "focus.h"
#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"
#include "titlebar.h"
2007-12-27 17:27:20 +01:00
extern awesome_t globalconf;
2007-12-27 17:27:20 +01:00
2008-03-21 16:50:17 +01:00
static xcb_atom_t net_supported;
static xcb_atom_t net_client_list;
static xcb_atom_t net_number_of_desktops;
static xcb_atom_t net_current_desktop;
static xcb_atom_t net_desktop_names;
static xcb_atom_t net_active_window;
static xcb_atom_t net_close_window;
static xcb_atom_t net_wm_name;
static xcb_atom_t net_wm_icon_name;
static xcb_atom_t net_wm_window_type;
static xcb_atom_t net_wm_window_type_normal;
static xcb_atom_t net_wm_window_type_dock;
static xcb_atom_t net_wm_window_type_splash;
static xcb_atom_t net_wm_window_type_dialog;
static xcb_atom_t net_wm_icon;
static xcb_atom_t net_wm_state;
static xcb_atom_t net_wm_state_sticky;
static xcb_atom_t net_wm_state_skip_taskbar;
static xcb_atom_t net_wm_state_fullscreen;
static xcb_atom_t net_wm_state_above;
static xcb_atom_t net_wm_state_below;
static xcb_atom_t utf8_string;
2007-12-27 19:11:18 +01:00
2007-12-27 17:27:20 +01:00
typedef struct
{
const char *name;
2008-03-21 16:50:17 +01:00
xcb_atom_t *atom;
2007-12-27 17:27:20 +01:00
} AtomItem;
static AtomItem AtomNames[] =
{
{ "_NET_SUPPORTED", &net_supported },
{ "_NET_CLIENT_LIST", &net_client_list },
{ "_NET_NUMBER_OF_DESKTOPS", &net_number_of_desktops },
2007-12-27 18:42:20 +01:00
{ "_NET_CURRENT_DESKTOP", &net_current_desktop },
2007-12-27 19:11:18 +01:00
{ "_NET_DESKTOP_NAMES", &net_desktop_names },
2007-12-27 19:33:01 +01:00
{ "_NET_ACTIVE_WINDOW", &net_active_window },
2007-12-27 17:27:20 +01:00
2007-12-27 20:49:38 +01:00
{ "_NET_CLOSE_WINDOW", &net_close_window },
2007-12-27 17:27:20 +01:00
{ "_NET_WM_NAME", &net_wm_name },
2007-12-28 21:58:21 +01:00
{ "_NET_WM_ICON_NAME", &net_wm_icon_name },
{ "_NET_WM_WINDOW_TYPE", &net_wm_window_type },
{ "_NET_WM_WINDOW_TYPE_NORMAL", &net_wm_window_type_normal },
{ "_NET_WM_WINDOW_TYPE_DOCK", &net_wm_window_type_dock },
{ "_NET_WM_WINDOW_TYPE_SPLASH", &net_wm_window_type_splash },
{ "_NET_WM_WINDOW_TYPE_DIALOG", &net_wm_window_type_dialog },
2007-12-27 17:27:20 +01:00
{ "_NET_WM_ICON", &net_wm_icon },
{ "_NET_WM_STATE", &net_wm_state },
{ "_NET_WM_STATE_STICKY", &net_wm_state_sticky },
{ "_NET_WM_STATE_SKIP_TASKBAR", &net_wm_state_skip_taskbar },
{ "_NET_WM_STATE_FULLSCREEN", &net_wm_state_fullscreen },
{ "_NET_WM_STATE_ABOVE", &net_wm_state_above },
{ "_NET_WM_STATE_BELOW", &net_wm_state_below },
2007-12-27 19:11:18 +01:00
{ "UTF8_STRING", &utf8_string },
2007-12-27 17:27:20 +01:00
};
#define ATOM_NUMBER (sizeof(AtomNames)/sizeof(AtomItem))
2007-12-27 17:27:20 +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
ewmh_init_atoms(void)
{
unsigned int i;
2008-03-21 16:50:17 +01:00
xcb_intern_atom_cookie_t cs[ATOM_NUMBER];
xcb_intern_atom_reply_t *r;
2008-03-21 16:50:17 +01:00
/*
* Create the atom and get the reply in a XCB way (e.g. send all
* the requests at the same time and then get the replies)
*/
2007-12-27 17:27:20 +01:00
for(i = 0; i < ATOM_NUMBER; i++)
2008-03-21 16:50:17 +01:00
cs[i] = xcb_intern_atom_unchecked(globalconf.connection,
false,
strlen(AtomNames[i].name),
AtomNames[i].name);
2007-12-27 17:27:20 +01:00
for(i = 0; i < ATOM_NUMBER; i++)
2008-03-21 16:50:17 +01:00
{
if(!(r = xcb_intern_atom_reply(globalconf.connection, cs[i], NULL)))
2008-03-21 16:50:17 +01:00
/* An error occured, get reply for next atom */
continue;
*AtomNames[i].atom = r->atom;
p_delete(&r);
}
2007-12-27 17:27:20 +01:00
}
void
ewmh_set_supported_hints(int phys_screen)
{
2008-03-21 16:50:17 +01:00
xcb_atom_t atom[ATOM_NUMBER];
2007-12-27 17:27:20 +01:00
int i = 0;
atom[i++] = net_supported;
atom[i++] = net_client_list;
atom[i++] = net_number_of_desktops;
2007-12-27 18:42:20 +01:00
atom[i++] = net_current_desktop;
2007-12-27 19:11:18 +01:00
atom[i++] = net_desktop_names;
2007-12-27 19:33:01 +01:00
atom[i++] = net_active_window;
2007-12-27 20:49:38 +01:00
atom[i++] = net_close_window;
2007-12-27 17:27:20 +01:00
atom[i++] = net_wm_name;
2007-12-28 21:58:21 +01:00
atom[i++] = net_wm_icon_name;
atom[i++] = net_wm_window_type;
atom[i++] = net_wm_window_type_normal;
atom[i++] = net_wm_window_type_dock;
atom[i++] = net_wm_window_type_splash;
atom[i++] = net_wm_window_type_dialog;
2007-12-27 17:27:20 +01:00
atom[i++] = net_wm_icon;
atom[i++] = net_wm_state;
atom[i++] = net_wm_state_sticky;
atom[i++] = net_wm_state_skip_taskbar;
atom[i++] = net_wm_state_fullscreen;
atom[i++] = net_wm_state_above;
atom[i++] = net_wm_state_below;
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-03-27 16:05:37 +01:00
xcb_aux_get_screen(globalconf.connection, phys_screen)->root,
2008-03-21 16:50:17 +01:00
net_supported, ATOM, 32, i, atom);
2007-12-27 17:27:20 +01:00
}
void
ewmh_update_net_client_list(int phys_screen)
{
2008-03-21 16:50:17 +01:00
xcb_window_t *wins;
client_t *c;
int n = 0;
for(c = globalconf.clients; c; c = c->next)
2008-02-25 13:19:39 +01:00
n++;
2008-03-21 16:50:17 +01:00
wins = p_new(xcb_window_t, n);
for(n = 0, c = globalconf.clients; c; c = c->next, n++)
if(c->phys_screen == phys_screen)
wins[n] = c->win;
2008-03-21 16:50:17 +01:00
xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
2008-03-27 16:05:37 +01:00
xcb_aux_get_screen(globalconf.connection, phys_screen)->root,
2008-03-21 16:50:17 +01:00
net_client_list, WINDOW, 32, n, wins);
p_delete(&wins);
}
2007-12-27 17:27:20 +01:00
void
ewmh_update_net_numbers_of_desktop(int phys_screen)
{
2008-03-21 16:50:17 +01:00
uint32_t count = 0;
tag_t *tag;
for(tag = globalconf.screens[phys_screen].tags; tag; tag = tag->next)
count++;
2008-03-21 16:50:17 +01:00
xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
2008-03-27 16:05:37 +01:00
xcb_aux_get_screen(globalconf.connection, phys_screen)->root,
2008-03-21 16:50:17 +01:00
net_number_of_desktops, CARDINAL, 32, 1, &count);
}
2007-12-27 18:42:20 +01:00
void
ewmh_update_net_current_desktop(int phys_screen)
{
2008-03-21 16:50:17 +01:00
uint32_t count = 0;
tag_t *tag, **curtags = tags_get_current(phys_screen);
2007-12-27 18:42:20 +01:00
for(tag = globalconf.screens[phys_screen].tags; tag != curtags[0]; tag = tag->next)
count++;
2008-03-21 16:50:17 +01:00
xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
2008-03-27 16:05:37 +01:00
xcb_aux_get_screen(globalconf.connection, phys_screen)->root,
2008-03-21 16:50:17 +01:00
net_current_desktop, CARDINAL, 32, 1, &count);
2007-12-27 18:42:20 +01:00
p_delete(&curtags);
}
2007-12-27 19:11:18 +01:00
void
ewmh_update_net_desktop_names(int phys_screen)
{
char buf[1024], *pos;
ssize_t len, curr_size;
tag_t *tag;
2007-12-27 19:11:18 +01:00
pos = buf;
len = 0;
for(tag = globalconf.screens[phys_screen].tags; tag; tag = tag->next)
{
curr_size = a_strlen(tag->name);
a_strcpy(pos, sizeof(buf), tag->name);
pos += curr_size + 1;
len += curr_size + 1;
}
2008-03-21 16:50:17 +01:00
xcb_change_property(globalconf.connection, XCB_PROP_MODE_REPLACE,
2008-03-27 16:05:37 +01:00
xcb_aux_get_screen(globalconf.connection, phys_screen)->root,
2008-03-21 16:50:17 +01:00
net_desktop_names, utf8_string, 8, len, buf);
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;
client_t *sel = focus_get_current_client(phys_screen);
2007-12-27 19:33:01 +01:00
2008-03-21 16:50:17 +01:00
win = sel ? sel->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-03-27 16:05:37 +01:00
xcb_aux_get_screen(globalconf.connection, phys_screen)->root,
2008-03-21 16:50:17 +01:00
net_active_window, WINDOW, 32, 1, &win);
2007-12-27 19:11:18 +01:00
}
static void
ewmh_process_state_atom(client_t *c, xcb_atom_t state, int set)
{
2008-03-21 16:50:17 +01:00
const uint32_t raise_window_val = XCB_STACK_MODE_ABOVE;
if(state == net_wm_state_sticky)
{
tag_t *tag;
for(tag = globalconf.screens[c->screen].tags; tag; tag = tag->next)
tag_client(c, tag);
}
else if(state == net_wm_state_skip_taskbar)
{
if(set == _NET_WM_STATE_REMOVE)
{
2008-03-21 16:50:17 +01:00
c->skiptb = false;
c->skip = false;
}
else if(set == _NET_WM_STATE_ADD)
{
2008-03-21 16:50:17 +01:00
c->skiptb = true;
c->skip = true;
}
}
else if(state == net_wm_state_fullscreen)
{
2008-03-14 09:37:25 +01:00
area_t geometry = c->geometry;
if(set == _NET_WM_STATE_REMOVE)
{
/* restore geometry */
geometry = c->m_geometry;
/* restore borders and titlebar */
if(c->titlebar && c->titlebar->sw && (c->titlebar->position = c->titlebar->oldposition))
xcb_map_window(globalconf.connection, c->titlebar->sw->window);
c->noborder = false;
c->ismax = false;
client_setborder(c, c->oldborder);
client_setfloating(c, c->wasfloating, c->oldlayer);
}
else if(set == _NET_WM_STATE_ADD)
{
geometry = screen_area_get(c->screen, NULL, &globalconf.screens[c->screen].padding);
/* save geometry */
c->m_geometry = c->geometry;
c->wasfloating = c->isfloating;
/* disable titlebar and borders */
if(c->titlebar && c->titlebar->sw && (c->titlebar->oldposition = c->titlebar->position))
{
xcb_unmap_window(globalconf.connection, c->titlebar->sw->window);
c->titlebar->position = Off;
}
c->ismax = true;
c->oldborder = c->border;
client_setborder(c, 0);
c->noborder = true;
2008-03-21 16:50:17 +01:00
client_setfloating(c, true, LAYER_FULLSCREEN);
}
2008-01-07 18:12:38 +01:00
widget_invalidate_cache(c->screen, WIDGET_CACHE_CLIENTS);
2008-03-21 16:50:17 +01:00
client_resize(c, geometry, false);
xcb_configure_window(globalconf.connection, c->win, XCB_CONFIG_WINDOW_STACK_MODE, &raise_window_val);
}
else if(state == net_wm_state_above)
{
if(set == _NET_WM_STATE_REMOVE)
{
c->layer = c->oldlayer;
}
else if(set == _NET_WM_STATE_ADD)
{
c->oldlayer = c->layer;
c->layer = LAYER_ABOVE;
}
}
else if(state == net_wm_state_below)
{
if(set == _NET_WM_STATE_REMOVE)
{
c->layer = c->oldlayer;
}
else if(set == _NET_WM_STATE_ADD)
{
c->oldlayer = c->layer;
c->layer = LAYER_BELOW;
}
}
}
static void
ewmh_process_window_type_atom(client_t *c, xcb_atom_t state)
{
if(state == net_wm_window_type_normal)
{
/* do nothing. this is REALLY IMPORTANT */
}
else if(state == net_wm_window_type_dock
|| state == net_wm_window_type_splash)
{
2008-03-21 16:50:17 +01:00
c->skip = true;
c->isfixed = true;
if(c->titlebar && c->titlebar->position && c->titlebar->sw)
{
xcb_unmap_window(globalconf.connection, c->titlebar->sw->window);
c->titlebar->position = Off;
}
client_setborder(c, 0);
c->noborder = true;
2008-03-21 16:50:17 +01:00
client_setfloating(c, true, LAYER_ABOVE);
}
else if (state == net_wm_window_type_dialog)
2008-03-21 16:50:17 +01:00
client_setfloating(c, true, LAYER_ABOVE);
}
2007-12-27 20:49:38 +01:00
void
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
{
client_t *c;
int screen;
2008-03-21 16:50:17 +01:00
if(ev->type == net_current_desktop)
for(screen = 0;
screen < xcb_setup_roots_length(xcb_get_setup(globalconf.connection));
screen++)
{
2008-03-27 16:05:37 +01:00
if(ev->window == xcb_aux_get_screen(globalconf.connection, screen)->root)
2008-03-21 16:50:17 +01:00
tag_view_only_byindex(screen, ev->data.data32[0]);
}
2007-12-27 20:49:38 +01:00
2008-03-21 16:50:17 +01:00
if(ev->type == net_close_window)
{
2008-01-29 08:21:05 +01:00
if((c = client_get_bywin(globalconf.clients, ev->window)))
2007-12-27 20:49:38 +01:00
client_kill(c);
}
2008-03-21 16:50:17 +01:00
else if(ev->type == net_wm_state)
{
2008-01-29 08:21:05 +01:00
if((c = client_get_bywin(globalconf.clients, ev->window)))
{
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]);
}
}
}
void
ewmh_check_client_hints(client_t *c)
{
2008-03-21 16:50:17 +01:00
xcb_atom_t *state;
void *data = NULL;
int i;
xcb_get_property_cookie_t c1, c2;
xcb_get_property_reply_t *reply;
/* Send the GetProperty requests which will be processed later */
c1 = xcb_get_property_unchecked(globalconf.connection, false, c->win,
net_wm_state, ATOM, 0, UINT32_MAX);
c2 = xcb_get_property_unchecked(globalconf.connection, false, c->win,
net_wm_window_type, ATOM, 0, UINT32_MAX);
reply = xcb_get_property_reply(globalconf.connection, c1, NULL);
if(reply && (data = xcb_get_property_value(reply)))
{
2008-03-21 16:50:17 +01:00
state = (xcb_atom_t *) data;
for(i = 0; i < xcb_get_property_value_length(reply); i++)
ewmh_process_state_atom(c, state[i], _NET_WM_STATE_ADD);
}
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)))
{
2008-03-21 16:50:17 +01:00
state = (xcb_atom_t *) data;
for(i = 0; i < xcb_get_property_value_length(reply); i++)
ewmh_process_window_type_atom(c, state[i]);
}
2008-03-21 16:50:17 +01:00
p_delete(&reply);
2007-12-27 20:49:38 +01:00
}
2008-01-03 19:02:23 +01:00
NetWMIcon *
2008-03-21 16:50:17 +01:00
ewmh_get_window_icon(xcb_window_t w)
2008-01-03 19:02:23 +01:00
{
double alpha;
2008-01-03 19:02:23 +01:00
NetWMIcon *icon;
2008-03-21 16:50:17 +01:00
int size, i;
uint32_t *data;
2008-03-27 12:34:19 +01:00
unsigned char *imgdata;
2008-03-21 16:50:17 +01:00
xcb_get_property_reply_t *r;
r = xcb_get_property_reply(globalconf.connection,
xcb_get_property_unchecked(globalconf.connection, false, w,
net_wm_icon, CARDINAL, 0, UINT32_MAX),
NULL);
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-03-21 16:50:17 +01:00
{
p_delete(&r);
2008-01-03 19:02:23 +01:00
return NULL;
2008-03-21 16:50:17 +01:00
}
2008-01-03 19:02:23 +01:00
icon = p_new(NetWMIcon, 1);
icon->width = data[0];
icon->height = data[1];
size = icon->width * icon->height;
if(!size)
{
p_delete(&icon);
2008-03-21 16:50:17 +01:00
p_delete(&r);
2008-01-03 19:02:23 +01:00
return NULL;
}
icon->image = p_new(unsigned char, size * 4);
for(imgdata = icon->image, i = 2; i < size + 2; i++, imgdata += 4)
{
imgdata[3] = (data[i] >> 24) & 0xff; /* A */
alpha = imgdata[3] / 255.0;
imgdata[2] = ((data[i] >> 16) & 0xff) * alpha; /* R */
imgdata[1] = ((data[i] >> 8) & 0xff) * alpha; /* G */
imgdata[0] = (data[i] & 0xff) * alpha; /* B */
2008-01-03 19:02:23 +01:00
}
2008-03-21 16:50:17 +01: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