summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjiin.moon <jiin.moon@samsung.com>2015-09-04 13:39:26 +0900
committerJean-Philippe Andre <jp.andre@samsung.com>2015-09-04 13:51:58 +0900
commit3190c11c83a941f559a02ab06820108e0189af15 (patch)
treed667537cadea4117285d64a2b73307be878861ef
parent01ef11eb56f73af38ba8a3e7f6a5fc2b31a7f53d (diff)
downloadelementary-3190c11c83a941f559a02ab06820108e0189af15.tar.gz
elm_image: fix image preload issue
Summary: There are two issues about preload 1. elm_image_preload_disabled_set api does not work. Always returned before call the evas_object_image_preload() 2. image preload does not work at file_set time. If image's show property is not TRUE, do not call evas_object_image_preload() at file_set time. But there is no action when image's show property will be TRUE after call the file_set api. @fix Reviewers: Hermet, jpeg Differential Revision: https://phab.enlightenment.org/D2989 Signed-off-by: Jean-Philippe Andre <jp.andre@samsung.com>
-rw-r--r--src/lib/elm_image.c38
-rw-r--r--src/lib/elm_widget_image.h10
2 files changed, 30 insertions, 18 deletions
diff --git a/src/lib/elm_image.c b/src/lib/elm_image.c
index f1b7b5796..9c043b8c7 100644
--- a/src/lib/elm_image.c
+++ b/src/lib/elm_image.c
@@ -56,7 +56,7 @@ _on_image_preloaded(void *data,
void *event EINA_UNUSED)
{
Elm_Image_Data *sd = data;
- sd->preloading = EINA_FALSE;
+ sd->preload_status = ELM_IMAGE_PRELOADED;
if (sd->show) evas_object_show(obj);
ELM_SAFE_FREE(sd->prev_img, evas_object_del);
}
@@ -714,7 +714,7 @@ EOLIAN static void
_elm_image_evas_object_smart_show(Eo *obj, Elm_Image_Data *sd)
{
sd->show = EINA_TRUE;
- if (sd->preloading) return;
+ if (sd->preload_status == ELM_IMAGE_PRELOADING) return;
eo_do_super(obj, MY_CLASS, evas_obj_smart_show());
@@ -904,7 +904,7 @@ _elm_image_memfile_set(Eo *obj, Elm_Image_Data *sd, const void *img, size_t size
evas_object_image_memfile_set
(sd->img, (void *)img, size, (char *)format, (char *)key);
- sd->preloading = EINA_TRUE;
+ sd->preload_status = ELM_IMAGE_PRELOADING;
evas_object_image_preload(sd->img, EINA_FALSE);
if (evas_object_image_load_error_get(sd->img) != EVAS_LOAD_ERROR_NONE)
@@ -1019,11 +1019,10 @@ _elm_image_smart_internal_file_set(Eo *obj, Elm_Image_Data *sd,
else
evas_object_image_file_set(sd->img, file, key);
- evas_object_hide(sd->img);
-
- if (evas_object_visible_get(obj))
+ if (sd->preload_status != ELM_IMAGE_PRELOAD_DISABLED)
{
- sd->preloading = EINA_TRUE;
+ evas_object_hide(sd->img);
+ sd->preload_status = ELM_IMAGE_PRELOADING;
evas_object_image_preload(sd->img, EINA_FALSE);
}
@@ -1068,9 +1067,9 @@ _elm_image_smart_download_done(void *data, Elm_Url *url EINA_UNUSED, Eina_Binbuf
}
else
{
- if (evas_object_visible_get(obj))
+ if (sd->preload_status != ELM_IMAGE_PRELOAD_DISABLED)
{
- sd->preloading = EINA_TRUE;
+ sd->preload_status = ELM_IMAGE_PRELOADING;
evas_object_image_preload(sd->img, EINA_FALSE);
}
@@ -1340,18 +1339,23 @@ _elm_image_fill_outside_get(Eo *obj EINA_UNUSED, Elm_Image_Data *sd)
EOLIAN static void
_elm_image_preload_disabled_set(Eo *obj EINA_UNUSED, Elm_Image_Data *sd, Eina_Bool disable)
{
- if (sd->edje || !sd->preloading) return;
-
- //FIXME: Need to keep the disabled status for next image loading.
-
- evas_object_image_preload(sd->img, disable);
- sd->preloading = !disable;
+ if (sd->edje || !sd->img) return;
if (disable)
{
- if (sd->show && sd->img) evas_object_show(sd->img);
- ELM_SAFE_FREE(sd->prev_img, evas_object_del);
+ if (sd->preload_status == ELM_IMAGE_PRELOADING)
+ {
+ evas_object_image_preload(sd->img, disable);
+ if (sd->show) evas_object_show(sd->img);
+ ELM_SAFE_FREE(sd->prev_img, evas_object_del);
+ }
+ sd->preload_status = ELM_IMAGE_PRELOAD_DISABLED;
}
+ else if (sd->preload_status == ELM_IMAGE_PRELOAD_DISABLED)
+ {
+ sd->preload_status = ELM_IMAGE_PRELOADING;
+ evas_object_image_preload(sd->img, disable);
+ }
}
EAPI void
diff --git a/src/lib/elm_widget_image.h b/src/lib/elm_widget_image.h
index 1c3079c03..7836d9083 100644
--- a/src/lib/elm_widget_image.h
+++ b/src/lib/elm_widget_image.h
@@ -10,6 +10,13 @@
*/
typedef struct _Async_Open_Data Async_Open_Data;
+typedef enum
+ {
+ ELM_IMAGE_PRELOAD_ENABLED,
+ ELM_IMAGE_PRELOADING,
+ ELM_IMAGE_PRELOADED,
+ ELM_IMAGE_PRELOAD_DISABLED
+ } Elm_Image_Preload_Status;
/**
* @addtogroup Widget
@@ -63,10 +70,11 @@ struct _Elm_Image_Data
Eina_Spinlock lck;
} async;
+ Elm_Image_Preload_Status preload_status;
+
Eina_Bool aspect_fixed : 1;
Eina_Bool fill_inside : 1;
Eina_Bool resize_down : 1;
- Eina_Bool preloading : 1;
Eina_Bool resize_up : 1;
Eina_Bool no_scale : 1;
Eina_Bool smooth : 1;