vote up 1 vote down star

Hi - I frequently had this problem and didn't find a solution yet: Whenever I write a new eclipse RCP based application and include plugins from the eclipse platform, I 'inherit' UI contributions from some of those plugins.

Most of this contributions (Menu entries, keyboard shortcuts, property pages) are useful but sometimes I'd rather disabled some of these contributions, just because I really do not need them and they might confuse the users.

Does anyone know of the official or a practical way to disable/prohibit selected contributions in eclipse ECP applications?

flag

I don't think removeContributionFactory() is for disabling all contribution, but is rather a "dispose" mechanism used for un-registering one view/menu contribution, and I was proposing to use that for explicitly remove contributions coming from other plugins. – VonC Sep 13 at 8:37
So it is: a/ not exactly what you are looking for, b/ not easy, since you have to detect those contributions and remove them. But this is what I have got so far. – VonC Sep 13 at 8:39
re-reading your comment: no you are not disabling all contribution (from all other plugins), but you might ending up disabling all contributions from one given external plugin. – VonC Sep 13 at 8:41

2 Answers

vote up 1 vote down check

Take a look at the Eclipse "Activities" API. It allows you to hide contributions based on ID.

A few links:

link|flag
vote up 1 vote down

The only method which comes close to do that would be:

IMenuService::removeContributionFactory()

Paul Webster has been calling for a IMenuService::addOverride() to change the visibility of the menu, preventing any contribution, but that idea has not been integrated yet.

You can see an example of removing a contribution in this org.eclipse.ui.tests.menus.MenuBuilder class;

public static void removeMenuContribution() {
	if (!PlatformUI.isWorkbenchRunning()) {
		return;
	}
	IMenuService menuService = (IMenuService) PlatformUI.getWorkbench()
			.getService(IMenuService.class);
	if (menuService==null) {
		return;
	}
	menuService.removeContributionFactory(viewMenuAddition);
	viewMenuAddition = null;
	menuService.removeContributionFactory(viewToolbarAddition);
	viewMenuAddition = null;
}
link|flag
Thanks! But do I get it right - I disable all contributions this way? No way to disable individual contributions, maybe identified by their ids? – Andreas_D Sep 13 at 7:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.