Reputation: 93
How to do keybinding in eclipse RCP?
I mean how to use key sequences in your GUI...like Ctrl + something or Alt + something.....?
Upvotes: 5
Views: 1490
Reputation: 1328982
You can look at the Eclipse Command tutorial
To define and use your own scheme you need:
alt text http://www.vogella.de/articles/EclipseCommands/images/keybinding10.gif
the all keybinding mechanism is based on the Eclipse Command Framework
(source: eclipse.org)
Upvotes: 4