I am creating an RCP app which uses a host of third-party plugins. Some of these plugins contribute menus, menu items, and toolbar buttons that I do not wish to display. How can I determine which plugins are contributing these menus, menu items, and toolbar buttons and how can I disable them from doing so?
Share
To inspect details of menu, toolbar contributions etc.
org.eclipse.pde.runtimeUse activities to remove the UI contribution. The “active action definition identifier” value provided by ALT-SHIFT-F2 is the one to use as the pattern in the activityPatternBinding specification. See this question for more info on removing unwanted UI contributions.
Note that when using activities to remove unwanted UI contributions, sometimes you will need to specify the UI contributions’ plug-in id and sometimes you won’t depending on the individual contribution.
NB: The Plug-in Registry view can be also used to find the IDs for contributions, although you’ll have to do some searching.