blob: aee19953aaa1d1ec5b80fe50fc4a4fe3b8a15090 (
plain)
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
|
/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Function.h>
#include <AK/String.h>
#include <LibGUI/Forward.h>
#include <LibGfx/Rect.h>
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<WindowServerConnection>, const Gfx::IntRect&);
private:
Gfx::IntRect m_rect;
};
}
|