Dalamud/imgui/Dalamud.Bindings.ImGui/Generated/Enums/ImGuiHoveredFlags.cs
2025-04-06 21:08:34 +02:00

87 lines
2.6 KiB
C#

// ------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
// ------------------------------------------------------------------------------
using System;
using HexaGen.Runtime;
using System.Numerics;
namespace Dalamud.Bindings.ImGui
{
/// <summary>
/// To be documented.
/// </summary>
[Flags]
public enum ImGuiHoveredFlags : int
{
/// <summary>
/// Return true if directly over the itemwindow, not obstructed by another window, not obstructed by an active popup or modal blocking inputs under them.<br/>
/// </summary>
None = unchecked(0),
/// <summary>
/// IsWindowHovered() only: Return true if any children of the window is hovered<br/>
/// </summary>
ChildWindows = unchecked(1),
/// <summary>
/// IsWindowHovered() only: Test from root window (top most parent of the current hierarchy)<br/>
/// </summary>
RootWindow = unchecked(2),
/// <summary>
/// IsWindowHovered() only: Return true if any window is hovered<br/>
/// </summary>
AnyWindow = unchecked(4),
/// <summary>
/// Return true even if a popup window is normally blocking access to this itemwindow<br/>
/// </summary>
AllowWhenBlockedByPopup = unchecked(8),
/// <summary>
/// Return true even if an active item is blocking access to this itemwindow. Useful for Drag and Drop patterns.<br/>
/// </summary>
AllowWhenBlockedByActiveItem = unchecked(32),
/// <summary>
/// To be documented.
/// </summary>
AllowWhenOverlapped = unchecked(64),
/// <summary>
/// IsItemHovered() only: Return true even if the item is disabled<br/>
/// </summary>
AllowWhenDisabled = unchecked(128),
/// <summary>
/// IsItemHovered() only: Disable using keyboardgamepad navigation state when active, always query mouse<br/>
/// </summary>
NoNavOverride = unchecked(256),
/// <summary>
/// To be documented.
/// </summary>
RectOnly = unchecked(104),
/// <summary>
/// To be documented.
/// </summary>
RootAndChildWindows = unchecked(3),
/// <summary>
/// IsWindowHovered() only: Do not consider popup hierarchy (do not treat popup emitter as parent of popup) (when used with _ChildWindows or _RootWindow)<br/>
/// </summary>
NoPopupHierarchy = unchecked(512),
/// <summary>
/// IsWindowHovered() only: Consider docking hierarchy (treat dockspace host as parent of docked window) (when used with _ChildWindows or _RootWindow)<br/>
/// </summary>
DockHierarchy = unchecked(1024),
}
}