tags:

views:

93

answers:

1

How to do keybinding in eclipse RCP?

I mean how to use key sequences in your GUI...like Ctrl + something or Alt + something.....?

+3  A: 

You can look at the Eclipse Command tutorial

To define and use your own scheme you need:

  • Define a scheme in extension point "org.eclipse.ui.bindings"
  • Assign this scheme to the keybindings you defined
  • Have a product created
  • Define the file "plugin_customization.ini" and set the scheme for the product via a property.

alt text


the all keybinding mechanism is based on the Eclipse Command Framework

alt text

VonC
+1 for the explanation and the answer i was also looking for key binding. thanks Buddy:)
Ravisha
@Ravisha: you're most welcome :)
VonC

related questions