diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-08-30 10:39:22 -0400 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2017-08-31 07:47:44 -0400 |
commit | 40bd6bcc437c219b9045f796f7a572903307c6b0 (patch) | |
tree | fb9afa1a03f115b9abe612cfb52e7e2b8e56ba8a /include/wlr | |
parent | e91c91d45544d7bd435e7628dcafaa346c5310b9 (diff) |
implement output layout auto configuration
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_output_layout.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_output_layout.h b/include/wlr/types/wlr_output_layout.h index b1253eb1..78127f19 100644 --- a/include/wlr/types/wlr_output_layout.h +++ b/include/wlr/types/wlr_output_layout.h @@ -67,4 +67,15 @@ void wlr_output_layout_closest_point(struct wlr_output_layout *layout, struct wlr_box *wlr_output_layout_get_box( struct wlr_output_layout *layout, struct wlr_output *reference); +/** +* Add an auto configured output to the layout. This will place the output in a +* sensible location in the layout. The coordinates of the output in the layout +* may adjust dynamically when the layout changes. If the output is already in +* the layout, it will become auto configured. If the position of the output is +* set such as with `wlr_output_layout_move()`, the output will become manually +* configured. +*/ +void wlr_output_layout_add_auto(struct wlr_output_layout *layout, + struct wlr_output *output); + #endif |