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

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