I have some clutter_actors placed over the clutter_stage. Whenever i want to shift the focus from the clutter_stage to clutter_actor i use clutter_stage_set_key_focus(clutter_stage,clutter_actor) .

But when i press any key related to clutter_actor it goes to the callback function of clutter_stage. Do i need to use any other function to change the key focus from clutter_stage to clutter_actor.

link|improve this question

48% accept rate
feedback

1 Answer

up vote 2 down vote accepted

the actor needs to be reactive, and you need to use the key-press-event and/or the key-release-event signals on the actor itself.

Clutter event-related signals follow a capture/bubble phase:

http://developer.gnome.org/clutter/stable/ClutterActor.html#ClutterActor-event-handling

if you leave the key press/release signal handlers registered on the stage you'll see an emission from them during capture, and an eventual emission on them during bubble unless the actor returned TRUE from the signal handler, to stop the signal propagation.

link|improve this answer
thanks ebassi. that solved the problem.. – northlondoner Nov 17 '11 at 7:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.