| 220 | UString TextEdit::getText() const { return to_ustring(text); } |
| 221 | |
| 222 | void TextEdit::setText(const UString &Text) |
| 223 | { |
| 224 | text = to_u32string(Text); |
| 225 | SelectionStart = text.length(); |
| 226 | raiseEvent(FormEventType::TextChanged); |
| 227 | } |
| 228 | |
| 229 | void TextEdit::setCursor(const UString &cursor) |
| 230 | { |
nothing calls this directly
no test coverage detected