| 16299 | } |
| 16300 | |
| 16301 | bool QKeyMapper_Worker::detectMappingSwitchKey(const QString &keycodeString, int keyupdown) |
| 16302 | { |
| 16303 | bool detected = false; |
| 16304 | |
| 16305 | if (QKeyMapper::KEYMAP_IDLE == QKeyMapper::getInstance()->m_KeyMapStatus) { |
| 16306 | detected = detectMappingStartKey(keycodeString, keyupdown); |
| 16307 | } |
| 16308 | else { |
| 16309 | detected = detectMappingStopKey(keycodeString, keyupdown); |
| 16310 | } |
| 16311 | |
| 16312 | return detected; |
| 16313 | } |
| 16314 | |
| 16315 | bool QKeyMapper_Worker::detectMappingStartKey(const QString &keycodeString, int keyupdown) |
| 16316 | { |
nothing calls this directly
no outgoing calls
no test coverage detected