Helper: Parse and apply text filters. In format "aaaaa[,bbbb][,ccccc]"
| 2435 | |
| 2436 | // Helper: Parse and apply text filters. In format "aaaaa[,bbbb][,ccccc]" |
| 2437 | ImGuiTextFilter::ImGuiTextFilter(const char* default_filter) //-V1077 |
| 2438 | { |
| 2439 | InputBuf[0] = 0; |
| 2440 | CountGrep = 0; |
| 2441 | if (default_filter) |
| 2442 | { |
| 2443 | ImStrncpy(InputBuf, default_filter, IM_ARRAYSIZE(InputBuf)); |
| 2444 | Build(); |
| 2445 | } |
| 2446 | } |
| 2447 | |
| 2448 | bool ImGuiTextFilter::Draw(const char* label, float width) |
| 2449 | { |
nothing calls this directly
no test coverage detected