themes/sky: Titlebar icons: use current default theme paths
[awesome.git] / common / xutil.h
blob6ecc0d311b41abc0cc7e2e5dc68b4786e2ba9532
1 /*
2 * common/xutil.h - X-related useful functions header
4 * Copyright © 2007-2009 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 #ifndef AWESOME_COMMON_XUTIL_H
23 #define AWESOME_COMMON_XUTIL_H
25 #include <xcb/xcb.h>
26 #include <xcb/xcb_keysyms.h>
27 #include <xcb/xcb_aux.h>
28 #include <xcb/xcb_event.h>
30 #include "array.h"
32 bool xutil_text_prop_get(xcb_connection_t *, xcb_window_t, xcb_atom_t, char **, ssize_t *);
34 void xutil_lock_mask_get(xcb_connection_t *, xcb_get_modifier_mapping_cookie_t,
35 xcb_key_symbols_t *,
36 uint16_t *, uint16_t *, uint16_t *, uint16_t *);
38 /** Set the same handler for all errors */
39 void xutil_error_handler_catch_all_set(xcb_event_handlers_t *,
40 xcb_generic_error_handler_t, void *);
42 uint16_t xutil_key_mask_fromstr(const char *, size_t);
43 void xutil_key_mask_tostr(uint16_t, const char **, size_t *);
45 /* Get the informations about the screen.
46 * \param c X connection.
47 * \param screen Screen number.
48 * \return Screen informations (must not be freed!).
50 static inline xcb_screen_t *
51 xutil_screen_get(xcb_connection_t *c, int screen)
53 xcb_screen_t *s;
55 if(xcb_connection_has_error(c))
56 fatal("X connection invalid");
58 s = xcb_aux_get_screen(c, screen);
60 assert(s);
62 return s;
65 int xutil_root2screen(xcb_connection_t *, xcb_window_t);
67 #endif
68 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80