mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +01:00
move bindings around
This commit is contained in:
parent
1bce618684
commit
b5a8bfe399
546 changed files with 8 additions and 8 deletions
|
|
@ -1,57 +0,0 @@
|
|||
// ------------------------------------------------------------------------------
|
||||
// <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 ImGuiDockNodeFlags : int
|
||||
{
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
None = unchecked(0),
|
||||
|
||||
/// <summary>
|
||||
/// Don't display the dockspace node but keep it alive. Windows docked into this dockspace node won't be undocked.<br/>
|
||||
/// </summary>
|
||||
KeepAliveOnly = unchecked(1),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
NoDockingInCentralNode = unchecked(4),
|
||||
|
||||
/// <summary>
|
||||
/// 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.<br/>
|
||||
/// </summary>
|
||||
PassthruCentralNode = unchecked(8),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
NoSplit = unchecked(16),
|
||||
|
||||
/// <summary>
|
||||
/// Saved Disable resizing node using the splitterseparators. Useful with programmatically setup dockspaces.<br/>
|
||||
/// </summary>
|
||||
NoResize = unchecked(32),
|
||||
|
||||
/// <summary>
|
||||
/// Tab bar will automatically hide when there is a single window in the dock node.<br/>
|
||||
/// </summary>
|
||||
AutoHideTabBar = unchecked(64),
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue