mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 06:13:40 +01:00
Regenerate bindings
This commit is contained in:
parent
6078c42963
commit
e559ae6b20
310 changed files with 361033 additions and 717041 deletions
|
|
@ -20,32 +20,32 @@ namespace Dalamud.Bindings.ImGui
|
|||
public enum ImGuiButtonFlagsPrivate : int
|
||||
{
|
||||
/// <summary>
|
||||
/// return true on click (mouse down event)<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
PressedOnClick = unchecked(16),
|
||||
|
||||
/// <summary>
|
||||
/// [Default] return true on click + release on same item <-- this is what the majority of Button are using<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
PressedOnClickRelease = unchecked(32),
|
||||
|
||||
/// <summary>
|
||||
/// return true on click + release even if the release event is not done while hovering the item<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
PressedOnClickReleaseAnywhere = unchecked(64),
|
||||
|
||||
/// <summary>
|
||||
/// return true on release (default requires click+release)<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
PressedOnRelease = unchecked(128),
|
||||
|
||||
/// <summary>
|
||||
/// return true on double-click (default requires click+release)<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
PressedOnDoubleClick = unchecked(256),
|
||||
|
||||
/// <summary>
|
||||
/// return true when held into while we are drag and dropping another item (used by e.g. tree nodes, collapsing headers)<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
PressedOnDragDropHold = unchecked(512),
|
||||
|
||||
|
|
@ -55,7 +55,7 @@ namespace Dalamud.Bindings.ImGui
|
|||
Repeat = unchecked(1024),
|
||||
|
||||
/// <summary>
|
||||
/// allow interactions even if a child window is overlapping<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
FlattenChildren = unchecked(2048),
|
||||
|
||||
|
|
@ -70,7 +70,7 @@ namespace Dalamud.Bindings.ImGui
|
|||
DontClosePopups = unchecked(8192),
|
||||
|
||||
/// <summary>
|
||||
/// vertically align button to match text baseline - ButtonEx() only FIXME: Should be removed and handled by SmallButton(), not possible currently because of DC.CursorPosPrevLine<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
AlignTextBaseLine = unchecked(32768),
|
||||
|
||||
|
|
@ -80,17 +80,17 @@ namespace Dalamud.Bindings.ImGui
|
|||
NoKeyModifiers = unchecked(65536),
|
||||
|
||||
/// <summary>
|
||||
/// don't set ActiveId while holding the mouse (ImGuiButtonFlags_PressedOnClick only)<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
NoHoldingActiveId = unchecked(131072),
|
||||
|
||||
/// <summary>
|
||||
/// don't override navigation focus when activated (FIXME: this is essentially used every time an item uses ImGuiItemFlags_NoNav, but because legacy specs don't requires LastItemData to be set ButtonBehavior(), we can't poll g.LastItemData.ItemFlags)<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
NoNavFocus = unchecked(262144),
|
||||
|
||||
/// <summary>
|
||||
/// don't report as hovered when nav focus is on this item<br/>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
NoHoveredOnFocus = unchecked(524288),
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue