mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 13:14:17 +01:00
move bindings around
This commit is contained in:
parent
1bce618684
commit
b5a8bfe399
546 changed files with 8 additions and 8 deletions
|
|
@ -1,62 +0,0 @@
|
|||
// ------------------------------------------------------------------------------
|
||||
// <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 ImGuiSelectableFlagsPrivate : int
|
||||
{
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
NoHoldingActiveId = unchecked(1048576),
|
||||
|
||||
/// <summary>
|
||||
/// (WIP) Auto-select when moved into. This is not exposed in public API as to handle multi-select and modifiers we will need user to explicitly control focus scope. May be replaced with a BeginSelection() API.<br/>
|
||||
/// </summary>
|
||||
SelectOnNav = unchecked(2097152),
|
||||
|
||||
/// <summary>
|
||||
/// Override button behavior to react on Click (default is Click+Release)<br/>
|
||||
/// </summary>
|
||||
SelectOnClick = unchecked(4194304),
|
||||
|
||||
/// <summary>
|
||||
/// Override button behavior to react on Release (default is Click+Release)<br/>
|
||||
/// </summary>
|
||||
SelectOnRelease = unchecked(8388608),
|
||||
|
||||
/// <summary>
|
||||
/// Span all avail width even if we declared less for layout purpose. FIXME: We may be able to remove this (added in 6251d379, 2bcafc86 for menus)<br/>
|
||||
/// </summary>
|
||||
SpanAvailWidth = unchecked(16777216),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
DrawHoveredWhenHeld = unchecked(33554432),
|
||||
|
||||
/// <summary>
|
||||
/// Set NavFocus ID on mouse hover (used by MenuItem)<br/>
|
||||
/// </summary>
|
||||
SetNavIdOnHover = unchecked(67108864),
|
||||
|
||||
/// <summary>
|
||||
/// Disable padding each side with ItemSpacing * 0.5f<br/>
|
||||
/// </summary>
|
||||
NoPadWithHalfSpacing = unchecked(134217728),
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue