mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 15:20:58 +00:00 
			
		
		
		
	SystemEffects provides a tidy way to work with system-wide visual options passed through IPC.
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			325 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			325 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2022, the SerenityOS developers.
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <Services/WindowServer/SystemEffects.h>
 | 
						|
 | 
						|
namespace GUI {
 | 
						|
 | 
						|
using SystemEffects = WindowServer::SystemEffects;
 | 
						|
using ShowGeometry = WindowServer::ShowGeometry;
 | 
						|
using Effects = WindowServer::Effects;
 | 
						|
 | 
						|
}
 |