Reuse standard menus in Eclipse RCP4 application

121 Views Asked by At

I want to reuse standard menus from the Eclipse IDE in my RCP4 application (e.g. Windows->Preferences). In Eclipse RCP3 applications you simply have to add a menuContribution to the plugin.xml to achieve this. I tried the same for my RCP4 application but without success. Is there another way to add standard menus to a RCP4 application?

1

There are 1 best solutions below

0
On BEST ANSWER

For a pure e4 application which is not using the 3.x compatibility layer you have to construct all the menus and dialogs yourself.

For preferences you can use the JFace org.eclipse.jface.preference.PreferenceDialog which is a simpler version of the normal preferences dialog, but you don't get the preference page extension point (or any existing pages) so you have to craft all that yourself.