swayfx/sway/commands/focus.c

84 lines
2.5 KiB
C
Raw Normal View History

2018-02-15 09:12:21 +11:00
#include <strings.h>
2018-02-15 08:47:23 +11:00
#include <wlr/util/log.h>
#include "log.h"
2018-07-09 07:56:25 +10:00
#include "sway/commands.h"
2018-02-15 08:47:23 +11:00
#include "sway/input/input-manager.h"
#include "sway/input/seat.h"
2018-07-09 07:56:25 +10:00
#include "sway/tree/arrange.h"
#include "sway/tree/view.h"
2018-07-09 07:56:25 +10:00
#include "sway/tree/workspace.h"
2018-02-15 08:47:23 +11:00
static bool parse_movement_direction(const char *name,
enum movement_direction *out) {
2018-02-15 09:12:21 +11:00
if (strcasecmp(name, "left") == 0) {
*out = MOVE_LEFT;
} else if (strcasecmp(name, "right") == 0) {
*out = MOVE_RIGHT;
} else if (strcasecmp(name, "up") == 0) {
*out = MOVE_UP;
} else if (strcasecmp(name, "down") == 0) {
*out = MOVE_DOWN;
} else if (strcasecmp(name, "parent") == 0) {
*out = MOVE_PARENT;
} else if (strcasecmp(name, "child") == 0) {
*out = MOVE_CHILD;
} else {
return false;
}
return true;
}
2018-07-09 07:56:25 +10:00
static struct cmd_results *focus_mode(struct sway_container *con,
struct sway_seat *seat, bool floating) {
struct sway_container *ws = con->type == C_WORKSPACE ?
con : container_parent(con, C_WORKSPACE);
struct sway_container *new_focus = ws;
if (floating) {
new_focus = ws->sway_workspace->floating;
if (new_focus->children->length == 0) {
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}
}
seat_set_focus(seat, seat_get_active_child(seat, new_focus));
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}
2018-02-15 08:47:23 +11:00
struct cmd_results *cmd_focus(int argc, char **argv) {
struct sway_container *con = config->handler_context.current_container;
2018-02-15 08:47:23 +11:00
struct sway_seat *seat = config->handler_context.seat;
2018-02-15 09:12:21 +11:00
if (con->type < C_WORKSPACE) {
return cmd_results_new(CMD_FAILURE, "focus",
"Command 'focus' cannot be used above the workspace level");
}
2018-02-15 08:47:23 +11:00
if (argc == 0) {
2018-04-02 22:45:37 +10:00
seat_set_focus(seat, con);
2018-02-15 08:47:23 +11:00
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}
2018-07-09 07:56:25 +10:00
if (strcmp(argv[0], "floating") == 0) {
return focus_mode(con, seat, true);
} else if (strcmp(argv[0], "tiling") == 0) {
return focus_mode(con, seat, false);
} else if (strcmp(argv[0], "mode_toggle") == 0) {
return focus_mode(con, seat, !container_is_floating(con));
}
// TODO: focus output <direction|name>
2018-02-15 09:12:21 +11:00
enum movement_direction direction = 0;
if (!parse_movement_direction(argv[0], &direction)) {
return cmd_results_new(CMD_INVALID, "focus",
2018-07-09 07:56:25 +10:00
"Expected 'focus <direction|parent|child|mode_toggle|floating|tiling>' "
"or 'focus output <direction|name>'");
2018-02-15 09:12:21 +11:00
}
struct sway_container *next_focus = container_get_in_direction(
con, seat, direction);
2018-02-15 09:12:21 +11:00
if (next_focus) {
2018-04-02 22:45:37 +10:00
seat_set_focus(seat, next_focus);
2018-02-15 09:12:21 +11:00
}
2018-02-15 08:47:23 +11:00
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}