From 5e1dc9fb7db1a170130cc7251ecd678f6cbaf7a4 Mon Sep 17 00:00:00 2001 From: ChunEon Park Date: Wed, 24 Oct 2012 01:36:29 +0000 Subject: [PATCH] evas/image - [E-devel] [PATCH][Evas] improve the evas_object_image_source_visible_set docs Hi, Attached goes a patch improving the evas_object_image_source_visible_set documentation. Regards, Signed-Off-By: Leandro Dorileo SVN revision: 78379 --- legacy/evas/src/lib/Evas.h | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/legacy/evas/src/lib/Evas.h b/legacy/evas/src/lib/Evas.h index 46b0ea789f..2f78a4304b 100644 --- a/legacy/evas/src/lib/Evas.h +++ b/legacy/evas/src/lib/Evas.h @@ -9122,20 +9122,21 @@ EAPI Evas_Object *evas_object_image_source_get(const Evas_Objec EAPI Eina_Bool evas_object_image_source_unset(Evas_Object *obj) EINA_ARG_NONNULL(1); /** - * Set the source object to be shown or hidden. + * Set the source object to be visible or not. * * @param obj Proxy (image) object. * @param visible @c EINA_TRUE is source object to be shown, @c EINA_FALSE * otherwise. * * If the @p visible set to @c EINA_FALSE, the source object of the proxy(@p obj - * ) will be hidden. + * ) will be invisible. * - * This API works differently with evas_object_show() and evas_object_hide(). - * Once source object is hidden by evas_object_hide() then the proxy object will * be hidden also. Actually in this case both objects are excluded from the - * Evas internal updation. By this API, instead, you can set only proxy object - * to be shown. And even if source object is invisible, source object can be - *updated for proxy. + * This API works differently to evas_object_show() and evas_object_hide(). + * Once source object is hidden by evas_object_hide() then the proxy object will * be hidden as well. Actually in this case both objects are excluded from the + * Evas internal update circle. + * + * By this API, instead, one can toggle the visibility of a proxy's source + * object remaining the proxy visibility untouched. * * @see evas_object_image_source_visible_get() * @see evas_object_image_source_set()