Re: [E-devel] E SVN: devilhorns trunk/evas/src/lib/canvas

2009-08-09 Thread Vincent Torri
On Sun, 9 Aug 2009, Enlightenment SVN wrote: > Log: > Formatting > > Author: devilhorns > Date: 2009-08-09 09:41:51 -0700 (Sun, 09 Aug 2009) > New Revision: 41648 > > Modified: > trunk/evas/src/lib/canvas/evas_render.c > > Modified: trunk/evas/src/lib/canvas/evas_render.c > =

Re: [E-devel] E SVN: devilhorns trunk/evas/src/lib/canvas

2009-08-09 Thread Christopher Michael
Vincent, Not entirely sure what you are saying here. All I did was fix the formatting. dh Vincent Torri wrote: > > On Sun, 9 Aug 2009, Enlightenment SVN wrote: > >> Log: >> Formatting >> >> Author: devilhorns >> Date: 2009-08-09 09:41:51 -0700 (Sun, 09 Aug 2009) >> New Revision

Re: [E-devel] E SVN: devilhorns trunk/evas/src/lib/canvas

2009-08-09 Thread Vincent Torri
> Not entirely sure what you are saying here. All I did was fix the formatting. >>> -pending_change(void *data, __UNUSED__ void *gdata) >>> +pending_change(void *data, void *gdata __UNUSED__) Vincent -- Let Crystal Rep

Re: [E-devel] E SVN: devilhorns trunk/evas/src/lib/canvas

2009-08-09 Thread Christopher Michael
Thought that's what you meant...just wanted to be sure. Thanks :) dh Vincent Torri wrote: > >> Not entirely sure what you are saying here. All I did was fix the >> formatting. > -pending_change(void *data, __UNUSED__ void *gdata) > +pending_change(void *data, void *gdata __UNUSED__)

Re: [E-devel] Sugested patch for Elementary

2009-08-09 Thread Gustavo Sverzut Barbieri
in svn. On Sat, Aug 8, 2009 at 5:44 AM, Thiago Borges Abdnur wrote: > On Thu, Jul 30, 2009 at 10:28 PM, Carsten Haitzler > wrote: > >> On Thu, 30 Jul 2009 22:24:14 -0300 Thiago said: >> >> > On Thu, Jul 30, 2009 at 12:37 PM, Carsten Haitzler >> > wrote: >> > >> > > On Sat, 11 Jul 2009 15:35:56 -

Re: [E-devel] edje TEXTBLOCK style question

2009-08-09 Thread Gustavo Sverzut Barbieri
On Sat, Aug 8, 2009 at 11:24 AM, Thiago Borges Abdnur wrote: > Hi guys! > > I'm trying to make a textblock wrap the text with wrap=word in style. It's > working, but when long words are set, it doesn't break them. Isn't there a > style option that tries to break the words and then, if there are wor

Re: [E-devel] Resizing Edje object with application

2009-08-09 Thread Gustavo Sverzut Barbieri
On Sat, Aug 8, 2009 at 3:59 PM, Christopher Michael wrote: > Seems like you need to use ecore_evas_callback_resize_set. EG: > >  >    ee = ecore_evas_software_x11_new(NULL, 0,  0, 0, WIDTH, HEIGHT); >  >         ecore_evas_title_set(ee, "EDJE example"); >  >         ecore_evas_borderless_set(ee, 0)

Re: [E-devel] Resizing Edje object with application

2009-08-09 Thread Diego Jacobi
Thanks both. I can now resize. Wasnt so hard, so sry for the noob question. I tryed now the "modern" way, and i noted something: The next code, doesnt finish the application if i close it. The windows disappears but the process still alive. edje = edje_object_add(evas); ecore_evas

Re: [E-devel] Resizing Edje object with application

2009-08-09 Thread Christopher Michael
Gustavo Sverzut Barbieri wrote: > On Sat, Aug 8, 2009 at 3:59 PM, Christopher > Michael wrote: >> Seems like you need to use ecore_evas_callback_resize_set. EG: >> >> >ee = ecore_evas_software_x11_new(NULL, 0, 0, 0, WIDTH, HEIGHT); >> > ecore_evas_title_set(ee, "EDJE example"); >> >

Re: [E-devel] Resizing Edje object with application

2009-08-09 Thread Gustavo Sverzut Barbieri
On Sun, Aug 9, 2009 at 7:52 PM, Diego Jacobi wrote: > Thanks both. > > I can now resize. > Wasnt so hard, so sry for the noob question. > > I tryed now the "modern" way, and i noted something: > > The next code, doesnt finish the application if i close it. The > windows disappears but the process s

[E-devel] e.org tracker home page

2009-08-09 Thread P Purkayastha
Just an FYI. The tracker homepage on enlightenment.org doesn't look right, compared to the Home page on enlightenment.org. The fonts are too big and it doesn't fit the visible portion of the browser (~964px horizontal). -

[E-devel] weird test case with edje

2009-08-09 Thread Diego Jacobi
Hello. As i have stated before, i am just beginning with efl. I have started a test application. The goal is to make a fully themeable startmenu, so the user can completelly change the menu style by changing the .edj file. I started by making a menu with 3 columns, 2 of them (left and right) are

[E-devel] edje_init() never fails

2009-08-09 Thread Vincent Torri
Hey, edje_init() calls some efl init functions and does not check if they fail or not. Hence, edje_init() never fails. I think that we should review all the _init() and _shutdown() functions of the efl and fix them if they don't return the correct value. Vincent -