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

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

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

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

private:
    GDesktop();

    Rect m_rect;
};