| 2033 | } |
| 2034 | |
| 2035 | bool ImGuiTextFilter::Draw(const char* label, float width) |
| 2036 | { |
| 2037 | if (width != 0.0f) |
| 2038 | ImGui::SetNextItemWidth(width); |
| 2039 | bool value_changed = ImGui::InputText(label, InputBuf, IM_ARRAYSIZE(InputBuf)); |
| 2040 | if (value_changed) |
| 2041 | Build(); |
| 2042 | return value_changed; |
| 2043 | } |
| 2044 | |
| 2045 | void ImGuiTextFilter::ImGuiTextRange::split(char separator, ImVector<ImGuiTextRange>* out) const |
| 2046 | { |
no outgoing calls
no test coverage detected