]> git.sur5r.net Git - i3/i3/blobdiff - include/render.h
Merge branch 'master' into next
[i3/i3] / include / render.h
index 849f214e5f1ef379b57b20fa86642ba1dbcd7bed..1794b513894ea0c8583ff15400e1a66f679f39db 100644 (file)
@@ -1,9 +1,14 @@
 /*
  * vim:ts=4:sw=4:expandtab
+ *
+ * i3 - an improved dynamic tiling window manager
+ * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
+ *
+ * render.c: Renders (determines position/sizes) the layout tree, updating the
+ *           various rects. Needs to be pushed to X11 (see x.c) to be visible.
+ *
  */
-
-#ifndef _RENDER_H
-#define _RENDER_H
+#pragma once
 
 /**
  * "Renders" the given container (and its children), meaning that all rects are
@@ -13,6 +18,9 @@
  * updated in X11.
  *
  */
-void render_con(Con *con);
+void render_con(Con *con, bool render_fullscreen);
 
-#endif
+/*
+ * Returns the height for the decorations
+ */
+int render_deco_height(void);