ecore-wl2: Add API to return a windows preferred rotation

@feature

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2017-06-09 09:51:19 -04:00
parent 8b685a4d54
commit fa7f8d25b2
2 changed files with 19 additions and 0 deletions

View File

@ -1029,6 +1029,18 @@ EAPI Eina_Bool ecore_wl2_window_rotation_app_get(Ecore_Wl2_Window *window);
*/
EAPI void ecore_wl2_window_preferred_rotation_set(Ecore_Wl2_Window *window, int rot);
/**
* Get preferred rotation for a given window
*
* @param window
*
* @return Given windows preferred rotation
*
* @ingroup Ecore_Wl2_Window
* @since 1.20
*/
EAPI int ecore_wl2_window_preferred_rotation_get(Ecore_Wl2_Window *window);
/**
* @defgroup Ecore_Wl2_Input_Group Wayland Library Input Functions
* @ingroup Ecore_Wl2_Group

View File

@ -1248,3 +1248,10 @@ ecore_wl2_window_preferred_rotation_set(Ecore_Wl2_Window *window, int rot)
EINA_SAFETY_ON_NULL_RETURN(window);
window->wm_rot.preferred_rot = rot;
}
EAPI int
ecore_wl2_window_preferred_rotation_get(Ecore_Wl2_Window *window)
{
EINA_SAFETY_ON_NULL_RETURN_VAL(window, 0);
return window->wm_rot.preferred_rot;
}