// ------------------------------------------------------------------------------
//
// 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 ImGuiDockNodeFlags : int
{
///
/// To be documented.
///
None = unchecked(0),
///
/// Don't display the dockspace node but keep it alive. Windows docked into this dockspace node won't be undocked.
///
KeepAliveOnly = unchecked(1),
///
/// To be documented.
///
NoDockingInCentralNode = unchecked(4),
///
/// Enable passthru dockspace: 1) DockSpace() will render a ImGuiCol_WindowBg background covering everything excepted the Central Node when empty. Meaning the host window should probably use SetNextWindowBgAlpha(0.0f) prior to Begin() when using this. 2) When Central Node is empty: let inputs pass-through + won't display a DockingEmptyBg background. See demo for details.
///
PassthruCentralNode = unchecked(8),
///
/// To be documented.
///
NoSplit = unchecked(16),
///
/// Saved Disable resizing node using the splitterseparators. Useful with programmatically setup dockspaces.
///
NoResize = unchecked(32),
///
/// Tab bar will automatically hide when there is a single window in the dock node.
///
AutoHideTabBar = unchecked(64),
}
}