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

LibGfx: Add SystemTheme::load_system_theme(Core::ConfigFile const&)

This makes loading system themes possible via FileSystemAccessClient
(needed for the Theme Editor). :^)
This commit is contained in:
Karol Kosek 2021-08-25 22:22:07 +02:00 committed by Andreas Kling
parent 09314ad611
commit f878e4464f
2 changed files with 12 additions and 6 deletions

View file

@ -10,6 +10,7 @@
#include <AK/String.h>
#include <AK/Types.h>
#include <LibCore/AnonymousBuffer.h>
#include <LibCore/ConfigFile.h>
#include <LibGfx/Color.h>
namespace Gfx {
@ -145,7 +146,8 @@ struct SystemTheme {
Core::AnonymousBuffer& current_system_theme_buffer();
void set_system_theme(Core::AnonymousBuffer);
Core::AnonymousBuffer load_system_theme(const String& path);
Core::AnonymousBuffer load_system_theme(Core::ConfigFile const&);
Core::AnonymousBuffer load_system_theme(String const& path);
}