Re: [E-devel] Question about Evas_Object. - How to create Evas_Object with specific data?

2012-07-31 Thread Eunmi Lee
dditional parameters in the evas_object_smart_add(). In the GTK, they can set properties to the g_object_new() function and the properties are saved as g_property. so, the properties can be used later such as g_object's constructed() function. I don't know well how GTK works, but I envy

Re: [E-devel] Question about Evas_Object. - How to create Evas_Object with specific data?

2012-07-31 Thread Eunmi Lee
e constructor like an Elementary and Emotion widget. If I don't have to pass the value which is used to initialize Evas_Object, it is easy to make it. However, I want to do both of them. I really want to find the way to get the both of inheritance and value of constructor. BR, Eunmi Lee 20

[E-devel] Question about Evas_Object. - How to create Evas_Object with specific data?

2012-07-31 Thread Eunmi Lee
creating the Evas_Object? Below URL is my patch to do above things. https://bugs.webkit.org/show_bug.cgi?id=90054 BR, Eunmi Lee -- Live Security Virtual Conference Exclusive live event will cover all the ways today's s

[E-devel] [Patch][Evas] Fix wrong location of _evas_touch_point_remove()

2011-11-09 Thread EunMi Lee
Dear all, I have a small patch to fix the wrong location of _evas_touch_point_remove(). _evas_touch_point_remove() should be called in the evas_event_feed_mouse_up(), but it is called in the evas_event_feed_mouse_cancel() in the current code. Would you apply attached patch? Regards, Eunmi Lee

Re: [E-devel] [Patch] [Evas] Patch to provide information of touched points

2011-10-25 Thread EunMi Lee
Good news to me :) Thank you for checking in! BR, Eunmi Lee --- Original Message --- Sender : Carsten Haitzler Date : 2011-10-25 14:03 (GMT+09:00) Title : Re: [E-devel] [Patch] [Evas] Patch to provide information of touched points On Thu, 20 Oct 2011 07:39:30 + (GMT) EunMi Lee said

[E-devel] [Patch] [Evas] Patch to provide information of touched points

2011-10-20 Thread EunMi Lee
whole structure to make it easy to expand in the future as you mentioned in the below e-mail :) Best Regards, Eunmi Lee --- Original Message --- Sender : Carsten Haitzler Date : 2011-10-17 16:59 (GMT+09:00) Title : Re: [E-devel] [Patch] Evas touch event patch. On Mon, 17 Oct 2011 07:

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] Question about event propagation routine of elm_scroller

2011-10-16 Thread EunMi Lee
is that, find all ancestors and stop scrolling using elementary api for that widget if ancestor is elementary widget and webview consumes mouse event. but it is complex job because I have to retrieve all ancestors whenever I get mouse event. I will be grateful if you share better solution.

Re: [E-devel] Question about event propagation routine of elm_scroller

2011-10-14 Thread EunMi Lee
e to find other solution to stop scroller. --- Original Message --- Sender : Carsten Haitzler Date : 2011-10-14 19:10 (GMT+09:00) Title : Re: [E-devel] Question about event propagation routine of elm_scroller On Thu, 13 Oct 2011 02:19:09 +0000 (GMT) EunMi Lee said: h. this is actually

[E-devel] Question about event propagation routine of elm_scroller

2011-10-12 Thread EunMi Lee
n: my object is not an elementary widget. it is just an Evas_Object.) Regards, Eunmi Lee -- All the data continuously generated in your IT infrastructure contains a definitive record of customers, application performance, secur

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-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-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

[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