2009-02-13 20:33:31 -05:00
|
|
|
/*
|
|
|
|
* vim:ts=8:expandtab
|
|
|
|
*
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
|
|
|
*
|
|
|
|
* (c) 2009 Michael Stapelberg and contributors
|
|
|
|
*
|
|
|
|
* See file LICENSE for license information.
|
|
|
|
*
|
|
|
|
*/
|
2009-02-13 13:04:45 -05:00
|
|
|
#include <xcb/xcb.h>
|
|
|
|
|
|
|
|
#ifndef _LAYOUT_H
|
|
|
|
#define _LAYOUT_H
|
|
|
|
|
2009-02-15 21:28:07 -05:00
|
|
|
Rect get_unoccupied_space(Workspace *workspace);
|
2009-02-23 18:30:04 -05:00
|
|
|
void decorate_window(xcb_connection_t *conn, Client *client, xcb_drawable_t drawable, xcb_gcontext_t gc, int offset);
|
2009-03-02 20:28:26 -05:00
|
|
|
void redecorate_window(xcb_connection_t *conn, Client *client);
|
2009-03-04 09:45:12 -05:00
|
|
|
void render_container(xcb_connection_t *conn, Container *container);
|
2009-03-10 19:20:56 -04:00
|
|
|
void ignore_enter_notify_forall(xcb_connection_t *conn, Workspace *workspace, bool ignore_enter_notify);
|
2009-02-13 13:04:45 -05:00
|
|
|
void render_layout(xcb_connection_t *conn);
|
|
|
|
|
|
|
|
#endif
|