Regenerate bindings

This commit is contained in:
goaaats 2025-07-20 01:23:58 +02:00
parent 6078c42963
commit e559ae6b20
310 changed files with 361033 additions and 717041 deletions

View file

@ -25,27 +25,27 @@ namespace Dalamud.Bindings.ImGui
None = unchecked(0),
/// <summary>
/// Disable preview tooltip. By default, a successful call to BeginDragDropSource opens a tooltip so you can display a preview or description of the source contents. This flag disables this behavior.<br/>
/// To be documented.
/// </summary>
SourceNoPreviewTooltip = unchecked(1),
/// <summary>
/// By default, when dragging we clear data so that IsItemHovered() will return false, to avoid subsequent user code submitting tooltips. This flag disables this behavior so you can still call IsItemHovered() on the source item.<br/>
/// To be documented.
/// </summary>
SourceNoDisableHover = unchecked(2),
/// <summary>
/// Disable the behavior that allows to open tree nodes and collapsing header by holding over them while dragging a source item.<br/>
/// To be documented.
/// </summary>
SourceNoHoldToOpenOthers = unchecked(4),
/// <summary>
/// Allow items such as Text(), Image() that have no unique identifier to be used as drag source, by manufacturing a temporary identifier based on their window-relative position. This is extremely unusual within the dear imgui ecosystem and so we made it explicit.<br/>
/// To be documented.
/// </summary>
SourceAllowNullId = unchecked(8),
/// <summary>
/// External source (from outside of dear imgui), won't attempt to read current itemwindow info. Will always return true. Only one Extern source can be active simultaneously.<br/>
/// To be documented.
/// </summary>
SourceExtern = unchecked(16),
@ -55,22 +55,22 @@ namespace Dalamud.Bindings.ImGui
SourceAutoExpirePayload = unchecked(32),
/// <summary>
/// AcceptDragDropPayload() will returns true even before the mouse button is released. You can then call IsDelivery() to test if the payload needs to be delivered.<br/>
/// To be documented.
/// </summary>
AcceptBeforeDelivery = unchecked(1024),
/// <summary>
/// Do not draw the default highlight rectangle when hovering over target.<br/>
/// To be documented.
/// </summary>
AcceptNoDrawDefaultRect = unchecked(2048),
/// <summary>
/// Request hiding the BeginDragDropSource tooltip from the BeginDragDropTarget site.<br/>
/// To be documented.
/// </summary>
AcceptNoPreviewTooltip = unchecked(4096),
/// <summary>
/// For peeking ahead and inspecting the payload before delivery.<br/>
/// To be documented.
/// </summary>
AcceptPeekOnly = unchecked(3072),
}