| 320 | } |
| 321 | |
| 322 | QString UInputHelper::getDisplayString(int virtualkey) |
| 323 | { |
| 324 | QString temp = QString(); |
| 325 | |
| 326 | if (virtualkey <= 0) |
| 327 | temp = tr("[NO KEY]"); |
| 328 | else if (getKnownAliasesVKStrings().contains(virtualkey)) |
| 329 | temp = getKnownAliasesVKStrings().value(virtualkey); |
| 330 | |
| 331 | return temp; |
| 332 | } |
| 333 | |
| 334 | int UInputHelper::getVirtualKey(QString codestring) |
| 335 | { |
nothing calls this directly
no outgoing calls
no test coverage detected