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

52 lines
1.6 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 ImGuiSliderFlags : int
{
/// <summary>
/// To be documented.
/// </summary>
None = unchecked(0),
/// <summary>
/// To be documented.
/// </summary>
AlwaysClamp = unchecked(16),
/// <summary>
/// Make the widget logarithmic (linear otherwise). Consider using ImGuiSliderFlags_NoRoundToFormat with this if using a format-string with small amount of digits.<br/>
/// </summary>
Logarithmic = unchecked(32),
/// <summary>
/// Disable rounding underlying value to match precision of the display format string (e.g. %.3f values are rounded to those 3 digits).<br/>
/// </summary>
NoRoundToFormat = unchecked(64),
/// <summary>
/// Disable CTRL+Click or Enter key allowing to input text directly into the widget.<br/>
/// </summary>
NoInput = unchecked(128),
/// <summary>
/// [Internal] We treat using those bits as being potentially a 'float power' argument from the previous API that has got miscast to this enum, and will trigger an assert if needed.<br/>
/// </summary>
InvalidMask = unchecked(1879048207),
}
}