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

72 lines
2.1 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 ImGuiItemStatusFlags : int
{
/// <summary>
/// To be documented.
/// </summary>
None = unchecked(0),
/// <summary>
/// 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)<br/>
/// </summary>
HoveredRect = unchecked(1),
/// <summary>
/// g.LastItemData.DisplayRect is valid<br/>
/// </summary>
HasDisplayRect = unchecked(2),
/// <summary>
/// Value exposed by item was edited in the current frame (should match the bool return value of most widgets)<br/>
/// </summary>
Edited = unchecked(4),
/// <summary>
/// Set when Selectable(), TreeNode() reports toggling a selection. We can't report "Selected", only state changes, in order to easily handle clipping with less issues.<br/>
/// </summary>
ToggledSelection = unchecked(8),
/// <summary>
/// Set when TreeNode() reports toggling their open state.<br/>
/// </summary>
ToggledOpen = unchecked(16),
/// <summary>
/// Set if the widgetgroup is able to provide data for the ImGuiItemStatusFlags_Deactivated flag.<br/>
/// </summary>
HasDeactivated = unchecked(32),
/// <summary>
/// Only valid if ImGuiItemStatusFlags_HasDeactivated is set.<br/>
/// </summary>
Deactivated = unchecked(64),
/// <summary>
/// Override the HoveredWindow test to allow cross-window hover testing.<br/>
/// </summary>
HoveredWindow = unchecked(128),
/// <summary>
/// To be documented.
/// </summary>
FocusedByTabbing = unchecked(256),
}
}