-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathPalette.cpp
126 lines (109 loc) · 3.57 KB
/
Palette.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
* Copyright (c) 2018-2023, Andreas Kling <[email protected]>
* Copyright (c) 2021, Sam Atkins <[email protected]>
* Copyright (c) 2022, Filiph Sandström <[email protected]>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/Badge.h>
#include <LibGfx/ClassicWindowTheme.h>
#include <LibGfx/GlassWindowTheme.h>
#include <LibGfx/Palette.h>
#include <LibGfx/PlasticWindowTheme.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)));
}
Gfx::WindowTheme& Palette::window_theme() const
{
switch (m_impl->window_theme_provider(WindowThemeRole::WindowTheme)) {
case WindowThemeProvider::Classic: {
static ClassicWindowTheme classic_window_theme;
return classic_window_theme;
}
case WindowThemeProvider::RedmondPlastic: {
static PlasticWindowTheme plastic_window_theme;
return plastic_window_theme;
}
case WindowThemeProvider::RedmondGlass: {
static GlassWindowTheme glass_window_theme;
return glass_window_theme;
}
default:
VERIFY_NOT_REACHED();
}
}
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_window_theme_provider(WindowThemeRole role, Gfx::WindowThemeProvider value)
{
if (m_impl->ref_count() != 1)
m_impl = m_impl->clone();
auto& theme = const_cast<SystemTheme&>(impl().theme());
theme.window_theme[(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);
}
}