public final class ImGuiViewportFlags
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static int |
CanHostOtherWindows
Main viewport: can host multiple imgui windows (secondary viewports are associated to a single window).
|
static int |
IsPlatformMonitor
Represent a Platform Monitor (unused yet)
|
static int |
IsPlatformWindow
Represent a Platform Window.
|
static int |
Minimized
Platform Window: Window is minimized, can skip render.
|
static int |
NoAutoMerge
Platform Window: Avoid merging this window into another host window.
|
static int |
NoDecoration
Platform Window: Disable platform decorations: title bar, borders, etc.
|
static int |
NoFocusOnAppearing
Platform Window: Don't take focus when created.
|
static int |
NoFocusOnClick
Platform Window: Don't take focus when clicked on.
|
static int |
NoInputs
Platform Window: Make mouse pass through so we can drag this window while peaking behind it.
|
static int |
None |
static int |
NoRendererClear
Platform Window: Renderer doesn't need to clear the framebuffer ahead (because we will fill it entirely).
|
static int |
NoTaskBarIcon
Platform Window: Disable platform task bar icon (generally set on popups/tooltips, or all windows if ImGuiConfigFlags_ViewportsNoTaskBarIcon is set)
|
static int |
OwnedByApp
Platform Window: is created/managed by the application (rather than a dear imgui backend)
|
static int |
TopMost
Platform Window: Display on top (for tooltips only).
|
public static final int None
public static final int IsPlatformWindow
public static final int IsPlatformMonitor
public static final int OwnedByApp
public static final int NoDecoration
public static final int NoTaskBarIcon
public static final int NoFocusOnAppearing
public static final int NoFocusOnClick
public static final int NoInputs
public static final int NoRendererClear
public static final int TopMost
public static final int Minimized
public static final int NoAutoMerge
public static final int CanHostOtherWindows