mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-21 07:17:45 +01:00
Add generated files for now
This commit is contained in:
parent
0690cce995
commit
1bce618684
502 changed files with 1276906 additions and 1 deletions
67
imgui/Dalamud.ImGui/Generated/Enums/ImGuiComboFlags.cs
Normal file
67
imgui/Dalamud.ImGui/Generated/Enums/ImGuiComboFlags.cs
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
// ------------------------------------------------------------------------------
|
||||
// <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),
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue