swayfx/sway/focus.c

178 lines
4.3 KiB
C
Raw Normal View History

#include <wlc/wlc.h>
#include "focus.h"
#include "log.h"
#include "workspace.h"
#include "layout.h"
bool locked_container_focus = false;
bool locked_view_focus = false;
// switches parent focus to c. will switch it accordingly
// TODO: Everything needs a handle, so we can set front/back position properly
static void update_focus(swayc_t *c) {
// Handle if focus switches
swayc_t *parent = c->parent;
if (parent->focused != c) {
switch (c->type) {
2015-08-19 04:22:52 +10:00
// Shouldnt happen
case C_ROOT: return;
2015-08-19 04:22:52 +10:00
// Case where output changes
case C_OUTPUT:
2015-08-18 22:20:59 +10:00
wlc_output_focus(c->handle);
break;
2015-08-19 04:22:52 +10:00
// Case where workspace changes
case C_WORKSPACE:
if (parent->focused) {
swayc_t *ws = parent->focused;
// hide visibility of old workspace
bool visible = false;
container_map(ws, set_view_visibility, &visible);
// set visibility of new workspace
visible = true;
container_map(c, set_view_visibility, &visible);
destroy_workspace(ws);
}
break;
2015-08-19 04:22:52 +10:00
2015-08-18 20:48:41 +10:00
default:
case C_VIEW:
case C_CONTAINER:
// TODO whatever to do when container changes
// for example, stacked and tabbing change stuff.
break;
}
c->parent->focused = c;
}
}
bool move_focus(enum movement_direction direction) {
2015-08-22 03:28:37 +10:00
swayc_t *view = get_focused_container(&root_container);
view = get_swayc_in_direction(view, direction);
if (view) {
2015-08-20 13:29:24 +10:00
if (direction == MOVE_PARENT) {
set_focused_container(view);
} else {
set_focused_container(get_focused_view(view));
}
return true;
}
return false;
}
swayc_t *get_focused_container(swayc_t *parent) {
2015-08-22 03:28:37 +10:00
if (!parent) {
return swayc_active_workspace();
}
2015-08-22 03:28:37 +10:00
// get focusde container
while (!parent->is_focused && parent->focused) {
parent = parent->focused;
2015-08-18 20:48:41 +10:00
}
return parent;
}
void set_focused_container(swayc_t *c) {
if (locked_container_focus || !c) {
return;
}
sway_log(L_DEBUG, "Setting focus to %p:%ld", c, c->handle);
2015-08-19 04:22:52 +10:00
2015-08-22 03:28:37 +10:00
// Get workspace for c, get that workspaces current focused container.
swayc_t *workspace = swayc_active_workspace_for(c);
swayc_t *focused = get_focused_view(workspace);
// if the workspace we are changing focus to has a fullscreen view return
if (swayc_is_fullscreen(focused) && focused != c) {
return;
}
2015-08-19 04:22:52 +10:00
// update container focus from here to root, making necessary changes along
// the way
swayc_t *p = c;
if (p->type != C_OUTPUT && p->type != C_ROOT) {
p->is_focused = true;
}
while (p != &root_container) {
update_focus(p);
p = p->parent;
p->is_focused = false;
}
2015-08-19 04:22:52 +10:00
// get new focused view and set focus to it.
p = get_focused_view(c);
if (p->type == C_VIEW && !(wlc_view_get_type(p->handle) & WLC_BIT_POPUP)) {
// unactivate previous focus
if (focused->type == C_VIEW) {
wlc_view_set_state(focused->handle, WLC_BIT_ACTIVATED, false);
}
// activate current focus
if (p->type == C_VIEW) {
wlc_view_set_state(p->handle, WLC_BIT_ACTIVATED, true);
2015-08-20 22:06:22 +10:00
// set focus if view_focus is unlocked
2015-08-19 16:52:42 +10:00
if (!locked_view_focus) {
wlc_view_focus(p->handle);
}
}
}
}
void set_focused_container_for(swayc_t *a, swayc_t *c) {
if (locked_container_focus || !c) {
return;
}
swayc_t *find = c;
2015-08-19 04:22:52 +10:00
// Ensure that a is an ancestor of c
while (find != a && (find = find->parent)) {
if (find == &root_container) {
return;
}
}
2015-08-22 03:28:37 +10:00
// Get workspace for c, get that workspaces current focused container.
swayc_t *workspace = swayc_active_workspace_for(c);
swayc_t *focused = get_focused_view(workspace);
// if the workspace we are changing focus to has a fullscreen view return
if (swayc_is_fullscreen(focused) && c != focused) {
return;
}
2015-08-19 04:22:52 +10:00
// Check if we changing a parent container that will see chnage
bool effective = true;
while (find != &root_container) {
if (find->parent->focused != find) {
effective = false;
}
find = find->parent;
}
if (effective) {
// Go to set_focused_container
set_focused_container(c);
return;
}
sway_log(L_DEBUG, "Setting focus for %p:%ld to %p:%ld",
a, a->handle, c, c->handle);
c->is_focused = true;
swayc_t *p = c;
while (p != a) {
update_focus(p);
p = p->parent;
p->is_focused = false;
}
}
swayc_t *get_focused_view(swayc_t *parent) {
while (parent && parent->type != C_VIEW) {
2015-08-19 04:22:52 +10:00
if (parent->type == C_WORKSPACE && parent->focused == NULL) {
return parent;
}
parent = parent->focused;
}
2015-08-19 04:22:52 +10:00
if (parent == NULL) {
2015-08-22 03:28:37 +10:00
return swayc_active_workspace_for(parent);
2015-08-19 04:22:52 +10:00
}
return parent;
}