mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-21 15:27:43 +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/ImGuiTabItemFlags.cs
Normal file
67
imgui/Dalamud.ImGui/Generated/Enums/ImGuiTabItemFlags.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 ImGuiTabItemFlags : int
|
||||
{
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
None = unchecked(0),
|
||||
|
||||
/// <summary>
|
||||
/// Display a dot next to the title + set ImGuiTabItemFlags_NoAssumedClosure.<br/>
|
||||
/// </summary>
|
||||
UnsavedDocument = unchecked(1),
|
||||
|
||||
/// <summary>
|
||||
/// Trigger flag to programmatically make the tab selected when calling BeginTabItem()<br/>
|
||||
/// </summary>
|
||||
SetSelected = unchecked(2),
|
||||
|
||||
/// <summary>
|
||||
/// Disable behavior of closing tabs (that are submitted with p_open != NULL) with middle mouse button. You may handle this behavior manually on user's side with if (IsItemHovered() && IsMouseClicked(2)) *p_open = false.<br/>
|
||||
/// </summary>
|
||||
NoCloseWithMiddleMouseButton = unchecked(4),
|
||||
|
||||
/// <summary>
|
||||
/// Don't call PushID()PopID() on BeginTabItem()EndTabItem()<br/>
|
||||
/// </summary>
|
||||
NoPushId = unchecked(8),
|
||||
|
||||
/// <summary>
|
||||
/// Disable tooltip for the given tab<br/>
|
||||
/// </summary>
|
||||
NoTooltip = unchecked(16),
|
||||
|
||||
/// <summary>
|
||||
/// Disable reordering this tab or having another tab cross over this tab<br/>
|
||||
/// </summary>
|
||||
NoReorder = unchecked(32),
|
||||
|
||||
/// <summary>
|
||||
/// Enforce the tab position to the left of the tab bar (after the tab list popup button)<br/>
|
||||
/// </summary>
|
||||
Leading = unchecked(64),
|
||||
|
||||
/// <summary>
|
||||
/// Enforce the tab position to the right of the tab bar (before the scrolling buttons)<br/>
|
||||
/// </summary>
|
||||
Trailing = unchecked(128),
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue