1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:27:45 +00:00

WindowServer: Add set_virtual_dekstop WindowManager message

Users can specify the row and column of the virtual desktop, and
WindowServer will animate to it.
This commit is contained in:
Peter Elliott 2021-07-18 12:42:53 -06:00 committed by Andreas Kling
parent b8f3441300
commit 2b37fad60b
4 changed files with 12 additions and 0 deletions

View file

@ -30,6 +30,7 @@ public:
virtual void set_applet_area_position(Gfx::IntPoint const&) override;
virtual void set_event_mask(u32) override;
virtual void set_manager_window(i32) override;
virtual void set_virtual_desktop(u32, u32) override;
unsigned event_mask() const { return m_event_mask; }
int window_id() const { return m_window_id; }