Merge branch 'fix-ldoc-set-spacing' of git://github.com/actionless/awesome
[awesome.git] / xwindow.h
blobc2d48b8ab97b4fedd2d5848ee833f9a8eba946f7
1 /*
2 *x window.h -x window handling 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_WINDOW_H
23 #define AWESOME_WINDOW_H
25 #include "globalconf.h"
26 #include "color.h"
28 enum xcb_shape_sk_t;
30 void xwindow_set_state(xcb_window_t, uint32_t);
31 xcb_get_property_cookie_t xwindow_get_state_unchecked(xcb_window_t);
32 uint32_t xwindow_get_state_reply(xcb_get_property_cookie_t);
33 void xwindow_configure(xcb_window_t, area_t, int);
34 void xwindow_buttons_grab(xcb_window_t, button_array_t *);
35 xcb_get_property_cookie_t xwindow_get_opacity_unchecked(xcb_window_t);
36 double xwindow_get_opacity(xcb_window_t);
37 double xwindow_get_opacity_from_cookie(xcb_get_property_cookie_t);
38 void xwindow_set_opacity(xcb_window_t, double);
39 void xwindow_grabkeys(xcb_window_t, key_array_t *);
40 void xwindow_takefocus(xcb_window_t);
41 void xwindow_set_cursor(xcb_window_t, xcb_cursor_t);
42 void xwindow_set_border_color(xcb_window_t, color_t *);
43 cairo_surface_t *xwindow_get_shape(xcb_window_t, enum xcb_shape_sk_t);
44 void xwindow_set_shape(xcb_window_t, int, int, enum xcb_shape_sk_t, cairo_surface_t *, int);
45 void xwindow_translate_for_gravity(xcb_gravity_t, int16_t, int16_t, int16_t, int16_t, int16_t *, int16_t *);
47 #endif
48 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80