public class ImGuiItemStatusFlags
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static int |
Deactivated
Only valid if ImGuiItemStatusFlags_HasDeactivated is set.
|
static int |
Edited
Value exposed by item was edited in the current frame (should match the bool return value of most widgets)
|
static int |
HasClipRect
g.LastItemData.ClipRect is valid.
|
static int |
HasDeactivated
Set if the widget/group is able to provide data for the ImGuiItemStatusFlags_Deactivated flag.
|
static int |
HasDisplayRect
g.LastItemData.DisplayRect is valid
|
static int |
HasShortcut
g.LastItemData.Shortcut valid.
|
static int |
HoveredRect
Mouse position is within item rectangle (does NOT mean that the window is in correct z-order and can be hovered!, this is only one part of the most-common IsItemHovered test)
|
static int |
HoveredWindow
Override the HoveredWindow test to allow cross-window hover testing.
|
static int |
None
Definition:
0 |
static int |
ToggledOpen
Set when TreeNode() reports toggling their open state.
|
static int |
ToggledSelection
Set when Selectable(), TreeNode() reports toggling a selection.
|
static int |
Visible
[WIP] Set when item is overlapping the current clipping rectangle (Used internally.
|
public static final int None
0
public static final int HoveredRect
Definition: 1 << 0
public static final int HasDisplayRect
Definition: 1 << 1
public static final int Edited
Definition: 1 << 2
public static final int ToggledSelection
Definition: 1 << 3
public static final int ToggledOpen
Definition: 1 << 4
public static final int HasDeactivated
Definition: 1 << 5
public static final int Deactivated
Definition: 1 << 6
public static final int HoveredWindow
Definition: 1 << 7
public static final int Visible
Definition: 1 << 8
public static final int HasClipRect
Definition: 1 << 9
public static final int HasShortcut
->
ItemAdd().
Definition: 1 << 10