| 817 | } |
| 818 | |
| 819 | unsigned int KeyboardLayoutManager::GetKeyValueAt(unsigned int key_idx) |
| 820 | { |
| 821 | if(key_idx < keymap.size()) |
| 822 | { |
| 823 | return keymap[key_idx].value; |
| 824 | } |
| 825 | |
| 826 | return -1; |
| 827 | } |
| 828 | |
| 829 | unsigned int KeyboardLayoutManager::GetKeyValueAt(unsigned int row, unsigned int col) |
| 830 | { |
no test coverage detected