ecore-wl2: Add placeholder API for ecore_wl2_window_raise

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-09-09 13:06:54 -04:00
parent 8079f5cf9d
commit b3ca3c7880
2 changed files with 17 additions and 0 deletions

View File

@ -312,6 +312,15 @@ EAPI void ecore_wl2_window_move(Ecore_Wl2_Window *window, int x, int y);
*/
EAPI void ecore_wl2_window_resize(Ecore_Wl2_Window *window, int w, int h, int location);
/**
* Raise a given Ecore_Wl2_Window
*
* @param window The Ecore_Wl2_Window which to raise
*
* @ingroup Ecore_Wl2_Window_Group
*/
EAPI void ecore_wl2_window_raise(Ecore_Wl2_Window *window);
/* # ifdef __cplusplus */
/* } */
/* # endif */

View File

@ -344,3 +344,11 @@ ecore_wl2_window_resize(Ecore_Wl2_Window *window, int w, int h, int location)
/* wl_shell_surface_resize(window->wl_shell_surface, seat, */
/* window->display->serial, location); */
}
EAPI void
ecore_wl2_window_raise(Ecore_Wl2_Window *window)
{
EINA_SAFETY_ON_NULL_RETURN(window);
/* FIXME: set keyboard focus when input is complete */
}