Elevate Engine 1
Loading...
Searching...
No Matches
Elevate::UI Namespace Reference

Enumerations

enum class  UITheme { Dark = 0 , Light = 1 }
 

Functions

void InputField (const char *label, std::string &data)
 
bool EECollapsingHeader (const char *label, bool canOpen=true, const void *icon=nullptr, std::function< float()> headerCustomContent=nullptr)
 
UITheme GetCurrentTheme ()
 
void SetDarkTheme ()
 
void SetLightTheme ()
 

Enumeration Type Documentation

◆ UITheme

enum class Elevate::UI::UITheme
strong
Enumerator
Dark 
Light 

Definition at line 5 of file ImGuiTheme.h.

6 {
7 Dark = 0,
8 Light = 1
9 };

Function Documentation

◆ EECollapsingHeader()

bool Elevate::UI::EECollapsingHeader ( const char *  label,
bool  canOpen = true,
const void *  icon = nullptr,
std::function< float()>  headerCustomContent = nullptr 
)

Definition at line 22 of file CustomImGuiCommand.cpp.

23{
24 using namespace ImGui;
25
26 ImGuiStyle& style = GetStyle();
27 ImGuiWindow* window = GetCurrentWindow();
28 if (window->SkipItems)
29 return false;
30
31 ImGuiID id = window->GetID(label);
32
33 float btnWidth;
34 if (headerCustomContent)
35 {
36 SetNextItemAllowOverlap();
37 ImVec2 prevCursor = GetCursorScreenPos();
38 btnWidth = ImGui::GetCursorPosX() + ImGui::GetContentRegionAvail().x - headerCustomContent() - style.FramePadding.x;
39
40 SetCursorScreenPos(prevCursor);
41 }
42
43 bool* p_open = GetStateStorage()->GetBoolRef(id, true);
44
45 std::string btn_id = std::string("##EECollapsingHeaderBtn_") + label;
46 bool clicked = Button(btn_id.c_str(), ImVec2(btnWidth, 0.0f));
47 if (clicked)
48 *p_open = !*p_open;
49
50 ImVec2 r_min = GetItemRectMin();
51 ImVec2 r_max = GetItemRectMax();
52 float btn_height = r_max.y - r_min.y;
53
54 float arrow_size = 7.0f;
55 ImVec2 arrow_pos = ImVec2(
56 r_min.x + arrow_size * 0.5f,
57 r_min.y + style.FramePadding.y
58 );
59
60 float icon_size = icon ? btn_height - style.FramePadding.y * 2 : 0.0f;
61 icon_size = ImMin(icon_size, 32.0f);
62
63 float icon_y_offset = (btn_height - icon_size) * 0.5f;
64 ImVec2 icon_pos = ImVec2(
65 r_min.x + style.FramePadding.x + arrow_size * 2 + style.ItemInnerSpacing.x,
66 r_min.y + icon_y_offset
67 );
68
69 ImVec2 text_pos = ImVec2(
70 r_min.x + style.FramePadding.x + arrow_size * 2 + 2 * style.ItemInnerSpacing.x + icon_size,
71 r_min.y + (btn_height - GetFontSize()) * 0.5f
72 );
73
74 ImDrawList* dl = window->DrawList;
75
76 if (canOpen)
77 RenderArrow(dl, arrow_pos, GetColorU32(ImGuiCol_Text),
78 *p_open ? ImGuiDir_Down : ImGuiDir_Right, 1.0f);
79
80 if (icon)
81 {
82 dl->AddImage(
83 (ImTextureID)icon,
84 icon_pos,
85 icon_pos + ImVec2(icon_size, icon_size),
86 ImVec2(0, 0), ImVec2(1, 1),
87 GetColorU32(ImGuiCol_Text)
88 );
89 }
90
91 dl->AddText(GetFont(), GetFontSize(), text_pos, GetColorU32(ImGuiCol_Text), label);
92
93 return *p_open;
94}

