summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2017-01-13 19:16:38 -0500
committerLibravatar GitHub <noreply@github.com>2017-01-13 19:16:38 -0500
commit0001b00706bfdaa185a9fd6823ff947c14aa3b5f (patch)
tree68f4595908ff4f33f27e3c30813835642845d290 /include
parentMerge pull request #1044 from ametisf/master (diff)
parentAdd output wrapping (diff)
downloadsway-0001b00706bfdaa185a9fd6823ff947c14aa3b5f.tar.gz
sway-0001b00706bfdaa185a9fd6823ff947c14aa3b5f.tar.zst
sway-0001b00706bfdaa185a9fd6823ff947c14aa3b5f.zip
Merge pull request #1048 from dkess/proper-output-wrapping
Add output wrapping
Diffstat (limited to 'include')
-rw-r--r--include/sway/output.h1
1 files changed, 1 insertions, 0 deletions
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.