[clutter] How to create a modal dialog with clutter?

2009-11-30 Thread Wu Weihua
Hi, Guys: I'm a newbie on clutter programming. I just want to create a modal dialog to get a user's response and then return the status to the caller. The caller will be blocked and wait for the dialog return. Currently my program only has one thread. First I thought if I can do a nested call of

[clutter] Is there any good text editor in clutter?

2009-11-30 Thread Wu Weihua
Hi, Guys: Anyone know where I can find a good text editor in clutter? I just created a simple editor with scrollbar, auto scroll when input and when moving the cursor. But some code are not good enough and it consumes much time to calculate the text height, weight and spacing. I'm not very

RE: [clutter] Is there any good text editor in clutter?

2009-11-30 Thread Emmanuele Bassi
Hi; Anyone know where I can find a good text editor in clutter? Clutter is not a toolkit meant to be used to create a text editor. You can, but you'll have to write the text editor actor yourself after you realize that ClutterText does not cover all your use cases. I suggest you use

Re: [clutter] How to create a modal dialog with clutter?

2009-11-30 Thread Wu Weihua
Thanks for the suggestions, Emmanuele! I will try them. - Weihua 2009/11/30 Emmanuele Bassi eba...@linux.intel.com: Hi; Currently my program only has one thread. First I thought if I can do a nested call of clutter_main so the thread can be blocked untill the dialog finishes its job. But