public final class ImGuiViewportFlags
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static int |
CanHostOtherWindows
Viewport can host multiple imgui windows (secondary viewports are associated to a single window).
|
static int |
IsFocused
Platform Window: Window is focused (last call to Platform_GetWindowFocus() returned true)
|
static int |
IsMinimized
Platform Window: Window is minimized, can skip render.
|
static int |
IsPlatformMonitor
Represent a Platform Monitor (unused yet)
|
static int |
IsPlatformWindow
Represent a Platform Window
|
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
Definition:
0 |
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: Was created/managed by the user application? (rather than our backend)
|
static int |
TopMost
Platform Window: Display on top (for tooltips only).
|
public static final int None
0
public static final int IsPlatformWindow
Definition: 1 << 0
public static final int IsPlatformMonitor
Definition: 1 << 1
public static final int OwnedByApp
Definition: 1 << 2
public static final int NoDecoration
Definition: 1 << 3
public static final int NoTaskBarIcon
Definition: 1 << 4
public static final int NoFocusOnAppearing
Definition: 1 << 5
public static final int NoFocusOnClick
Definition: 1 << 6
public static final int NoInputs
Definition: 1 << 7
public static final int NoRendererClear
Definition: 1 << 8
public static final int NoAutoMerge
Definition: 1 << 9
public static final int TopMost
Definition: 1 << 10
public static final int CanHostOtherWindows
Definition: 1 << 11
public static final int IsMinimized
Definition: 1 << 12
public static final int IsFocused
Definition: 1 << 13