Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Contributing to the Status Bar/Trim in Eclipse RCP

Tags:

eclipse-rcp

I have a requirement to show a status indicator in the status bar of an Eclipse application. I can't contribute through the ApplicationWindowAdviser (another team owns the core product), but I feel sure that I should be able to contribute through an extension point. Despite much googling, I can't find anything describing how to do this.

like image 615
Robert Wilson Avatar asked May 11 '10 12:05

Robert Wilson


1 Answers

In the org.eclipse.ui.menuContributions extensions, use "toolbar:org.eclipse.ui.trim.status" as the locationURI. You can contribute commands/custom controls to the status bar.

like image 193
Prakash G. R. Avatar answered Oct 04 '22 16:10

Prakash G. R.