/* * Copyright (c) 2018-2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include namespace GUI { class Desktop { public: static Desktop& the(); Desktop(); void set_background_color(const StringView& background_color); void set_wallpaper_mode(const StringView& mode); String wallpaper() const; bool set_wallpaper(const StringView& path, bool save_config = true); Gfx::IntRect rect() const { return m_rect; } int taskbar_height() const { return 28; } void did_receive_screen_rect(Badge, const Gfx::IntRect&); private: Gfx::IntRect m_rect; }; }