ladybird/LibGUI/GDesktop.h
Andreas Kling e4dfd5a3a4 WindowServer: Support PNG wallpapers.
Fix up /bin/pape so it tells the WindowServer which wallpaper file to use.
2019-03-21 15:54:19 +01:00

18 lines
248 B
C++

#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;
};