| 2446 | } |
| 2447 | |
| 2448 | bool ImGuiTextFilter::Draw(const char* label, float width) |
| 2449 | { |
| 2450 | if (width != 0.0f) |
| 2451 | ImGui::SetNextItemWidth(width); |
| 2452 | bool value_changed = ImGui::InputText(label, InputBuf, IM_ARRAYSIZE(InputBuf)); |
| 2453 | if (value_changed) |
| 2454 | Build(); |
| 2455 | return value_changed; |
| 2456 | } |
| 2457 | |
| 2458 | void ImGuiTextFilter::ImGuiTextRange::split(char separator, ImVector<ImGuiTextRange>* out) const |
| 2459 | { |
no outgoing calls
no test coverage detected