mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:52:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			248 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			17 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;
 | |
| };
 | 
