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

WindowServer, LibGUI: RefreshSystemTheme implementation

Adds a mechanism through which windowing clients can re-request an
UpdateSystemTheme message. This is currently used in SystemMenu's
ShutdownDialog to refresh it's theme when the dialog is instantiated.
This commit is contained in:
Nick Vella 2021-01-16 15:56:41 +11:00 committed by Andreas Kling
parent fdc9b3c5a0
commit fcf50af53d
5 changed files with 15 additions and 0 deletions

View file

@ -98,6 +98,7 @@ endpoint WindowServer = 2
SetSystemTheme(String theme_path, [UTF8] String theme_name) => (bool success)
GetSystemTheme() => ([UTF8] String theme_name)
RefreshSystemTheme() =|
SetWindowBaseSizeAndSizeIncrement(i32 window_id, Gfx::IntSize base_size, Gfx::IntSize size_increment) => ()
SetWindowResizeAspectRatio(i32 window_id, Optional<Gfx::IntSize> resize_aspect_ratio) => ()