1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 21:07:36 +00:00

WindowServer: Add a new IPC to set the cursor position

This commit is contained in:
Andrea Martinelli 2021-07-08 11:29:39 +02:00 committed by Andreas Kling
parent 86a4d0694f
commit 5397845a41
3 changed files with 14 additions and 0 deletions

View file

@ -150,6 +150,7 @@ private:
virtual void set_window_progress(i32, Optional<i32> const&) override;
virtual void refresh_system_theme() override;
virtual void pong() override;
virtual void set_global_cursor_position(Gfx::IntPoint const&) override;
virtual Messages::WindowServer::GetGlobalCursorPositionResponse get_global_cursor_position() override;
virtual void set_mouse_acceleration(float) override;
virtual Messages::WindowServer::GetMouseAccelerationResponse get_mouse_acceleration() override;