mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
67 lines
1.9 KiB
C#
67 lines
1.9 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 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),
|
|
}
|
|
}
|