]> git.sur5r.net Git - i3/i3/blob - include/layout.h
Bugfix: Change the event mask to ignore enter notifies when rendering the layout...
[i3/i3] / include / layout.h
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * (c) 2009 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  */
11 #include <xcb/xcb.h>
12
13 #ifndef _LAYOUT_H
14 #define _LAYOUT_H
15
16 Rect get_unoccupied_space(Workspace *workspace);
17 void decorate_window(xcb_connection_t *conn, Client *client, xcb_drawable_t drawable, xcb_gcontext_t gc, int offset);
18 void redecorate_window(xcb_connection_t *conn, Client *client);
19 void render_container(xcb_connection_t *conn, Container *container);
20 void ignore_enter_notify_forall(xcb_connection_t *conn, Workspace *workspace, bool ignore_enter_notify);
21 void render_layout(xcb_connection_t *conn);
22
23 #endif