mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-14 06:59:43 -05:00
Manage wlr_output_cursor from wlr_cursor
This commit is contained in:
parent
c45f2eef0e
commit
2e2d63a164
4 changed files with 69 additions and 7 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue