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

WindowServer: Add IPC calls for controlling cursor theme

This commit adds two new IPC calls for WindowServer: apply_cursor_theme
and get_cursor_theme.
This commit is contained in:
Maciej Zygmanowski 2021-08-01 17:23:31 +02:00 committed by Andreas Kling
parent 040a723f1f
commit 0363cd3d55
3 changed files with 17 additions and 0 deletions

View file

@ -114,6 +114,9 @@ endpoint WindowServer
get_system_theme() => ([UTF8] String theme_name)
refresh_system_theme() =|
apply_cursor_theme(String name) =|
get_cursor_theme() => (String name)
set_system_fonts(String default_font_query, String fixed_width_font_query) => (bool success)
set_window_base_size_and_size_increment(i32 window_id, Gfx::IntSize base_size, Gfx::IntSize size_increment) =|