summaryrefslogtreecommitdiff
path: root/LibGUI/GDesktop.h
blob: 88341cfd7c35f40e76cd08c9e8b2a5776f4991d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include <AK/AKString.h>
#include <SharedGraphics/Rect.h>

class GDesktop {
public:
    static GDesktop& the();
    GDesktop();

    String wallpaper() const;
    bool set_wallpaper(const String& path);

private:
    Rect m_rect;
};