// ------------------------------------------------------------------------------
//
// 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 ImGuiTabItemFlagsPrivate : int
{
///
/// To be documented.
///
SectionMask = unchecked(192),
///
/// Track whether p_open was set or not (we'll need this info on the next frame to recompute ContentWidth during layout)
///
NoCloseButton = unchecked(1048576),
///
/// Used by TabItemButton, change the tab item behavior to mimic a button
///
Button = unchecked(2097152),
///
/// [Docking] Trailing tabs with the _Unsorted flag will be sorted based on the DockOrder of their Window.
///
Unsorted = unchecked(4194304),
///
/// To be documented.
///
Preview = unchecked(8388608),
}
}