| 2187 | IMGUI_API void DeleteChars(int pos, int bytes_count); |
| 2188 | IMGUI_API void InsertChars(int pos, const char* text, const char* text_end = NULL); |
| 2189 | void SelectAll() { SelectionStart = 0; SelectionEnd = BufTextLen; } |
| 2190 | void ClearSelection() { SelectionStart = SelectionEnd = BufTextLen; } |
| 2191 | bool HasSelection() const { return SelectionStart != SelectionEnd; } |
| 2192 | }; |