| 2094 | IMGUI_API void DeleteChars(int pos, int bytes_count); |
| 2095 | IMGUI_API void InsertChars(int pos, const char* text, const char* text_end = NULL); |
| 2096 | void SelectAll() { SelectionStart = 0; SelectionEnd = BufTextLen; } |
| 2097 | void ClearSelection() { SelectionStart = SelectionEnd = BufTextLen; } |
| 2098 | bool HasSelection() const { return SelectionStart != SelectionEnd; } |
| 2099 | }; |