1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 05:40:46 +00:00

Taskbar: Add hotkeys for theme selector menu

This commit is contained in:
Hugh Davenport 2024-01-03 17:20:42 +13:00 committed by Andrew Kaster
parent 420da686b8
commit 8e76265b0c
24 changed files with 51 additions and 4 deletions

View File

@ -1,3 +1,5 @@
[Menu]
Name=&Basalt
[Colors]
Accent=#ff7f00
DesktopBackground=#171717

View File

@ -1,3 +1,5 @@
[Menu]
Name=Chill&ychilly
[Colors]
DesktopBackground=#3f8077ff
Accent=#509296ff

View File

@ -1,3 +1,5 @@
[Menu]
Name=&Coffee
[Colors]
Accent=#574dbb
DesktopBackground=#567f9d

View File

@ -1,3 +1,5 @@
[Menu]
Name=Con&trast
[Metrics]
TitleButtonWidth=15
BorderRadius=0

View File

@ -1,3 +1,5 @@
[Menu]
Name=C&upertino
[Colors]
DesktopBackground=#55bff0
Accent=#55bff0

View File

@ -1,3 +1,5 @@
[Menu]
Name=Dar&k
[Colors]
Accent=#4d4d5f
DesktopBackground=#202020

View File

@ -1,3 +1,5 @@
[Menu]
Name=&Default
[Colors]
DesktopBackground=#505050
Accent=#ab6e4a

View File

@ -1,3 +1,5 @@
[Menu]
Name=D&esert
[Colors]
Accent=#84bdaa
DesktopBackground=#a28d68

View File

@ -1,3 +1,5 @@
[Menu]
Name=Durr&que
[Metrics]
TitleButtonWidth=15
BorderRadius=0

View File

@ -1,3 +1,5 @@
[Menu]
Name=&Faux Pas
[Colors]
Accent=#000000
DesktopBackground=#505170

View File

@ -1,3 +1,5 @@
[Menu]
Name=&Gruvbox Dark
[Colors]
Accent=#79740e
DesktopBackground=#282828

View File

@ -1,3 +1,5 @@
[Menu]
Name=&Light
[Colors]
Accent=#ffffff
DesktopBackground=#0f0f0f

View File

@ -1,3 +1,5 @@
[Menu]
Name=&Nord
[Colors]
Accent=#4c566a
DesktopBackground=#3b4252

View File

@ -1,3 +1,5 @@
[Menu]
Name=&Olive
[Metrics]
TitleButtonWidth=15
BorderRadius=0

View File

@ -1,3 +1,5 @@
[Menu]
Name=&Plum
[Colors]
Accent=#a084b8
DesktopBackground=#402840

View File

@ -1,3 +1,5 @@
[Menu]
Name=Pumpk&in
[Metrics]
TitleButtonWidth=15
BorderRadius=0

View File

@ -1,3 +1,5 @@
[Menu]
Name=Redmond &2000
[Colors]
Accent=#4a6eab
DesktopBackground=#3a6ea5

View File

@ -1,3 +1,5 @@
[Menu]
Name=&Redmond
[Colors]
Accent=#0000ab
DesktopBackground=#008080

View File

@ -1,3 +1,5 @@
[Menu]
Name=&Scarlett
[Metrics]
TitleButtonWidth=15
BorderRadius=0

View File

@ -1,3 +1,5 @@
[Menu]
Name=Sil&ver
[Metrics]
TitleButtonWidth=15
BorderRadius=0

View File

@ -1,3 +1,5 @@
[Menu]
Name=Suns&hine
[Colors]
Accent=#b24d7a
DesktopBackground=#574c8f

View File

@ -204,7 +204,9 @@ ErrorOr<Vector<SystemThemeMetaData>> list_installed_system_themes()
while (dt.has_next()) {
auto theme_name = dt.next_path();
auto theme_path = ByteString::formatted("/res/themes/{}", theme_name);
TRY(system_themes.try_append({ LexicalPath::title(theme_name), theme_path }));
auto config_file = TRY(Core::ConfigFile::open(theme_path));
auto menu_name = config_file->read_entry("Menu", "Name", theme_name);
TRY(system_themes.try_append({ LexicalPath::title(theme_name), menu_name, theme_path }));
}
quick_sort(system_themes, [](auto& a, auto& b) { return a.name < b.name; });
return system_themes;

View File

@ -296,6 +296,7 @@ ErrorOr<Core::AnonymousBuffer> load_system_theme(ByteString const& path, Optiona
struct SystemThemeMetaData {
ByteString name;
ByteString menu_name;
ByteString path;
};

View File

@ -239,9 +239,9 @@ ErrorOr<NonnullRefPtr<GUI::Menu>> build_system_menu(GUI::Window& window)
{
int theme_identifier = 0;
for (auto& theme : g_themes) {
auto action = GUI::Action::create_checkable(theme.name, [theme_identifier, &window](auto&) {
auto action = GUI::Action::create_checkable(theme.menu_name, [theme_identifier, current_theme_name, &window](auto&) {
auto& theme = g_themes[theme_identifier];
dbgln("Theme switched to {} at path {}", theme.name, theme.path);
dbgln("Theme switched from {} to {} at path {}", current_theme_name, theme.name, theme.path);
if (window.main_widget()->palette().color_scheme_path() != ""sv)
VERIFY(GUI::ConnectionToWindowServer::the().set_system_theme(theme.path, theme.name, false, GUI::ConnectionToWindowServer::the().get_preferred_color_scheme()));
else
@ -260,9 +260,11 @@ ErrorOr<NonnullRefPtr<GUI::Menu>> build_system_menu(GUI::Window& window)
return;
auto current_theme_name = GUI::ConnectionToWindowServer::the().get_system_theme();
auto theme_overridden = GUI::ConnectionToWindowServer::the().is_system_theme_overridden();
VERIFY(g_themes.size() == g_themes_menu->items().size());
for (size_t index = 0; index < g_themes.size(); ++index) {
auto* action = g_themes_menu->action_at(index);
action->set_checked(!theme_overridden && action->text() == current_theme_name);
auto& theme = g_themes[index];
action->set_checked(!theme_overridden && theme.name == current_theme_name);
}
};