mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-14 11:45:34 +01:00
38 lines
957 B
C#
38 lines
957 B
C#
|
namespace ImGuiNET
|
||
|
{
|
||
|
public enum ImGuiStyleVar
|
||
|
{
|
||
|
Alpha = 0,
|
||
|
DisabledAlpha = 1,
|
||
|
WindowPadding = 2,
|
||
|
WindowRounding = 3,
|
||
|
WindowBorderSize = 4,
|
||
|
WindowMinSize = 5,
|
||
|
WindowTitleAlign = 6,
|
||
|
ChildRounding = 7,
|
||
|
ChildBorderSize = 8,
|
||
|
PopupRounding = 9,
|
||
|
PopupBorderSize = 10,
|
||
|
FramePadding = 11,
|
||
|
FrameRounding = 12,
|
||
|
FrameBorderSize = 13,
|
||
|
ItemSpacing = 14,
|
||
|
ItemInnerSpacing = 15,
|
||
|
IndentSpacing = 16,
|
||
|
CellPadding = 17,
|
||
|
ScrollbarSize = 18,
|
||
|
ScrollbarRounding = 19,
|
||
|
GrabMinSize = 20,
|
||
|
GrabRounding = 21,
|
||
|
TabRounding = 22,
|
||
|
TabBarBorderSize = 23,
|
||
|
ButtonTextAlign = 24,
|
||
|
SelectableTextAlign = 25,
|
||
|
SeparatorTextBorderSize = 26,
|
||
|
SeparatorTextAlign = 27,
|
||
|
SeparatorTextPadding = 28,
|
||
|
DockingSeparatorSize = 29,
|
||
|
COUNT = 30,
|
||
|
}
|
||
|
}
|