This func provide the e_desk containing a given e_client
through searching all desks.
Change-Id: Ic787b047ac50c6a788e945353924e5fe0b1b9737
return NULL;
}
+E_API E_Desk *
+e_comp_desk_find_by_ec(E_Client *ec)
+{
+ E_Zone *zone;
+
+ zone = e_comp_zone_find_by_ec(ec);
+ EINA_SAFETY_ON_NULL_RETURN_VAL(zone, NULL);
+
+ return e_zone_desk_find_by_ec(zone, ec);
+}
+
EINTERN Eina_Bool
e_comp_client_zone_is_displaying(E_Client *ec)
{
E_API E_Comp_Image_Filter e_comp_image_filter_get(void);
E_API E_Zone *e_comp_zone_find_by_ec(E_Client *ec);
+E_API E_Desk *e_comp_desk_find_by_ec(E_Client *ec);
EINTERN Eina_Bool e_comp_client_zone_is_displaying(E_Client *ec);
EINTERN void e_comp_idler_before(void);
EINTERN void e_comp_visibility_calculation_set(Eina_Bool set);