| 145 | } |
| 146 | |
| 147 | void Recorder::checkInputModifiers() { |
| 148 | U32 inputModifers = KNativeSystem::getCurrentInput()->getInputModifiers(); |
| 149 | if (inputModifers != currentInputModifiers) { |
| 150 | currentInputModifiers = inputModifers; |
| 151 | out("MODIFIERS="); |
| 152 | out(BString::valueOf(currentInputModifiers).c_str()); |
| 153 | out("\r\n"); |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | void Recorder::onMouseMove(U32 x, U32 y) { |
| 158 | checkInputModifiers(); |
nothing calls this directly
no test coverage detected