diff options
author | Ryan Dwyer <RyanDwyer@users.noreply.github.com> | 2018-06-09 08:43:57 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-09 08:43:57 +1000 |
commit | 0b798ed9543d55bd39782c3a4a4bc1789acd40d3 (patch) | |
tree | 1ef7bdd44c5b7684e2c5e7118d5b7ffdda1e4ba6 /include/sway | |
parent | c65c84444e58404f951c628221b7485da0684f19 (diff) | |
parent | e2b2fb0a0e3e7db3046aeef485621ff3f490cd61 (diff) |
Merge pull request #2115 from RedSoxFan/restore-workspaces
Restore workspaces to output when re-enabled
Diffstat (limited to 'include/sway')
-rw-r--r-- | include/sway/tree/workspace.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/sway/tree/workspace.h b/include/sway/tree/workspace.h index 81321fc8..c72a4ac0 100644 --- a/include/sway/tree/workspace.h +++ b/include/sway/tree/workspace.h @@ -9,6 +9,7 @@ struct sway_workspace { struct sway_container *swayc; struct sway_view *fullscreen; struct sway_container *floating; + list_t *output_priority; }; extern char *prev_workspace_name; @@ -33,4 +34,12 @@ bool workspace_is_visible(struct sway_container *ws); bool workspace_is_empty(struct sway_container *ws); +void workspace_output_raise_priority(struct sway_container *workspace, + struct sway_container *old_output, struct sway_container *new_output); + +void workspace_output_add_priority(struct sway_container *workspace, + struct sway_container *output); + +struct sway_container *workspace_output_get_highest_available( + struct sway_container *ws, struct sway_container *exclude); #endif |