| 1972 | } |
| 1973 | |
| 1974 | bool ImGuiTextFilter::Draw(const char* label, float width) |
| 1975 | { |
| 1976 | if (width != 0.0f) |
| 1977 | ImGui::SetNextItemWidth(width); |
| 1978 | bool value_changed = ImGui::InputText(label, InputBuf, IM_ARRAYSIZE(InputBuf)); |
| 1979 | if (value_changed) |
| 1980 | Build(); |
| 1981 | return value_changed; |
| 1982 | } |
| 1983 | |
| 1984 | void ImGuiTextFilter::ImGuiTextRange::split(char separator, ImVector<ImGuiTextRange>* out) const |
| 1985 | { |
no outgoing calls
no test coverage detected