summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar willakat <willakat@users.noreply.github.com>2017-01-14 19:40:02 +0100
committerLibravatar GitHub <noreply@github.com>2017-01-14 19:40:02 +0100
commit4c06a100046db6f8756e245c351eb9420a272f93 (patch)
tree51350f88fb37fea4c94c5787d0df32a3eb102ab1 /include
parentMerge branch 'master' into master (diff)
parentMerge pull request #1048 from dkess/proper-output-wrapping (diff)
downloadsway-4c06a100046db6f8756e245c351eb9420a272f93.tar.gz
sway-4c06a100046db6f8756e245c351eb9420a272f93.tar.zst
sway-4c06a100046db6f8756e245c351eb9420a272f93.zip
Merge branch 'master' into master
Diffstat (limited to 'include')
-rw-r--r--include/sway/config.h3
-rw-r--r--include/sway/output.h1
2 files changed, 3 insertions, 1 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index 4a14cd36..febde63d 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -178,7 +178,8 @@ enum edge_border_types {
178 E_NONE, /**< Don't hide edge borders */ 178 E_NONE, /**< Don't hide edge borders */
179 E_VERTICAL, /**< hide vertical edge borders */ 179 E_VERTICAL, /**< hide vertical edge borders */
180 E_HORIZONTAL, /**< hide horizontal edge borders */ 180 E_HORIZONTAL, /**< hide horizontal edge borders */
181 E_BOTH /**< hide vertical and horizontal edge borders */ 181 E_BOTH, /**< hide vertical and horizontal edge borders */
182 E_SMART /**< hide both if precisely one window is present in workspace */
182}; 183};
183 184
184enum command_context { 185enum command_context {
diff --git a/include/sway/output.h b/include/sway/output.h
index e8afd5ed..e1bdd3f0 100644
--- a/include/sway/output.h
+++ b/include/sway/output.h
@@ -7,6 +7,7 @@
7// Position is absolute coordinates on the edge where the adjacent output 7// Position is absolute coordinates on the edge where the adjacent output
8// should be searched for. 8// should be searched for.
9swayc_t *output_by_name(const char* name, const struct wlc_point *abs_pos); 9swayc_t *output_by_name(const char* name, const struct wlc_point *abs_pos);
10swayc_t *swayc_opposite_output(enum movement_direction dir, const struct wlc_point *abs_pos);
10swayc_t *swayc_adjacent_output(swayc_t *output, enum movement_direction dir, const struct wlc_point *abs_pos, bool pick_closest); 11swayc_t *swayc_adjacent_output(swayc_t *output, enum movement_direction dir, const struct wlc_point *abs_pos, bool pick_closest);
11 12
12// Place absolute coordinates for given container into given wlc_point. 13// Place absolute coordinates for given container into given wlc_point.