mirror of
https://github.com/swaywm/sway.git
synced 2024-11-16 13:13:17 +00:00
Made scratchpad handling identical to i3
This commit is contained in:
parent
79da7f112a
commit
28e937020a
|
@ -10,4 +10,6 @@ struct cmd_handler {
|
||||||
|
|
||||||
bool handle_command(struct sway_config *config, char *command);
|
bool handle_command(struct sway_config *config, char *command);
|
||||||
|
|
||||||
|
void remove_view_from_scratchpad();
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
105
sway/commands.c
105
sway/commands.c
|
@ -23,6 +23,9 @@ struct modifier_key {
|
||||||
uint32_t mod;
|
uint32_t mod;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
swayc_t *sp_view;
|
||||||
|
int sp_index = 0;
|
||||||
|
|
||||||
static struct modifier_key modifiers[] = {
|
static struct modifier_key modifiers[] = {
|
||||||
{ XKB_MOD_NAME_SHIFT, WLC_BIT_MOD_SHIFT },
|
{ XKB_MOD_NAME_SHIFT, WLC_BIT_MOD_SHIFT },
|
||||||
{ XKB_MOD_NAME_CAPS, WLC_BIT_MOD_CAPS },
|
{ XKB_MOD_NAME_CAPS, WLC_BIT_MOD_CAPS },
|
||||||
|
@ -246,6 +249,7 @@ static bool cmd_floating(struct sway_config *config, int argc, char **argv) {
|
||||||
// Refocus on the view once its been put back into the layout
|
// Refocus on the view once its been put back into the layout
|
||||||
view->width = view->height = 0;
|
view->width = view->height = 0;
|
||||||
arrange_windows(swayc_active_workspace(), -1, -1);
|
arrange_windows(swayc_active_workspace(), -1, -1);
|
||||||
|
remove_view_from_scratchpad(view);
|
||||||
}
|
}
|
||||||
set_focused_container(view);
|
set_focused_container(view);
|
||||||
}
|
}
|
||||||
|
@ -343,6 +347,22 @@ static bool cmd_focus_follows_mouse(struct sway_config *config, int argc, char *
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void hide_view_in_scratchpad(swayc_t *sp_view) {
|
||||||
|
if(sp_view == NULL) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
wlc_view_set_mask(sp_view->handle, 0);
|
||||||
|
sp_view->visible = false;
|
||||||
|
swayc_t *ws = sp_view->parent;
|
||||||
|
remove_child(sp_view);
|
||||||
|
if (swayc_active_workspace() != ws && ws->floating->length == 0 && ws->children->length == 0) {
|
||||||
|
destroy_workspace(ws);
|
||||||
|
}
|
||||||
|
arrange_windows(ws, -1, -1);
|
||||||
|
set_focused_container(container_under_pointer());
|
||||||
|
}
|
||||||
|
|
||||||
static bool cmd_move(struct sway_config *config, int argc, char **argv) {
|
static bool cmd_move(struct sway_config *config, int argc, char **argv) {
|
||||||
if (!checkarg(argc, "move", EXPECTED_AT_LEAST, 1)) {
|
if (!checkarg(argc, "move", EXPECTED_AT_LEAST, 1)) {
|
||||||
return false;
|
return false;
|
||||||
|
@ -386,6 +406,14 @@ static bool cmd_move(struct sway_config *config, int argc, char **argv) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
swayc_t *view = get_focused_container(&root_container);
|
swayc_t *view = get_focused_container(&root_container);
|
||||||
|
int i;
|
||||||
|
for (i = 0; i < scratchpad->length; i++) {
|
||||||
|
if (scratchpad->items[i] == view) {
|
||||||
|
hide_view_in_scratchpad(view);
|
||||||
|
sp_view = NULL;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
list_add(scratchpad, view);
|
list_add(scratchpad, view);
|
||||||
if (!view->is_floating) {
|
if (!view->is_floating) {
|
||||||
destroy_container(remove_child(view));
|
destroy_container(remove_child(view));
|
||||||
|
@ -590,30 +618,71 @@ static bool cmd_resize(struct sway_config *config, int argc, char **argv) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static swayc_t *fetch_view_from_scratchpad() {
|
||||||
|
if (sp_index >= scratchpad->length) {
|
||||||
|
sp_index = 0;
|
||||||
|
}
|
||||||
|
swayc_t *view = scratchpad->items[sp_index++];
|
||||||
|
|
||||||
|
if (wlc_view_get_output(view->handle) != swayc_active_output()->handle) {
|
||||||
|
wlc_view_set_output(view->handle, swayc_active_output()->handle);
|
||||||
|
}
|
||||||
|
if (!view->is_floating) {
|
||||||
|
view->width = swayc_active_workspace()->width/2;
|
||||||
|
view->height = swayc_active_workspace()->height/2;
|
||||||
|
view->x = (swayc_active_workspace()->width - view->width)/2;
|
||||||
|
view->y = (swayc_active_workspace()->height - view->height)/2;
|
||||||
|
}
|
||||||
|
if (swayc_active_workspace()->width < view->x + 20 || view->x + view->width < 20) {
|
||||||
|
view->x = (swayc_active_workspace()->width - view->width)/2;
|
||||||
|
}
|
||||||
|
if (swayc_active_workspace()->height < view->y + 20 || view->y + view->height < 20) {
|
||||||
|
view->y = (swayc_active_workspace()->height - view->height)/2;
|
||||||
|
}
|
||||||
|
|
||||||
|
add_floating(swayc_active_workspace(), view);
|
||||||
|
wlc_view_set_mask(view->handle, VISIBLE);
|
||||||
|
view->visible = true;
|
||||||
|
arrange_windows(swayc_active_workspace(), -1, -1);
|
||||||
|
set_focused_container(view);
|
||||||
|
return view;
|
||||||
|
}
|
||||||
|
|
||||||
|
void remove_view_from_scratchpad(swayc_t *view) {
|
||||||
|
int i;
|
||||||
|
for (i = 0; i < scratchpad->length; i++) {
|
||||||
|
if (scratchpad->items[i] == view) {
|
||||||
|
if (sp_index == 0) {
|
||||||
|
sp_index = scratchpad->length - 1;
|
||||||
|
} else {
|
||||||
|
sp_index--;
|
||||||
|
}
|
||||||
|
list_del(scratchpad, sp_index);
|
||||||
|
sp_view = NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static bool cmd_scratchpad(struct sway_config *config, int argc, char **argv) {
|
static bool cmd_scratchpad(struct sway_config *config, int argc, char **argv) {
|
||||||
if (!checkarg(argc, "scratchpad", EXPECTED_EQUAL_TO, 1)) {
|
if (!checkarg(argc, "scratchpad", EXPECTED_EQUAL_TO, 1)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (strcasecmp(argv[0], "show") == 0) {
|
|
||||||
if (scratchpad->length > 0) {
|
if (strcasecmp(argv[0], "show") == 0 && scratchpad->length > 0) {
|
||||||
swayc_t *view = scratchpad->items[0];
|
if (!sp_view) {
|
||||||
list_del(scratchpad, 0);
|
sp_view = fetch_view_from_scratchpad();
|
||||||
add_floating(swayc_active_workspace(), view);
|
} else {
|
||||||
view->x = (swayc_active_workspace()->width - view->width)/2;
|
if (swayc_active_workspace() != sp_view->parent) {
|
||||||
view->y = (swayc_active_workspace()->height - view->height)/2;
|
hide_view_in_scratchpad(sp_view);
|
||||||
if (view->desired_width != -1) {
|
if (sp_index == 0) {
|
||||||
view->width = view->desired_width;
|
sp_index = scratchpad->length;
|
||||||
}
|
}
|
||||||
if (view->desired_height != -1) {
|
sp_index--;
|
||||||
view->height = view->desired_height;
|
sp_view = fetch_view_from_scratchpad();
|
||||||
|
} else {
|
||||||
|
hide_view_in_scratchpad(sp_view);
|
||||||
|
sp_view = NULL;
|
||||||
}
|
}
|
||||||
wlc_view_set_mask(view->handle, VISIBLE);
|
|
||||||
arrange_windows(swayc_active_workspace(), -1, -1);
|
|
||||||
swayc_t *focused = container_under_pointer();
|
|
||||||
if (focused == NULL) {
|
|
||||||
focused = swayc_active_workspace();
|
|
||||||
}
|
|
||||||
set_focused_container(focused);
|
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -237,6 +237,7 @@ static void handle_view_destroyed(wlc_handle handle) {
|
||||||
case WLC_BIT_POPUP:
|
case WLC_BIT_POPUP:
|
||||||
if (view) {
|
if (view) {
|
||||||
swayc_t *parent = destroy_view(view);
|
swayc_t *parent = destroy_view(view);
|
||||||
|
remove_view_from_scratchpad(view);
|
||||||
arrange_windows(parent, -1, -1);
|
arrange_windows(parent, -1, -1);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue