Re: [E-devel] [PATCH] libunibreak: add missing __has_attribute definitions for old compilers

2019-04-16 Thread Vincent Torri
can you open a ticket on phab ? Vincent On Tue, Apr 16, 2019 at 10:10 PM Romain Naour wrote: > > __has_attribute has been introduced with gcc 5 [1]. > > [1] https://www.gnu.org/software/gcc/gcc-5/changes.html > > Fixes: > http://autobuild.buildroot.net/results/64ab825048fac1654b0d0698740ddf857fc

[E-devel] [PATCH] libunibreak: add missing __has_attribute definitions for old compilers

2019-04-16 Thread Romain Naour
__has_attribute has been introduced with gcc 5 [1]. [1] https://www.gnu.org/software/gcc/gcc-5/changes.html Fixes: http://autobuild.buildroot.net/results/64ab825048fac1654b0d0698740ddf857fcc0afa/build-end.log --- src/static_libs/libunibreak/wordbreak.c | 6 ++ 1 file changed, 6 insertions(+

Re: [E-devel] Help: Questions about the usage of edje add elemetary

2019-04-16 Thread Mike Blumenkrantz
Hi, This is not a valid use of the API. Only an elm widget can be used as a parent object for another elm widget. Regards, Mike On Tue, Apr 16, 2019 at 7:08 AM Jing wrote: > I mean can elm widet be added to the same Evas canvas with edje. Can i > use insert elm like: > > > ecore_evas_init --

Re: [E-devel] Help: Questions about the usage of edje add elemetary

2019-04-16 Thread Jing
I mean can elm widet be added to the same Evas canvas with edje. Can i use insert elm like: ecore_evas_init --> edje_init--> ecore_evas_new--> ecore_evas_get--> bg =evas_object_rectangle_add--> elm_win_add(bg, NULL, ELM_WIN_BASIC); // Not sure whether it is reasonable edje_object_add--> edj

Re: [E-devel] Help: Questions about the usage of edje add elemetary

2019-04-16 Thread Vincent Torri
On Tue, Apr 16, 2019 at 12:22 PM Jing wrote: > > Hi all, > > > According to the efl examples, the basic process flow of edje usage is: > > > ecore_evas_init --> > edje_init--> > ecore_evas_new--> > ecore_evas_get--> > evas_object_rectangle_add--> > edje_object_add--> > edje_object_file_set-> > eco

[E-devel] Help: Questions about the usage of edje add elemetary

2019-04-16 Thread Jing
Hi all, According to the efl examples, the basic process flow of edje usage is: ecore_evas_init --> edje_init--> ecore_evas_new--> ecore_evas_get--> evas_object_rectangle_add--> edje_object_add--> edje_object_file_set-> ecore_evas_show--> ecore_main_loop_begin--> ecore_evas_free--> ecore_evas_