mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-01 05:13: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
72
imgui/Dalamud.ImGui/Generated/Enums/ImGuiItemStatusFlags.cs
Normal file
72
imgui/Dalamud.ImGui/Generated/Enums/ImGuiItemStatusFlags.cs
Normal file
|
|
@ -0,0 +1,72 @@
|
|||
// ------------------------------------------------------------------------------
|
||||
// <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),
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue