| 1279 | bool InputDevice::isKeyRepeatEnabled() { return keyRepeatEnabled; } |
| 1280 | |
| 1281 | int InputDevice::getKeyRepeatDelay() |
| 1282 | { |
| 1283 | int tempKeyRepeatDelay = GlobalVariables::InputDevice::DEFAULTKEYREPEATDELAY; |
| 1284 | |
| 1285 | if (keyRepeatDelay != 0) |
| 1286 | { |
| 1287 | tempKeyRepeatDelay = keyRepeatDelay; |
| 1288 | } |
| 1289 | |
| 1290 | return tempKeyRepeatDelay; |
| 1291 | } |
| 1292 | |
| 1293 | int InputDevice::getKeyRepeatRate() |
| 1294 | { |
nothing calls this directly
no outgoing calls
no test coverage detected