mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-12 19:05:30 +01:00
29 lines
729 B
C#
29 lines
729 B
C#
|
namespace ImGuiNET
|
||
|
{
|
||
|
[System.Flags]
|
||
|
public enum ImGuiHoveredFlags
|
||
|
{
|
||
|
None = 0,
|
||
|
ChildWindows = 1,
|
||
|
RootWindow = 2,
|
||
|
AnyWindow = 4,
|
||
|
NoPopupHierarchy = 8,
|
||
|
DockHierarchy = 16,
|
||
|
AllowWhenBlockedByPopup = 32,
|
||
|
AllowWhenBlockedByActiveItem = 128,
|
||
|
AllowWhenOverlappedByItem = 256,
|
||
|
AllowWhenOverlappedByWindow = 512,
|
||
|
AllowWhenDisabled = 1024,
|
||
|
NoNavOverride = 2048,
|
||
|
AllowWhenOverlapped = 768,
|
||
|
RectOnly = 928,
|
||
|
RootAndChildWindows = 3,
|
||
|
ForTooltip = 4096,
|
||
|
Stationary = 8192,
|
||
|
DelayNone = 16384,
|
||
|
DelayShort = 32768,
|
||
|
DelayNormal = 65536,
|
||
|
NoSharedDelay = 131072,
|
||
|
}
|
||
|
}
|