diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-01-13 19:16:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-13 19:16:38 -0500 |
commit | 0001b00706bfdaa185a9fd6823ff947c14aa3b5f (patch) | |
tree | 68f4595908ff4f33f27e3c30813835642845d290 /include/sway | |
parent | c1e6cc3257e5f37438e661427d625168a76ecc27 (diff) | |
parent | eda4bad725b8a76accdb2a9c648efa046b88c0c0 (diff) | |
download | sway-0001b00706bfdaa185a9fd6823ff947c14aa3b5f.tar.xz |
Merge pull request #1048 from dkess/proper-output-wrapping
Add output wrapping
Diffstat (limited to 'include/sway')
-rw-r--r-- | include/sway/output.h | 1 |
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 @@ // Position is absolute coordinates on the edge where the adjacent output // should be searched for. swayc_t *output_by_name(const char* name, const struct wlc_point *abs_pos); +swayc_t *swayc_opposite_output(enum movement_direction dir, const struct wlc_point *abs_pos); swayc_t *swayc_adjacent_output(swayc_t *output, enum movement_direction dir, const struct wlc_point *abs_pos, bool pick_closest); // Place absolute coordinates for given container into given wlc_point. |