Re: [E-devel] about the "debug" stuff in ecore and ecore-evas

2011-08-09 Thread The Rasterman
On Tue, 9 Aug 2011 08:24:34 +0200 (CEST) Vincent Torri said: > > > On Tue, 9 Aug 2011, Carsten Haitzler (The Rasterman) wrote: > > > On Tue, 9 Aug 2011 07:46:42 +0200 (CEST) Vincent Torri > > said: > > > >> > >> > >> On Tue, 9 Aug 2011, Carsten Haitzler (The Rasterman) wrote: > >> > >>> On Mo

[E-devel] inconsistency with elm wiki and doc

2011-08-09 Thread Vincent Torri
hey in http://trac.enlightenment.org/e/wiki/Elementary, we always define elm_main(), and in the elm_main.c doc, we define elm_main only if ELM_LIB_QUICKLAUNCH is not defined Vincent -- uberSVN's rich system and user a

Re: [E-devel] inconsistency with elm wiki and doc

2011-08-09 Thread The Rasterman
On Tue, 9 Aug 2011 09:32:36 +0200 (CEST) Vincent Torri said: > > hey > > in http://trac.enlightenment.org/e/wiki/Elementary, we always define > elm_main(), and in the elm_main.c doc, we define elm_main only if > ELM_LIB_QUICKLAUNCH is not defined i know. wiki is old. also the docs are being

[E-devel] elm on Windows and elm_main

2011-08-09 Thread Vincent Torri
Hey on unix, it seems that EAPI is needed before elm_main (to export that symbol). But on Windows, having EAPI means that elm_main() must be in a dll that is loaded at runtime, which is not the case. I don't know what is the best way to fix that, maybe defining an EAPI_MAIN that is EAPI on un

[E-devel] Changing rel1.offset of an image on a mouse click?

2011-08-09 Thread Drucker, Benjamin T
I am attempting to learn edje edc by find example programs and fiddling with them. Right now I am trying to determine where a mouse click is in a RECT and place an image there. I don't NEED to do it all in edje edc, but I wanted to see if it's possible. I started with a program by Jonathan At

Re: [E-devel] E SVN: cedric trunk/eina/src/lib

2011-08-09 Thread Vincent Torri
use a DWORD, not a HANDLE Vincent On Tue, 9 Aug 2011, Enlightenment SVN wrote: > Log: > eina: detect main loop for windows to. > > > Author: cedric > Date: 2011-08-09 01:47:57 -0700 (Tue, 09 Aug 2011) > New Revision: 62239 > Trac: http://trac.enlightenment.org/e/changeset/

Re: [E-devel] E SVN: cedric trunk/ecore/src/lib/ecore

