// ------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // // ------------------------------------------------------------------------------ using System; using HexaGen.Runtime; using System.Numerics; namespace Dalamud.Bindings.ImGui { /// /// To be documented. /// [Flags] public enum ImGuiSliderFlags : int { /// /// To be documented. /// None = unchecked(0), /// /// To be documented. /// AlwaysClamp = unchecked(16), /// /// Make the widget logarithmic (linear otherwise). Consider using ImGuiSliderFlags_NoRoundToFormat with this if using a format-string with small amount of digits.
///
Logarithmic = unchecked(32), /// /// Disable rounding underlying value to match precision of the display format string (e.g. %.3f values are rounded to those 3 digits).
///
NoRoundToFormat = unchecked(64), /// /// Disable CTRL+Click or Enter key allowing to input text directly into the widget.
///
NoInput = unchecked(128), /// /// [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.
///
InvalidMask = unchecked(1879048207), } }