Re: [E-devel] editable evas textblock

2008-09-19 Thread The Rasterman
On Wed, 17 Sep 2008 18:34:08 +0300 Veli Ogla Sungutay [EMAIL PROTECTED] babbled: Thanks for tips Gustavo, I looked at ewl_text_text_insert_private(), it's called on key down, but I couldn't quite make the connection between this and evas functions. Maybe try that later, but I get the idea.

Re: [E-devel] editable evas textblock

2008-09-19 Thread The Rasterman
On Wed, 17 Sep 2008 16:46:42 +0200 (CEST) Dave Andreoli [EMAIL PROTECTED] babbled: - Gustavo Sverzut Barbieri [EMAIL PROTECTED] ha scritto: On Wed, Sep 17, 2008 at 7:41 AM, Veli Ogla Sungutay [EMAIL PROTECTED] wrote: hey guys, i cannot find a way to create an editable evas

[E-devel] editable evas textblock

2008-09-17 Thread Veli Ogla Sungutay
hey guys, i cannot find a way to create an editable evas textblock. Expected to find something like this: evas_object_textblock_set_editable(tblock, 1); Am i blind? Or do we need to create the textblock with event listeners and fill the block in each stroke? -- Veli Ogla Sungutay

Re: [E-devel] editable evas textblock

2008-09-17 Thread Gustavo Sverzut Barbieri
On Wed, Sep 17, 2008 at 7:41 AM, Veli Ogla Sungutay [EMAIL PROTECTED] wrote: hey guys, i cannot find a way to create an editable evas textblock. Expected to find something like this: evas_object_textblock_set_editable(tblock, 1); Am i blind? Or do we need to create the textblock with event

Re: [E-devel] editable evas textblock

2008-09-17 Thread Dave Andreoli
- Gustavo Sverzut Barbieri [EMAIL PROTECTED] ha scritto: On Wed, Sep 17, 2008 at 7:41 AM, Veli Ogla Sungutay [EMAIL PROTECTED] wrote: hey guys, i cannot find a way to create an editable evas textblock. Expected to find something like this: evas_object_textblock_set_editable(tblock,

Re: [E-devel] editable evas textblock

2008-09-17 Thread Veli Ogla Sungutay
Thanks for tips Gustavo, I looked at ewl_text_text_insert_private(), it's called on key down, but I couldn't quite make the connection between this and evas functions. Maybe try that later, but I get the idea. I will experiment with evas_textblock_cursor_text_append, and follow ewl's ways and

Re: [E-devel] editable evas textblock

2008-09-17 Thread Nathan Ingersoll
EWL is somewhat more complicated because it maintains an internal representation of the data. This is done so that it can build the entire text representation prior to an evas or any associated evas object being available. That being said, it may provide some hints about how to interact with the