| 933 | } |
| 934 | |
| 935 | Uint32 UITextInput::onTextEditing( const TextEditingEvent& event ) { |
| 936 | UITextView::onTextEditing( event ); |
| 937 | mDoc.imeTextEditing( event.getText() ); |
| 938 | updateIMELocation(); |
| 939 | invalidateDraw(); |
| 940 | return 1; |
| 941 | } |
| 942 | |
| 943 | void UITextInput::setAllowOnlyNumbers( const bool& onlyNumbers, const bool& allowFloat ) { |
| 944 | mOnlyNumbers = onlyNumbers; |
nothing calls this directly
no test coverage detected