| 794 | } |
| 795 | |
| 796 | std::string KeyboardLayoutManager::GetKeyNameAt(unsigned int key_idx) |
| 797 | { |
| 798 | if(key_idx < keymap.size()) |
| 799 | { |
| 800 | return keymap[key_idx].name; |
| 801 | } |
| 802 | |
| 803 | return KEY_EN_UNUSED; |
| 804 | } |
| 805 | |
| 806 | std::string KeyboardLayoutManager::GetKeyNameAt(unsigned int row, unsigned int col) |
| 807 | { |
no test coverage detected