diff options
-rw-r--r-- | legacy/evas/src/lib/Evas.h | 15 |
1 files 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 | |||
9122 | EAPI Eina_Bool evas_object_image_source_unset(Evas_Object *obj) EINA_ARG_NONNULL(1); | 9122 | EAPI Eina_Bool evas_object_image_source_unset(Evas_Object *obj) EINA_ARG_NONNULL(1); |
9123 | 9123 | ||
9124 | /** | 9124 | /** |
9125 | * Set the source object to be shown or hidden. | 9125 | * Set the source object to be visible or not. |
9126 | * | 9126 | * |
9127 | * @param obj Proxy (image) object. | 9127 | * @param obj Proxy (image) object. |
9128 | * @param visible @c EINA_TRUE is source object to be shown, @c EINA_FALSE | 9128 | * @param visible @c EINA_TRUE is source object to be shown, @c EINA_FALSE |
9129 | * otherwise. | 9129 | * otherwise. |
9130 | * | 9130 | * |
9131 | * If the @p visible set to @c EINA_FALSE, the source object of the proxy(@p obj | 9131 | * If the @p visible set to @c EINA_FALSE, the source object of the proxy(@p obj |
9132 | * ) will be hidden. | 9132 | * ) will be invisible. |
9133 | * | ||
9134 | * This API works differently to evas_object_show() and evas_object_hide(). | ||
9135 | * 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 | ||
9136 | * Evas internal update circle. | ||
9133 | * | 9137 | * |
9134 | * This API works differently with evas_object_show() and evas_object_hide(). | 9138 | * By this API, instead, one can toggle the visibility of a proxy's source |
9135 | * 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 | 9139 | * object remaining the proxy visibility untouched. |
9136 | * Evas internal updation. By this API, instead, you can set only proxy object | ||
9137 | * to be shown. And even if source object is invisible, source object can be | ||
9138 | *updated for proxy. | ||
9139 | * | 9140 | * |
9140 | * @see evas_object_image_source_visible_get() | 9141 | * @see evas_object_image_source_visible_get() |
9141 | * @see evas_object_image_source_set() | 9142 | * @see evas_object_image_source_set() |