| 80 | } |
| 81 | |
| 82 | void TextFieldCore::setFont(const Font &font) |
| 83 | { |
| 84 | _jEditText.setFont(font.family, (int)font.size.type, font.size.value, font.weight, |
| 85 | font.style == Font::Style::Italic); |
| 86 | } |
| 87 | |
| 88 | void TextFieldCore::setReturnKeyType(const ReturnKeyType returnKeyType) |
| 89 | { |
nothing calls this directly
no outgoing calls
no test coverage detected