How to do key binding in eclipse rcp?

How to make key binding in Eclipse RCP?

I mean, how to use key sequences in your GUI ... for example Ctrl+ somethingor Alt+ something.....?

+5
source share
1 answer

You can see the tutorial on Eclipse Command.

To define and use your own schema, you need to:

  • Define the schema at the extension point "org.eclipse.ui.bindings"
  • Assign this pattern to the keyboard shortcuts you define.
  • Create a product
  • Define the file "plugin_customization.ini" and set the schema for the product through the property.

http://www.vogella.de/articles/EclipseCommands/images/keybinding10.gif


Eclipse Command Framework

alt text
(: eclipse.org)

+4

All Articles