2007-11-17 20:53:31 +01:00
|
|
|
/*
|
2008-03-04 20:39:21 +01:00
|
|
|
* common/xutil.h - X-related useful functions header
|
2007-11-17 20:53:31 +01:00
|
|
|
*
|
2008-03-04 20:39:21 +01:00
|
|
|
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
|
2007-11-17 20:53:31 +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-04 20:39:21 +01:00
|
|
|
#ifndef AWESOME_COMMON_XUTIL_H
|
|
|
|
#define AWESOME_COMMON_XUTIL_H
|
2007-11-17 20:53:31 +01:00
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
#include <xcb/xcb.h>
|
2008-03-24 00:48:42 +01:00
|
|
|
#include <xcb/xcb_keysyms.h>
|
2008-06-17 16:55:24 +02:00
|
|
|
#include <xcb/xcb_aux.h>
|
2008-03-27 16:51:24 +01:00
|
|
|
#include <xcb/xcb_event.h>
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2008-06-27 12:08:19 +02:00
|
|
|
#include "array.h"
|
2008-03-21 16:50:17 +01:00
|
|
|
|
2008-08-11 13:27:28 +02:00
|
|
|
bool xutil_text_prop_get(xcb_connection_t *, xcb_window_t, xcb_atom_t, char **, ssize_t *);
|
2008-05-11 00:30:20 +02:00
|
|
|
|
2008-03-27 16:51:24 +01:00
|
|
|
/** Set the same handler for all errors */
|
2008-08-11 13:27:28 +02:00
|
|
|
void xutil_error_handler_catch_all_set(xcb_event_handlers_t *,
|
2008-03-27 16:51:24 +01:00
|
|
|
xcb_generic_error_handler_t, void *);
|
|
|
|
|
2009-04-15 14:03:17 +02:00
|
|
|
uint16_t xutil_key_mask_fromstr(const char *, size_t);
|
2009-04-25 15:59:22 +02:00
|
|
|
void xutil_key_mask_tostr(uint16_t, const char **, size_t *);
|
2009-04-15 14:05:45 +02:00
|
|
|
uint8_t xutil_button_fromint(int);
|
2008-03-27 16:51:24 +01:00
|
|
|
|
2008-06-17 16:55:24 +02:00
|
|
|
/* Get the informations about the screen.
|
|
|
|
* \param c X connection.
|
|
|
|
* \param screen Screen number.
|
|
|
|
* \return Screen informations (must not be freed!).
|
|
|
|
*/
|
|
|
|
static inline xcb_screen_t *
|
|
|
|
xutil_screen_get(xcb_connection_t *c, int screen)
|
|
|
|
{
|
2008-07-31 17:29:05 +02:00
|
|
|
xcb_screen_t *s;
|
|
|
|
|
2008-06-17 16:55:24 +02:00
|
|
|
if(xcb_connection_has_error(c))
|
2008-06-19 09:45:08 +02:00
|
|
|
fatal("X connection invalid");
|
2008-06-17 16:55:24 +02:00
|
|
|
|
2008-07-31 17:29:05 +02:00
|
|
|
s = xcb_aux_get_screen(c, screen);
|
|
|
|
|
|
|
|
assert(s);
|
|
|
|
|
|
|
|
return s;
|
2008-06-17 16:55:24 +02:00
|
|
|
}
|
|
|
|
|
2008-10-06 11:42:02 +02:00
|
|
|
int xutil_root2screen(xcb_connection_t *, xcb_window_t);
|
|
|
|
|
2007-11-17 20:53:31 +01:00
|
|
|
#endif
|
2007-12-18 09:24:15 +01:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|