-
Notifications
You must be signed in to change notification settings - Fork 350
Expand file tree
/
Copy pathImGuiCol.gen.cs
More file actions
65 lines (65 loc) · 1.63 KB
/
ImGuiCol.gen.cs
File metadata and controls
65 lines (65 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
namespace ImGuiNET
{
public enum ImGuiCol
{
Text = 0,
TextDisabled = 1,
WindowBg = 2,
ChildBg = 3,
PopupBg = 4,
Border = 5,
BorderShadow = 6,
FrameBg = 7,
FrameBgHovered = 8,
FrameBgActive = 9,
TitleBg = 10,
TitleBgActive = 11,
TitleBgCollapsed = 12,
MenuBarBg = 13,
ScrollbarBg = 14,
ScrollbarGrab = 15,
ScrollbarGrabHovered = 16,
ScrollbarGrabActive = 17,
CheckMark = 18,
SliderGrab = 19,
SliderGrabActive = 20,
Button = 21,
ButtonHovered = 22,
ButtonActive = 23,
Header = 24,
HeaderHovered = 25,
HeaderActive = 26,
Separator = 27,
SeparatorHovered = 28,
SeparatorActive = 29,
ResizeGrip = 30,
ResizeGripHovered = 31,
ResizeGripActive = 32,
TabHovered = 33,
Tab = 34,
TabSelected = 35,
TabSelectedOverline = 36,
TabDimmed = 37,
TabDimmedSelected = 38,
TabDimmedSelectedOverline = 39,
DockingPreview = 40,
DockingEmptyBg = 41,
PlotLines = 42,
PlotLinesHovered = 43,
PlotHistogram = 44,
PlotHistogramHovered = 45,
TableHeaderBg = 46,
TableBorderStrong = 47,
TableBorderLight = 48,
TableRowBg = 49,
TableRowBgAlt = 50,
TextLink = 51,
TextSelectedBg = 52,
DragDropTarget = 53,
NavCursor = 54,
NavWindowingHighlight = 55,
NavWindowingDimBg = 56,
ModalWindowDimBg = 57,
COUNT = 58,
}
}