mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 03:12:44 +00:00 
			
		
		
		
	 e5674d9666
			
		
	
	
		e5674d9666
		
	
	
	
	
		
			
			The purpose of this cursor is to indicate if a current dragged object (file, Spreadsheet cell) can be dropped onto a widget.
		
			
				
	
	
		
			35 lines
		
	
	
	
		
			487 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			487 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.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,
 | |
| };
 | |
| 
 | |
| }
 |