mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
	
		
			487 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			487 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2018-2020, Andreas Kling <andreas@ladybird.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
namespace Gfx {
 | 
						|
 | 
						|
enum class StandardCursor {
 | 
						|
    None = 0,
 | 
						|
    Hidden,
 | 
						|
    Arrow,
 | 
						|
    Crosshair,
 | 
						|
    IBeam,
 | 
						|
    ResizeHorizontal,
 | 
						|
    ResizeVertical,
 | 
						|
    ResizeDiagonalTLBR,
 | 
						|
    ResizeDiagonalBLTR,
 | 
						|
    ResizeColumn,
 | 
						|
    ResizeRow,
 | 
						|
    Hand,
 | 
						|
    Help,
 | 
						|
    Drag,
 | 
						|
    DragCopy,
 | 
						|
    Move,
 | 
						|
    Wait,
 | 
						|
    Disallowed,
 | 
						|
    Eyedropper,
 | 
						|
    Zoom,
 | 
						|
    __Count,
 | 
						|
};
 | 
						|
 | 
						|
}
 |