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

LibGUI: Port AbstractThemePreview::set_theme_from_file to Core::Stream

This commit is contained in:
Karol Kosek 2023-01-09 21:05:23 +01:00 committed by Jelle Raaijmakers
parent 17012b266c
commit ca7648b1ae
3 changed files with 5 additions and 5 deletions

View file

@ -24,7 +24,7 @@ public:
Gfx::Palette const& preview_palette() const { return m_preview_palette; }
void set_preview_palette(Gfx::Palette const&);
ErrorOr<void> set_theme_from_file(Core::File&);
ErrorOr<void> set_theme_from_file(StringView path, NonnullOwnPtr<Core::Stream::File>);
void set_theme(Core::AnonymousBuffer const&);
void paint_window(StringView title, Gfx::IntRect const& rect, Gfx::WindowTheme::WindowState, Gfx::Bitmap const& icon, int button_count = 3);