public final class ImGuiSliderFlags
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static int |
AlwaysClamp
Clamp value to min/max bounds when input manually with CTRL+Click.
|
static int |
InvalidMask_
[Internal] We treat using those bits as being potentially a 'float power' argument from the previous API that has got miscast to this enum, and will trigger an assert if needed.
|
static int |
Logarithmic
Make the widget logarithmic (linear otherwise).
|
static int |
NoInput
Disable CTRL+Click or Enter key allowing to input text directly into the widget.
|
static int |
None
Definition:
0 |
static int |
NoRoundToFormat
Disable rounding underlying value to match precision of the display format string (e.g.
|
static int |
WrapAround
Enable wrapping around from max to min and from min to max (only supported by DragXXX() functions for now.
|
public static final int None
0
public static final int AlwaysClamp
Definition: 1 << 4
public static final int Logarithmic
Definition: 1 << 5
public static final int NoRoundToFormat
Definition: 1 << 6
public static final int NoInput
Definition: 1 << 7
public static final int WrapAround
Definition: 1 << 8
public static final int InvalidMask_
Definition: 0x7000000F