Home
last modified time | relevance | path

Searched refs:PushStyleColor (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/third_party/externals/imgui/
Dimgui_demo.cpp571 ImGui::PushStyleColor(ImGuiCol_Button, (ImVec4)ImColor::HSV(i / 7.0f, 0.6f, 0.6f)); in ShowDemoWindowWidgets()
572 … ImGui::PushStyleColor(ImGuiCol_ButtonHovered, (ImVec4)ImColor::HSV(i / 7.0f, 0.7f, 0.7f)); in ShowDemoWindowWidgets()
573 … ImGui::PushStyleColor(ImGuiCol_ButtonActive, (ImVec4)ImColor::HSV(i / 7.0f, 0.8f, 0.8f)); in ShowDemoWindowWidgets()
2033 ImGui::PushStyleColor(ImGuiCol_FrameBg, (ImVec4)ImColor::HSV(i / 7.0f, 0.5f, 0.5f)); in ShowDemoWindowWidgets()
2034 … ImGui::PushStyleColor(ImGuiCol_FrameBgHovered, (ImVec4)ImColor::HSV(i / 7.0f, 0.6f, 0.5f)); in ShowDemoWindowWidgets()
2035 … ImGui::PushStyleColor(ImGuiCol_FrameBgActive, (ImVec4)ImColor::HSV(i / 7.0f, 0.7f, 0.5f)); in ShowDemoWindowWidgets()
2036 ImGui::PushStyleColor(ImGuiCol_SliderGrab, (ImVec4)ImColor::HSV(i / 7.0f, 0.9f, 0.9f)); in ShowDemoWindowWidgets()
2454 ImGui::PushStyleColor(ImGuiCol_ChildBg, IM_COL32(255, 0, 0, 100)); in ShowDemoWindowLayout()
2944 ImGui::PushStyleColor(ImGuiCol_Button, (ImVec4)ImColor::HSV(hue, 0.6f, 0.6f)); in ShowDemoWindowLayout()
2945 … ImGui::PushStyleColor(ImGuiCol_ButtonHovered, (ImVec4)ImColor::HSV(hue, 0.7f, 0.7f)); in ShowDemoWindowLayout()
[all …]
Dimgui_widgets.cpp292 PushStyleColor(ImGuiCol_Text, col); in TextColoredV()
311 PushStyleColor(ImGuiCol_Text, g.Style.Colors[ImGuiCol_TextDisabled]); in TextDisabledV()
3994 PushStyleColor(ImGuiCol_ChildBg, style.Colors[ImGuiCol_FrameBg]); in InputTextEx()
7055 PushStyleColor(ImGuiCol_Text, style.Colors[ImGuiCol_TextDisabled]); in MenuItemEx()
7707 PushStyleColor(ImGuiCol_Text, arrow_col); in TabBarScrollingButtons()
7708 PushStyleColor(ImGuiCol_Button, ImVec4(0, 0, 0, 0)); in TabBarScrollingButtons()
7766 PushStyleColor(ImGuiCol_Text, arrow_col); in TabBarTabListPopupButton()
7767 PushStyleColor(ImGuiCol_Button, ImVec4(0, 0, 0, 0)); in TabBarTabListPopupButton()
Dimgui.h404 …IMGUI_API void PushStyleColor(ImGuiCol idx, ImU32 col); // modify …
405 IMGUI_API void PushStyleColor(ImGuiCol idx, const ImVec4& col);
Dimgui_tables.cpp2965 PushStyleColor(ImGuiCol_Text, GetColorU32(ImGuiCol_Text, 0.70f)); in TableHeader()
3527 if (!is_active) { PushStyleColor(ImGuiCol_Text, GetStyleColorVec4(ImGuiCol_TextDisabled)); } in DebugNodeTable()
Dimgui.cpp2502 void ImGui::PushStyleColor(ImGuiCol idx, ImU32 col) in PushStyleColor() function in ImGui
2512 void ImGui::PushStyleColor(ImGuiCol idx, const ImVec4& col) in PushStyleColor() function in ImGui
5122 PushStyleColor(ImGuiCol_ChildBg, style.Colors[ImGuiCol_FrameBg]); in BeginChildFrame()
11919 if (!is_active) { PushStyleColor(ImGuiCol_Text, GetStyleColorVec4(ImGuiCol_TextDisabled)); } in DebugNodeTabBar()
11976 if (!is_active) { PushStyleColor(ImGuiCol_Text, GetStyleColorVec4(ImGuiCol_TextDisabled)); } in DebugNodeWindow()
/third_party/mesa3d/src/imgui/
Dimgui_widgets.cpp263 PushStyleColor(ImGuiCol_Text, col); in TextColoredV()
278 PushStyleColor(ImGuiCol_Text, GImGui->Style.Colors[ImGuiCol_TextDisabled]); in TextDisabledV()
5102 …if (flags & ImGuiSelectableFlags_Disabled) PushStyleColor(ImGuiCol_Text, g.Style.Colors[ImGuiCol_T… in Selectable()
5632 if (!enabled) PushStyleColor(ImGuiCol_Text, g.Style.Colors[ImGuiCol_TextDisabled]); in BeginMenu()
5776 PushStyleColor(ImGuiCol_Text, g.Style.Colors[ImGuiCol_TextDisabled]); in MenuItem()
6226 PushStyleColor(ImGuiCol_Text, arrow_col); in TabBarScrollingButtons()
6227 PushStyleColor(ImGuiCol_Button, ImVec4(0, 0, 0, 0)); in TabBarScrollingButtons()
6271 PushStyleColor(ImGuiCol_Text, arrow_col); in TabBarTabListPopupButton()
6272 PushStyleColor(ImGuiCol_Button, ImVec4(0, 0, 0, 0)); in TabBarTabListPopupButton()
Dimgui.h301 IMGUI_API void PushStyleColor(ImGuiCol idx, ImU32 col);
302 IMGUI_API void PushStyleColor(ImGuiCol idx, const ImVec4& col);
Dimgui.cpp4428 PushStyleColor(ImGuiCol_ChildBg, style.Colors[ImGuiCol_FrameBg]); in BeginChildFrame()
5756 void ImGui::PushStyleColor(ImGuiCol idx, ImU32 col) in PushStyleColor() function in ImGui
5766 void ImGui::PushStyleColor(ImGuiCol idx, const ImVec4& col) in PushStyleColor() function in ImGui
/third_party/skia/third_party/externals/imgui/docs/
DCHANGELOG.txt2056 …ize checker to allow Push/Begin/Pop/.../End patterns to be used with PushStyleColor, PushStyleVar,…
2420 …e avoid using it. If you need a transparent window background, uses `PushStyleColor()`. The old si…
2532 - Added `PushStyleColor(ImGuiCol idx, ImU32 col)` overload, which _might_ cause an "ambiguous call"…
2549 - Added `PushStyleColor(ImGuiCol idx, ImU32 col)` overload.