cursor: add cursor_update_focus()

...and call it from desktop_move_to_front() in order force an enter event
on the surface below the cursor when cycling views.

Fixes #162 and #225
Inspired by PR #164 - just restructured it a bit.

Suggested-by: @bi4k8
Co-authored-by: Consolatis <35009135+Consolatis@users.noreply.github.com>
This commit is contained in:
Johan Malm 2021-12-26 22:09:41 +00:00 committed by Johan Malm
parent 841b6550a9
commit ce38d2dbd6
3 changed files with 23 additions and 1 deletions

View file

@ -479,6 +479,14 @@ void cursor_rebase(struct seat *seat, uint32_t time_msec);
*/
void cursor_set(struct seat *seat, const char *cursor_name);
/**
* cursor_update_focus - update cursor focus
* @server - server
* Use it to force an update of the cursor icon and to send an enter event
* to the surface below the cursor.
*/
void cursor_update_focus(struct server *server);
void cursor_init(struct seat *seat);
void cursor_finish(struct seat *seat);