ecore-wl2: Add API to get/set if a window is in floating mode

Small patch to add API functions which allow getting/setting if a
window is in floating mode

"#divergence"

@feature

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2017-06-15 11:07:48 -04:00
parent bdcf798dba
commit e3abac30f1
3 changed files with 38 additions and 0 deletions

View File

@ -1216,6 +1216,29 @@ EAPI Eina_Bool ecore_wl2_window_focus_skip_get(Ecore_Wl2_Window *window);
*/
EAPI void ecore_wl2_window_role_set(Ecore_Wl2_Window *window, const char *role);
/**
* Set if a given window is in floating mode
*
* @param window
* @param floating
*
* @ingroup Ecore_Wl2_Window_Group
* @since 1.20
*/
EAPI void ecore_wl2_window_floating_mode_set(Ecore_Wl2_Window *window, Eina_Bool floating);
/**
* Get if a given window is in floating mode
*
* @param window
*
* @return EINA_TRUE if floating, EINA_FALSE otherwise
*
* @ingroup Ecore_Wl2_Window_Group
* @since 1.20
*/
EAPI Eina_Bool ecore_wl2_window_floating_mode_get(Ecore_Wl2_Window *window);
/**
* @defgroup Ecore_Wl2_Input_Group Wayland Library Input Functions
* @ingroup Ecore_Wl2_Group

View File

@ -192,6 +192,7 @@ struct _Ecore_Wl2_Window
Eina_Bool opaque_set : 1;
Eina_Bool focus_skip : 1;
Eina_Bool floating : 1;
struct
{

View File

@ -1477,3 +1477,17 @@ ecore_wl2_window_role_set(Ecore_Wl2_Window *window, const char *role)
EINA_SAFETY_ON_NULL_RETURN(window);
eina_stringshare_replace(&window->role, role);
}
EAPI void
ecore_wl2_window_floating_mode_set(Ecore_Wl2_Window *window, Eina_Bool floating)
{
EINA_SAFETY_ON_NULL_RETURN(window);
window->floating = floating;
}
EAPI Eina_Bool
ecore_wl2_window_floating_mode_get(Ecore_Wl2_Window *window)
{
EINA_SAFETY_ON_NULL_RETURN_VAL(window, EINA_FALSE);
return window->floating;
}