Re: [E-devel] [Patch] text_set for elm_genlist items

2012-04-12 Thread Daniel Juyung Seo
"); >      sd->content_set_func(obj, part, conent); > } > > > > > -Regards, Hermet- > > > > -Original Message- > From: "Daniel Juyung Seo"<seojuyu...@gmail.com> > To: "Enlightenment developer > list"<enlightenment-devel@lists.sou

Re: [E-devel] [Patch] text_set for elm_genlist items

2012-04-12 Thread ChunEon Park
gt;; Cc: Sent: 2012-04-12 (목) 16:20:36 Subject: Re: [E-devel] [Patch] text_set for elm_genlist items You are right. I just added warnings for content/text_set/unset for genlist. http://trac.enlightenment.org/e/changeset/70122 Thanks for reporting. Daniel Juyung Seo (SeoZ) On Thu, Apr 12, 2012

Re: [E-devel] [Patch] text_set for elm_genlist items

2012-04-12 Thread Daniel Juyung Seo
You are right. I just added warnings for content/text_set/unset for genlist. http://trac.enlightenment.org/e/changeset/70122 Thanks for reporting. Daniel Juyung Seo (SeoZ) On Thu, Apr 12, 2012 at 3:43 PM, Raoul Hecky wrote: > elm_genlist_item_fields_update() > I didn't catch this one... > I can

Re: [E-devel] [Patch] text_set for elm_genlist items

2012-04-11 Thread Raoul Hecky
elm_genlist_item_fields_update() I didn't catch this one... I can live with it. Anyway, I lost some time figuring out why elm_object_item_part_text_set() was not woking with genlist items, maybe we should print some warning when these general functions are not defined for an elm widget? Thanks.

Re: [E-devel] [Patch] text_set for elm_genlist items

2012-04-11 Thread Daniel Juyung Seo
Raster is right. Genlist's model is to update the texts and contents of a genlist item from the registered callbacks. So just use elm_genlist_item_fields_update() and return the proper text from the genlist item text callback. Thanks. Daniel Juyung Seo (SeoZ) On Thu, Apr 12, 2012 at 12:59 PM, Car

Re: [E-devel] [Patch] text_set for elm_genlist items

2012-04-11 Thread The Rasterman
On Tue, 10 Apr 2012 16:53:22 +0200 Raoul Hecky said: i dont think we want this - because genlist works on the model of getting test from the test label provider function from the class - you just update the item to get genlist to re-query. if its realized it'll show the new text AND if needed re-

Re: [E-devel] [Patch] text_set for elm_genlist items

2012-04-10 Thread Daniel Juyung Seo
Hello, there is elm_genlist_item_fields_update() for you. So you can do that now. Anyhow I will review your patch soon. It is 3am here. On Apr 10, 2012 11:56 PM, "Raoul Hecky" wrote: > Hi, > > Currently items in genlist only support elm_object_item_part_text_get, but > not elm_object_item_part_te

[E-devel] [Patch] text_set for elm_genlist items

2012-04-10 Thread Raoul Hecky
Hi, Currently items in genlist only support elm_object_item_part_text_get, but not elm_object_item_part_text_set. Here is a patch that adds that function. I need to change the item text from time to time without reloading all swallowed parts (without doing elm_genlist_item_update), thus elm

[E-devel] [Patch] text_set for elm_genlist items

2012-04-10 Thread Raoul Hecky
Hi, Currently items in genlist only support elm_object_item_part_text_get, but not elm_object_item_part_text_set. Here is a patch that adds that function. I need to change the item text from time to time without reloading all swallowed parts (without doing elm_genlist_item_update), thus elm