WindowServer: Allow changing frameless state after a window is created

This commit is contained in:
Tom 2021-02-20 23:10:21 -07:00 committed by Andreas Kling
commit 1c31bcb24e
Notes: sideshowbarker 2024-07-18 22:04:17 +09:00
7 changed files with 39 additions and 2 deletions

View file

@ -88,6 +88,7 @@ endpoint WindowServer = 2
SetWindowHasAlphaChannel(i32 window_id, bool has_alpha_channel) => ()
MoveWindowToFront(i32 window_id) => ()
SetFullscreen(i32 window_id, bool fullscreen) => ()
SetFrameless(i32 window_id, bool frameless) => ()
PopupMenu(i32 menu_id, Gfx::IntPoint screen_position) => ()
DismissMenu(i32 menu_id) => ()