| 2280 | |
| 2281 | // [Internal] |
| 2282 | struct ImGuiTextRange |
| 2283 | { |
| 2284 | const char* b; |
| 2285 | const char* e; |
| 2286 | |
| 2287 | ImGuiTextRange() { b = e = NULL; } |
| 2288 | ImGuiTextRange(const char* _b, const char* _e) { b = _b; e = _e; } |
| 2289 | bool empty() const { return b == e; } |
| 2290 | IMGUI_API void split(char separator, ImVector<ImGuiTextRange>* out) const; |
| 2291 | }; |
| 2292 | char InputBuf[256]; |
| 2293 | ImVector<ImGuiTextRange>Filters; |
| 2294 | int CountGrep; |