Manage wlr_output_cursor from wlr_cursor

This commit is contained in:
emersion 2017-10-29 11:20:11 +01:00
parent c45f2eef0e
commit 2e2d63a164
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48
4 changed files with 69 additions and 7 deletions

View file

@ -12,6 +12,7 @@ struct wlr_output_layout {
struct wlr_output_layout_state *state;
struct {
struct wl_signal add;
struct wl_signal change;
struct wl_signal destroy;
} events;
@ -24,6 +25,10 @@ struct wlr_output_layout_output {
int x, y;
struct wl_list link;
struct wlr_output_layout_output_state *state;
struct {
struct wl_signal destroy;
} events;
};
struct wlr_output_layout *wlr_output_layout_create();