| 1065 | ImGuiInputTextState() { memset(this, 0, sizeof(*this)); } |
| 1066 | void ClearText() { CurLenW = CurLenA = 0; TextW[0] = 0; TextA[0] = 0; CursorClamp(); } |
| 1067 | void ClearFreeMemory() { TextW.clear(); TextA.clear(); InitialTextA.clear(); } |
| 1068 | int GetUndoAvailCount() const { return Stb.undostate.undo_point; } |
| 1069 | int GetRedoAvailCount() const { return STB_TEXTEDIT_UNDOSTATECOUNT - Stb.undostate.redo_point; } |
| 1070 | void OnKeyPressed(int key); // Cannot be inline because we call in code in stb_textedit.h implementation |
no test coverage detected