aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Ronan Pigott <ronan@rjp.ie>2022-11-16 15:50:34 -0700
committerLibravatar Simon Ser <contact@emersion.fr>2022-11-26 09:48:58 +0100
commiteb5021ef990fb29ff86544aea58d687ad62c757a (patch)
tree5962cd10d597a8b9cb98f1da6baf270a435af5c8 /include
parentbuild: drop intermediate libraries for protocols (diff)
downloadsway-eb5021ef990fb29ff86544aea58d687ad62c757a.tar.gz
sway-eb5021ef990fb29ff86544aea58d687ad62c757a.tar.zst
sway-eb5021ef990fb29ff86544aea58d687ad62c757a.zip
root: move the workspace matching code to its own file
This removes the pid_workspace bits from tree/root before it gets too interesting. No functional change.
Diffstat (limited to 'include')
-rw-r--r--include/sway/desktop/launcher.h14
-rw-r--r--include/sway/tree/root.h8
2 files changed, 14 insertions, 8 deletions
diff --git a/include/sway/desktop/launcher.h b/include/sway/desktop/launcher.h
new file mode 100644
index 00000000..cb22eb98
--- /dev/null
+++ b/include/sway/desktop/launcher.h
@@ -0,0 +1,14 @@
1#ifndef _SWAY_LAUNCHER_H
2#define _SWAY_LAUNCHER_H
3
4#include <stdlib.h>
5
6struct sway_workspace *root_workspace_for_pid(pid_t pid);
7
8void root_record_workspace_pid(pid_t pid);
9
10void root_remove_workspace_pid(pid_t pid);
11
12void root_rename_pid_workspaces(const char *old_name, const char *new_name);
13
14#endif
diff --git a/include/sway/tree/root.h b/include/sway/tree/root.h
index af4124a1..a2c088e7 100644
--- a/include/sway/tree/root.h
+++ b/include/sway/tree/root.h
@@ -69,12 +69,6 @@ void root_scratchpad_show(struct sway_container *con);
69 */ 69 */
70void root_scratchpad_hide(struct sway_container *con); 70void root_scratchpad_hide(struct sway_container *con);
71 71
72struct sway_workspace *root_workspace_for_pid(pid_t pid);
73
74void root_record_workspace_pid(pid_t pid);
75
76void root_remove_workspace_pid(pid_t pid);
77
78void root_for_each_workspace(void (*f)(struct sway_workspace *ws, void *data), 72void root_for_each_workspace(void (*f)(struct sway_workspace *ws, void *data),
79 void *data); 73 void *data);
80 74
@@ -92,6 +86,4 @@ struct sway_container *root_find_container(
92 86
93void root_get_box(struct sway_root *root, struct wlr_box *box); 87void root_get_box(struct sway_root *root, struct wlr_box *box);
94 88
95void root_rename_pid_workspaces(const char *old_name, const char *new_name);
96
97#endif 89#endif