LibGfx: Make Palette::color(ColorRole) inline

This commit is contained in:
Andreas Kling 2021-02-07 16:52:53 +01:00
parent 767ff06f56
commit 22baa5e64f
Notes: sideshowbarker 2024-07-18 22:32:29 +09:00
2 changed files with 7 additions and 13 deletions

View file

@ -49,17 +49,6 @@ Palette::~Palette()
{
}
const SystemTheme& PaletteImpl::theme() const
{
return *m_theme_buffer.data<SystemTheme>();
}
Color PaletteImpl::color(ColorRole role) const
{
ASSERT((int)role < (int)ColorRole::__Count);
return Color::from_rgba(theme().color[(int)role]);
}
int PaletteImpl::metric(MetricRole role) const
{
ASSERT((int)role < (int)MetricRole::__Count);

View file

@ -44,10 +44,15 @@ public:
static NonnullRefPtr<PaletteImpl> create_with_anonymous_buffer(Core::AnonymousBuffer);
NonnullRefPtr<PaletteImpl> clone() const;
Color color(ColorRole) const;
Color color(ColorRole role) const
{
ASSERT((int)role < (int)ColorRole::__Count);
return Color::from_rgba(theme().color[(int)role]);
}
int metric(MetricRole) const;
String path(PathRole) const;
const SystemTheme& theme() const;
const SystemTheme& theme() const { return *m_theme_buffer.data<SystemTheme>(); }
void replace_internal_buffer(Badge<GUI::Application>, Core::AnonymousBuffer buffer);