Re: [E-devel] little white rectangle

2011-04-12 Thread Dave Ray
On Apr 11, 2011, at 11:42 PM, Sebastian Dransfeld wrote: > On 04/12/2011 07:47 AM, Dave Ray wrote: >> >> On Apr 11, 2011, at 10:07 PM, Sebastian Dransfeld wrote: >>> On 04/12/2011 06:15 AM, Dave Ray wrote: On Apr 11, 2011, at 7:30 PM, Sebastian Dransfeld wrote: > On 04/12/2011 04:27 AM, D

Re: [E-devel] [Patch] elm_colorselector : mouse_down (on buttons) is canceled when mouse_move.

2011-04-12 Thread The Rasterman
On Mon, 11 Apr 2011 15:32:41 +0900 WooHyun Jung said: you know.. you should just look at the ON_HOLD flag and/or the ON_HOLD event callback rather than re-implement the "check if distance moved more than X" that scroller already does (then sets hold flag - hold flag == cancel what u were going to

[E-devel] [Patch] Evas font-engine: Added support for runtime-italic/bold.

2011-04-12 Thread Myoungwoon Roy Kim
Dear All, This is Myoungwoon Roy Kim. This patch is for supporting the runtime-font effects(Italic, Bold) via software rendering(freetype2). The current evas font-engine had just processed font glyph via Bytecode. It means that evas font-engine just used only metrics values of font file without c

Re: [E-devel] Organised settings panel

2011-04-12 Thread The Rasterman
On Mon, 11 Apr 2011 18:07:59 +0200 Brian 'morlenxus' Miculcy said: too many words. just should be "General" and "Icons" you're right. it's in Files already. no need for EFM though. the dialog ITSELF should have a title "Files - Icons" as it has no parent, but the conf panel entry should have a sh

Re: [E-devel] Organised settings panel

2011-04-12 Thread The Rasterman
On Mon, 11 Apr 2011 10:55:51 -0500 Jeff Hoogland said: > Speaking of settings configuration - think we can get a short description > just like (launcher) and (taskbar) added after ibox and ibar? I know many > users find these confusing and I even still mix them up myself on occasion. i think tha

Re: [E-devel] Proposal to strip "-0"(negative zero) from indicator in Elementary Slider widget

2011-04-12 Thread The Rasterman
On Mon, 11 Apr 2011 14:44:46 +0300 Tom Hacohen said: actually if i think this is the case i think it is.. the slider is set for "min value -10, max value 10" ie slider goes FROM a negative val to a positive one. but when its AROUND 0 .. it has -0 and 0. which is actually a normal libc/printf thin

Re: [E-devel] Proposal to strip "-0"(negative zero) from indicator in Elementary Slider widget

2011-04-12 Thread The Rasterman
On Mon, 11 Apr 2011 10:34:46 + (GMT) SUMANTH KRISHNA MANNAM said: you intend to write a printf format parser just for this case? (well ok you only have to handle "%[something]f" as thats all slider defines that it wants/needs). > > >Hi, > Elementary slider widget shows the indica

Re: [E-devel] edje with external parts gives segfault

2011-04-12 Thread The Rasterman
On Mon, 11 Apr 2011 11:29:21 -0300 Gustavo Sverzut Barbieri said: > > Sounds like elementary was shutdown to much. Will need to investigate > > why, but I was sure that bug was fixed a few month ago... > > Seems he never initiated it at all. I used to do this while loading > external modules, bu

Re: [E-devel] [Review] [Patch] Evas - OpenGL and Evas (Part 4)

2011-04-12 Thread The Rasterman
On Mon, 11 Apr 2011 21:04:38 +0900 "Sung W. Park" said: > Sounds good. I'll go ahead and start working on getting the EVAS_GL_APIs > first then. > > Before I get started on that though, I thought it would be good to get some > image_object > semantics straight. I actually had to guess a lot o

Re: [E-devel] [Patch] Evas font-engine: Added support for runtime-italic/bold.

2011-04-12 Thread Tom Hacohen
Dear Roy, In svn, thanks. Revision: 58584. I adjusted it a bit: 1. Using "//" style comments for multiline comments is discouraged, I changed it to the "/* */" style. 2. Updated changelog. 3. Added a comment about the meanings of wanted_rend/runtime_rend. Thanks a lot, very cool, very clean. --

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

2011-04-12 Thread Vincent Torri
On Tue, 12 Apr 2011, Enlightenment SVN wrote: > Log: > eina: fix 64bits warning. > > > Author: cedric > Date: 2011-04-12 02:00:45 -0700 (Tue, 12 Apr 2011) > New Revision: 58583 > Trac: http://trac.enlightenment.org/e/changeset/58583 > > Modified: > trunk/eina/src/lib/eina_

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

2011-04-12 Thread Vincent Torri
On Tue, 12 Apr 2011, Enlightenment SVN wrote: > Log: > eina: fix 64bits warning. > > > Author: cedric > Date: 2011-04-12 02:00:45 -0700 (Tue, 12 Apr 2011) > New Revision: 58583 > Trac: http://trac.enlightenment.org/e/changeset/58583 > > Modified: > trunk/eina/src/lib/eina_

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

2011-04-12 Thread Cedric BAIL
On Tue, Apr 12, 2011 at 11:27 AM, Vincent Torri wrote: > On Tue, 12 Apr 2011, Enlightenment SVN wrote: >> Log: >> eina: fix 64bits warning. >> >> Author:       cedric >> Date:         2011-04-12 02:00:45 -0700 (Tue, 12 Apr 2011) >> New Revision: 58583 >> Trac:         http://trac.enlightenment.org

Re: [E-devel] [Patch] elm_colorselector : mouse_down (on buttons) is canceled when mouse_move.

2011-04-12 Thread WooHyun Jung
Hmm. But, as you said, ON_HOLD is set only by scroller. It means horizontal flicking can not be checked with vertical scroller. So I implemented like this ~ How do you think about this ? -Original Message- From: Carsten Haitzler (The Rasterman) [mailto:ras...@rasterman.com] Sent: Tuesd

Re: [E-devel] [Patch] elm_colorselector : mouse_down (on buttons) is canceled when mouse_move.

2011-04-12 Thread The Rasterman
On Tue, 12 Apr 2011 19:28:02 +0900 WooHyun Jung said: > Hmm. But, as you said, ON_HOLD is set only by scroller. > It means horizontal flicking can not be checked with vertical scroller. > So I implemented like this ~ > How do you think about this ? > > -Original Message- > From: Carst

Re: [E-devel] Help required on EFL Elementary Listbox object

2011-04-12 Thread Daniel Juyung Seo
As Gustavo said, Refer elementary_test. Genlist usage: trunk/elementary/src/bin/test_genlist.c Run elementary_test: $ elementary_test Check "Genlist xxx" menu. Genlist edc: (refer this to customize genlist item style) trunk/elementary/data/themes/default.edc elm/genlist/item/default/def

Re: [E-devel] discussion of elementary header separation.

2011-04-12 Thread Daniel Juyung Seo
Any further discussion on this issue? If there is no request and agreement, I'll drop this change. Thanks. Daniel Juyung Seo (SeoZ) On Mon, Apr 11, 2011 at 2:20 AM, Atton Jonathan wrote: > Maybe we can split headers by type of widget: simple, list(genlist, list, > gengrid), map (it is a big head

Re: [E-devel] little white rectangle

2011-04-12 Thread David Seikel
On Mon, 11 Apr 2011 21:15:35 -0700 Dave Ray wrote: > And I don't even know if those installations provide what's needed > for e17 menus. Just to be clear, this is not e17 menus you are talking about, but the freedesktop.org XDG menus that e17 supports. They are common in linux distros, but soun

Re: [E-devel] little white rectangle

2011-04-12 Thread Dave Ray
On Apr 12, 2011, at 8:35 AM, David Seikel wrote: > On Mon, 11 Apr 2011 21:15:35 -0700 Dave Ray wrote: > >> And I don't even know if those installations provide what's needed >> for e17 menus. > > Just to be clear, this is not e17 menus you are talking about, but the > freedesktop.org XDG menus

Re: [E-devel] E SVN: discomfitor IN trunk/eina: . src/tests

2011-04-12 Thread Mike Blumenkrantz
On Tue, 12 Apr 2011 16:12:52 -0700 "Enlightenment SVN" wrote: > Log: > add bench for google's cityhash function (64bit, > http://code.google.com/p/cityhash/) convenient graph of output can be found > at http://www.enlightenment.org/~discomfitor/hash_bench.png > > Author: discomfitor > Dat

Re: [E-devel] E SVN: discomfitor IN trunk/eina: . src/tests

2011-04-12 Thread Vincent Torri
On Tue, 12 Apr 2011, Mike Blumenkrantz wrote: > On Tue, 12 Apr 2011 16:12:52 -0700 > "Enlightenment SVN" wrote: > >> Log: >> add bench for google's cityhash function (64bit, >> http://code.google.com/p/cityhash/) convenient graph of output can be found >> at http://www.enlightenment.org/~discom

Re: [E-devel] E SVN: discomfitor IN trunk/eina: . src/tests

2011-04-12 Thread Mike Blumenkrantz
On Wed, 13 Apr 2011 01:23:30 +0200 (CEST) Vincent Torri wrote: > > > On Tue, 12 Apr 2011, Mike Blumenkrantz wrote: > > > On Tue, 12 Apr 2011 16:12:52 -0700 > > "Enlightenment SVN" wrote: > > > >> Log: > >> add bench for google's cityhash function (64bit, > >> http://code.google.com/p/cityhash

Re: [E-devel] E SVN: discomfitor IN trunk/eina: . src/tests

2011-04-12 Thread Mike Blumenkrantz
On Wed, 13 Apr 2011 01:31:50 +0200 (CEST) Vincent Torri wrote: > > > On Tue, 12 Apr 2011, Mike Blumenkrantz wrote: > > > On Wed, 13 Apr 2011 01:23:30 +0200 (CEST) > > Vincent Torri wrote: > > > >> > >> > >> On Tue, 12 Apr 2011, Mike Blumenkrantz wrote: > >> > >>> On Tue, 12 Apr 2011 16:12:52

Re: [E-devel] discussion of elementary header separation.

2011-04-12 Thread The Rasterman
On Tue, 12 Apr 2011 23:13:58 +0900 Daniel Juyung Seo said: i say... leave it :) > Any further discussion on this issue? > If there is no request and agreement, I'll drop this change. > > Thanks. > Daniel Juyung Seo (SeoZ) > > On Mon, Apr 11, 2011 at 2:20 AM, Atton Jonathan > wrote: > > > Mayb

