| 301 | } |
| 302 | |
| 303 | void EiKeyState::fakeKey(const Keystroke &keystroke) |
| 304 | { |
| 305 | if (keystroke.m_type != Keystroke::KeyType::Button) |
| 306 | return; |
| 307 | |
| 308 | LOG_DEBUG1( |
| 309 | "fake key: %03x (%08x) %s", keystroke.m_data.m_button.m_button, keystroke.m_data.m_button.m_client, |
| 310 | keystroke.m_data.m_button.m_press ? "down" : "up" |
| 311 | ); |
| 312 | m_screen->fakeKey(keystroke.m_data.m_button.m_button, keystroke.m_data.m_button.m_press); |
| 313 | } |
| 314 | |
| 315 | KeyID EiKeyState::mapKeyFromKeyval(uint32_t keyval) const |
| 316 | { |
nothing calls this directly
no outgoing calls
no test coverage detected