diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-09-05 20:55:27 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-05 20:55:27 +0900 |
commit | c5a2014a2ff3e22086c0d911f3bf771c5d5fb112 (patch) | |
tree | 905cc9e62ed24dbc2675097357ee44cf99eb550d /include/wlr | |
parent | 6089967e070f382ca33854c8dd9560a9b6c4af6f (diff) | |
parent | 6904ed8bd95b3c6c9454086db0f5734cfff66ff3 (diff) |
Merge pull request #133 from acrisci/feature/wlr-cursor-layout-changes
wlr_cursor: automatically handle layout changes
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_output_layout.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_output_layout.h b/include/wlr/types/wlr_output_layout.h index 78127f19..9cccd53c 100644 --- a/include/wlr/types/wlr_output_layout.h +++ b/include/wlr/types/wlr_output_layout.h @@ -9,6 +9,11 @@ struct wlr_output_layout_state; struct wlr_output_layout { struct wl_list outputs; struct wlr_output_layout_state *state; + + struct { + struct wl_signal change; + struct wl_signal destroy; + } events; }; struct wlr_output_layout_output_state; |