Helper: Parse and apply text filters. In format "aaaaa[,bbbb][,ccccc]"
| 2373 | |
| 2374 | // Helper: Parse and apply text filters. In format "aaaaa[,bbbb][,ccccc]" |
| 2375 | ImGuiTextFilter::ImGuiTextFilter(const char* default_filter) //-V1077 |
| 2376 | { |
| 2377 | InputBuf[0] = 0; |
| 2378 | CountGrep = 0; |
| 2379 | if (default_filter) |
| 2380 | { |
| 2381 | ImStrncpy(InputBuf, default_filter, IM_ARRAYSIZE(InputBuf)); |
| 2382 | Build(); |
| 2383 | } |
| 2384 | } |
| 2385 | |
| 2386 | bool ImGuiTextFilter::Draw(const char* label, float width) |
| 2387 | { |
nothing calls this directly
no test coverage detected