public final class ImGuiDockNodeFlags
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static int |
AutoHideTabBar
Shared/Local // Tab bar will automatically hide when there is a single window in the dock node.
|
static int |
KeepAliveOnly
Shared // Don't display the dockspace node but keep it alive.
|
static int |
NoDockingInCentralNode
Shared // Disable docking inside the Central Node, which will be always kept empty.
|
static int |
None
Definition:
0 |
static int |
NoResize
Shared/Local // Disable resizing node using the splitter/separators.
|
static int |
NoSplit
Shared/Local // Disable splitting the node into smaller nodes.
|
static int |
PassthruCentralNode
Shared // Enable passthru dockspace: 1) DockSpace() will render a ImGuiCol_WindowBg background covering everything excepted the Central Node when empty.
|
public static final int None
0
public static final int KeepAliveOnly
Definition: 1 << 0
public static final int NoDockingInCentralNode
Definition: 1 << 2
public static final int PassthruCentralNode
Definition: 1 << 3
public static final int NoSplit
Definition: 1 << 4
public static final int NoResize
Definition: 1 << 5
public static final int AutoHideTabBar
Definition: 1 << 6