// ------------------------------------------------------------------------------ // // 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 ImGuiComboFlags : int { /// /// To be documented. /// None = unchecked(0), /// /// Align the popup toward the left by default
///
PopupAlignLeft = unchecked(1), /// /// Max ~4 items visible. Tip: If you want your combo popup to be a specific size you can use SetNextWindowSizeConstraints() prior to calling BeginCombo()
///
HeightSmall = unchecked(2), /// /// Max ~8 items visible (default)
///
HeightRegular = unchecked(4), /// /// Max ~20 items visible
///
HeightLarge = unchecked(8), /// /// As many fitting items as possible
///
HeightLargest = unchecked(16), /// /// Display on the preview box without the square arrow button
///
NoArrowButton = unchecked(32), /// /// Display only a square arrow button
///
NoPreview = unchecked(64), /// /// To be documented. /// HeightMask = unchecked(30), } }