Re: [E-devel] Simple question

2018-07-05 Thread Christopher Michael
I've brought up before that nls was missing thanks William ;) dh On 07/05/2018 10:19 PM, Hermet Park wrote: good. thanks! On Sat, Jun 30, 2018 at 5:29 AM, William L. Thomson Jr. < wlt...@obsidian-studios.com> wrote: On Fri, 29 Jun 2018 08:21:13 +0200 Xavi Artigas wrote: I have found

Re: [E-devel] Simple question

2018-07-05 Thread Hermet Park
good. thanks! On Sat, Jun 30, 2018 at 5:29 AM, William L. Thomson Jr. < wlt...@obsidian-studios.com> wrote: > On Fri, 29 Jun 2018 08:21:13 +0200 > Xavi Artigas wrote: > > > I have found that error on some meson builds (for example, Edi) and > > could not locate the library either. > > But in my

Re: [E-devel] Simple question

2018-07-05 Thread William L. Thomson Jr.
On Fri, 29 Jun 2018 08:21:13 +0200 Xavi Artigas wrote: > I have found that error on some meson builds (for example, Edi) and > could not locate the library either. > But in my experience, ignoring the error just works. > I have Ubuntu 18.04 That build system is likely incorrect like edi. https:/

Re: [E-devel] Simple question

2018-06-29 Thread Xavi Artigas
I have found that error on some meson builds (for example, Edi) and could not locate the library either. But in my experience, ignoring the error just works. I have Ubuntu 18.04 Xavi El vie., 29 jun. 2018 7:37 a. m., Carsten Haitzler escribió: > On Fri, 29 Jun 2018 11:01:12 +0900 Hermet Park >

Re: [E-devel] Simple question

2018-06-28 Thread The Rasterman
On Fri, 29 Jun 2018 11:01:12 +0900 Hermet Park said: > "Library intl found: NO" > > Which package do i suppose to install to enable intl ? > Can't find package name with apt-cache search. Too ambiguous. > > Need the exact name for it. > > Anyone helps me? well glibc provides that normally (ge

[E-devel] Simple question

2018-06-28 Thread Hermet Park
"Library intl found: NO" Which package do i suppose to install to enable intl ? Can't find package name with apt-cache search. Too ambiguous. Need the exact name for it. Anyone helps me? -- Regards, Hermet -- Check out

Re: [E-devel] Simple question about Evas Map object

2013-08-10 Thread Daniel Juyung Seo
As Gustavo Sverzut Barbieri and Carsten Haitzler(raster) mentioned, you can't manipulate edje part(including swallowed object) manually. Like raster suggested, you can create your own smart object for this usage. But if you just want to change the swallowed object's geometry, I hope you could try o

Re: [E-devel] Simple question about Evas Map object

2013-08-10 Thread 이준호
Thank you for your advice !!! On Sat, Aug 10, 2013 at 10:28 PM, Carsten Haitzler wrote: > On Sat, 10 Aug 2013 16:57:30 +0900 이준호 said: > >> Sorry, not IMAGE, but SWALLOW. >> I use SWALLOW part and put Evas object (image widget) >> >> Here are real codes... >> I defined a group, like below. >> >>

Re: [E-devel] Simple question about Evas Map object

2013-08-10 Thread The Rasterman
On Sat, 10 Aug 2013 16:57:30 +0900 이준호 said: > Sorry, not IMAGE, but SWALLOW. > I use SWALLOW part and put Evas object (image widget) > > Here are real codes... > I defined a group, like below. > > group { > name: "group"; > ...(blah)... > part { >

Re: [E-devel] Simple question about Evas Map object

2013-08-10 Thread Gustavo Sverzut Barbieri
You can't set map in a swallowed object. Edje handles map automatically and will reset your values when a recalc is needed (object resized, shown, moved, text set...) It is similar when you set visibility, color or geometry from outside. Edje manages that and resets, conflicting with you. --G

Re: [E-devel] Simple question about Evas Map object

2013-08-10 Thread 이준호
Sorry, not IMAGE, but SWALLOW. I use SWALLOW part and put Evas object (image widget) Here are real codes... I defined a group, like below. group { name: "group"; ...(blah)... part { name: "hbox";

Re: [E-devel] Simple question about Evas Map object

2013-08-10 Thread The Rasterman
On Sat, 10 Aug 2013 16:41:35 +0900 이준호 said: the image object is part of the edje obj? like a part {} ? are you using evas_map apis to move it? you are GETTING the object handle from edje (via part name) and then manipulating it via map in your code? > Sorry, I attached image file, please refer

Re: [E-devel] Simple question about Evas Map object

2013-08-10 Thread 이준호
Sorry, I attached image file, please refer it. On Sat, Aug 10, 2013 at 4:29 PM, Carsten Haitzler wrote: > On Sat, 10 Aug 2013 16:21:06 +0900 이준호 said: > > ummm.. your ascii diagram... doesnt seem to come out well at all. :( > >> Hello Guys, >> Here are some questions about Evas Map object. >> >>

Re: [E-devel] Simple question about Evas Map object

2013-08-10 Thread The Rasterman
On Sat, 10 Aug 2013 16:21:06 +0900 이준호 said: ummm.. your ascii diagram... doesnt seem to come out well at all. :( > Hello Guys, > Here are some questions about Evas Map object. > > When I control geometry values of Evas object using Evas Map to show > transition effect, > after transition has b

[E-devel] Simple question about Evas Map object

2013-08-10 Thread 이준호
Hello Guys, Here are some questions about Evas Map object. When I control geometry values of Evas object using Evas Map to show transition effect, after transition has been done, If I update any object (such as TEXT or SWALLOW part) in same layout tree(?), that geometry values to be reset. For e