> You miss showing the image here. Box will not change visibility of children.
>
>
>>        edje_object_part_swallow(edje, "picthumblist", box);
>>
>> If i remove the box related part and change the
>> edje_object_part_swallow(edje, "picthumblist", box);  to
>> edje_object_part_swallow(edje, "picthumblist", image); i can see the
>> image.  But with this usage i don't see my image. Seems something is
>> missing.
>
> probably not showing is the case, as swallow will show children.

So i added a show for image

        /*working without box*/
        Evas_Object *image;
        Evas_Object *box;
        image = evas_object_image_filled_add(evas);
        evas_object_image_file_set(image, "/someimage.png", NULL);
        
        box=evas_object_box_add(evas);
        evas_object_box_layout_set(box,
evas_object_box_layout_homogeneous_max_size_horizontal, NULL, NULL);
        evas_object_size_hint_align_set(image, -1.0, -1.0);
        
        evas_object_box_append(box, image);
        
        evas_object_show(image);
        edje_object_part_swallow(edje, "picthumblist", box);

Still dont see the image. Is there any box setting to make the childs visible?

------------------------------------------------------------------------------
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to