mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 21:24:16 +01:00
move bindings around
This commit is contained in:
parent
1bce618684
commit
b5a8bfe399
546 changed files with 8 additions and 8 deletions
|
|
@ -1,302 +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 ImGuiCol : int
|
||||
{
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
Text = unchecked(0),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
TextDisabled = unchecked(1),
|
||||
|
||||
/// <summary>
|
||||
/// Background of normal windows<br/>
|
||||
/// </summary>
|
||||
WindowBg = unchecked(2),
|
||||
|
||||
/// <summary>
|
||||
/// Background of child windows<br/>
|
||||
/// </summary>
|
||||
ChildBg = unchecked(3),
|
||||
|
||||
/// <summary>
|
||||
/// Background of popups, menus, tooltips windows<br/>
|
||||
/// </summary>
|
||||
PopupBg = unchecked(4),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
Border = unchecked(5),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
BorderShadow = unchecked(6),
|
||||
|
||||
/// <summary>
|
||||
/// Background of checkbox, radio button, plot, slider, text input<br/>
|
||||
/// </summary>
|
||||
FrameBg = unchecked(7),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
FrameBgHovered = unchecked(8),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
FrameBgActive = unchecked(9),
|
||||
|
||||
/// <summary>
|
||||
/// Title bar<br/>
|
||||
/// </summary>
|
||||
TitleBg = unchecked(10),
|
||||
|
||||
/// <summary>
|
||||
/// Title bar when focused<br/>
|
||||
/// </summary>
|
||||
TitleBgActive = unchecked(11),
|
||||
|
||||
/// <summary>
|
||||
/// Title bar when collapsed<br/>
|
||||
/// </summary>
|
||||
TitleBgCollapsed = unchecked(12),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
MenuBarBg = unchecked(13),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
ScrollbarBg = unchecked(14),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
ScrollbarGrab = unchecked(15),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
ScrollbarGrabHovered = unchecked(16),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
ScrollbarGrabActive = unchecked(17),
|
||||
|
||||
/// <summary>
|
||||
/// Checkbox tick and RadioButton circle<br/>
|
||||
/// </summary>
|
||||
CheckMark = unchecked(18),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
SliderGrab = unchecked(19),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
SliderGrabActive = unchecked(20),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
Button = unchecked(21),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
ButtonHovered = unchecked(22),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
ButtonActive = unchecked(23),
|
||||
|
||||
/// <summary>
|
||||
/// Header* colors are used for CollapsingHeader, TreeNode, Selectable, MenuItem<br/>
|
||||
/// </summary>
|
||||
Header = unchecked(24),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
HeaderHovered = unchecked(25),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
HeaderActive = unchecked(26),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
Separator = unchecked(27),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
SeparatorHovered = unchecked(28),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
SeparatorActive = unchecked(29),
|
||||
|
||||
/// <summary>
|
||||
/// Resize grip in lower-right and lower-left corners of windows.<br/>
|
||||
/// </summary>
|
||||
ResizeGrip = unchecked(30),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
ResizeGripHovered = unchecked(31),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
ResizeGripActive = unchecked(32),
|
||||
|
||||
/// <summary>
|
||||
/// Tab background, when tab-bar is focused & tab is unselected<br/>
|
||||
/// </summary>
|
||||
Tab = unchecked(33),
|
||||
|
||||
/// <summary>
|
||||
/// Tab background, when hovered<br/>
|
||||
/// </summary>
|
||||
TabHovered = unchecked(34),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
TabActive = unchecked(35),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
TabUnfocused = unchecked(36),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
TabUnfocusedActive = unchecked(37),
|
||||
|
||||
/// <summary>
|
||||
/// Preview overlay color when about to docking something<br/>
|
||||
/// </summary>
|
||||
DockingPreview = unchecked(38),
|
||||
|
||||
/// <summary>
|
||||
/// Background color for empty node (e.g. CentralNode with no window docked into it)<br/>
|
||||
/// </summary>
|
||||
DockingEmptyBg = unchecked(39),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
PlotLines = unchecked(40),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
PlotLinesHovered = unchecked(41),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
PlotHistogram = unchecked(42),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
PlotHistogramHovered = unchecked(43),
|
||||
|
||||
/// <summary>
|
||||
/// Table header background<br/>
|
||||
/// </summary>
|
||||
TableHeaderBg = unchecked(44),
|
||||
|
||||
/// <summary>
|
||||
/// Table outer and header borders (prefer using Alpha=1.0 here)<br/>
|
||||
/// </summary>
|
||||
TableBorderStrong = unchecked(45),
|
||||
|
||||
/// <summary>
|
||||
/// Table inner borders (prefer using Alpha=1.0 here)<br/>
|
||||
/// </summary>
|
||||
TableBorderLight = unchecked(46),
|
||||
|
||||
/// <summary>
|
||||
/// Table row background (even rows)<br/>
|
||||
/// </summary>
|
||||
TableRowBg = unchecked(47),
|
||||
|
||||
/// <summary>
|
||||
/// Table row background (odd rows)<br/>
|
||||
/// </summary>
|
||||
TableRowBgAlt = unchecked(48),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
TextSelectedBg = unchecked(49),
|
||||
|
||||
/// <summary>
|
||||
/// Rectangle highlighting a drop target<br/>
|
||||
/// </summary>
|
||||
DragDropTarget = unchecked(50),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
NavHighlight = unchecked(51),
|
||||
|
||||
/// <summary>
|
||||
/// Highlight window when using CTRL+TAB<br/>
|
||||
/// </summary>
|
||||
NavWindowingHighlight = unchecked(52),
|
||||
|
||||
/// <summary>
|
||||
/// Darkencolorize entire screen behind the CTRL+TAB window list, when active<br/>
|
||||
/// </summary>
|
||||
NavWindowingDimBg = unchecked(53),
|
||||
|
||||
/// <summary>
|
||||
/// Darkencolorize entire screen behind a modal window, when one is active<br/>
|
||||
/// </summary>
|
||||
ModalWindowDimBg = unchecked(54),
|
||||
|
||||
/// <summary>
|
||||
/// To be documented.
|
||||
/// </summary>
|
||||
Count = unchecked(55),
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue