mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
cc4b3cbacc
Some checks are pending
CI / Lagom (false, FUZZ, ubuntu-24.04, Linux, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, macos-14, macOS, Clang) (push) Waiting to run
CI / Lagom (false, NO_FUZZ, ubuntu-24.04, Linux, GNU) (push) Waiting to run
CI / Lagom (true, NO_FUZZ, ubuntu-24.04, Linux, Clang) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (macos-14, macOS, macOS-universal2) (push) Waiting to run
Package the js repl as a binary artifact / build-and-package (ubuntu-24.04, Linux, Linux-x86_64) (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Push notes / build (push) Waiting to run
95 lines
2.6 KiB
C++
95 lines
2.6 KiB
C++
/*
|
|
* Copyright (c) 2018-2023, Andreas Kling <andreas@ladybird.org>
|
|
* Copyright (c) 2021, Sam Atkins <atkinssj@serenityos.org>
|
|
* Copyright (c) 2022, Filiph Sandström <filiph.sandstrom@filfatstudios.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/Badge.h>
|
|
#include <LibGfx/Palette.h>
|
|
#include <string.h>
|
|
|
|
namespace Gfx {
|
|
|
|
NonnullRefPtr<PaletteImpl> PaletteImpl::create_with_anonymous_buffer(Core::AnonymousBuffer buffer)
|
|
{
|
|
return adopt_ref(*new PaletteImpl(move(buffer)));
|
|
}
|
|
|
|
PaletteImpl::PaletteImpl(Core::AnonymousBuffer buffer)
|
|
: m_theme_buffer(move(buffer))
|
|
{
|
|
}
|
|
|
|
Palette::Palette(NonnullRefPtr<PaletteImpl> impl)
|
|
: m_impl(move(impl))
|
|
{
|
|
}
|
|
|
|
int PaletteImpl::metric(MetricRole role) const
|
|
{
|
|
VERIFY((int)role < (int)MetricRole::__Count);
|
|
return theme().metric[(int)role];
|
|
}
|
|
|
|
ByteString PaletteImpl::path(PathRole role) const
|
|
{
|
|
VERIFY((int)role < (int)PathRole::__Count);
|
|
return theme().path[(int)role];
|
|
}
|
|
|
|
NonnullRefPtr<PaletteImpl> PaletteImpl::clone() const
|
|
{
|
|
auto new_theme_buffer = Core::AnonymousBuffer::create_with_size(m_theme_buffer.size()).release_value();
|
|
memcpy(new_theme_buffer.data<SystemTheme>(), &theme(), m_theme_buffer.size());
|
|
return adopt_ref(*new PaletteImpl(move(new_theme_buffer)));
|
|
}
|
|
|
|
void Palette::set_color(ColorRole role, Color color)
|
|
{
|
|
if (m_impl->ref_count() != 1)
|
|
m_impl = m_impl->clone();
|
|
auto& theme = const_cast<SystemTheme&>(impl().theme());
|
|
theme.color[(int)role] = color.value();
|
|
}
|
|
|
|
void Palette::set_alignment(AlignmentRole role, Gfx::TextAlignment value)
|
|
{
|
|
if (m_impl->ref_count() != 1)
|
|
m_impl = m_impl->clone();
|
|
auto& theme = const_cast<SystemTheme&>(impl().theme());
|
|
theme.alignment[(int)role] = value;
|
|
}
|
|
|
|
void Palette::set_flag(FlagRole role, bool value)
|
|
{
|
|
if (m_impl->ref_count() != 1)
|
|
m_impl = m_impl->clone();
|
|
auto& theme = const_cast<SystemTheme&>(impl().theme());
|
|
theme.flag[(int)role] = value;
|
|
}
|
|
|
|
void Palette::set_metric(MetricRole role, int value)
|
|
{
|
|
if (m_impl->ref_count() != 1)
|
|
m_impl = m_impl->clone();
|
|
auto& theme = const_cast<SystemTheme&>(impl().theme());
|
|
theme.metric[(int)role] = value;
|
|
}
|
|
|
|
void Palette::set_path(PathRole role, ByteString path)
|
|
{
|
|
if (m_impl->ref_count() != 1)
|
|
m_impl = m_impl->clone();
|
|
auto& theme = const_cast<SystemTheme&>(impl().theme());
|
|
memcpy(theme.path[(int)role], path.characters(), min(path.length() + 1, sizeof(theme.path[(int)role])));
|
|
theme.path[(int)role][sizeof(theme.path[(int)role]) - 1] = '\0';
|
|
}
|
|
|
|
void PaletteImpl::replace_internal_buffer(Core::AnonymousBuffer buffer)
|
|
{
|
|
m_theme_buffer = move(buffer);
|
|
}
|
|
|
|
}
|