Re: [E-devel] [Patch] Evas touch event patch.

2011-10-17 Thread The Rasterman
On Mon, 17 Oct 2011 19:42:55 +1000 David Seikel said: > On Mon, 17 Oct 2011 17:03:32 +0900 Carsten Haitzler (The Rasterman) > wrote: > > > On Mon, 17 Oct 2011 17:50:49 +1000 David Seikel > > said: > > > > > On Mon, 17 Oct 2011 13:37:34 +0900 Carsten Haitzler (The Rasterman) > > > wrote: > >

Re: [E-devel] [Patch] Evas touch event patch.

2011-10-17 Thread David Seikel
On Mon, 17 Oct 2011 17:03:32 +0900 Carsten Haitzler (The Rasterman) wrote: > On Mon, 17 Oct 2011 17:50:49 +1000 David Seikel > said: > > > On Mon, 17 Oct 2011 13:37:34 +0900 Carsten Haitzler (The Rasterman) > > wrote: > > > > > we just > > > have 2 kinds of down/move/up events (mouse and mult

Re: [E-devel] [Patch] Evas touch event patch.

2011-10-17 Thread The Rasterman
On Mon, 17 Oct 2011 17:50:49 +1000 David Seikel said: > On Mon, 17 Oct 2011 13:37:34 +0900 Carsten Haitzler (The Rasterman) > wrote: > > > we just > > have 2 kinds of down/move/up events (mouse and multi) where mouse is > > the core pointer or first touch and multi is all the extras (that as >

Re: [E-devel] [Patch] Evas touch event patch.

2011-10-17 Thread The Rasterman
can query but that makes it a bit harder to expand in the future. that's all. the list works too - it just means its the struct method. this can work as well. :) > --- Original Message --- > Sender : Carsten Haitzler > Date : 2011-10-17 13:37 (GMT+09:00) > Title : Re:

Re: [E-devel] [Patch] Evas touch event patch.

2011-10-17 Thread David Seikel
On Mon, 17 Oct 2011 13:37:34 +0900 Carsten Haitzler (The Rasterman) wrote: > we just > have 2 kinds of down/move/up events (mouse and multi) where mouse is > the core pointer or first touch and multi is all the extras (that as > anon-touch app you don't need to look at). Hmmm, how does things li

Re: [E-devel] [Patch] Evas touch event patch.

2011-10-17 Thread EunMi Lee
--- Sender : Carsten Haitzler Date : 2011-10-17 13:37 (GMT+09:00) Title : Re: [E-devel] [Patch] Evas touch event patch. On Thu, 06 Oct 2011 10:20:57 +0200 Tom Hacohen said: > On 06/10/11 10:15, EunMi Lee wrote: > > Dear Tom, > > > >> What do you think about removing this from upstre

Re: [E-devel] [Patch] Evas touch event patch.

2011-10-16 Thread The Rasterman
On Thu, 06 Oct 2011 10:20:57 +0200 Tom Hacohen said: > On 06/10/11 10:15, EunMi Lee wrote: > > Dear Tom, > > > >> What do you think about removing this from upstream and moving it to your > >> code? > > => My answer is I really need touch event in the evas. > > Yes, it just unifies mouse/mu

Re: [E-devel] [Patch] Evas touch event patch.

2011-10-06 Thread Tom Hacohen
On 06/10/11 10:15, EunMi Lee wrote: > Dear Tom, > >> What do you think about removing this from upstream and moving it to your >> code? > => My answer is I really need touch event in the evas. > Yes, it just unifies mouse/multi event and it was in my code before. > However, I think it i

Re: [E-devel] [Patch] Evas touch event patch.

2011-10-06 Thread EunMi Lee
want that evas supports touch event like other platform, and I made a patch for that. BR, Eunmi Lee --- Original Message --- Sender : Tom Hacohen Engineer/STRI-SLP RTL Language supporting/삼성전자 Date : 2011-10-06 16:17 (GMT+09:00) Title : Re: [E-devel] [Patch] Evas touch event patch. On

Re: [E-devel] [Patch] Evas touch event patch.

2011-10-06 Thread Tom Hacohen
On 06/10/11 04:32, EunMi Lee wrote: > Dear Tom, > > Thanks for reporting that issue :) > I could not think about event_flags problem when I add touch event. > So, I'm trying to solve that problem and I'd like to share my idea. > > The basic idea is "connecting event_flags between mouse(multi) event

Re: [E-devel] [Patch] Evas touch event patch.

2011-10-05 Thread EunMi Lee
uch event to the object with event_flags. set changed touch event's event_flags to the mouse/multi event's event_flags. --- How do you think? Regards, Eunmi Lee --- Original Message --- Sender : Tom Hacohen Date : 2011-10-05 17:37 (GMT+09:

Re: [E-devel] [Patch] Evas touch event patch.

2011-10-05 Thread Tom Hacohen
really happy news to me! > Thank you very much :) > > --- Original Message --- > Sender : Carsten Haitzler > Date : 2011-10-04 16:32 (GMT+09:00) > Title : Re: [E-devel] [Patch] Evas touch event patch. > > On Mon, 19 Sep 2011 08:18:11 + (GMT) EunMi Lee > said:

Re: [E-devel] [Patch] Evas touch event patch.

2011-10-04 Thread EunMi Lee
It is really happy news to me! Thank you very much :) --- Original Message --- Sender : Carsten Haitzler Date : 2011-10-04 16:32 (GMT+09:00) Title : Re: [E-devel] [Patch] Evas touch event patch. On Mon, 19 Sep 2011 08:18:11 + (GMT) EunMi Lee said: thanks eunmi! i've put it i

Re: [E-devel] [Patch] Evas touch event patch.

2011-10-04 Thread The Rasterman
On Mon, 19 Sep 2011 08:18:11 + (GMT) EunMi Lee said: thanks eunmi! i've put it in svn, BUT with some changes. i've changes some Evas_Event_Touch_Type and Evas_Touch_Point_State enum names because they were not really consistent, CANCEL and CANCELLED, PRESSED, RELEASED (rest of evas uses DOWN

[E-devel] [Patch] Evas touch event patch.

2011-09-19 Thread EunMi Lee
Dear Enlightenment developers, Nice to meet you. I'm Eunmi Lee, developing mobile web browser and working on WebKit EFL port. I need new type of event for touch, so I've made patch to add EVAS_CALLBACK_TOUCH event to the evas. I will explain history of this patch. Currently, many web application