mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 14:52:43 +00:00 
			
		
		
		
	 d8ab9ed87c
			
		
	
	
		d8ab9ed87c
		
	
	
	
	
		
			
			Move TabPosition into its own file, and using it into the global namespace the same way we do for Gfx::Orientation. This unbreaks the gn build, and out of tree builds.
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			237 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			237 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2023, Andrew Kaster <akaster@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| namespace Gfx {
 | |
| 
 | |
| enum TabPosition {
 | |
|     Top,
 | |
|     Bottom,
 | |
|     Left,
 | |
|     Right,
 | |
| };
 | |
| 
 | |
| }
 | |
| 
 | |
| using Gfx::TabPosition;
 |