Re: [E-devel] E SVN: discomfitor IN trunk/eina: . src/tests

2011-04-12 Thread The Rasterman
On Tue, 12 Apr 2011 19:16:43 -0400 Mike Blumenkrantz said: > On Tue, 12 Apr 2011 16:12:52 -0700 > "Enlightenment SVN" wrote: > > > Log: > > add bench for google's cityhash function (64bit, > > http://code.google.com/p/cityhash/) convenient graph of output can be found > > at http://www.enlighte

Re: [E-devel] E SVN: discomfitor IN trunk/eina: . src/tests

2011-04-12 Thread Mike Blumenkrantz
On Wed, 13 Apr 2011 09:11:47 +0900 Carsten Haitzler (The Rasterman) wrote: > On Tue, 12 Apr 2011 19:16:43 -0400 Mike Blumenkrantz said: > > > On Tue, 12 Apr 2011 16:12:52 -0700 > > "Enlightenment SVN" wrote: > > > > > Log: > > > add bench for google's cityhash function (64bit, > > > http://co

Re: [E-devel] E SVN: discomfitor IN trunk/eina: . src/tests

2011-04-12 Thread The Rasterman
On Tue, 12 Apr 2011 20:16:05 -0400 Mike Blumenkrantz said: > On Wed, 13 Apr 2011 09:11:47 +0900 > Carsten Haitzler (The Rasterman) wrote: > > > On Tue, 12 Apr 2011 19:16:43 -0400 Mike Blumenkrantz > > said: > > > > > On Tue, 12 Apr 2011 16:12:52 -0700 > > > "Enlightenment SVN" wrote: > > >

Re: [E-devel] E SVN: discomfitor IN trunk/eina: . src/tests

2011-04-12 Thread The Rasterman
On Tue, 12 Apr 2011 19:16:43 -0400 Mike Blumenkrantz said: > On Tue, 12 Apr 2011 16:12:52 -0700 > "Enlightenment SVN" wrote: > > > Log: > > add bench for google's cityhash function (64bit, > > http://code.google.com/p/cityhash/) convenient graph of output can be found > > at http://www.enlighte

[E-devel] [Patch] elm_map name(address) feature

2011-04-12 Thread sangho park
Dear all, This is a patch for elm_map name(address) feature. I added some APIs for name to elm_map.c and added some test code to test_map.c I used nominatim OSM service. (http://http://nominatim.openstreetmap.org/) as i felt, it's response time was very good to use. added APIs are: EAPI Elm_M

[E-devel] [Review] [Patch] Evas - OpenGL and Evas: eng_window_use (Bug Patch)

2011-04-12 Thread Sung W. Park
Hi all, I've been toying around with creating a simple GLView smart object that allows users do GL rendering simply.  Eventually, I would like to see this as an Elementary widget called GLView.  The idea behind this is that if evas_gl provides the low level stuff, GLView gives the simplified user-

Re: [E-devel] E SVN: discomfitor trunk/eina/src/include

2011-04-12 Thread Brett Nash
On Tue, 2011-04-12 at 20:08 -0700, Enlightenment SVN wrote: > Log: > class is a reserved word. SPANK SPANK SPANK cedric!!! Are you confusing C and C++ by any chance? Class isn't reserved in C (k&r, ansi, or c99). Having said that it's best to avoid it so people can through a c++ compiler at your

Re: [E-devel] E SVN: discomfitor trunk/eina/src/include

2011-04-12 Thread Mike Blumenkrantz
On Wed, 13 Apr 2011 14:31:27 +1000 Brett Nash wrote: > On Tue, 2011-04-12 at 20:08 -0700, Enlightenment SVN wrote: > > Log: > > class is a reserved word. SPANK SPANK SPANK cedric!!! > > Are you confusing C and C++ by any chance? > > Class isn't reserved in C (k&r, ansi, or c99). > > Having sai