mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
* Use GLFW instead of OpenTK windows * Seems to work pretty well now. * Fix stackalloc issue on Framework. * Add GLFW project to sln. * Fix package downgrade. * Fix SLN more. * Please work. * Fix C# version error.
48 lines
1.3 KiB
C#
48 lines
1.3 KiB
C#
//
|
|
// 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
|
|
{
|
|
/// <summary>
|
|
/// Standard cursor shapes.
|
|
/// </summary>
|
|
public enum CursorShape
|
|
{
|
|
/// <summary>
|
|
/// The standard arrow shape. Used in almost all situations.
|
|
/// </summary>
|
|
Arrow = 0x00036001,
|
|
|
|
/// <summary>
|
|
/// The I-Beam shape. Used when mousing over a place where text can be entered.
|
|
/// </summary>
|
|
IBeam = 0x00036002,
|
|
|
|
/// <summary>
|
|
/// The crosshair shape. Used when dragging and dropping.
|
|
/// </summary>
|
|
Crosshair = 0x00036003,
|
|
|
|
/// <summary>
|
|
/// The hand shape. Used when mousing over something that can be dragged around.
|
|
/// </summary>
|
|
Hand = 0x00036004,
|
|
|
|
/// <summary>
|
|
/// The horizontal resize shape. Used when mousing over something that can be horizontally resized.
|
|
/// </summary>
|
|
HResize = 0x00036005,
|
|
|
|
/// <summary>
|
|
/// The vertical resize shape. Used when mousing over something that can be vertically resized.
|
|
/// </summary>
|
|
VResize = 0x00036006
|
|
}
|
|
}
|