mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +01:00
Add generated files for now
This commit is contained in:
parent
0690cce995
commit
1bce618684
502 changed files with 1276906 additions and 1 deletions
87
imgui/Dalamud.ImGui/Generated/Enums/ImGuiHoveredFlags.cs
Normal file
87
imgui/Dalamud.ImGui/Generated/Enums/ImGuiHoveredFlags.cs
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
// ------------------------------------------------------------------------------
|
||||
// <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),
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue