Re: [E-devel] [Patch] small patch for genlist parameter verification routine.

2010-11-02 Thread Mike McCormack
btw. A nit of mine which I've mentioned before... Since you're going to check and "fail" it would be nice to return an indication. That's a bit hard to do if everything returns void... any plans to fix that? That deosn't mean everything has to check for failure/non-failure, but it at least shou

Re: [E-devel] [Patch] small patch for genlist parameter verification routine.

2010-11-02 Thread The Rasterman
On Tue, 02 Nov 2010 16:23:32 +0900 Mike McCormack said: > > btw. A nit of mine which I've mentioned before... > > Since you're going to check and "fail" it would be nice to return an > indication. That's a bit hard to do if everything returns void... any plans > to fix that? no. as that'd bre

[E-devel] [elm_map] google map provider

2010-11-02 Thread [박상호]
hi, I found google map repository on maemo talk. http://talk.maemo.org/showthread.php?t=5209 so I've tested google map using elm_map like below. it works fine. very good performance... > static char * > _google_street_url_cb(void *data, int x, int y, int zoom) > { >char buf[PATH_MAX]; >sn

Re: [E-devel] [elm_map] google map provider

2010-11-02 Thread Atton Jonathan
I can't test right now but : - Have you tested with zoom in - zoom out ? - Have you tested the boundaries of the map ? Sse : You embed a Static Maps API image within a webpage inside an tag's srcattribute. When the webpage is displayed, the browser requests the image from the the Static Maps AP

[E-devel] Another beta

2010-11-02 Thread Cedric BAIL
Hi everyone, I would like to do another beta during next week. As raster as a lot of work and will not have the time required to do it, I would like that this one put less burden on him. So I will try to do the tarball and will request help from people to test them before putting them online. I wo

Re: [E-devel] Another beta

2010-11-02 Thread Mike Blumenkrantz
On Tue, 2 Nov 2010 19:06:44 +0100 Cedric BAIL wrote: > Hi everyone, > > I would like to do another beta during next week. As raster as a lot > of work and will not have the time required to do it, I would like > that this one put less burden on him. So I will try to do the tarball > and will req

[E-devel] [Elementary] Elm Map API changes

2010-11-02 Thread Nicolas Aguirre
Hi, I would like to change the API of elm_map a bit, but as I wouldn't been tratorised by Profusion guys, I ask here before ;-) Elm_Marker_Class is not in the same style than Elm_Genlist. IMO there is some getter/setter that should get out. What I propose is remove : elm_map_marker_class_new elm

Re: [E-devel] [elm_map] google map provider

2010-11-02 Thread Atton Jonathan
If I m remember correctly when I have tested Google I have used a different API, maybe your API is working. if it is working we need to know the list of map sources : - we can use freely and add them in the library elementary. - which requires a license and maybe we can add them in elementary_te

Re: [E-devel] [Patch] small patch for genlist parameter verification routine.

2010-11-02 Thread Mike McCormack
On 11/02/2010 06:05 PM, Carsten Haitzler (The Rasterman) wrote: > On Tue, 02 Nov 2010 16:23:32 +0900 Mike McCormack > said: > >> >> btw. A nit of mine which I've mentioned before... >> >> Since you're going to check and "fail" it would be nice to return an >> indication. That's a bit hard to do if

[E-devel] elm_toolbar api and icons

2010-11-02 Thread Rui Miguel Silva Seabra
Hi, So I've been a bit surprised by the change of "icons" in elm_toolbar from an Evas_Object * into a const char *. How do I use an icon not predicted by elementary now? Rui -- Achieve Improved Network Security with IP

Re: [E-devel] [elm_map] google map provider

2010-11-02 Thread [박상호]
I already tested zoom, boundary, pan, etc. everything is okay, but I didn't know there is license issue. so I have some questions about your comments. 1. is it same with static maps api? "http://mt1.google.com/vt/hl=en&x=%d&y=%d&z=%d"; is different url with " http://maps.google.com/maps/api/sta

Re: [E-devel] elm_toolbar api and icons

