Lines Matching refs:ImU32
79 static const ImU32 IM_U32_MIN = 0;
80 static const ImU32 IM_U32_MAX = UINT_MAX; // (0xFFFFFFFF)
573 …const ImU32 col = GetColorU32((held && hovered) ? ImGuiCol_ButtonActive : hovered ? ImGuiCol_Butto… in ButtonEx()
647 …const ImU32 col = GetColorU32((held && hovered) ? ImGuiCol_ButtonActive : hovered ? ImGuiCol_Butto… in ArrowButtonEx()
683 ImU32 cross_col = GetColorU32(ImGuiCol_Text); in CloseButton()
701 …ImU32 col = GetColorU32((held && hovered) ? ImGuiCol_ButtonActive : hovered ? ImGuiCol_ButtonHover… in CollapseButton()
833 …const ImU32 grab_col = GetColorU32(held ? ImGuiCol_ScrollbarGrabActive : hovered ? ImGuiCol_Scroll… in Scrollbar()
896 …const ImU32 col = GetColorU32((held && hovered) ? ImGuiCol_ButtonActive : hovered ? ImGuiCol_Butto… in ImageButton()
1258 …const ImU32 col = GetColorU32(held ? ImGuiCol_SeparatorActive : (hovered && g.HoveredIdTimer >= ho… in SplitterBehavior()
1310 const ImU32 frame_col = GetColorU32(hovered ? ImGuiCol_FrameBgHovered : ImGuiCol_FrameBg); in BeginCombo()
1540 return ImFormatString(buf, buf_size, format, *(const ImU32*)data_ptr); in DataTypeFormatString()
1562 … if (op == '+') *(unsigned int*)output = *(const unsigned int*)arg1 + *(const ImU32*)arg2; in DataTypeApplyOp()
1563 … else if (op == '-') *(unsigned int*)output = *(const unsigned int*)arg1 - *(const ImU32*)arg2; in DataTypeApplyOp()
1850 …rn DragBehaviorT<ImU32, ImS32, float >(data_type, (ImU32*)v, v_speed, v_min ? *(const ImU32* )v_m… in DragBehavior()
1921 …const ImU32 frame_col = GetColorU32(g.ActiveId == id ? ImGuiCol_FrameBgActive : g.HoveredId == id … in DragScalar()
2277 IM_ASSERT(*(const ImU32*)v_min <= IM_U32_MAX/2); in SliderBehavior()
2278 …return SliderBehaviorT<ImU32, ImS32, float >(bb, id, data_type, (ImU32*)v, *(const ImU32*)v_min, … in SliderBehavior()
2348 …const ImU32 frame_col = GetColorU32(g.ActiveId == id ? ImGuiCol_FrameBgActive : g.HoveredId == id … in SliderScalar()
2488 …const ImU32 frame_col = GetColorU32(g.ActiveId == id ? ImGuiCol_FrameBgActive : g.HoveredId == id … in VSliderScalar()
3723 ImU32 bg_color = GetColorU32(ImGuiCol_TextSelectedBg); in InputTextEx()
4045 static inline ImU32 ImAlphaBlendColor(ImU32 col_a, ImU32 col_b) in ImAlphaBlendColor()
4057 void ImGui::RenderColorRectWithAlphaCheckerboard(ImVec2 p_min, ImVec2 p_max, ImU32 col, float grid_… in RenderColorRectWithAlphaCheckerboard()
4062 ImU32 col_bg1 = GetColorU32(ImAlphaBlendColor(IM_COL32(204,204,204,255), col)); in RenderColorRectWithAlphaCheckerboard()
4063 ImU32 col_bg2 = GetColorU32(ImAlphaBlendColor(IM_COL32(128,128,128,255), col)); in RenderColorRectWithAlphaCheckerboard()
4309 ImU32 hue_color32 = ColorConvertFloat4ToU32(hue_color_f); in ColorPicker4()
4310 ImU32 col32_no_alpha = ColorConvertFloat4ToU32(ImVec4(col[0], col[1], col[2], 1.0f)); in ColorPicker4()
4312 …const ImU32 hue_colors[6+1] = { IM_COL32(255,0,0,255), IM_COL32(255,255,0,255), IM_COL32(0,255,0,2… in ColorPicker4()
4864 …const ImU32 col = GetColorU32((held && hovered) ? ImGuiCol_HeaderActive : hovered ? ImGuiCol_Heade… in TreeNodeBehavior()
5091 …const ImU32 col = GetColorU32((held && hovered) ? ImGuiCol_HeaderActive : hovered ? ImGuiCol_Heade… in Selectable()
5322 …const ImU32 col_base = GetColorU32((plot_type == ImGuiPlotType_Lines) ? ImGuiCol_PlotLines : ImGui… in PlotEx()
5323 …const ImU32 col_hovered = GetColorU32((plot_type == ImGuiPlotType_Lines) ? ImGuiCol_PlotLinesHover… in PlotEx()
5824 static ImU32 TabBarCalcTabID(ImGuiTabBar* tab_bar, const char* label);
5916 …const ImU32 col = GetColorU32((flags & ImGuiTabBarFlags_IsFocused) ? ImGuiCol_TabActive : ImGuiCol… in BeginTabBarEx()
6120 static ImU32 ImGui::TabBarCalcTabID(ImGuiTabBar* tab_bar, const char* label) in TabBarCalcTabID()
6494 …const ImU32 tab_col = GetColorU32((held || hovered) ? ImGuiCol_TabHovered : tab_contents_visible ?… in TabItemEx()
6555 …Gui::TabItemBackground(ImDrawList* draw_list, const ImRect& bb, ImGuiTabItemFlags flags, ImU32 col) in TabItemBackground()