Implement cursor event simulation with sway commands.

This commit is contained in:
Danny Bautista 2018-04-10 11:32:37 -04:00
parent 4240ede065
commit 1edb2bd892
7 changed files with 91 additions and 2 deletions

View file

@ -30,5 +30,6 @@ struct sway_cursor {
void sway_cursor_destroy(struct sway_cursor *cursor);
struct sway_cursor *sway_cursor_create(struct sway_seat *seat);
void cursor_send_pointer_motion(struct sway_cursor *cursor, uint32_t time);
void dispatch_cursor_button(struct sway_cursor *cursor, uint32_t time_msec, uint32_t button, enum wlr_button_state state);
#endif