Dalamud/imgui/Dalamud.Bindings.ImGui/Generated/Enums/ImGuiDockNodeFlagsPrivate.cs
2025-04-06 21:08:34 +02:00

115 lines
3.1 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 ImGuiDockNodeFlagsPrivate : int
{
/// <summary>
/// Saved A dockspace is a node that occupy space within an existing user window. Otherwise the node is floating and create its own window.<br/>
/// </summary>
Space = unchecked(1024),
/// <summary>
/// Saved The central node has 2 main properties: stay visible when empty, only use "remaining" spaces from its neighbor.<br/>
/// </summary>
CentralNode = unchecked(2048),
/// <summary>
/// Saved Tab bar is completely unavailable. No triangle in the corner to enable it back.<br/>
/// </summary>
NoTabBar = unchecked(4096),
/// <summary>
/// Saved Tab bar is hidden, with a triangle in the corner to show it again (NB: actual tab-bar instance may be destroyed as this is only used for single-window tab bar)<br/>
/// </summary>
HiddenTabBar = unchecked(8192),
/// <summary>
/// Saved Disable windowdocking menu (that one that appears instead of the collapse button)<br/>
/// </summary>
NoWindowMenuButton = unchecked(16384),
/// <summary>
/// Saved Disable close button<br/>
/// </summary>
NoCloseButton = unchecked(32768),
/// <summary>
/// To be documented.
/// </summary>
NoDocking = unchecked(65536),
/// <summary>
/// To be documented.
/// </summary>
NoDockingSplitMe = unchecked(131072),
/// <summary>
/// Disable this node from splitting other windowsnodes.<br/>
/// </summary>
NoDockingSplitOther = unchecked(262144),
/// <summary>
/// Disable other windowsnodes from being docked over this node.<br/>
/// </summary>
NoDockingOverMe = unchecked(524288),
/// <summary>
/// Disable this node from being docked over another window or non-empty node.<br/>
/// </summary>
NoDockingOverOther = unchecked(1048576),
/// <summary>
/// Disable this node from being docked over an empty node (e.g. DockSpace with no other windows)<br/>
/// </summary>
NoDockingOverEmpty = unchecked(2097152),
/// <summary>
/// </summary>
NoResizeX = unchecked(4194304),
/// <summary>
/// </summary>
NoResizeY = unchecked(8388608),
/// <summary>
/// To be documented.
/// </summary>
SharedFlagsInheritMask = unchecked(-1),
/// <summary>
/// To be documented.
/// </summary>
NoResizeFlagsMask = unchecked(12582944),
/// <summary>
/// To be documented.
/// </summary>
LocalFlagsMask = unchecked(12713072),
/// <summary>
/// To be documented.
/// </summary>
LocalFlagsTransferMask = unchecked(12712048),
/// <summary>
/// To be documented.
/// </summary>
SavedFlagsMask = unchecked(12712992),
}
}