Dalamud/imgui/Dalamud.Bindings.ImGui/Generated/Enums/ImGuiMouseCursor.cs
2025-04-06 21:08:34 +02:00

77 lines
1.7 KiB
C#

// ------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
// ------------------------------------------------------------------------------
using System;
using HexaGen.Runtime;
using System.Numerics;
namespace Dalamud.Bindings.ImGui
{
/// <summary>
/// To be documented.
/// </summary>
[Flags]
public enum ImGuiMouseCursor : int
{
/// <summary>
/// To be documented.
/// </summary>
None = unchecked(-1),
/// <summary>
/// To be documented.
/// </summary>
Arrow = unchecked(0),
/// <summary>
/// When hovering over InputText, etc.<br/>
/// </summary>
TextInput = unchecked(1),
/// <summary>
/// (Unused by Dear ImGui functions)<br/>
/// </summary>
ResizeAll = unchecked(2),
/// <summary>
/// When hovering over a horizontal border<br/>
/// </summary>
ResizeNs = unchecked(3),
/// <summary>
/// When hovering over a vertical border or a column<br/>
/// </summary>
ResizeEw = unchecked(4),
/// <summary>
/// When hovering over the bottom-left corner of a window<br/>
/// </summary>
ResizeNesw = unchecked(5),
/// <summary>
/// When hovering over the bottom-right corner of a window<br/>
/// </summary>
ResizeNwse = unchecked(6),
/// <summary>
/// (Unused by Dear ImGui functions. Use for e.g. hyperlinks)<br/>
/// </summary>
Hand = unchecked(7),
/// <summary>
/// When hovering something with disallowed interaction. Usually a crossed circle.<br/>
/// </summary>
NotAllowed = unchecked(8),
/// <summary>
/// To be documented.
/// </summary>
Count = unchecked(9),
}
}