fix floating focus behaviour, extend testcase

This commit is contained in:
Michael Stapelberg
2010-11-14 22:35:44 +01:00
parent ffff4b159f
commit a27af52706
4 changed files with 72 additions and 4 deletions

View File

@ -422,9 +422,24 @@ Con *con_next_focused(Con *con) {
/* floating containers are attached to a workspace, so we focus either the
* next floating container (if any) or the workspace itself. */
if (con->type == CT_FLOATING_CON) {
DLOG("selecting next for CT_FLOATING_CON\n");
next = TAILQ_NEXT(con, floating_windows);
if (next == TAILQ_END(&(parent->floating_head)))
next = con_get_workspace(con);
if (next == TAILQ_END(&(parent->floating_head))) {
Con *ws = con_get_workspace(con);
next = ws;
DLOG("no more floating containers for next = %p, restoring workspace focus\n", next);
while (next != TAILQ_END(&(ws->focus_head)) && !TAILQ_EMPTY(&(next->focus_head))) {
next = TAILQ_FIRST(&(next->focus_head));
if (next == con) {
DLOG("skipping container itself, we want the next client\n");
next = TAILQ_NEXT(next, focused);
}
}
if (next == TAILQ_END(&(ws->focus_head))) {
DLOG("Focus list empty, returning NULL\n");
next = NULL;
}
}
return next;
}

View File

@ -78,6 +78,8 @@ void floating_enable(Con *con, bool automatic) {
TAILQ_INSERT_TAIL(&(nc->nodes_head), con, nodes);
TAILQ_INSERT_TAIL(&(nc->focus_head), con, focused);
// TODO: dont influence focus handling when Con was not focused before.
con_focus(con);
}
void floating_disable(Con *con, bool automatic) {
@ -105,6 +107,8 @@ void floating_disable(Con *con, bool automatic) {
con->floating = FLOATING_USER_OFF;
con_fix_percent(con->parent, WINDOW_ADD);
// TODO: dont influence focus handling when Con was not focused before.
con_focus(con);
}

View File

@ -372,7 +372,7 @@ static void x_push_node(Con *con) {
state = state_for_frame(con->frame);
if (state->name != NULL) {
DLOG("pushing name %s\n", state->name);
DLOG("pushing name %s for con %p\n", state->name, con);
xcb_change_property(conn, XCB_PROP_MODE_REPLACE, con->frame,
WM_NAME, STRING, 8, strlen(state->name), state->name);