I have to create a vertical menu using clutter in C. Can anyone help me how to implement focus shift using the navigation keys for the menu where i want to highlight the focused menu option.
|
feedback
|
|
the easiest way is to mark the actor that contains all the menu items as reactive, assign to it the key focus using then there's even the possibility to use for more information, see the API reference: http://developer.gnome.org/clutter/stable/ClutterActor.html#clutter-actor-grab-key-focus http://developer.gnome.org/clutter/stable/ClutterActor.html#ClutterActor-key-press-event http://developer.gnome.org/clutter/stable/clutter-Events.html#clutter-event-get-key-symbol http://developer.gnome.org/clutter/stable/clutter-Key-Bindings.html the list of key symbols in in the clutter-keysyms.h header: http://git.gnome.org/browse/clutter/tree/clutter/clutter-keysyms.h there are various recipes in the Cookbook as well: http://docs.clutter-project.org/docs/clutter-cookbook/1.0/events-handling-key-events.html | |||
|
feedback
|