]> git.sur5r.net Git - i3/i3/blob - include/render.h
Update copyright notices and get rid of ranges
[i3/i3] / include / render.h
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * render.c: Renders (determines position/sizes) the layout tree, updating the
8  *           various rects. Needs to be pushed to X11 (see x.c) to be visible.
9  *
10  */
11 #pragma once
12
13 /**
14  * "Renders" the given container (and its children), meaning that all rects are
15  * updated correctly. Note that this function does not call any xcb_*
16  * functions, so the changes are completely done in memory only (and
17  * side-effect free). As soon as you call x_push_changes(), the changes will be
18  * updated in X11.
19  *
20  */
21 void render_con(Con *con, bool render_fullscreen);
22
23 /*
24  * Returns the height for the decorations
25  */
26 int render_deco_height(void);