[E-devel] using elementary toolkit without bg or with transparent bg image leads some noise

2010-08-30 Thread whtuhtc tu
Hi all, It seems that use elementary without bg or with transparent bg image would cause some noise when redraw. For example, I have a elm_button within elm_win without elm_bg. It seems there are some noise when I click the button? Is there any way to prevent from this. Thanks in advance whtuht

Re: [E-devel] using elementary toolkit without bg or with transparent bg image leads some noise

2010-08-30 Thread Bruno Dilly
On Mon, Aug 30, 2010 at 9:48 AM, whtuhtc tu wrote: > Hi all, > > It seems that use elementary without bg or with transparent bg image would > cause some noise when redraw. > For example, I have a elm_button within elm_win without elm_bg. It seems > there are some noise when I click the button? > I

Re: [E-devel] using elementary toolkit without bg or with transparent bg image leads some noise

2010-08-30 Thread Sachiel
On Mon, Aug 30, 2010 at 10:08 AM, Bruno Dilly wrote: > On Mon, Aug 30, 2010 at 9:48 AM, whtuhtc tu wrote: >> Hi all, >> >> It seems that use elementary without bg or with transparent bg image would >> cause some noise when redraw. >> For example, I have a elm_button within elm_win without elm_bg.

[E-devel] Evas build fails with --disable-pthread and --enable-async-render

2010-08-30 Thread Eduardo Lima (Etrunko)
Hey there, I was following the advice that --enable-pthread only makes sense for multicore systems and since I am building for embedded, I thought it was a good idea to disable it. But I didn't know that asynchronous render had something to do with threads, so I let it there. What happens is that

Re: [E-devel] Evas build fails with --disable-pthread and --enable-async-render

2010-08-30 Thread Vincent Torri
On Mon, 30 Aug 2010, Eduardo Lima (Etrunko) wrote: > Hey there, > > I was following the advice that --enable-pthread only makes sense for > multicore systems and since I am building for embedded, I thought it > was a good idea to disable it. But I didn't know that asynchronous > render had somet

Re: [E-devel] Evas build fails with --disable-pthread and --enable-async-render

2010-08-30 Thread Cedric BAIL
On Mon, Aug 30, 2010 at 5:28 PM, Eduardo Lima (Etrunko) wrote: > Hey there, > > I was following the advice that --enable-pthread only makes sense for > multicore systems and since I am building for embedded, I thought it > was a good idea to disable it. But I didn't know that asynchronous > render

Re: [E-devel] E SVN: tiago IN trunk/THEMES: . efenniht efenniht/images

2010-08-30 Thread manio
On 07/15/2010 02:33 AM, Gustavo Sverzut Barbieri wrote: > BTW, people that are using it, please raise your hand... and give some > feedback. I tryed it yesterday and i'm impressed! I really like it. It's awesome!! :) ps. lack of menu icons is not a problem for me - IMHO it looks much better in t

Re: [E-devel] E SVN: tiago IN trunk/THEMES: . efenniht efenniht/images

2010-08-30 Thread P Purkayastha
On 08/30/2010 11:49 PM, manio wrote: > On 07/15/2010 02:33 AM, Gustavo Sverzut Barbieri wrote: >> BTW, people that are using it, please raise your hand... and give some >> feedback. > > I tryed it yesterday and i'm impressed! > I really like it. It's awesome!! :) > > ps. lack of menu icons is not

Re: [E-devel] E SVN: tiago IN trunk/THEMES: . efenniht efenniht/images

2010-08-30 Thread P Purkayastha
On 08/31/2010 12:19 AM, P Purkayastha wrote: > On 08/30/2010 11:49 PM, manio wrote: >> On 07/15/2010 02:33 AM, Gustavo Sverzut Barbieri wrote: >>> BTW, people that are using it, please raise your hand... and give >>> some feedback. >> >> I tryed it yesterday and i'm impressed! >> I really like it.

[E-devel] ecore_file_mod_time return type

2010-08-30 Thread Chidambar 'ilLogict' Zinnoury
Hello. Why does ecore_file_mod_time return a long long instead of a time_t? So that we don't need to include time.h? Thank you in advance. Cheers! Chidambar -- A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q:

[E-devel] backtrace of a segfault while using file manager

2010-08-30 Thread Amitav Mohanty
Hello I was browsing my home directory when I found this segfault. Interestingly, it is reproducible. So, I know exactly how it occurs. I opened my home directory from the icon on my desktop. Then I opened Downloads folder which opened in another window. Then I located the file "USER TABLE (AD

[E-devel] closing EFL tickets

2010-08-30 Thread Vincent Torri
Hey, it seems that beta release will come soon. Maybe it would be time to close all the tickets related to the core EFL before. http://trac.enlightenment.org/e/report/20 or http://trac.enlightenment.org/e/report/1?asc=1&sort=component and look at the EFL components Vincent

Re: [E-devel] backtrace of a segfault while using file manager

2010-08-30 Thread Massimiliano
Try to disable EFM pathbar and retry, the problem could be here. Massimiliano 2010/8/30 Amitav Mohanty : > Hello > > I was browsing my home directory when I found this segfault. Interestingly, > it is reproducible. So, I know exactly how it occurs. I opened my home > directory from the icon on my

Re: [E-devel] Evas build fails with --disable-pthread and --enable-async-render

2010-08-30 Thread The Rasterman
On Mon, 30 Aug 2010 12:28:04 -0300 "Eduardo Lima (Etrunko)" said: > Hey there, > > I was following the advice that --enable-pthread only makes sense for what advice that says that? none in evas that's for sure. > multicore systems and since I am building for embedded, I thought it > was a good

[E-devel] elsa patch

2010-08-30 Thread Christopher Michael
Attached a patch for elsa. Adds missing return values in functions not returning void. Adds missing header to src/bin/elsa.c for XOpenDisplay function. Cheers, dh Index: src/bin/elsa_test.c === --- src/bin/elsa_test.c (revision 51

[E-devel] get raw data of the image after output drawing

2010-08-30 Thread whtuhtc tu
Hi, I want to get the raw data of the image after output drawing. For example, if I load a 640x640 image (ex evas_object_image_filled_add() ) and down scale to 64x64, how do I get the raw data of the 64x64 image? Thanks a advance. whtuhtc ---