| 236 | } |
| 237 | |
| 238 | void IMEDispatcher::dispatchControlKey(EventKeyboard::KeyCode keyCode) |
| 239 | { |
| 240 | do |
| 241 | { |
| 242 | AX_BREAK_IF(!_impl); |
| 243 | |
| 244 | // there is no delegate attached to IME |
| 245 | AX_BREAK_IF(!_impl->_delegateWithIme); |
| 246 | |
| 247 | _impl->_delegateWithIme->controlKey(keyCode); |
| 248 | } while (0); |
| 249 | } |
| 250 | |
| 251 | std::string_view IMEDispatcher::getContentText() |
| 252 | { |
no test coverage detected