◆ GetCurrentTheme()

UITheme Elevate::UI::GetCurrentTheme ( )

Definition at line 10 of file ImGuiTheme.cpp.

11 {
12 return currentTheme;
13 }

◆ InputField()

void Elevate::UI::InputField ( const char *  label,
std::string &  data 
)

Definition at line 7 of file CustomImGuiCommand.cpp.

8{
9 ImGui::Text("%s", label);
10 ImGui::SameLine();
11
12 char buffer[255];
13 strncpy(buffer, data.c_str(), sizeof(buffer));
14 buffer[sizeof(buffer) - 1] = '\0';
15
16 if (ImGui::InputText("##InputField", buffer, sizeof(buffer)))
17 {
18 data = buffer;
19 }
20}

◆ SetDarkTheme()

void Elevate::UI::SetDarkTheme ( )

Definition at line 15 of file ImGuiTheme.cpp.

16 {
17 currentTheme = UITheme::Dark;
18
19 // Hazy Dark style by kaitabuchi314 from ImThemes
20 ImGuiStyle& style = ImGui::GetStyle();
21
22 style.Alpha = 1.0f;
23 style.DisabledAlpha = 0.6000000238418579f;
24 style.WindowPadding = ImVec2(5.5f, 8.300000190734863f);
25 style.WindowRounding = 4.5f;
26 style.WindowBorderSize = 1.0f;
27 style.WindowMinSize = ImVec2(32.0f, 32.0f);
28 style.WindowTitleAlign = ImVec2(0.0f, 0.5f);
29 style.WindowMenuButtonPosition = ImGuiDir_Left;
30 style.ChildRounding = 3.200000047683716f;
31 style.ChildBorderSize = 1.0f;
32 style.PopupRounding = 2.700000047683716f;
33 style.PopupBorderSize = 1.0f;
34 style.FramePadding = ImVec2(4.0f, 3.0f);
35 style.FrameRounding = 2.400000095367432f;
36 style.FrameBorderSize = 0.0f;
37 style.ItemSpacing = ImVec2(8.0f, 4.0f);
38 style.ItemInnerSpacing = ImVec2(4.0f, 4.0f);
39 style.CellPadding = ImVec2(4.0f, 2.0f);
40 style.IndentSpacing = 21.0f;
41 style.ColumnsMinSpacing = 6.0f;
42 style.ScrollbarSize = 14.0f;
43 style.ScrollbarRounding = 9.0f;
44 style.GrabMinSize = 10.0f;
45 style.GrabRounding = 3.200000047683716f;
46 style.TabRounding = 3.5f;
47 style.TabBorderSize = 1.0f;
48 style.ColorButtonPosition = ImGuiDir_Right;
49 style.ButtonTextAlign = ImVec2(0.5f, 0.5f);
50 style.SelectableTextAlign = ImVec2(0.0f, 0.0f);
51
52 style.Colors[ImGuiCol_Text] = ImVec4(1.0f, 1.0f, 1.0f, 1.0f);
53 style.Colors[ImGuiCol_TextDisabled] = ImVec4(0.4980392158031464f, 0.4980392158031464f, 0.4980392158031464f, 1.0f);
54 style.Colors[ImGuiCol_WindowBg] = ImVec4(0.05882352963089943f, 0.05882352963089943f, 0.05882352963089943f, 0.9399999976158142f);
55 style.Colors[ImGuiCol_ChildBg] = ImVec4(0.0f, 0.0f, 0.0f, 0.0f);
56 style.Colors[ImGuiCol_PopupBg] = ImVec4(0.0784313753247261f, 0.0784313753247261f, 0.0784313753247261f, 0.9399999976158142f);
57 style.Colors[ImGuiCol_Border] = ImVec4(0.4274509847164154f, 0.4274509847164154f, 0.4980392158031464f, 0.5f);
58 style.Colors[ImGuiCol_BorderShadow] = ImVec4(0.0f, 0.0f, 0.0f, 0.0f);
59 style.Colors[ImGuiCol_FrameBg] = ImVec4(0.1372549086809158f, 0.1725490242242813f, 0.2274509817361832f, 0.5400000214576721f);
60 style.Colors[ImGuiCol_FrameBgHovered] = ImVec4(0.2117647081613541f, 0.2549019753932953f, 0.3019607961177826f, 0.4000000059604645f);
61 style.Colors[ImGuiCol_FrameBgActive] = ImVec4(0.04313725605607033f, 0.0470588244497776f, 0.0470588244497776f, 0.6700000166893005f);
62 style.Colors[ImGuiCol_TitleBg] = ImVec4(0.03921568766236305f, 0.03921568766236305f, 0.03921568766236305f, 1.0f);
63 style.Colors[ImGuiCol_TitleBgActive] = ImVec4(0.0784313753247261f, 0.08235294371843338f, 0.09019608050584793f, 1.0f);
64 style.Colors[ImGuiCol_TitleBgCollapsed] = ImVec4(0.0f, 0.0f, 0.0f, 0.5099999904632568f);
65 style.Colors[ImGuiCol_MenuBarBg] = ImVec4(0.1372549086809158f, 0.1372549086809158f, 0.1372549086809158f, 1.0f);
66 style.Colors[ImGuiCol_ScrollbarBg] = ImVec4(0.01960784383118153f, 0.01960784383118153f, 0.01960784383118153f, 0.5299999713897705f);
67 style.Colors[ImGuiCol_ScrollbarGrab] = ImVec4(0.3098039329051971f, 0.3098039329051971f, 0.3098039329051971f, 1.0f);
68 style.Colors[ImGuiCol_ScrollbarGrabHovered] = ImVec4(0.407843142747879f, 0.407843142747879f, 0.407843142747879f, 1.0f);
69 style.Colors[ImGuiCol_ScrollbarGrabActive] = ImVec4(0.5098039507865906f, 0.5098039507865906f, 0.5098039507865906f, 1.0f);
70 style.Colors[ImGuiCol_CheckMark] = ImVec4(0.7176470756530762f, 0.7843137383460999f, 0.843137264251709f, 1.0f);
71 style.Colors[ImGuiCol_SliderGrab] = ImVec4(0.47843137383461f, 0.5254902243614197f, 0.572549045085907f, 1.0f);
72 style.Colors[ImGuiCol_SliderGrabActive] = ImVec4(0.2901960909366608f, 0.3176470696926117f, 0.3529411852359772f, 1.0f);
73 style.Colors[ImGuiCol_Button] = ImVec4(0.1490196138620377f, 0.1607843190431595f, 0.1764705926179886f, 0.4000000059604645f);
74 style.Colors[ImGuiCol_ButtonHovered] = ImVec4(0.1372549086809158f, 0.1450980454683304f, 0.1568627506494522f, 1.0f);
75 style.Colors[ImGuiCol_ButtonActive] = ImVec4(0.0784313753247261f, 0.08627451211214066f, 0.09019608050584793f, 1.0f);
76 style.Colors[ImGuiCol_Header] = ImVec4(0.196078434586525f, 0.2156862765550613f, 0.239215686917305f, 0.3100000023841858f);
77 style.Colors[ImGuiCol_HeaderHovered] = ImVec4(0.1647058874368668f, 0.1764705926179886f, 0.1921568661928177f, 0.800000011920929f);
78 style.Colors[ImGuiCol_HeaderActive] = ImVec4(0.07450980693101883f, 0.08235294371843338f, 0.09019608050584793f, 1.0f);
79 style.Colors[ImGuiCol_Separator] = ImVec4(0.4274509847164154f, 0.4274509847164154f, 0.4980392158031464f, 0.5f);
80 style.Colors[ImGuiCol_SeparatorHovered] = ImVec4(0.239215686917305f, 0.3254902064800262f, 0.4235294163227081f, 0.7799999713897705f);
81 style.Colors[ImGuiCol_SeparatorActive] = ImVec4(0.2745098173618317f, 0.3803921639919281f, 0.4980392158031464f, 1.0f);
82 style.Colors[ImGuiCol_ResizeGrip] = ImVec4(0.2901960909366608f, 0.3294117748737335f, 0.3764705955982208f, 0.2000000029802322f);
83 style.Colors[ImGuiCol_ResizeGripHovered] = ImVec4(0.239215686917305f, 0.2980392277240753f, 0.3686274588108063f, 0.6700000166893005f);
84 style.Colors[ImGuiCol_ResizeGripActive] = ImVec4(0.1647058874368668f, 0.1764705926179886f, 0.1882352977991104f, 0.949999988079071f);
85 style.Colors[ImGuiCol_Tab] = ImVec4(0.1176470592617989f, 0.125490203499794f, 0.1333333402872086f, 0.8619999885559082f);
86 style.Colors[ImGuiCol_TabHovered] = ImVec4(0.3294117748737335f, 0.407843142747879f, 0.501960813999176f, 0.800000011920929f);
87 style.Colors[ImGuiCol_TabActive] = ImVec4(0.2431372553110123f, 0.2470588237047195f, 0.2549019753932953f, 1.0f);
88 style.Colors[ImGuiCol_TabUnfocused] = ImVec4(0.06666667014360428f, 0.1019607856869698f, 0.1450980454683304f, 0.9724000096321106f);
89 style.Colors[ImGuiCol_TabUnfocusedActive] = ImVec4(0.1333333402872086f, 0.2588235437870026f, 0.4235294163227081f, 1.0f);
90 style.Colors[ImGuiCol_PlotLines] = ImVec4(0.6078431606292725f, 0.6078431606292725f, 0.6078431606292725f, 1.0f);
91 style.Colors[ImGuiCol_PlotLinesHovered] = ImVec4(1.0f, 0.4274509847164154f, 0.3490196168422699f, 1.0f);
92 style.Colors[ImGuiCol_PlotHistogram] = ImVec4(0.8980392217636108f, 0.6980392336845398f, 0.0f, 1.0f);
93 style.Colors[ImGuiCol_PlotHistogramHovered] = ImVec4(1.0f, 0.6000000238418579f, 0.0f, 1.0f);
94 style.Colors[ImGuiCol_TableHeaderBg] = ImVec4(0.1882352977991104f, 0.1882352977991104f, 0.2000000029802322f, 1.0f);
95 style.Colors[ImGuiCol_TableBorderStrong] = ImVec4(0.3098039329051971f, 0.3098039329051971f, 0.3490196168422699f, 1.0f);
96 style.Colors[ImGuiCol_TableBorderLight] = ImVec4(0.2274509817361832f, 0.2274509817361832f, 0.2470588237047195f, 1.0f);
97 style.Colors[ImGuiCol_TableRowBg] = ImVec4(0.0f, 0.0f, 0.0f, 0.0f);
98 style.Colors[ImGuiCol_TableRowBgAlt] = ImVec4(1.0f, 1.0f, 1.0f, 0.05999999865889549f);
99 style.Colors[ImGuiCol_TextSelectedBg] = ImVec4(0.2588235437870026f, 0.5882353186607361f, 0.9764705896377563f, 0.3499999940395355f);
100 style.Colors[ImGuiCol_DragDropTarget] = ImVec4(1.0f, 1.0f, 0.0f, 0.8999999761581421f);
101 style.Colors[ImGuiCol_NavHighlight] = ImVec4(0.2588235437870026f, 0.5882353186607361f, 0.9764705896377563f, 1.0f);
102 style.Colors[ImGuiCol_NavWindowingHighlight] = ImVec4(1.0f, 1.0f, 1.0f, 0.699999988079071f);
103 style.Colors[ImGuiCol_NavWindowingDimBg] = ImVec4(0.800000011920929f, 0.800000011920929f, 0.800000011920929f, 0.2000000029802322f);
104 style.Colors[ImGuiCol_ModalWindowDimBg] = ImVec4(0.800000011920929f, 0.800000011920929f, 0.800000011920929f, 0.3499999940395355f);
105 }

