change codename
[awesome.git] / window.h
blobb2051860b5bc6347e335999a4c7dc9eae2daeb67
1 /*
2 * window.h - 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 "draw.h"
28 void window_state_set(xcb_window_t, long);
29 xcb_get_property_cookie_t window_state_get_unchecked(xcb_window_t);
30 uint32_t window_state_get_reply(xcb_get_property_cookie_t);
31 void window_configure(xcb_window_t, area_t, int);
32 void window_buttons_grab(xcb_window_t, button_array_t *);
33 double window_opacity_get(xcb_window_t);
34 double window_opacity_get_from_reply(xcb_get_property_reply_t *);
35 void window_opacity_set(xcb_window_t, double);
36 void window_grabbuttons(xcb_window_t, xcb_window_t, button_array_t *);
37 void window_grabkeys(xcb_window_t, key_array_t *);
38 void window_takefocus(xcb_window_t);
39 void window_set_cursor(xcb_window_t, xcb_cursor_t);
41 #endif
42 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80