mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 02:47:46 +03:00
Merge 99a49adeb0
into a25645a5a6
This commit is contained in:
commit
78f1657c1c
3 changed files with 15 additions and 2 deletions
|
@ -465,6 +465,7 @@ enum mouse_warping_mode {
|
|||
WARP_NO,
|
||||
WARP_OUTPUT,
|
||||
WARP_CONTAINER,
|
||||
WARP_MARK,
|
||||
};
|
||||
|
||||
enum alignment {
|
||||
|
@ -530,6 +531,7 @@ struct sway_config {
|
|||
// Flags
|
||||
enum focus_follows_mouse_mode focus_follows_mouse;
|
||||
enum mouse_warping_mode mouse_warping;
|
||||
char *mouse_warping_mark_name;
|
||||
enum focus_wrapping_mode focus_wrapping;
|
||||
bool active;
|
||||
bool failed;
|
||||
|
|
|
@ -280,6 +280,11 @@ static struct cmd_results *focus_mode(struct sway_workspace *ws,
|
|||
// to anyway.
|
||||
if (config->mouse_warping == WARP_CONTAINER) {
|
||||
cursor_warp_to_container(seat->cursor, new_focus, true);
|
||||
} else if (config->mouse_warping == WARP_MARK) {
|
||||
bool has_warp_mark = container_has_mark(new_focus, config->mouse_warping_mark_name);
|
||||
if (has_warp_mark) {
|
||||
cursor_warp_to_container(seat->cursor, new_focus, true);
|
||||
}
|
||||
} else {
|
||||
seat_consider_warp_to_focus(seat);
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
struct cmd_results *cmd_mouse_warping(int argc, char **argv) {
|
||||
struct cmd_results *error = NULL;
|
||||
if ((error = checkarg(argc, "mouse_warping", EXPECTED_EQUAL_TO, 1))) {
|
||||
if ((error = checkarg(argc, "mouse_warping", EXPECTED_AT_LEAST, 1))) {
|
||||
return error;
|
||||
} else if (strcasecmp(argv[0], "container") == 0) {
|
||||
config->mouse_warping = WARP_CONTAINER;
|
||||
|
@ -12,9 +12,15 @@ struct cmd_results *cmd_mouse_warping(int argc, char **argv) {
|
|||
config->mouse_warping = WARP_OUTPUT;
|
||||
} else if (strcasecmp(argv[0], "none") == 0) {
|
||||
config->mouse_warping = WARP_NO;
|
||||
} else if (strcasecmp(argv[0], "mark") == 0) {
|
||||
config->mouse_warping = WARP_MARK;
|
||||
if (argc < 2) {
|
||||
return cmd_results_new(CMD_FAILURE, "Expected an mark name as a second argument");
|
||||
}
|
||||
config->mouse_warping_mark_name = argv[1];
|
||||
} else {
|
||||
return cmd_results_new(CMD_FAILURE,
|
||||
"Expected 'mouse_warping output|container|none'");
|
||||
"Expected 'mouse_warping output|container|mark|none'");
|
||||
}
|
||||
return cmd_results_new(CMD_SUCCESS, NULL);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue