elput: Add API function to return output name associated with input

device

This patch adds a new API function which we can call from Ecore_Drm2
which will return the name of an output which is associated with a
given input device. This output name can then be used to find a
matching output, and perform any device calibration that is needed.

@feature

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2016-07-07 14:33:38 -04:00 committed by Chris Michael
parent eb1650d5f2
commit e0cde40475
2 changed files with 21 additions and 0 deletions

View File

@ -401,6 +401,18 @@ EAPI void elput_input_keyboard_cached_context_set(Elput_Manager *manager, void *
*/
EAPI void elput_input_keyboard_cached_keymap_set(Elput_Manager *manager, void *keymap);
/**
* Return the output name associated with a given device
*
* @param device
*
* @return An Eina_Stringshare of the output name for this device, or NULL on error
*
* @ingroup Elput_Input_Group
* @since 1.18
*/
EAPI Eina_Stringshare *elput_input_device_output_name_get(Elput_Device *device);
# endif
# undef EAPI

View File

@ -629,3 +629,12 @@ elput_input_keyboard_cached_keymap_set(Elput_Manager *manager, void *keymap)
if ((keymap) && (manager->cached.keymap == keymap)) return;
manager->cached.keymap = keymap;
}
EAPI Eina_Stringshare *
elput_input_device_output_name_get(Elput_Device *device)
{
EINA_SAFETY_ON_NULL_RETURN_VAL(device, NULL);
EINA_SAFETY_ON_NULL_RETURN_VAL(device->output_name, NULL):
return eina_stringshare_ref(device->output_name);
}