From 272ab840c78801c76f2759a0dcff1ca238d23589 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Mon, 21 Feb 2011 00:40:35 +0100 Subject: [PATCH] Fix fullscreen mode with dock clients --- src/render.c | 41 +++++++++++++++++++++++++++++++---------- 1 file changed, 31 insertions(+), 10 deletions(-) diff --git a/src/render.c b/src/render.c index c8ea3184..9e2fd3db 100644 --- a/src/render.c +++ b/src/render.c @@ -21,6 +21,37 @@ static void render_l_output(Con *con) { int height = con->rect.height; DLOG("Available height: %d\n", height); + /* Find the content container and ensure that there is exactly one. Also + * check for any non-CT_DOCKAREA clients. */ + Con *content = NULL; + TAILQ_FOREACH(child, &(con->nodes_head), nodes) { + if (child->type == CT_CON) { + if (content != NULL) { + DLOG("More than one CT_CON on output container\n"); + assert(false); + } + content = child; + } else if (child->type != CT_DOCKAREA) { + DLOG("Child %p of type %d is inside the OUTPUT con\n", child, child->type); + assert(false); + } + } + + assert(content != NULL); + + /* We need to find out if there is a fullscreen con on the current workspace + * and take the short-cut to render it directly (the user does not want to + * see the dockareas in that case) */ + Con *ws = con_get_fullscreen_con(content); + Con *fullscreen = con_get_fullscreen_con(ws); + if (fullscreen) { + DLOG("got fs node: %p\n", fullscreen); + fullscreen->rect = con->rect; + x_raise_con(fullscreen); + render_con(fullscreen, true); + return; + } + /* First pass: determine the height of all CT_DOCKAREAs (the sum of their * children) and figure out how many pixels we have left for the rest */ TAILQ_FOREACH(child, &(con->nodes_head), nodes) { @@ -40,20 +71,10 @@ static void render_l_output(Con *con) { /* Second pass: Set the widths/heights */ TAILQ_FOREACH(child, &(con->nodes_head), nodes) { if (child->type == CT_CON) { - if (height == -1) { - DLOG("More than one CT_CON on output container\n"); - assert(false); - } child->rect.x = x; child->rect.y = y; child->rect.width = con->rect.width; child->rect.height = height; - height = -1; - } - - else if (child->type != CT_DOCKAREA) { - DLOG("Child %p of type %d is inside the OUTPUT con\n", child, child->type); - assert(false); } child->rect.x = x; -- 2.39.5