1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:28:11 +00:00

WindowServer: Add methods for set background color and wallpaper mode

This commit is contained in:
Hüseyin ASLITÜRK 2020-03-29 13:32:06 +03:00 committed by Andreas Kling
parent 7194b4823e
commit adf524015a
5 changed files with 55 additions and 1 deletions

View file

@ -74,6 +74,10 @@ endpoint WindowServer = 2
DismissMenu(i32 menu_id) => ()
AsyncSetWallpaper(String path) =|
SetBackgroundColor(String background_color) => ()
SetWallpaperMode(String mode) => ()
SetResolution(Gfx::Size resolution) => (bool success, Gfx::Size resolution)
SetWindowIconBitmap(i32 window_id, i32 icon_buffer_id, Gfx::Size icon_size) => ()