aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/output.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2016-09-01 08:18:37 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2016-09-01 08:18:37 -0400
commit416417a54c5875abcdc257b6ad10ff086c35eefc (patch)
tree00f20884a05d05e620a4a24bba8595557cd41405 /include/sway/output.h
parentMerge pull request #876 from zandrmartin/patch-1 (diff)
downloadsway-416417a54c5875abcdc257b6ad10ff086c35eefc.tar.gz
sway-416417a54c5875abcdc257b6ad10ff086c35eefc.tar.zst
sway-416417a54c5875abcdc257b6ad10ff086c35eefc.zip
Reorganize includes
Diffstat (limited to 'include/sway/output.h')
-rw-r--r--include/sway/output.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/include/sway/output.h b/include/sway/output.h
new file mode 100644
index 00000000..e8afd5ed
--- /dev/null
+++ b/include/sway/output.h
@@ -0,0 +1,24 @@
1#ifndef _SWAY_OUTPUT_H
2#define _SWAY_OUTPUT_H
3
4#include "container.h"
5#include "focus.h"
6
7// Position is absolute coordinates on the edge where the adjacent output
8// should be searched for.
9swayc_t *output_by_name(const char* name, 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);
11
12// Place absolute coordinates for given container into given wlc_point.
13void get_absolute_position(swayc_t *container, struct wlc_point *point);
14
15// Place absolute coordinates for the center point of given container into
16// given wlc_point.
17void get_absolute_center_position(swayc_t *container, struct wlc_point *point);
18
19// stable sort workspaces on this output
20void sort_workspaces(swayc_t *output);
21
22void output_get_scaled_size(wlc_handle handle, struct wlc_size *size);
23
24#endif