Re: [E-devel] [patch] elm_genlist - add merging edc strings list

2012-03-25 Thread Daniel Juyung Seo
Question in _item_content_realize(). I don't see a point to merge the list here. +*source = eina_list_merge(*source, cons); *source must be NULL when you run _item_content_realize(). If it's not NULL, that's a huge problem. Creating another list pointer(cons) and merging it with NULL

Re: [E-devel] [patch] elm_genlist - add merging edc strings list

2012-03-25 Thread The Rasterman
On Sun, 25 Mar 2012 15:45:21 +0900 Daniel Juyung Seo seojuyu...@gmail.com said: Question in _item_content_realize(). I don't see a point to merge the list here. +*source = eina_list_merge(*source, cons); *source must be NULL when you run _item_content_realize(). If it's not

Re: [E-devel] [patch] elm_genlist - add merging edc strings list

2012-03-25 Thread Hyoyoung Chang
in most of cases, Daniel is right. But i added this for item_fields_update if ((!itf) || (itf ELM_GENLIST_ITEM_FIELD_CONTENT)) { _it-content_objs = _item_content_unrealize(_it, VIEW(_it), _it-contents, parts);

[E-devel] removal of wrong elc_multibuttonentry APIs

2012-03-25 Thread Daniel Juyung Seo
Hello all, I just found that elc_multibuttonentry had wrong APIs. elm_multibuttonentry_item_data_get elm_multibuttonentry_item_data_set They need to be removed and we need to use elm_object_item_data_get/set instead. I guess multibuttonentry was not reviewed carefully. Daniel Juyung Seo (SeoZ)

Re: [E-devel] [patch] elm_genlist - add merging edc strings list

2012-03-25 Thread Daniel Juyung Seo
Hello, On Sun, Mar 25, 2012 at 4:42 PM, Hyoyoung Chang hyoyo...@gmail.com wrote: in most of cases, Daniel is right. But i added this for item_fields_update   if ((!itf) || (itf ELM_GENLIST_ITEM_FIELD_CONTENT))     {        _it-content_objs = _item_content_unrealize(_it, VIEW(_it),        

Re: [E-devel] [patch] elm_genlist - add merging edc strings list

2012-03-25 Thread Hyoyoung Chang
On Sun, Mar 25, 2012 at 5:19 PM, Daniel Juyung Seo seojuyu...@gmail.com wrote: Hello, On Sun, Mar 25, 2012 at 4:42 PM, Hyoyoung Chang hyoyo...@gmail.com wrote: in most of cases, Daniel is right. But i added this for item_fields_update   if ((!itf) || (itf ELM_GENLIST_ITEM_FIELD_CONTENT))  

Re: [E-devel] removal of wrong elc_multibuttonentry APIs

2012-03-25 Thread The Rasterman
On Sun, 25 Mar 2012 16:47:13 +0900 Daniel Juyung Seo seojuyu...@gmail.com said: yes - need removing indeed. Hello all, I just found that elc_multibuttonentry had wrong APIs. elm_multibuttonentry_item_data_get elm_multibuttonentry_item_data_set They need to be removed and we need to use

Re: [E-devel] Battery Gadget Feature Request

2012-03-25 Thread thomasg
On Sat, Mar 24, 2012 at 15:21, Jeff Hoogland jeffhoogl...@linux.com wrote: Would it be possible to add a shut down below percentage to the battery gadget? Had a few users request this over the months as some of them don't care to hibernate their systems. -- ~Jeff Hoogland

[E-devel] [PATCH] battery: add support for different suspend methods

2012-03-25 Thread Thomas Gstädtner
Allow the user to select what to do when the battery runs low: Suspend, Hibernate or Shutdown. Signed-off-by: Thomas Gstädtner tho...@gstaedtner.net --- src/modules/battery/e_mod_config.c | 16 ++-- src/modules/battery/e_mod_main.c |9 -

Re: [E-devel] removal of wrong elc_multibuttonentry APIs

2012-03-25 Thread Daniel Juyung Seo
Just deprecated them. I added them to elm_deprecated.h so it'll be removed later before 1.0. Daniel Juyung Seo (SeoZ) On Sun, Mar 25, 2012 at 7:57 PM, Carsten Haitzler ras...@rasterman.com wrote: On Sun, 25 Mar 2012 16:47:13 +0900 Daniel Juyung Seo seojuyu...@gmail.com said: yes - need

[E-devel] Using emotion in a 3D world.

2012-03-25 Thread David Seikel
I'm wondering if emotion would be suitable for use in a 3D environment? Where a particular texture marks where the video has to go? That's how the 3D world is already set up, and I'd have to be compatible with that. -- A big old stinking pile of genius that no one wants coz there are too many

Re: [E-devel] Using emotion in a 3D world.

2012-03-25 Thread The Rasterman
On Mon, 26 Mar 2012 12:22:48 +1000 David Seikel onef...@gmail.com said: I'm wondering if emotion would be suitable for use in a 3D environment? Where a particular texture marks where the video has to go? That's how the 3D world is already set up, and I'd have to be compatible with that.

Re: [E-devel] Battery Gadget Feature Request

2012-03-25 Thread Jeff Hoogland
Thank you very much for this! I don't have time to try a fresh build till later this week (Thursday is my normal build day) will report back then (also I see this is in the SVN already - awesome!) On Sun, Mar 25, 2012 at 2:20 PM, thomasg tho...@gstaedtner.net wrote: On Sat, Mar 24, 2012 at

Re: [E-devel] [Question][Windows] Shift/Alt/Ctrl key press operation

2012-03-25 Thread cnook
Thanks for your response. I have attached a patch upon your comments. The meaning of bit 30(0x4000 in the patch) is as bellows The previous key state. The value is 1 if the key is down before the message is sent, or it is 0 if the key is up. The Evas_CALLBACK_KEY_DOWN event will occur once