mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-02 05:43:40 +01:00
move bindings around
This commit is contained in:
parent
1bce618684
commit
b5a8bfe399
546 changed files with 8 additions and 8 deletions
|
|
@ -1,77 +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 ImGuiTabBarFlags : int
|
||||
{
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
None = unchecked(0),
|
||||
|
||||
/// <summary>
|
||||
/// Allow manually dragging tabs to re-order them + New tabs are appended at the end of list<br/>
|
||||
/// </summary>
|
||||
Reorderable = unchecked(1),
|
||||
|
||||
/// <summary>
|
||||
/// Automatically select new tabs when they appear<br/>
|
||||
/// </summary>
|
||||
AutoSelectNewTabs = unchecked(2),
|
||||
|
||||
/// <summary>
|
||||
/// Disable buttons to open the tab list popup<br/>
|
||||
/// </summary>
|
||||
ListPopupButton = unchecked(4),
|
||||
|
||||
/// <summary>
|
||||
/// Disable behavior of closing tabs (that are submitted with p_open != NULL) with middle mouse button. You may handle this behavior manually on user's side with if (IsItemHovered() && IsMouseClicked(2)) *p_open = false.<br/>
|
||||
/// </summary>
|
||||
NoCloseWithMiddleMouseButton = unchecked(8),
|
||||
|
||||
/// <summary>
|
||||
/// Disable scrolling buttons (apply when fitting policy is ImGuiTabBarFlags_FittingPolicyScroll)<br/>
|
||||
/// </summary>
|
||||
NoTabListScrollingButtons = unchecked(16),
|
||||
|
||||
/// <summary>
|
||||
/// Disable tooltips when hovering a tab<br/>
|
||||
/// </summary>
|
||||
NoTooltip = unchecked(32),
|
||||
|
||||
/// <summary>
|
||||
/// Resize tabs when they don't fit<br/>
|
||||
/// </summary>
|
||||
FittingPolicyResizeDown = unchecked(64),
|
||||
|
||||
/// <summary>
|
||||
/// Add scroll buttons when tabs don't fit<br/>
|
||||
/// </summary>
|
||||
FittingPolicyScroll = unchecked(128),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
FittingPolicyMask = unchecked(192),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
FittingPolicyDefault = FittingPolicyResizeDown,
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue