//
// CursorShape.cs
//
// Copyright (C) 2019 OpenTK
//
// This software may be modified and distributed under the terms
// of the MIT license. See the LICENSE file for details.
//
namespace OpenToolkit.GraphicsLibraryFramework
{
///
/// Standard cursor shapes.
///
public enum CursorShape
{
///
/// The standard arrow shape. Used in almost all situations.
///
Arrow = 0x00036001,
///
/// The I-Beam shape. Used when mousing over a place where text can be entered.
///
IBeam = 0x00036002,
///
/// The crosshair shape. Used when dragging and dropping.
///
Crosshair = 0x00036003,
///
/// The hand shape. Used when mousing over something that can be dragged around.
///
Hand = 0x00036004,
///
/// The horizontal resize shape. Used when mousing over something that can be horizontally resized.
///
HResize = 0x00036005,
///
/// The vertical resize shape. Used when mousing over something that can be vertically resized.
///
VResize = 0x00036006
}
}