diff options
author | Tom <tomut@yahoo.com> | 2021-06-30 19:12:02 -0600 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-07-03 12:27:23 +0200 |
commit | 7984c2836d7a7e472aca383225deed5d50601e06 (patch) | |
tree | 477073e39dc6351baa6f404651beecbbf6e30adb /Userland/Libraries/LibGUI/WindowManagerServerConnection.h | |
parent | 584b144953ba0f715c02b54444a61674a4c99e8a (diff) | |
download | serenity-7984c2836d7a7e472aca383225deed5d50601e06.zip |
WindowServer: Add API to change virtual desktop settings
This also adds the ability to query how many virtual desktops are
set up, and for the Taskbar to be notified when the active virtual
desktop has changed.
Diffstat (limited to 'Userland/Libraries/LibGUI/WindowManagerServerConnection.h')
-rw-r--r-- | Userland/Libraries/LibGUI/WindowManagerServerConnection.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/WindowManagerServerConnection.h b/Userland/Libraries/LibGUI/WindowManagerServerConnection.h index 990dbd1841..b91d4e9005 100644 --- a/Userland/Libraries/LibGUI/WindowManagerServerConnection.h +++ b/Userland/Libraries/LibGUI/WindowManagerServerConnection.h @@ -27,12 +27,13 @@ public: private: virtual void window_removed(i32, i32, i32) override; - virtual void window_state_changed(i32, i32, i32, i32, i32, bool, bool, bool, bool, i32, String const&, Gfx::IntRect const&, Optional<i32> const&) override; + virtual void window_state_changed(i32, i32, i32, i32, i32, u32, u32, bool, bool, bool, bool, i32, String const&, Gfx::IntRect const&, Optional<i32> const&) override; virtual void window_icon_bitmap_changed(i32, i32, i32, Gfx::ShareableBitmap const&) override; virtual void window_rect_changed(i32, i32, i32, Gfx::IntRect const&) override; virtual void applet_area_size_changed(i32, Gfx::IntSize const&) override; virtual void super_key_pressed(i32) override; virtual void super_space_key_pressed(i32) override; + virtual void virtual_desktop_changed(i32, u32, u32) override; }; } |