◆ SetLightTheme()

void Elevate::UI::SetLightTheme ( )

Definition at line 107 of file ImGuiTheme.cpp.

108 {
109 currentTheme = UITheme::Light;
110
111 // Light style by dougbinks from ImThemes
112 ImGuiStyle& style = ImGui::GetStyle();
113
114 style.Alpha = 1.0f;
115 style.DisabledAlpha = 0.6000000238418579f;
116 style.WindowPadding = ImVec2(8.0f, 8.0f);
117 style.WindowRounding = 0.0f;
118 style.WindowBorderSize = 1.0f;
119 style.WindowMinSize = ImVec2(32.0f, 32.0f);
120 style.WindowTitleAlign = ImVec2(0.0f, 0.5f);
121 style.WindowMenuButtonPosition = ImGuiDir_Left;
122 style.ChildRounding = 0.0f;
123 style.ChildBorderSize = 1.0f;
124 style.PopupRounding = 0.0f;
125 style.PopupBorderSize = 1.0f;
126 style.FramePadding = ImVec2(4.0f, 3.0f);
127 style.FrameRounding = 0.0f;
128 style.FrameBorderSize = 0.0f;
129 style.ItemSpacing = ImVec2(8.0f, 4.0f);
130 style.ItemInnerSpacing = ImVec2(4.0f, 4.0f);
131 style.CellPadding = ImVec2(4.0f, 2.0f);
132 style.IndentSpacing = 21.0f;
133 style.ColumnsMinSpacing = 6.0f;
134 style.ScrollbarSize = 14.0f;
135 style.ScrollbarRounding = 9.0f;
136 style.GrabMinSize = 10.0f;
137 style.GrabRounding = 0.0f;
138 style.TabRounding = 4.0f;
139 style.TabBorderSize = 0.0f;
140 style.ColorButtonPosition = ImGuiDir_Right;
141 style.ButtonTextAlign = ImVec2(0.5f, 0.5f);
142 style.SelectableTextAlign = ImVec2(0.0f, 0.0f);
143
144 style.Colors[ImGuiCol_Text] = ImVec4(0.0f, 0.0f, 0.0f, 1.0f);
145 style.Colors[ImGuiCol_TextDisabled] = ImVec4(0.6000000238418579f, 0.6000000238418579f, 0.6000000238418579f, 1.0f);
146 style.Colors[ImGuiCol_WindowBg] = ImVec4(0.9372549057006836f, 0.9372549057006836f, 0.9372549057006836f, 1.0f);
147 style.Colors[ImGuiCol_ChildBg] = ImVec4(0.0f, 0.0f, 0.0f, 0.0f);
148 style.Colors[ImGuiCol_PopupBg] = ImVec4(1.0f, 1.0f, 1.0f, 0.9800000190734863f);
149 style.Colors[ImGuiCol_Border] = ImVec4(0.0f, 0.0f, 0.0f, 0.300000011920929f);
150 style.Colors[ImGuiCol_BorderShadow] = ImVec4(0.0f, 0.0f, 0.0f, 0.0f);
151 style.Colors[ImGuiCol_FrameBg] = ImVec4(1.0f, 1.0f, 1.0f, 1.0f);
152 style.Colors[ImGuiCol_FrameBgHovered] = ImVec4(0.2588235437870026f, 0.5882353186607361f, 0.9764705896377563f, 0.4000000059604645f);
153 style.Colors[ImGuiCol_FrameBgActive] = ImVec4(0.2588235437870026f, 0.5882353186607361f, 0.9764705896377563f, 0.6700000166893005f);
154 style.Colors[ImGuiCol_TitleBg] = ImVec4(0.95686274766922f, 0.95686274766922f, 0.95686274766922f, 1.0f);
155 style.Colors[ImGuiCol_TitleBgActive] = ImVec4(0.8196078538894653f, 0.8196078538894653f, 0.8196078538894653f, 1.0f);
156 style.Colors[ImGuiCol_TitleBgCollapsed] = ImVec4(1.0f, 1.0f, 1.0f, 0.5099999904632568f);
157 style.Colors[ImGuiCol_MenuBarBg] = ImVec4(0.8588235378265381f, 0.8588235378265381f, 0.8588235378265381f, 1.0f);
158 style.Colors[ImGuiCol_ScrollbarBg] = ImVec4(0.9764705896377563f, 0.9764705896377563f, 0.9764705896377563f, 0.5299999713897705f);
159 style.Colors[ImGuiCol_ScrollbarGrab] = ImVec4(0.686274528503418f, 0.686274528503418f, 0.686274528503418f, 0.800000011920929f);
160 style.Colors[ImGuiCol_ScrollbarGrabHovered] = ImVec4(0.4862745106220245f, 0.4862745106220245f, 0.4862745106220245f, 0.800000011920929f);
161 style.Colors[ImGuiCol_ScrollbarGrabActive] = ImVec4(0.4862745106220245f, 0.4862745106220245f, 0.4862745106220245f, 1.0f);
162 style.Colors[ImGuiCol_CheckMark] = ImVec4(0.2588235437870026f, 0.5882353186607361f, 0.9764705896377563f, 1.0f);
163 style.Colors[ImGuiCol_SliderGrab] = ImVec4(0.2588235437870026f, 0.5882353186607361f, 0.9764705896377563f, 0.7799999713897705f);
164 style.Colors[ImGuiCol_SliderGrabActive] = ImVec4(0.4588235318660736f, 0.5372549295425415f, 0.800000011920929f, 0.6000000238418579f);
165 style.Colors[ImGuiCol_Button] = ImVec4(0.2588235437870026f, 0.5882353186607361f, 0.9764705896377563f, 0.4000000059604645f);
166 style.Colors[ImGuiCol_ButtonHovered] = ImVec4(0.2588235437870026f, 0.5882353186607361f, 0.9764705896377563f, 1.0f);
167 style.Colors[ImGuiCol_ButtonActive] = ImVec4(0.05882352963089943f, 0.529411792755127f, 0.9764705896377563f, 1.0f);
168 style.Colors[ImGuiCol_Header] = ImVec4(0.2588235437870026f, 0.5882353186607361f, 0.9764705896377563f, 0.3100000023841858f);
169 style.Colors[ImGuiCol_HeaderHovered] = ImVec4(0.2588235437870026f, 0.5882353186607361f, 0.9764705896377563f, 0.800000011920929f);
170 style.Colors[ImGuiCol_HeaderActive] = ImVec4(0.2588235437870026f, 0.5882353186607361f, 0.9764705896377563f, 1.0f);
171 style.Colors[ImGuiCol_Separator] = ImVec4(0.3882353007793427f, 0.3882353007793427f, 0.3882353007793427f, 0.6200000047683716f);
172 style.Colors[ImGuiCol_SeparatorHovered] = ImVec4(0.1372549086809158f, 0.4392156898975372f, 0.800000011920929f, 0.7799999713897705f);
173 style.Colors[ImGuiCol_SeparatorActive] = ImVec4(0.1372549086809158f, 0.4392156898975372f, 0.800000011920929f, 1.0f);
174 style.Colors[ImGuiCol_ResizeGrip] = ImVec4(0.3490196168422699f, 0.3490196168422699f, 0.3490196168422699f, 0.1700000017881393f);
175 style.Colors[ImGuiCol_ResizeGripHovered] = ImVec4(0.2588235437870026f, 0.5882353186607361f, 0.9764705896377563f, 0.6700000166893005f);
176 style.Colors[ImGuiCol_ResizeGripActive] = ImVec4(0.2588235437870026f, 0.5882353186607361f, 0.9764705896377563f, 0.949999988079071f);
177 style.Colors[ImGuiCol_Tab] = ImVec4(0.7607843279838562f, 0.7960784435272217f, 0.8352941274642944f, 0.9309999942779541f);
178 style.Colors[ImGuiCol_TabHovered] = ImVec4(0.2588235437870026f, 0.5882353186607361f, 0.9764705896377563f, 0.800000011920929f);
179 style.Colors[ImGuiCol_TabActive] = ImVec4(0.5921568870544434f, 0.7254902124404907f, 0.8823529481887817f, 1.0f);
180 style.Colors[ImGuiCol_TabUnfocused] = ImVec4(0.9176470637321472f, 0.9254902005195618f, 0.9333333373069763f, 0.9861999750137329f);
181 style.Colors[ImGuiCol_TabUnfocusedActive] = ImVec4(0.7411764860153198f, 0.8196078538894653f, 0.9137254953384399f, 1.0f);
182 style.Colors[ImGuiCol_PlotLines] = ImVec4(0.3882353007793427f, 0.3882353007793427f, 0.3882353007793427f, 1.0f);
183 style.Colors[ImGuiCol_PlotLinesHovered] = ImVec4(1.0f, 0.4274509847164154f, 0.3490196168422699f, 1.0f);
184 style.Colors[ImGuiCol_PlotHistogram] = ImVec4(0.8980392217636108f, 0.6980392336845398f, 0.0f, 1.0f);
185 style.Colors[ImGuiCol_PlotHistogramHovered] = ImVec4(1.0f, 0.4470588266849518f, 0.0f, 1.0f);
186 style.Colors[ImGuiCol_TableHeaderBg] = ImVec4(0.7764706015586853f, 0.8666666746139526f, 0.9764705896377563f, 1.0f);
187 style.Colors[ImGuiCol_TableBorderStrong] = ImVec4(0.5686274766921997f, 0.5686274766921997f, 0.6392157077789307f, 1.0f);
188 style.Colors[ImGuiCol_TableBorderLight] = ImVec4(0.6784313917160034f, 0.6784313917160034f, 0.7372549176216125f, 1.0f);
189 style.Colors[ImGuiCol_TableRowBg] = ImVec4(0.0f, 0.0f, 0.0f, 0.0f);
190 style.Colors[ImGuiCol_TableRowBgAlt] = ImVec4(0.2980392277240753f, 0.2980392277240753f, 0.2980392277240753f, 0.09000000357627869f);
191 style.Colors[ImGuiCol_TextSelectedBg] = ImVec4(0.2588235437870026f, 0.5882353186607361f, 0.9764705896377563f, 0.3499999940395355f);
192 style.Colors[ImGuiCol_DragDropTarget] = ImVec4(0.2588235437870026f, 0.5882353186607361f, 0.9764705896377563f, 0.949999988079071f);
193 style.Colors[ImGuiCol_NavHighlight] = ImVec4(0.2588235437870026f, 0.5882353186607361f, 0.9764705896377563f, 0.800000011920929f);
194 style.Colors[ImGuiCol_NavWindowingHighlight] = ImVec4(0.6980392336845398f, 0.6980392336845398f, 0.6980392336845398f, 0.699999988079071f);
195 style.Colors[ImGuiCol_NavWindowingDimBg] = ImVec4(0.2000000029802322f, 0.2000000029802322f, 0.2000000029802322f, 0.2000000029802322f);
196 style.Colors[ImGuiCol_ModalWindowDimBg] = ImVec4(0.2000000029802322f, 0.2000000029802322f, 0.2000000029802322f, 0.3499999940395355f);
197 }