| 3217 | IMGUI_API bool TempInputScalar(const ImRect& bb, ImGuiID id, const char* label, ImGuiDataType data_type, void* p_data, const char* format, const void* p_clamp_min = NULL, const void* p_clamp_max = NULL); |
| 3218 | inline bool TempInputIsActive(ImGuiID id) { ImGuiContext& g = *GImGui; return (g.ActiveId == id && g.TempInputId == id); } |
| 3219 | inline ImGuiInputTextState* GetInputTextState(ImGuiID id) { ImGuiContext& g = *GImGui; return (id != 0 && g.InputTextState.ID == id) ? &g.InputTextState : NULL; } // Get input text state if active |
| 3220 | |
| 3221 | // Color |
| 3222 | IMGUI_API void ColorTooltip(const char* text, const float* col, ImGuiColorEditFlags flags); |
no outgoing calls
no test coverage detected