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

LibGfx: Add Paths to themes

Paths allows themes to specify directories/files where custom
resources are located.
This commit is contained in:
thankyouverycool 2020-07-29 16:09:04 -04:00 committed by Andreas Kling
parent 044b4cc090
commit 41aacdf815
4 changed files with 45 additions and 0 deletions

View file

@ -45,6 +45,7 @@ public:
Color color(ColorRole) const;
int metric(MetricRole) const;
String path(PathRole) const;
const SystemTheme& theme() const;
void replace_internal_buffer(Badge<GUI::Application>, SharedBuffer& buffer);
@ -124,11 +125,15 @@ public:
int window_title_button_width() const { return metric(MetricRole::TitleButtonWidth); }
int window_title_button_height() const { return metric(MetricRole::TitleButtonHeight); }
String title_button_icons_path() const { return path(PathRole::TitleButtonIcons); }
Color color(ColorRole role) const { return m_impl->color(role); }
int metric(MetricRole role) const { return m_impl->metric(role); }
String path(PathRole role) const { return m_impl->path(role); }
void set_color(ColorRole, Color);
void set_metric(MetricRole, int);
void set_path(PathRole, String);
const SystemTheme& theme() const { return m_impl->theme(); }