i3
render.h
Go to the documentation of this file.
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2011 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 
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);
A 'Con' represents everything from the X11 root window down to a single X11 window.
Definition: data.h:479
int render_deco_height(void)
Definition: render.c:22
void render_con(Con *con, bool render_fullscreen)
"Renders" the given container (and its children), meaning that all rects are updated correctly...
Definition: render.c:126