| 369 | } |
| 370 | |
| 371 | bool Win32ControlUnitMgr::input_text(const std::string& text) |
| 372 | { |
| 373 | if (!keyboard_) { |
| 374 | LogError << "keyboard_ is null"; |
| 375 | return false; |
| 376 | } |
| 377 | |
| 378 | return keyboard_->input_text(text); |
| 379 | } |
| 380 | |
| 381 | bool Win32ControlUnitMgr::key_down(int key) |
| 382 | { |
nothing calls this directly
no test coverage detected