// ------------------------------------------------------------------------------
//
// 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 ImGuiTabItemFlags : int
{
///
/// To be documented.
///
None = unchecked(0),
///
/// Display a dot next to the title + set ImGuiTabItemFlags_NoAssumedClosure.
///
UnsavedDocument = unchecked(1),
///
/// Trigger flag to programmatically make the tab selected when calling BeginTabItem()
///
SetSelected = unchecked(2),
///
/// 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.
///
NoCloseWithMiddleMouseButton = unchecked(4),
///
/// Don't call PushID()PopID() on BeginTabItem()EndTabItem()
///
NoPushId = unchecked(8),
///
/// Disable tooltip for the given tab
///
NoTooltip = unchecked(16),
///
/// Disable reordering this tab or having another tab cross over this tab
///
NoReorder = unchecked(32),
///
/// Enforce the tab position to the left of the tab bar (after the tab list popup button)
///
Leading = unchecked(64),
///
/// Enforce the tab position to the right of the tab bar (before the scrolling buttons)
///
Trailing = unchecked(128),
}
}