| 296 | } |
| 297 | |
| 298 | void handle_im_context_modifiers_map(wl_client *client, wl_resource *resource, |
| 299 | struct wl_array *map) |
| 300 | { |
| 301 | auto context = static_cast<wayfire_input_method_v1_context*>(wl_resource_get_user_data(resource)); |
| 302 | if (context && context->text_input) |
| 303 | { |
| 304 | context->text_input->send_modifiers_map(map); |
| 305 | } |
| 306 | } |
| 307 | |
| 308 | void handle_im_context_keysym(wl_client *client, wl_resource *resource, |
| 309 | uint32_t serial, uint32_t time, uint32_t sym, uint32_t state, |
nothing calls this directly
no test coverage detected