Searched refs:ImGuiCol_FrameBgHovered (Results 1 – 16 of 16) sorted by relevance
/third_party/mesa3d/src/imgui/ |
D | imgui_draw.cpp | 187 colors[ImGuiCol_FrameBgHovered] = ImVec4(0.26f, 0.59f, 0.98f, 0.40f); in StyleColorsDark() 242 colors[ImGuiCol_FrameBgHovered] = ImVec4(0.47f, 0.47f, 0.69f, 0.40f); in StyleColorsClassic() 298 colors[ImGuiCol_FrameBgHovered] = ImVec4(0.26f, 0.59f, 0.98f, 0.40f); in StyleColorsLight()
|
D | imgui_widgets.cpp | 934 …tColorU32((held && hovered) ? ImGuiCol_FrameBgActive : hovered ? ImGuiCol_FrameBgHovered : ImGuiCo… in Checkbox() 995 …tColorU32((held && hovered) ? ImGuiCol_FrameBgActive : hovered ? ImGuiCol_FrameBgHovered : ImGuiCo… in RadioButton() 1310 const ImU32 frame_col = GetColorU32(hovered ? ImGuiCol_FrameBgHovered : ImGuiCol_FrameBg); in BeginCombo() 1921 …(g.ActiveId == id ? ImGuiCol_FrameBgActive : g.HoveredId == id ? ImGuiCol_FrameBgHovered : ImGuiCo… in DragScalar() 2348 …(g.ActiveId == id ? ImGuiCol_FrameBgActive : g.HoveredId == id ? ImGuiCol_FrameBgHovered : ImGuiCo… in SliderScalar() 2488 …(g.ActiveId == id ? ImGuiCol_FrameBgActive : g.HoveredId == id ? ImGuiCol_FrameBgHovered : ImGuiCo… in VSliderScalar()
|
D | imgui.h | 1005 ImGuiCol_FrameBgHovered, enumerator
|
D | imgui.cpp | 5887 case ImGuiCol_FrameBgHovered: return "FrameBgHovered"; in GetStyleColorName()
|
/third_party/flutter/skia/third_party/externals/imgui/ |
D | imgui_draw.cpp | 185 colors[ImGuiCol_FrameBgHovered] = ImVec4(0.26f, 0.59f, 0.98f, 0.40f); in StyleColorsDark() 240 colors[ImGuiCol_FrameBgHovered] = ImVec4(0.47f, 0.47f, 0.69f, 0.40f); in StyleColorsClassic() 296 colors[ImGuiCol_FrameBgHovered] = ImVec4(0.26f, 0.59f, 0.98f, 0.40f); in StyleColorsLight()
|
D | imgui_widgets.cpp | 918 …tColorU32((held && hovered) ? ImGuiCol_FrameBgActive : hovered ? ImGuiCol_FrameBgHovered : ImGuiCo… in Checkbox() 988 …tColorU32((held && hovered) ? ImGuiCol_FrameBgActive : hovered ? ImGuiCol_FrameBgHovered : ImGuiCo… in RadioButton() 1304 const ImU32 frame_col = GetColorU32(hovered ? ImGuiCol_FrameBgHovered : ImGuiCol_FrameBg); in BeginCombo() 1918 …(g.ActiveId == id ? ImGuiCol_FrameBgActive : g.HoveredId == id ? ImGuiCol_FrameBgHovered : ImGuiCo… in DragScalar() 2348 …(g.ActiveId == id ? ImGuiCol_FrameBgActive : g.HoveredId == id ? ImGuiCol_FrameBgHovered : ImGuiCo… in SliderScalar() 2487 …(g.ActiveId == id ? ImGuiCol_FrameBgActive : g.HoveredId == id ? ImGuiCol_FrameBgHovered : ImGuiCo… in VSliderScalar()
|
D | imgui.h | 998 ImGuiCol_FrameBgHovered, enumerator
|
D | imgui_demo.cpp | 1280 … ImGui::PushStyleColor(ImGuiCol_FrameBgHovered, (ImVec4)ImColor::HSV(i/7.0f, 0.6f, 0.5f)); in ShowDemoWindowWidgets()
|
D | imgui.cpp | 5760 case ImGuiCol_FrameBgHovered: return "FrameBgHovered"; in GetStyleColorName()
|
/third_party/skia/third_party/externals/imgui/ |
D | imgui_widgets.cpp | 1101 …tColorU32((held && hovered) ? ImGuiCol_FrameBgActive : hovered ? ImGuiCol_FrameBgHovered : ImGuiCo… in Checkbox() 1206 …tColorU32((held && hovered) ? ImGuiCol_FrameBgActive : hovered ? ImGuiCol_FrameBgHovered : ImGuiCo… in RadioButton() 1595 const ImU32 frame_col = GetColorU32(hovered ? ImGuiCol_FrameBgHovered : ImGuiCol_FrameBg); in BeginCombo() 2442 …etColorU32(g.ActiveId == id ? ImGuiCol_FrameBgActive : hovered ? ImGuiCol_FrameBgHovered : ImGuiCo… in DragScalar() 3049 …etColorU32(g.ActiveId == id ? ImGuiCol_FrameBgActive : hovered ? ImGuiCol_FrameBgHovered : ImGuiCo… in SliderScalar() 3197 …etColorU32(g.ActiveId == id ? ImGuiCol_FrameBgActive : hovered ? ImGuiCol_FrameBgHovered : ImGuiCo… in VSliderScalar()
|
D | imgui_draw.cpp | 203 colors[ImGuiCol_FrameBgHovered] = ImVec4(0.26f, 0.59f, 0.98f, 0.40f); in StyleColorsDark() 263 colors[ImGuiCol_FrameBgHovered] = ImVec4(0.47f, 0.47f, 0.69f, 0.40f); in StyleColorsClassic() 324 colors[ImGuiCol_FrameBgHovered] = ImVec4(0.26f, 0.59f, 0.98f, 0.40f); in StyleColorsLight()
|
D | imgui.h | 1462 ImGuiCol_FrameBgHovered, enumerator
|
D | imgui_demo.cpp | 2034 … ImGui::PushStyleColor(ImGuiCol_FrameBgHovered, (ImVec4)ImColor::HSV(i / 7.0f, 0.6f, 0.5f)); in ShowDemoWindowWidgets()
|
D | imgui.cpp | 2635 case ImGuiCol_FrameBgHovered: return "FrameBgHovered"; in GetStyleColorName()
|
/third_party/flutter/skia/third_party/externals/imgui/docs/ |
D | CHANGELOG.txt | 530 - Slider, Combo: Use ImGuiCol_FrameBgHovered color when hovered. (#1456) [@stfx]
|
/third_party/skia/third_party/externals/imgui/docs/ |
D | CHANGELOG.txt | 2209 - Slider, Combo: Use ImGuiCol_FrameBgHovered color when hovered. (#1456) [@stfx]
|