mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
5e1499d104
This commit un-deprecates DeprecatedString, and repurposes it as a byte string. As the null state has already been removed, there are no other particularly hairy blockers in repurposing this type as a byte string (what it _really_ is). This commit is auto-generated: $ xs=$(ack -l \bDeprecatedString\b\|deprecated_string AK Userland \ Meta Ports Ladybird Tests Kernel) $ perl -pie 's/\bDeprecatedString\b/ByteString/g; s/deprecated_string/byte_string/g' $xs $ clang-format --style=file -i \ $(git diff --name-only | grep \.cpp\|\.h) $ gn format $(git ls-files '*.gn' '*.gni')
79 lines
2.2 KiB
C++
79 lines
2.2 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/Badge.h>
|
|
#include <AK/TemporaryChange.h>
|
|
#include <LibConfig/Client.h>
|
|
#include <LibGUI/ConnectionToWindowServer.h>
|
|
#include <LibGUI/Desktop.h>
|
|
#include <string.h>
|
|
|
|
namespace GUI {
|
|
|
|
Desktop& Desktop::the()
|
|
{
|
|
static Desktop s_the;
|
|
return s_the;
|
|
}
|
|
|
|
void Desktop::did_receive_screen_rects(Badge<ConnectionToWindowServer>, Vector<Gfx::IntRect, 4> const& rects, size_t main_screen_index, unsigned workspace_rows, unsigned workspace_columns)
|
|
{
|
|
m_main_screen_index = main_screen_index;
|
|
m_rects = rects;
|
|
if (!m_rects.is_empty()) {
|
|
m_bounding_rect = m_rects[0];
|
|
for (size_t i = 1; i < m_rects.size(); i++)
|
|
m_bounding_rect = m_bounding_rect.united(m_rects[i]);
|
|
} else {
|
|
m_bounding_rect = {};
|
|
}
|
|
|
|
m_workspace_rows = workspace_rows;
|
|
m_workspace_columns = workspace_columns;
|
|
|
|
for (auto& callback : m_receive_rects_callbacks)
|
|
callback(*this);
|
|
}
|
|
|
|
void Desktop::set_background_color(StringView background_color)
|
|
{
|
|
ConnectionToWindowServer::the().async_set_background_color(background_color);
|
|
}
|
|
|
|
void Desktop::set_wallpaper_mode(StringView mode)
|
|
{
|
|
ConnectionToWindowServer::the().async_set_wallpaper_mode(mode);
|
|
}
|
|
|
|
ByteString Desktop::wallpaper_path() const
|
|
{
|
|
return Config::read_string("WindowManager"sv, "Background"sv, "Wallpaper"sv);
|
|
}
|
|
|
|
RefPtr<Gfx::Bitmap> Desktop::wallpaper_bitmap() const
|
|
{
|
|
return ConnectionToWindowServer::the().get_wallpaper().bitmap();
|
|
}
|
|
|
|
bool Desktop::set_wallpaper(RefPtr<Gfx::Bitmap const> wallpaper_bitmap, Optional<StringView> path)
|
|
{
|
|
if (m_is_setting_desktop_wallpaper)
|
|
return false;
|
|
|
|
TemporaryChange is_setting_desktop_wallpaper_change(m_is_setting_desktop_wallpaper, true);
|
|
auto result = ConnectionToWindowServer::the().set_wallpaper(wallpaper_bitmap ? wallpaper_bitmap->to_shareable_bitmap() : Gfx::ShareableBitmap {});
|
|
|
|
if (result && path.has_value()) {
|
|
dbgln("Saving wallpaper path '{}' to ConfigServer", *path);
|
|
Config::write_string("WindowManager"sv, "Background"sv, "Wallpaper"sv, *path);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
}
|