aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway')
-rw-r--r--include/sway/commands.h1
-rw-r--r--include/sway/config.h1
-rw-r--r--include/sway/criteria.h1
-rw-r--r--include/sway/tree/layout.h2
-rw-r--r--include/sway/tree/view.h2
5 files changed, 6 insertions, 1 deletions
diff --git a/include/sway/commands.h b/include/sway/commands.h
index d39ac56c..365068ae 100644
--- a/include/sway/commands.h
+++ b/include/sway/commands.h
@@ -144,6 +144,7 @@ sway_cmd cmd_splitt;
144sway_cmd cmd_splitv; 144sway_cmd cmd_splitv;
145sway_cmd cmd_sticky; 145sway_cmd cmd_sticky;
146sway_cmd cmd_swaybg_command; 146sway_cmd cmd_swaybg_command;
147sway_cmd cmd_swap;
147sway_cmd cmd_title_format; 148sway_cmd cmd_title_format;
148sway_cmd cmd_unmark; 149sway_cmd cmd_unmark;
149sway_cmd cmd_workspace; 150sway_cmd cmd_workspace;
diff --git a/include/sway/config.h b/include/sway/config.h
index 33f52156..118981e3 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -28,6 +28,7 @@ struct sway_variable {
28struct sway_binding { 28struct sway_binding {
29 int order; 29 int order;
30 bool release; 30 bool release;
31 bool locked;
31 bool bindcode; 32 bool bindcode;
32 list_t *keys; 33 list_t *keys;
33 uint32_t modifiers; 34 uint32_t modifiers;
diff --git a/include/sway/criteria.h b/include/sway/criteria.h
index 74da132c..bd3ca0ac 100644
--- a/include/sway/criteria.h
+++ b/include/sway/criteria.h
@@ -18,6 +18,7 @@ struct criteria {
18 char *target; // workspace or output name for `assign` criteria 18 char *target; // workspace or output name for `assign` criteria
19 19
20 pcre *title; 20 pcre *title;
21 pcre *shell;
21 pcre *app_id; 22 pcre *app_id;
22 pcre *class; 23 pcre *class;
23 pcre *instance; 24 pcre *instance;
diff --git a/include/sway/tree/layout.h b/include/sway/tree/layout.h
index cc999871..2e0f2abf 100644
--- a/include/sway/tree/layout.h
+++ b/include/sway/tree/layout.h
@@ -69,4 +69,6 @@ struct sway_container *container_split(struct sway_container *child,
69void container_recursive_resize(struct sway_container *container, 69void container_recursive_resize(struct sway_container *container,
70 double amount, enum resize_edge edge); 70 double amount, enum resize_edge edge);
71 71
72void container_swap(struct sway_container *con1, struct sway_container *con2);
73
72#endif 74#endif
diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h
index 0fb8f1b3..a8bf4955 100644
--- a/include/sway/tree/view.h
+++ b/include/sway/tree/view.h
@@ -201,7 +201,7 @@ const char *view_get_window_role(struct sway_view *view);
201 201
202uint32_t view_get_window_type(struct sway_view *view); 202uint32_t view_get_window_type(struct sway_view *view);
203 203
204const char *view_get_type(struct sway_view *view); 204const char *view_get_shell(struct sway_view *view);
205 205
206void view_configure(struct sway_view *view, double ox, double oy, int width, 206void view_configure(struct sway_view *view, double ox, double oy, int width,
207 int height); 207 int height);