| 4330 | int ImGuiInputTextState::GetSelectionStart() const { return Stb->select_start; } |
| 4331 | int ImGuiInputTextState::GetSelectionEnd() const { return Stb->select_end; } |
| 4332 | void ImGuiInputTextState::SetSelection(int start, int end) { Stb->select_start = start; Stb->cursor = Stb->select_end = end; } |
| 4333 | float ImGuiInputTextState::GetPreferredOffsetX() const { return Stb->has_preferred_x ? Stb->preferred_x : -1; } |
| 4334 | void ImGuiInputTextState::SelectAll() { Stb->select_start = 0; Stb->cursor = Stb->select_end = TextLen; Stb->has_preferred_x = 0; } |
| 4335 | void ImGuiInputTextState::ReloadUserBufAndSelectAll() { WantReloadUserBuf = true; ReloadSelectionStart = 0; ReloadSelectionEnd = INT_MAX; } |
nothing calls this directly
no outgoing calls
no test coverage detected