public final class ImGuiConfigFlags
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static int |
DockingEnable
Docking enable flags.
|
static int |
DpiEnableScaleFonts
[BETA: Don't use] FIXME-DPI: Request bitmap-scaled fonts to match DpiScale.
|
static int |
DpiEnableScaleViewports
[BETA: Don't use] FIXME-DPI: Reposition and resize imgui windows when the DpiScale of a viewport changed (mostly useful for the main viewport hosting other window).
|
static int |
IsSRGB
Application is SRGB-aware.
|
static int |
IsTouchScreen
Application is using a touch screen instead of a mouse.
|
static int |
NavEnableGamepad
Master gamepad navigation enable flag.
|
static int |
NavEnableKeyboard
Master keyboard navigation enable flag.
|
static int |
NavEnableSetMousePos
Instruct navigation to move the mouse cursor.
|
static int |
NavNoCaptureKeyboard
Instruct navigation to not set the io.WantCaptureKeyboard flag when io.NavActive is set.
|
static int |
NoMouse
Instruct imgui to clear mouse position/buttons in NewFrame().
|
static int |
NoMouseCursorChange
Instruct backend to not alter mouse cursor shape and visibility.
|
static int |
None
Definition:
0 |
static int |
ViewportsEnable
Viewport enable flags (require both ImGuiBackendFlags_PlatformHasViewports + ImGuiBackendFlags_RendererHasViewports set by the respective backends)
|
public static final int None
0
public static final int NavEnableKeyboard
Definition: 1 << 0
public static final int NavEnableGamepad
Definition: 1 << 1
public static final int NavEnableSetMousePos
Definition: 1 << 2
public static final int NavNoCaptureKeyboard
Definition: 1 << 3
public static final int NoMouse
Definition: 1 << 4
public static final int NoMouseCursorChange
Definition: 1 << 5
public static final int DockingEnable
Definition: 1 << 6
public static final int ViewportsEnable
Definition: 1 << 10
public static final int DpiEnableScaleViewports
Definition: 1 << 14
public static final int DpiEnableScaleFonts
Definition: 1 << 15
public static final int IsSRGB
Definition: 1 << 20
public static final int IsTouchScreen
Definition: 1 << 21