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

WindowServer: Add an IPC call to get the window floating rect

This commit is contained in:
Tim Ledbetter 2023-09-21 21:22:08 +01:00 committed by Andrew Kaster
parent deb7ecfbe9
commit 50d0d6e710
3 changed files with 13 additions and 0 deletions

View file

@ -77,6 +77,8 @@ endpoint WindowServer
set_window_rect(i32 window_id, Gfx::IntRect rect) => (Gfx::IntRect rect)
get_window_rect(i32 window_id) => (Gfx::IntRect rect)
get_window_floating_rect(i32 window_id) => (Gfx::IntRect rect)
set_window_minimum_size(i32 window_id, Gfx::IntSize size) =|
get_window_minimum_size(i32 window_id) => (Gfx::IntSize size)