2011-08-09 Thread Gustavo Sverzut Barbieri
On Tue, Aug 9, 2011 at 5:50 AM, Enlightenment SVN wrote: >  EAPI void >  ecore_app_args_get(int *argc, char ***argv) >  { > -   ECORE_MAIN_LOOP_ASSERT(); > +   EINA_MAIN_LOOP_CHECK_RETURN; > >    if (argc) *argc = app_argc; >    if (argv) *argv = app_argv; there is no way to know if it failed or

Re: [E-devel] [Patch] new APIs about page

2011-08-09 Thread Gustavo Sverzut Barbieri
On Mon, Aug 8, 2011 at 4:19 AM, Carsten Haitzler wrote: > On Wed, 03 Aug 2011 06:15:13 + (GMT) 김재환 said: > > your patch seems good except documentation. docs are too short. you dont > even say @see another func (eg elm_scroller_current_page_get() should see > elm_scroller_last_page_get() and

[E-devel] Ethumb "exists" problems

2011-08-09 Thread Gustavo Sverzut Barbieri
Hi all, particularly cedric. I was to do the bindings for the new ethumb_client_exists() API and got impressed by the number of problems. - inconsistent api: void* is the first callback parameter, see all EFL - inconsistent api: missing ethumb_CLIENT prefix, like Ethumb_Exists should be E

Re: [E-devel] E SVN: raster trunk/eet/src/lib

2011-08-09 Thread Vincent Torri
On Tue, 9 Aug 2011, Enlightenment SVN wrote: > Log: > here's an awesome idea... let's not break the build shall we? lets > actually test something .. like compile it before we commit eh? it compiled on windows... I asked to check on linux before committing... Vincent > > > > Author: ra

Re: [E-devel] E SVN: raster trunk/eet/src/lib

2011-08-09 Thread The Rasterman
On Tue, 9 Aug 2011 15:27:25 +0200 (CEST) Vincent Torri said: > > > On Tue, 9 Aug 2011, Enlightenment SVN wrote: > > > Log: > > here's an awesome idea... let's not break the build shall we? lets > > actually test something .. like compile it before we commit eh? > > it compiled on windows...

Re: [E-devel] E SVN: cedric trunk/ecore/src/lib/ecore

2011-08-09 Thread Cedric BAIL
On Tue, Aug 9, 2011 at 11:48 AM, Gustavo Sverzut Barbieri wrote: > On Tue, Aug 9, 2011 at 5:50 AM, Enlightenment SVN > wrote: >>  EAPI void >>  ecore_app_args_get(int *argc, char ***argv) >>  { >> -   ECORE_MAIN_LOOP_ASSERT(); >> +   EINA_MAIN_LOOP_CHECK_RETURN; >> >>    if (argc) *argc = app_arg

Re: [E-devel] E SVN: raster trunk/eet/src/lib

2011-08-09 Thread Cedric BAIL
On Tue, Aug 9, 2011 at 4:38 PM, Carsten Haitzler wrote: > On Tue, 9 Aug 2011 15:27:25 +0200 (CEST) Vincent Torri > said: >> On Tue, 9 Aug 2011, Enlightenment SVN wrote: >> >> > Log: >> > here's an awesome idea... let's not break the build shall we? lets >> >  actually test something .. like compi

Re: [E-devel] Ethumb "exists" problems

2011-08-09 Thread Cedric BAIL
On Tue, Aug 9, 2011 at 2:22 PM, Gustavo Sverzut Barbieri wrote: > Hi all, particularly cedric. I was to do the bindings for the new > ethumb_client_exists() API and got impressed by the number of > problems. > >  - inconsistent api: void* is the first callback parameter, see >   all EFL Agreed, b

Re: [E-devel] E SVN: raster trunk/eet/src/lib

2011-08-09 Thread Mike Blumenkrantz
On Tue, 9 Aug 2011 21:54:52 +0200 Cedric BAIL wrote: > On Tue, Aug 9, 2011 at 4:38 PM, Carsten Haitzler wrote: > > On Tue, 9 Aug 2011 15:27:25 +0200 (CEST) Vincent Torri > > said: > >> On Tue, 9 Aug 2011, Enlightenment SVN wrote: > >> > >> > Log: > >> > here's an awesome idea... let's not break

[E-devel] State of WebKit-EFL

2011-08-09 Thread Leandro Pereira
Folks, Just a quick update on WebKit EFL. We've been working to implement the infrastructure to run the tests provided with WebKit. There are more than 2 tests, and last week we were able to get 95% of them running correctly. To achieve this score, we had to make some fixes here and there. Som

[E-devel] where is entrance package

2011-08-09 Thread المسالم المسالمة
hello developers where can i find entrance package i tried to find it at enlightenment site but i didnt find it there i have this version 0.16.999.57316 so is there any package for it or not -- uberSVN's rich system and

Re: [E-devel] where is entrance package

2011-08-09 Thread Alex-P. Natsios
no official package of it exists afaik. and i would not advice you to search any further seeing as its actually deprecated now. there is Elsa though which is supposed to be entrance's replacement. look at: /PROTO/elsa/ -- Regards, Alex-P. Natsios (a.k.a Drakevr) --

Re: [E-devel] State of WebKit-EFL

2011-08-09 Thread Jeff Hoogland
Awesome! Any ETA on when the rest of those fixes will make it upstream? Hoping these will make Eve webrowser a bit more useful than it is in it's current state. -- ~Jeff Hoogland http://JeffHoogland.com On Tue Aug  9 2011 03:45:56 PM CDT, Leandro Pereira wrote: > Folks, > > Just a quick up

Re: [E-devel] where is entrance package

2011-08-09 Thread Jeff Hoogland
Check the old section of the E SVN. Pretty sure that package is no loner maintained. -- ~Jeff Hoogland http://JeffHoogland.com On Tue Aug  9 2011 03:52:46 PM CDT, المسالم المسالمة wrote: > hello developers > > where can i find entrance package i tried to find it at enlightenment > site but

Re: [E-devel] State of WebKit-EFL

2011-08-09 Thread Leandro Pereira
Jeff, On Tue, Aug 9, 2011 at 6:04 PM, Jeff Hoogland wrote: > Awesome! Any ETA on when the rest of those fixes will make it upstream? > Hoping these will make Eve > webrowser a bit more useful than it is in it's current state. I'm hoping to have these upstreamed by mid-September. Patches to WebK

Re: [E-devel] State of WebKit-EFL

2011-08-09 Thread Nicolas Aguirre
2011/8/9 Leandro Pereira : > Jeff, > > On Tue, Aug 9, 2011 at 6:04 PM, Jeff Hoogland wrote: >> Awesome! Any ETA on when the rest of those fixes will make it upstream? >> Hoping these will make Eve >> webrowser a bit more useful than it is in it's current state. > > I'm hoping to have these upstre

Re: [E-devel] State of WebKit-EFL

2011-08-09 Thread Mike Blumenkrantz
On Tue, 9 Aug 2011 23:23:04 +0200 Nicolas Aguirre wrote: > 2011/8/9 Leandro Pereira : > > Jeff, > > > > On Tue, Aug 9, 2011 at 6:04 PM, Jeff Hoogland > > wrote: > >> Awesome! Any ETA on when the rest of those fixes will make it upstream? > >> Hoping these will make Eve webrowser a bit more usefu

Re: [E-devel] State of WebKit-EFL

2011-08-09 Thread Leandro Pereira
Nicolas, On Tue, Aug 9, 2011 at 6:23 PM, Nicolas Aguirre wrote: > What about the scrolling problem of pages in eve ? > It's eve related or it's fixed with the patch you are talking about ? I haven't seen scrolling bugs since a while ago; I believe it fixed itself. Gotta love self-healing code.

Re: [E-devel] State of WebKit-EFL

2011-08-09 Thread Nicolas Aguirre
2011/8/9 Leandro Pereira : > Nicolas, > > On Tue, Aug 9, 2011 at 6:23 PM, Nicolas Aguirre > wrote: >> What about the scrolling problem of pages in eve ? >> It's eve related or it's fixed with the patch you are talking about ? > > I haven't seen scrolling bugs since a while ago; I believe it fixed

Re: [E-devel] elm on Windows and elm_main

2011-08-09 Thread Vincent Torri
On Tue, 9 Aug 2011, Vincent Torri wrote: > > Hey > > on unix, it seems that EAPI is needed before elm_main (to export that > symbol). But on Windows, having EAPI means that elm_main() must be in a dll > that is loaded at runtime, which is not the case. > > I don't know what is the best way to

Re: [E-devel] State of WebKit-EFL

2011-08-09 Thread The Rasterman
On Tue, 9 Aug 2011 18:31:12 -0300 Leandro Pereira said: > Nicolas, > > On Tue, Aug 9, 2011 at 6:23 PM, Nicolas Aguirre > wrote: > > What about the scrolling problem of pages in eve ? > > It's eve related or it's fixed with the patch you are talking about ? > > I haven't seen scrolling bugs sin

Re: [E-devel] E SVN: raster trunk/eet/src/lib

2011-08-09 Thread The Rasterman
On Tue, 9 Aug 2011 21:54:52 +0200 Cedric BAIL said: > On Tue, Aug 9, 2011 at 4:38 PM, Carsten Haitzler wrote: > > On Tue, 9 Aug 2011 15:27:25 +0200 (CEST) Vincent Torri > > said: > >> On Tue, 9 Aug 2011, Enlightenment SVN wrote: > >> > >> > Log: > >> > here's an awesome idea... let's not break

Re: [E-devel] E SVN: mike_m trunk/eina/src/lib

2011-08-09 Thread Mike Blumenkrantz
On Tue, 9 Aug 2011 16:48:47 -0700 "Enlightenment SVN" wrote: > Log: > eina: Use %d to get build time > > eina_hamster_count() was returning -1 on my machine (Ubuntu 11.04/AMD64), > causing make check to fail. > > eina_test_main.c:51:F:Main:eina_hamster:0: Failure 'eina_hamster_count(

Re: [E-devel] elm and function typedefs

2011-08-09 Thread Daniel Juyung Seo
Done in genlist/gengrid. http://trac.enlightenment.org/e/changeset/62272 Thanks. Daniel Juyung Seo (SeoZ) On Fri, Jul 22, 2011 at 8:17 PM, Daniel Juyung Seo wrote: > +1 > > The first one is trivial. > The second one needs more attention because this will break many applications. > > But I fully

Re: [E-devel] E SVN: jeffdameth IN trunk/E-MODULES-EXTRA/everything-shotgun: . images src

2011-08-09 Thread Mike Blumenkrantz
On Tue, 9 Aug 2011 18:05:22 -0700 "Enlightenment SVN" wrote: > Log: > e-modules/evry-shotgun: add default contact icon and filter contacts > > > Author: jeffdameth > Date: 2011-08-09 18:05:22 -0700 (Tue, 09 Aug 2011) > New Revision: 62271 > Trac: http://trac.enlightenme

[E-devel] Big improvements on OSX

2011-08-09 Thread Dave Ray
I noticed some big improvements on OSX, compared to 2 weeks ago, which was the last time I downloaded from SVN. The OSX crash-on-startup bug seems to be gone. I don't know why. There are still some display problems during the first e17 launch after startup, but no segv crashes. I can fix the

Re: [E-devel] elm on Windows and elm_main

2011-08-09 Thread The Rasterman
On Tue, 9 Aug 2011 10:17:09 +0200 (CEST) Vincent Torri said: hmm welll the EAPI was there so *IF* u build the app AS a .so (.dll) then elementary quicklaunch can run it faster (skipping several link and setup steps that are pre-done). thats why its EAPI. but if u build an executable on linux the

Re: [E-devel] elm on Windows and elm_main

2011-08-09 Thread Vincent Torri
On Wed, 10 Aug 2011, Carsten Haitzler (The Rasterman) wrote: > On Tue, 9 Aug 2011 10:17:09 +0200 (CEST) Vincent Torri > said: > > hmm welll the EAPI was there so *IF* u build the app AS a .so (.dll) then > elementary quicklaunch can run it faster (skipping several link and setup > steps > that

Re: [E-devel] elm on Windows and elm_main

2011-08-09 Thread The Rasterman
On Wed, 10 Aug 2011 08:00:21 +0200 (CEST) Vincent Torri said: > > > On Wed, 10 Aug 2011, Carsten Haitzler (The Rasterman) wrote: > > > On Tue, 9 Aug 2011 10:17:09 +0200 (CEST) Vincent Torri > > said: > > > > hmm welll the EAPI was there so *IF* u build the app AS a .so (.dll) then > > element

Re: [E-devel] elm on Windows and elm_main

2011-08-09 Thread Vincent Torri
On Wed, 10 Aug 2011, Carsten Haitzler (The Rasterman) wrote: > On Wed, 10 Aug 2011 08:00:21 +0200 (CEST) Vincent Torri > said: > >> >> >> On Wed, 10 Aug 2011, Carsten Haitzler (The Rasterman) wrote: >> >>> On Tue, 9 Aug 2011 10:17:09 +0200 (CEST) Vincent Torri >>> said: >>> >>> hmm welll the E