2008-03-04 20:39:21 +01:00
|
|
|
/*
|
|
|
|
* common/xutil.c - X-related useful functions
|
|
|
|
*
|
2009-04-26 12:34:13 +02:00
|
|
|
* Copyright © 2007-2009 Julien Danjou <julien@danjou.info>
|
2008-03-04 20:39:21 +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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2009-04-28 18:17:16 +02:00
|
|
|
/* XCB doesn't provide keysyms definition */
|
|
|
|
#include <X11/keysym.h>
|
|
|
|
|
2008-11-10 10:35:53 +01:00
|
|
|
#include "common/util.h"
|
2008-04-11 16:35:16 +02:00
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
#include <xcb/xcb.h>
|
|
|
|
#include <xcb/xcb_atom.h>
|
2008-09-09 16:14:36 +02:00
|
|
|
#include <xcb/xcb_icccm.h>
|
2008-03-04 20:39:21 +01:00
|
|
|
|
|
|
|
#include "common/xutil.h"
|
2008-06-30 18:55:14 +02:00
|
|
|
#include "common/atoms.h"
|
2008-12-03 15:23:10 +01:00
|
|
|
#include "common/tokenize.h"
|
2008-03-04 20:39:21 +01:00
|
|
|
|
2008-04-09 13:46:42 +02:00
|
|
|
/** Get the string value of an atom.
|
2008-07-01 14:44:19 +02:00
|
|
|
* \param conn X connection.
|
|
|
|
* \param w Window.
|
|
|
|
* \param atom The atom.
|
|
|
|
* \param text Buffer to fill.
|
|
|
|
* \param len Length of the filled buffer.
|
|
|
|
* \return True on sucess, false on failure.
|
2008-04-09 13:46:42 +02:00
|
|
|
*/
|
2008-03-21 16:50:17 +01:00
|
|
|
bool
|
2008-08-11 13:27:28 +02:00
|
|
|
xutil_text_prop_get(xcb_connection_t *conn, xcb_window_t w, xcb_atom_t atom,
|
|
|
|
char **text, ssize_t *len)
|
2008-03-04 20:39:21 +01:00
|
|
|
{
|
2008-09-09 16:14:36 +02:00
|
|
|
xcb_get_text_property_reply_t reply;
|
2008-09-15 17:07:29 +02:00
|
|
|
|
|
|
|
p_clear(&reply, 1);
|
|
|
|
|
2008-09-09 16:14:36 +02:00
|
|
|
if(!xcb_get_text_property_reply(conn,
|
|
|
|
xcb_get_text_property_unchecked(conn, w,
|
|
|
|
atom),
|
|
|
|
&reply, NULL) ||
|
|
|
|
!reply.name_len || reply.format != 8)
|
2008-03-28 22:50:06 +01:00
|
|
|
{
|
2008-09-09 16:14:36 +02:00
|
|
|
xcb_get_text_property_reply_wipe(&reply);
|
2008-03-21 16:50:17 +01:00
|
|
|
return false;
|
2008-03-28 22:50:06 +01:00
|
|
|
}
|
2008-03-04 20:39:21 +01:00
|
|
|
|
2008-08-31 08:55:15 +02:00
|
|
|
if(text && len)
|
2008-04-23 17:06:15 +02:00
|
|
|
{
|
2008-08-31 08:55:15 +02:00
|
|
|
/* Check whether the returned property value is just an ascii
|
2009-02-20 11:26:25 +01:00
|
|
|
* string, an UTF-8 string or just some random multibyte in any other
|
|
|
|
* encoding. */
|
|
|
|
if(reply.encoding == STRING
|
|
|
|
|| reply.encoding == UTF8_STRING
|
|
|
|
|| reply.encoding == COMPOUND_TEXT)
|
2008-08-31 08:55:15 +02:00
|
|
|
{
|
2008-09-09 16:14:36 +02:00
|
|
|
*text = p_new(char, reply.name_len + 1);
|
|
|
|
/* Use memcpy() because the property name is not be \0
|
|
|
|
* terminated */
|
|
|
|
memcpy(*text, reply.name, reply.name_len);
|
|
|
|
(*text)[reply.name_len] = '\0';
|
|
|
|
*len = reply.name_len;
|
2008-08-31 08:55:15 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*text = NULL;
|
|
|
|
*len = 0;
|
|
|
|
}
|
2008-08-31 08:41:27 +02:00
|
|
|
}
|
2008-03-04 20:39:21 +01:00
|
|
|
|
2008-09-09 16:14:36 +02:00
|
|
|
xcb_get_text_property_reply_wipe(&reply);
|
2008-03-21 16:50:17 +01:00
|
|
|
return true;
|
2008-03-04 20:39:21 +01:00
|
|
|
}
|
|
|
|
|
2009-04-28 18:17:16 +02:00
|
|
|
/** Get the lock masks (shiftlock, numlock, capslock, modeswitch).
|
|
|
|
* \param connection The X connection.
|
|
|
|
* \param cookie The cookie of the request.
|
|
|
|
* \param keysyms Key symbols.
|
|
|
|
* \param numlockmask Numlock mask.
|
|
|
|
* \param shiftlockmask Shiftlock mask.
|
|
|
|
* \param capslockmask Capslock mask.
|
|
|
|
* \todo Split this.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
xutil_lock_mask_get(xcb_connection_t *connection,
|
|
|
|
xcb_get_modifier_mapping_cookie_t cookie,
|
|
|
|
xcb_key_symbols_t *keysyms,
|
|
|
|
uint16_t *numlockmask,
|
|
|
|
uint16_t *shiftlockmask,
|
|
|
|
uint16_t *capslockmask,
|
|
|
|
uint16_t *modeswitchmask)
|
|
|
|
{
|
|
|
|
xcb_get_modifier_mapping_reply_t *modmap_r;
|
|
|
|
xcb_keycode_t *modmap, kc;
|
|
|
|
xcb_keycode_t *numlockcodes = xcb_key_symbols_get_keycode(keysyms, XK_Num_Lock);
|
|
|
|
xcb_keycode_t *shiftlockcodes = xcb_key_symbols_get_keycode(keysyms, XK_Shift_Lock);
|
|
|
|
xcb_keycode_t *capslockcodes = xcb_key_symbols_get_keycode(keysyms, XK_Caps_Lock);
|
|
|
|
xcb_keycode_t *modeswitchcodes = xcb_key_symbols_get_keycode(keysyms, XK_Mode_switch);
|
|
|
|
|
|
|
|
modmap_r = xcb_get_modifier_mapping_reply(connection, cookie, NULL);
|
|
|
|
modmap = xcb_get_modifier_mapping_keycodes(modmap_r);
|
|
|
|
|
|
|
|
/* reset */
|
|
|
|
*numlockmask = *shiftlockmask = *capslockmask = *modeswitchmask = 0;
|
|
|
|
|
|
|
|
int i;
|
|
|
|
for(i = 0; i < 8; i++)
|
|
|
|
for(int j = 0; j < modmap_r->keycodes_per_modifier; j++)
|
|
|
|
{
|
|
|
|
kc = modmap[i * modmap_r->keycodes_per_modifier + j];
|
|
|
|
|
|
|
|
#define LOOK_FOR(mask, codes) \
|
|
|
|
if(*mask == 0 && codes) \
|
|
|
|
for(xcb_keycode_t *ktest = codes; *ktest; ktest++) \
|
|
|
|
if(*ktest == kc) \
|
|
|
|
{ \
|
|
|
|
*mask = (1 << i); \
|
|
|
|
break; \
|
|
|
|
}
|
|
|
|
|
|
|
|
LOOK_FOR(numlockmask, numlockcodes)
|
|
|
|
LOOK_FOR(shiftlockmask, shiftlockcodes)
|
|
|
|
LOOK_FOR(capslockmask, capslockcodes)
|
|
|
|
LOOK_FOR(modeswitchmask, modeswitchcodes)
|
|
|
|
#undef LOOK_FOR
|
|
|
|
}
|
|
|
|
p_delete(&numlockcodes);
|
|
|
|
p_delete(&shiftlockcodes);
|
|
|
|
p_delete(&capslockcodes);
|
|
|
|
p_delete(&modeswitchcodes);
|
|
|
|
p_delete(&modmap_r);
|
|
|
|
}
|
|
|
|
|
2008-03-27 16:51:24 +01:00
|
|
|
/* Number of different errors */
|
|
|
|
#define ERRORS_NBR 256
|
|
|
|
|
|
|
|
void
|
2008-08-11 13:27:28 +02:00
|
|
|
xutil_error_handler_catch_all_set(xcb_event_handlers_t *evenths,
|
2008-03-27 16:51:24 +01:00
|
|
|
xcb_generic_error_handler_t handler,
|
|
|
|
void *data)
|
|
|
|
{
|
|
|
|
int err_num;
|
|
|
|
for(err_num = 0; err_num < ERRORS_NBR; err_num++)
|
2008-09-16 15:36:44 +02:00
|
|
|
xcb_event_set_error_handler(evenths, err_num, handler, data);
|
2008-03-27 16:51:24 +01:00
|
|
|
}
|
|
|
|
|
2009-04-15 14:03:17 +02:00
|
|
|
uint16_t
|
2008-10-01 11:09:57 +02:00
|
|
|
xutil_key_mask_fromstr(const char *keyname, size_t len)
|
2008-05-20 15:39:47 +02:00
|
|
|
{
|
2008-10-01 11:09:57 +02:00
|
|
|
switch(a_tokenize(keyname, len))
|
2008-05-20 15:39:47 +02:00
|
|
|
{
|
2008-10-01 11:09:57 +02:00
|
|
|
case A_TK_SHIFT: return XCB_MOD_MASK_SHIFT;
|
|
|
|
case A_TK_LOCK: return XCB_MOD_MASK_LOCK;
|
|
|
|
case A_TK_CTRL:
|
|
|
|
case A_TK_CONTROL: return XCB_MOD_MASK_CONTROL;
|
|
|
|
case A_TK_MOD1: return XCB_MOD_MASK_1;
|
|
|
|
case A_TK_MOD2: return XCB_MOD_MASK_2;
|
|
|
|
case A_TK_MOD3: return XCB_MOD_MASK_3;
|
|
|
|
case A_TK_MOD4: return XCB_MOD_MASK_4;
|
|
|
|
case A_TK_MOD5: return XCB_MOD_MASK_5;
|
2009-04-15 13:59:22 +02:00
|
|
|
/* this is misnamed but correct */
|
|
|
|
case A_TK_ANY: return XCB_BUTTON_MASK_ANY;
|
2008-10-01 11:09:57 +02:00
|
|
|
default: return XCB_NO_SYMBOL;
|
|
|
|
}
|
2008-05-20 15:39:47 +02:00
|
|
|
}
|
|
|
|
|
2009-04-25 15:59:22 +02:00
|
|
|
void
|
|
|
|
xutil_key_mask_tostr(uint16_t mask, const char **name, size_t *len)
|
|
|
|
{
|
|
|
|
switch(mask)
|
|
|
|
{
|
|
|
|
#define SET_RESULT(res) \
|
|
|
|
*name = #res; \
|
|
|
|
*len = sizeof(#res) - 1; \
|
|
|
|
return;
|
|
|
|
case XCB_MOD_MASK_SHIFT: SET_RESULT(Shift)
|
|
|
|
case XCB_MOD_MASK_LOCK: SET_RESULT(Lock)
|
|
|
|
case XCB_MOD_MASK_CONTROL: SET_RESULT(Control)
|
|
|
|
case XCB_MOD_MASK_1: SET_RESULT(Mod1)
|
|
|
|
case XCB_MOD_MASK_2: SET_RESULT(Mod2)
|
|
|
|
case XCB_MOD_MASK_3: SET_RESULT(Mod3)
|
|
|
|
case XCB_MOD_MASK_4: SET_RESULT(Mod4)
|
|
|
|
case XCB_MOD_MASK_5: SET_RESULT(Mod5)
|
|
|
|
case XCB_BUTTON_MASK_ANY: SET_RESULT(Any)
|
|
|
|
default: SET_RESULT(Unknown)
|
|
|
|
#undef SET_RESULT
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-06 11:42:02 +02:00
|
|
|
/** Convert a root window a physical screen ID.
|
|
|
|
* \param connection The connection to the X server.
|
|
|
|
* \param root Root window.
|
|
|
|
* \return A physical screen number.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
xutil_root2screen(xcb_connection_t *connection, xcb_window_t root)
|
|
|
|
{
|
|
|
|
xcb_screen_iterator_t iter;
|
|
|
|
int phys_screen = 0;
|
|
|
|
|
|
|
|
for(iter = xcb_setup_roots_iterator(xcb_get_setup(connection));
|
|
|
|
iter.rem && iter.data->root != root; xcb_screen_next(&iter), ++phys_screen);
|
|
|
|
|
|
|
|
return phys_screen;
|
|
|
|
}
|
|
|
|
|
2008-03-04 20:39:21 +01:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|