mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-02 09:01:38 -05:00
seat: Provide dummy resources for inert seats
This commit is contained in:
parent
3898bb482d
commit
00489b11a0
5 changed files with 46 additions and 4 deletions
|
|
@ -10,18 +10,24 @@ extern const struct wlr_touch_grab_interface default_touch_grab_impl;
|
|||
|
||||
void seat_client_create_pointer(struct wlr_seat_client *seat_client,
|
||||
uint32_t version, uint32_t id);
|
||||
void seat_client_create_inert_pointer(struct wl_client *client,
|
||||
uint32_t version, uint32_t id);
|
||||
void seat_client_destroy_pointer(struct wl_resource *resource);
|
||||
void seat_client_send_pointer_leave_raw(struct wlr_seat_client *seat_client,
|
||||
struct wlr_surface *surface);
|
||||
|
||||
void seat_client_create_keyboard(struct wlr_seat_client *seat_client,
|
||||
uint32_t version, uint32_t id);
|
||||
void seat_client_create_inert_keyboard(struct wl_client *client,
|
||||
uint32_t version, uint32_t id);
|
||||
void seat_client_destroy_keyboard(struct wl_resource *resource);
|
||||
void seat_client_send_keyboard_leave_raw(struct wlr_seat_client *seat_client,
|
||||
struct wlr_surface *surface);
|
||||
|
||||
void seat_client_create_touch(struct wlr_seat_client *seat_client,
|
||||
uint32_t version, uint32_t id);
|
||||
void seat_client_create_inert_touch(struct wl_client *client,
|
||||
uint32_t version, uint32_t id);
|
||||
void seat_client_destroy_touch(struct wl_resource *resource);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue