Re: [E-devel] [PATCH] Eina logging domains

2009-07-17 Thread Sachiel
On Fri, Jul 17, 2009 at 7:35 PM, Andre Dieb wrote: > I'd also suggest renaming the env var EINA_ERROR_DOMAIN_LEVELS to > EINA_ERROR_LEVELS. It's smaller and more compatible with the global one > (EINA_ERROR_LEVEL). > + // Did not found a slot, realloc 8 more slots. Also works on the first time +

Re: [E-devel] [PATCH] Eina logging domains

2009-07-17 Thread Andre Dieb
I'd also suggest renaming the env var EINA_ERROR_DOMAIN_LEVELS to EINA_ERROR_LEVELS. It's smaller and more compatible with the global one (EINA_ERROR_LEVEL). On Fri, Jul 17, 2009 at 6:55 PM, Andre Dieb wrote: > Hello, > > This patch contains an initial implementation of logging domains for eina

[E-devel] [PATCH] Eina logging domains

2009-07-17 Thread Andre Dieb
Hello, This patch contains an initial implementation of logging domains for eina error module. Please be aware that this a very rough version and there are lots of things that must be improved. The patch is also with lots of fprintf's that I was using for debugging, please ignore them. When we're

Re: [E-devel] E SVN: quaker IN trunk/etk/data/themes: . blingbling

2009-07-17 Thread Massimiliano Calamelli
2009/7/17 Enlightenment SVN : > Log: >  Move Etk default theme to blingbling directory before making b_and_w default. > Author:       quaker > Date:         2009-07-17 06:30:52 -0700 (Fri, 17 Jul 2009) > New Revision: 41390 > > Added: >  trunk/etk/data/themes/blingbling/ > trunk/etk/data/themes/bl

Re: [E-devel] Problem Compiling Evas

2009-07-17 Thread Michael Hughes
Argh! I forgot my attachments. Mike make all-recursive make[1]: Entering directory `/home/mh/Source/ecore-0.9.9.061' Making all in doc make[2]: Entering directory `/home/mh/Source/ecore-0.9.9.061/doc' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/home/mh/Source/ecore-0.9.9

Re: [E-devel] Problem Compiling Evas

2009-07-17 Thread Michael Hughes
Cedric and Luis Thank you for your responses! The compiler output from attempting to build Evas is 175K! I clipped out some indicative sections and attached them. I also found that I cannot build Ecore but that does not produce such massive output so I attached that in its entirety. I was ab

Re: [E-devel] Elementary - Object add/remove

2009-07-17 Thread Gustavo Sverzut Barbieri
On Fri, Jul 17, 2009 at 12:52 PM, Andreas Volz wrote: > Am Fri, 17 Jul 2009 10:38:04 -0300 schrieb Gustavo Sverzut Barbieri: > >> On Fri, Jul 17, 2009 at 6:13 AM, Andreas Volz >> wrote: >> > Hello, >> > >> > while wrapping Elementary to C++ I have this problem: >> > >> > How could I find out in the

Re: [E-devel] Elementary - Object add/remove

2009-07-17 Thread Andreas Volz
Am Fri, 17 Jul 2009 10:38:04 -0300 schrieb Gustavo Sverzut Barbieri: > On Fri, Jul 17, 2009 at 6:13 AM, Andreas Volz > wrote: > > Hello, > > > > while wrapping Elementary to C++ I have this problem: > > > > How could I find out in the parent container widget that a child > > widget has been added

Re: [E-devel] Problem Compiling Evas

2009-07-17 Thread Cedric BAIL
On Fri, Jul 17, 2009 at 3:39 PM, Michael Hughes wrote: > I cannot get the current snapshot of Evas to compile on gcc 4.3.2. > "configure" runs without error but "make" fails with large numbers of > compiler errors.  Does it need an older compiler or is there a secret? I am using version 4.3.3 and

Re: [E-devel] Problem Compiling Evas

2009-07-17 Thread Luis Felipe Strano Moraes
If you could possibly pastebin the output of the compilation somewhere, it would make it alot easier for us to help you out. --lf On Fri, Jul 17, 2009 at 10:39 AM, Michael Hughes wrote: > I cannot get the current snapshot of Evas to compile on gcc 4.3.2. > "configure" runs without error but "mak

[E-devel] Problem Compiling Evas

2009-07-17 Thread Michael Hughes
I cannot get the current snapshot of Evas to compile on gcc 4.3.2. "configure" runs without error but "make" fails with large numbers of compiler errors. Does it need an older compiler or is there a secret? Mike -- Ent

[E-devel] Using Evas Textblock

2009-07-17 Thread Michael Hughes
I wonder if anyone can give me some hints on creating multi-line displays with Evas textblock objects. I can concatenate strings with word wrap using evas_textblock_cursor_text_append() but creating line breaks has so far eluded me. All of the examples I have found are writing single strings

Re: [E-devel] eina API status review

2009-07-17 Thread Gustavo Sverzut Barbieri
On Fri, Jul 17, 2009 at 8:46 AM, Vincent Torri wrote: > > > On Fri, 17 Jul 2009, Cedric BAIL wrote: > >> On Thu, Jul 16, 2009 at 2:09 PM, Cedric BAIL wrote: >>> >>> Thanks for the review ! >>> >>> On Thu, Jul 16, 2009 at 9:05 AM, Vincent Torri >>> wrote:  * eina_accessor : better name for

Re: [E-devel] Elementary - Object add/remove

2009-07-17 Thread Gustavo Sverzut Barbieri
On Fri, Jul 17, 2009 at 6:13 AM, Andreas Volz wrote: > Hello, > > while wrapping Elementary to C++ I have this problem: > > How could I find out in the parent container widget that a child widget > has been added or removed. I tried the "sub-object-add" and > "sub-object-del" callback, but it's not

Re: [E-devel] eina API status review

2009-07-17 Thread Vincent Torri
On Fri, 17 Jul 2009, Cedric BAIL wrote: On Thu, Jul 16, 2009 at 2:09 PM, Cedric BAIL wrote: Thanks for the review ! On Thu, Jul 16, 2009 at 9:05 AM, Vincent Torri wrote:  * eina_accessor : better name for eina_accessor_over() ? (_foreach like                    like eina_iterator ?) Hum,

Re: [E-devel] eina API status review

2009-07-17 Thread Cedric BAIL
On Thu, Jul 16, 2009 at 2:09 PM, Cedric BAIL wrote: > Thanks for the review ! > > On Thu, Jul 16, 2009 at 9:05 AM, Vincent Torri wrote: >>  * eina_accessor : better name for eina_accessor_over() ? (_foreach like >>                    like eina_iterator ?) > > Hum, we already have a EINA_ACCESSOR_FO

[E-devel] Elementary - Object add/remove

2009-07-17 Thread Andreas Volz
Hello, while wrapping Elementary to C++ I have this problem: How could I find out in the parent container widget that a child widget has been added or removed. I tried the "sub-object-add" and "sub-object-del" callback, but it's not what I want as it calls this signal more often than when I add/d