| 196 | } |
| 197 | |
| 198 | keysym_t KeyMappingXcb::nativeToKeysym(int keycode) |
| 199 | { |
| 200 | /* Convert native virtual key to the keysym obtained without modifiers */ |
| 201 | if (keysym_mapping.find(keycode) != keysym_mapping.end()) { |
| 202 | return keysym_mapping[keycode]; |
| 203 | } |
| 204 | |
| 205 | return keycode; |
| 206 | } |
| 207 | |
| 208 | void KeyMappingXcb::default_inputs() |
| 209 | { |
no test coverage detected