Lines Matching defs:StbState
570 ImGuiStb::STB_TexteditState StbState;
582 void CursorClamp() { StbState.cursor = ImMin(StbState.cursor, CurLenW); StbState.select_start = ImMin(StbState.select_start, CurLenW); StbState.select_end = ImMin(StbState.select_end, CurLenW); }
583 bool HasSelection() const { return StbState.select_start != StbState.select_end; }
584 void ClearSelection() { StbState.select_start = StbState.select_end = StbState.cursor; }
585 void SelectAll() { StbState.select_start = 0; StbState.cursor = StbState.select_end = CurLenW; StbState.has_preferred_x = 0; }