1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 10:38:13 +00:00

WindowServer: Add WindowServer::async_set_window_parent_from_client()

This allows a client to set the parent for one of its local windows
where the parent window is in another client.
This commit is contained in:
Timothy 2021-07-13 00:35:46 +10:00 committed by Andreas Kling
parent 522f6775a7
commit 88e6d18a61
3 changed files with 20 additions and 0 deletions

View file

@ -164,6 +164,7 @@ private:
virtual Messages::WindowServer::IsWindowModifiedResponse is_window_modified(i32) override;
virtual Messages::WindowServer::GetDesktopDisplayScaleResponse get_desktop_display_scale(u32) override;
virtual void set_flash_flush(bool) override;
virtual void set_window_parent_from_client(i32, i32, i32) override;
Window* window_from_id(i32 window_id);