aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dwyer <ryandwyer1@gmail.com>2019-01-28 19:06:42 +1000
committeremersion <contact@emersion.fr>2019-01-28 10:35:40 +0100
commit6b8bf10941ec83ac7a6e364b9c34f8c6f74d814a (patch)
tree61a9e61c64fd1b88a79b06a6f9dafeb84e4f8c35
parent68a28e482fd4a813721e45ea860b80ada0e226b4 (diff)
downloadsway-6b8bf10941ec83ac7a6e364b9c34f8c6f74d814a.zip
sway-6b8bf10941ec83ac7a6e364b9c34f8c6f74d814a.tar.gz
sway-6b8bf10941ec83ac7a6e364b9c34f8c6f74d814a.tar.bz2
Introduce container_is_scratchpad_hidden
Just a convenience function that improves readability of the code. Other things worth noting: * container_get_siblings and container_sibling_index no longer use the const keyword * container_handle_fullscreen_reparent is only ever called after attaching the container to a workspace, so its con->workspace check has been changed to an assertion
-rw-r--r--include/sway/tree/container.h6
-rw-r--r--sway/commands/focus.c2
-rw-r--r--sway/commands/move.c4
-rw-r--r--sway/commands/resize.c10
-rw-r--r--sway/commands/split.c2
-rw-r--r--sway/commands/sticky.c6
-rw-r--r--sway/desktop/output.c3
-rw-r--r--sway/desktop/render.c3
-rw-r--r--sway/ipc-json.c2
-rw-r--r--sway/tree/container.c15
-rw-r--r--sway/tree/root.c7
-rw-r--r--sway/tree/view.c5
12 files changed, 35 insertions, 30 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
index 543bd2c..f7a4ac3 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -299,9 +299,9 @@ enum sway_container_layout container_parent_layout(struct sway_container *con);
enum sway_container_layout container_current_parent_layout(
struct sway_container *con);
-list_t *container_get_siblings(const struct sway_container *container);
+list_t *container_get_siblings(struct sway_container *container);
-int container_sibling_index(const struct sway_container *child);
+int container_sibling_index(struct sway_container *child);
list_t *container_get_current_siblings(struct sway_container *container);
@@ -354,4 +354,6 @@ void container_update_marks_textures(struct sway_container *container);
void container_raise_floating(struct sway_container *con);
+bool container_is_scratchpad_hidden(struct sway_container *con);
+
#endif
diff --git a/sway/commands/focus.c b/sway/commands/focus.c
index 87fe6cf..79b2f55 100644
--- a/sway/commands/focus.c
+++ b/sway/commands/focus.c
@@ -271,7 +271,7 @@ struct cmd_results *cmd_focus(int argc, char **argv) {
}
if (argc == 0 && container) {
- if (container->scratchpad && !container->workspace) {
+ if (container_is_scratchpad_hidden(container)) {
root_scratchpad_show(container);
}
seat_set_focus_container(seat, container);
diff --git a/sway/commands/move.c b/sway/commands/move.c
index aa06b16..8c3afae 100644
--- a/sway/commands/move.c
+++ b/sway/commands/move.c
@@ -659,7 +659,7 @@ static struct cmd_results *cmd_move_in_direction(
return cmd_results_new(CMD_FAILURE,
"Cannot move workspaces in a direction");
}
- if (container->scratchpad && !container->workspace) {
+ if (container_is_scratchpad_hidden(container)) {
return cmd_results_new(CMD_FAILURE,
"Cannot move a hidden scratchpad container");
}
@@ -734,7 +734,7 @@ static struct cmd_results *cmd_move_to_position(int argc, char **argv) {
return cmd_results_new(CMD_FAILURE, "Only floating containers "
"can be moved to an absolute position");
}
- if (container->scratchpad && !container->workspace) {
+ if (container_is_scratchpad_hidden(container)) {
return cmd_results_new(CMD_FAILURE,
"Cannot move a hidden scratchpad container");
}
diff --git a/sway/commands/resize.c b/sway/commands/resize.c
index 204de53..c926153 100644
--- a/sway/commands/resize.c
+++ b/sway/commands/resize.c
@@ -86,7 +86,8 @@ static void calculate_constraints(int *min_width, int *max_width,
*min_height = config->floating_minimum_height;
}
- if (config->floating_maximum_width == -1 || !con->workspace) { // no max
+ if (config->floating_maximum_width == -1 ||
+ container_is_scratchpad_hidden(con)) { // no max
*max_width = INT_MAX;
} else if (config->floating_maximum_width == 0) { // automatic
*max_width = con->workspace->width;
@@ -94,7 +95,8 @@ static void calculate_constraints(int *min_width, int *max_width,
*max_width = config->floating_maximum_width;
}
- if (config->floating_maximum_height == -1 || !con->workspace) { // no max
+ if (config->floating_maximum_height == -1 ||
+ container_is_scratchpad_hidden(con)) { // no max
*max_height = INT_MAX;
} else if (config->floating_maximum_height == 0) { // automatic
*max_height = con->workspace->height;
@@ -386,7 +388,7 @@ static struct cmd_results *resize_set_floating(struct sway_container *con,
if (width->amount) {
switch (width->unit) {
case RESIZE_UNIT_PPT:
- if (con->scratchpad && !con->workspace) {
+ if (container_is_scratchpad_hidden(con)) {
return cmd_results_new(CMD_FAILURE,
"Cannot resize a hidden scratchpad container by ppt");
}
@@ -410,7 +412,7 @@ static struct cmd_results *resize_set_floating(struct sway_container *con,
if (height->amount) {
switch (height->unit) {
case RESIZE_UNIT_PPT:
- if (con->scratchpad && !con->workspace) {
+ if (container_is_scratchpad_hidden(con)) {
return cmd_results_new(CMD_FAILURE,
"Cannot resize a hidden scratchpad container by ppt");
}
diff --git a/sway/commands/split.c b/sway/commands/split.c
index b7ab7b7..e967072 100644
--- a/sway/commands/split.c
+++ b/sway/commands/split.c
@@ -13,7 +13,7 @@ static struct cmd_results *do_split(int layout) {
struct sway_container *con = config->handler_context.container;
struct sway_workspace *ws = config->handler_context.workspace;
if (con) {
- if (con->scratchpad && !con->workspace) {
+ if (container_is_scratchpad_hidden(con)) {
return cmd_results_new(CMD_FAILURE,
"Cannot split a hidden scratchpad container");
}
diff --git a/sway/commands/sticky.c b/sway/commands/sticky.c
index e79af8a..5b70199 100644
--- a/sway/commands/sticky.c
+++ b/sway/commands/sticky.c
@@ -17,15 +17,15 @@ struct cmd_results *cmd_sticky(int argc, char **argv) {
return error;
}
struct sway_container *container = config->handler_context.container;
-
+
if (container == NULL) {
return cmd_results_new(CMD_FAILURE, "No current container");
};
-
+
container->is_sticky = parse_boolean(argv[0], container->is_sticky);
if (container->is_sticky && container_is_floating_or_child(container) &&
- (!container->scratchpad || container->workspace)) {
+ !container_is_scratchpad_hidden(container)) {
// move container to active workspace
struct sway_workspace *active_workspace =
output_get_active_workspace(container->workspace->output);
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index b5f164c..ad75bb3 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -252,8 +252,7 @@ static void output_for_each_surface(struct sway_output *output,
struct sway_workspace *workspace = output_get_active_workspace(output);
struct sway_container *fullscreen_con = root->fullscreen_global;
- if (fullscreen_con && fullscreen_con->scratchpad &&
- !fullscreen_con->workspace) {
+ if (fullscreen_con && container_is_scratchpad_hidden(fullscreen_con)) {
fullscreen_con = NULL;
}
if (!fullscreen_con) {
diff --git a/sway/desktop/render.c b/sway/desktop/render.c
index 9102dc3..92e623e 100644
--- a/sway/desktop/render.c
+++ b/sway/desktop/render.c
@@ -986,8 +986,7 @@ void output_render(struct sway_output *output, struct timespec *when,
}
struct sway_container *fullscreen_con = root->fullscreen_global;
- if (fullscreen_con && fullscreen_con->scratchpad &&
- !fullscreen_con->workspace) {
+ if (fullscreen_con && container_is_scratchpad_hidden(fullscreen_con)) {
fullscreen_con = NULL;
}
if (!fullscreen_con) {
diff --git a/sway/ipc-json.c b/sway/ipc-json.c
index 87d2c1e..e109894 100644
--- a/sway/ipc-json.c
+++ b/sway/ipc-json.c
@@ -282,7 +282,7 @@ static json_object *ipc_json_describe_scratchpad_output(void) {
json_object *floating_array = json_object_new_array();
for (int i = 0; i < root->scratchpad->length; ++i) {
struct sway_container *container = root->scratchpad->items[i];
- if (!container->workspace) {
+ if (container_is_scratchpad_hidden(container)) {
json_object_array_add(floating_array,
ipc_json_describe_node_recursive(&container->node));
}
diff --git a/sway/tree/container.c b/sway/tree/container.c
index 1cf5c8e..e20e44d 100644
--- a/sway/tree/container.c
+++ b/sway/tree/container.c
@@ -1156,11 +1156,11 @@ enum sway_container_layout container_current_parent_layout(
return con->current.workspace->current.layout;
}
-list_t *container_get_siblings(const struct sway_container *container) {
+list_t *container_get_siblings(struct sway_container *container) {
if (container->parent) {
return container->parent->children;
}
- if (!container->workspace) {
+ if (container_is_scratchpad_hidden(container)) {
return NULL;
}
if (list_find(container->workspace->tiling, container) != -1) {
@@ -1169,7 +1169,7 @@ list_t *container_get_siblings(const struct sway_container *container) {
return container->workspace->floating;
}
-int container_sibling_index(const struct sway_container *child) {
+int container_sibling_index(struct sway_container *child) {
return list_find(container_get_siblings(child), child);
}
@@ -1181,7 +1181,10 @@ list_t *container_get_current_siblings(struct sway_container *container) {
}
void container_handle_fullscreen_reparent(struct sway_container *con) {
- if (con->fullscreen_mode != FULLSCREEN_WORKSPACE || !con->workspace ||
+ if (!sway_assert(con->workspace, "Expected con to have a workspace")) {
+ return;
+ }
+ if (con->fullscreen_mode != FULLSCREEN_WORKSPACE ||
con->workspace->fullscreen == con) {
return;
}
@@ -1460,3 +1463,7 @@ void container_raise_floating(struct sway_container *con) {
node_set_dirty(&floater->workspace->node);
}
}
+
+bool container_is_scratchpad_hidden(struct sway_container *con) {
+ return con->scratchpad && !con->workspace;
+}
diff --git a/sway/tree/root.c b/sway/tree/root.c
index 476e47a..6e13d6c 100644
--- a/sway/tree/root.c
+++ b/sway/tree/root.c
@@ -310,10 +310,7 @@ void root_for_each_container(void (*f)(struct sway_container *con, void *data),
// Scratchpad
for (int i = 0; i < root->scratchpad->length; ++i) {
struct sway_container *container = root->scratchpad->items[i];
- // If the container has a workspace then it's visible on a workspace
- // and will have been iterated in the previous for loop. So we only
- // iterate the hidden scratchpad containers here.
- if (!container->workspace) {
+ if (container_is_scratchpad_hidden(container)) {
f(container, data);
container_for_each_child(container, f, data);
}
@@ -362,7 +359,7 @@ struct sway_container *root_find_container(
// Scratchpad
for (int i = 0; i < root->scratchpad->length; ++i) {
struct sway_container *container = root->scratchpad->items[i];
- if (!container->workspace) {
+ if (container_is_scratchpad_hidden(container)) {
if (test(container, data)) {
return container;
}
diff --git a/sway/tree/view.c b/sway/tree/view.c
index 9ccb2a3..612cf96 100644
--- a/sway/tree/view.c
+++ b/sway/tree/view.c
@@ -197,8 +197,7 @@ static bool gaps_to_edge(struct sway_view *view) {
void view_autoconfigure(struct sway_view *view) {
struct sway_container *con = view->container;
- if (!con->workspace) {
- // Hidden in the scratchpad
+ if (container_is_scratchpad_hidden(con)) {
return;
}
struct sway_output *output = con->workspace->output;
@@ -1054,7 +1053,7 @@ void view_set_urgent(struct sway_view *view, bool enable) {
ipc_event_window(view->container, "urgent");
- if (view->container->workspace) {
+ if (!container_is_scratchpad_hidden(view->container)) {
workspace_detect_urgent(view->container->workspace);
}
}