aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/show_marks.c
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-05-15 13:14:18 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-05-17 08:29:14 +1000
commit0e2cc0af3049c6d1b91bda3081238e2e723e81b7 (patch)
tree34a18b12524c8de5bf68712162071abe3e574d71 /sway/commands/show_marks.c
parentMerge pull request #1995 from RedSoxFan/fix-1985 (diff)
downloadsway-0e2cc0af3049c6d1b91bda3081238e2e723e81b7.tar.gz
sway-0e2cc0af3049c6d1b91bda3081238e2e723e81b7.tar.zst
sway-0e2cc0af3049c6d1b91bda3081238e2e723e81b7.zip
Implement show_marks
Diffstat (limited to 'sway/commands/show_marks.c')
-rw-r--r--sway/commands/show_marks.c43
1 files changed, 43 insertions, 0 deletions
diff --git a/sway/commands/show_marks.c b/sway/commands/show_marks.c
new file mode 100644
index 00000000..c7fdc538
--- /dev/null
+++ b/sway/commands/show_marks.c
@@ -0,0 +1,43 @@
1#define _POSIX_C_SOURCE 200809L
2#include <string.h>
3#include "sway/commands.h"
4#include "sway/config.h"
5#include "sway/tree/view.h"
6#include "sway/output.h"
7#include "list.h"
8#include "log.h"
9#include "stringop.h"
10
11static void rebuild_marks_iterator(struct sway_container *con, void *data) {
12 if (con->type == C_VIEW) {
13 view_update_marks_textures(con->sway_view);
14 }
15}
16
17struct cmd_results *cmd_show_marks(int argc, char **argv) {
18 struct cmd_results *error = NULL;
19 if ((error = checkarg(argc, "show_marks", EXPECTED_AT_LEAST, 1))) {
20 return error;
21 }
22
23 if (strcmp(*argv, "yes") == 0) {
24 config->show_marks = true;
25 } else if (strcmp(*argv, "no") == 0) {
26 config->show_marks = false;
27 } else {
28 return cmd_results_new(CMD_INVALID, "show_marks",
29 "Expected 'show_marks <yes|no>'");
30 }
31
32 if (config->show_marks) {
33 container_for_each_descendant_dfs(&root_container,
34 rebuild_marks_iterator, NULL);
35 }
36
37 for (int i = 0; i < root_container.children->length; ++i) {
38 struct sway_container *con = root_container.children->items[i];
39 output_damage_whole(con->sway_output);
40 }
41
42 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
43}