2010-11-02 Thread Brian Wang
On Wed, Nov 3, 2010 at 8:11 AM, Rui Miguel Silva Seabra wrote: > Hi, > > So I've been a bit surprised by the change of "icons" in elm_toolbar > from an Evas_Object * into a const char *. > > How do I use an icon not predicted by elementary now? elm_theme_overlay_add() your theme file, which conta

Re: [E-devel] Another beta

2010-11-02 Thread P Purkayastha
On 11/03/2010 02:06 AM, Cedric BAIL wrote: > Hi everyone, > > I would like to do another beta during next week. As raster as a lot > of work and will not have the time required to do it, I would like > that this one put less burden on him. So I will try to do the tarball > and will request help fro

Re: [E-devel] [elm_map] google map provider

2010-11-02 Thread [박상호]
yes, we have to check google license. I think .. plug-in architecture is better than elm_map_source_custom_*. because if you use custom api, you should modify elm_map.c directly and compile again. I don't want to compile elm_map for making map app. 2010/11/3 Atton Jonathan > If I m remember cor

Re: [E-devel] [Patch] small patch for genlist parameter verification routine.

2010-11-02 Thread The Rasterman
On Wed, 03 Nov 2010 09:08:19 +0900 Mike McCormack said: > On 11/02/2010 06:05 PM, Carsten Haitzler (The Rasterman) wrote: > > On Tue, 02 Nov 2010 16:23:32 +0900 Mike McCormack > > said: > > > >> > >> btw. A nit of mine which I've mentioned before... > >> > >> Since you're going to check and "fail

Re: [E-devel] [Patch] small patch for genlist parameter verification routine.

2010-11-02 Thread Mike McCormack
On 11/03/2010 11:09 AM, Carsten Haitzler (The Rasterman) wrote: >> The advantage of adding a zero return code now would be that you can extend >> APIs that return error codes more easily. e.g. the case in evas where you >> currently only support a rectangular region but may support non-rectangular

Re: [E-devel] [elm_map] google map provider

2010-11-02 Thread The Rasterman
On Wed, 3 Nov 2010 10:02:51 +0900 [박상호] said: i think the licensing of the map data is the real issue here. elm_map uses OSM maps because these have no license issues. at least it works as a good demo to show that all the mapping stuff works. if someone wants to use more "restricted" data source

Re: [E-devel] [elm_map] google map provider

2010-11-02 Thread The Rasterman
On Wed, 3 Nov 2010 10:12:24 +0900 [박상호] said: i agree - a plugin arch is a bit better - elm has modules already (its demo one is for entry popup menu - we can move osm map data fetching to a module and then make a google map data one as well and then runtime (and compile-time) this can be configu

Re: [E-devel] [elm_map] google map provider

2010-11-02 Thread David Seikel
On Wed, 3 Nov 2010 11:47:19 +0900 Carsten Haitzler (The Rasterman) wrote: > this can be configured). i actually think there is room for 3 modules. > > 1. OSM > 2. google maps > 3. "local files" (basically pre-define a directory/file hierarchy and > file naming scheme for storing map tiles and ju

Re: [E-devel] [Elementary] Elm Map API changes

2010-11-02 Thread The Rasterman
On Tue, 2 Nov 2010 19:32:11 +0100 Nicolas Aguirre said: i like the idea. :) > Hi, > I would like to change the API of elm_map a bit, but as I wouldn't > been tratorised by Profusion guys, I ask here before ;-) > > Elm_Marker_Class is not in the same style than Elm_Genlist. IMO there > is some g

Re: [E-devel] [Elementary] Elm Map API changes

2010-11-02 Thread David Seikel
On Tue, 2 Nov 2010 19:32:11 +0100 Nicolas Aguirre wrote: > I would like to change the API of elm_map a bit, but as I wouldn't > been tratorised by Profusion guys, I ask here before ;-) I'm still scratching me head about the word "trator", the definition seems to be - "someone who lives in boston

[E-devel] an opportunity for... well... consultingy people

2010-11-02 Thread The Rasterman
just fyi (while i remember): http://www.enlightenment.org/p.php?p=support&l=en see down the bottom-left there? professional support? if you are someone (company or individual) providing professional level e/efl etc. support - please ping this list and let us know so you can be listed. :) free adv