Difference between revisions of "Add Menu to RCP Application"

From CDOT Wiki
Jump to: navigation, search
(Add Menu to RCP Application)
(Add Menu to RCP Application)
Line 4: Line 4:
 
* Run the example and you should get something like this:
 
* Run the example and you should get something like this:
 
[[Image:rcp-menu-1.png|left|thumb]]<br style="clear:left;" />
 
[[Image:rcp-menu-1.png|left|thumb]]<br style="clear:left;" />
 +
* We'll now create a command (Exit) which we will later add to the menu (File) that we have yet to create.
 +
* Start by double clicking plugin.xml in the Package window. This will bring the plugin.xml file into the edit window.
 +
* Now click on the Extensions tab. You should see this:
 +
[[Image:rcp-menu-2.png|left|thumb]]<br style="clear:left;" />
 +
* Click the Add button and select "org.eclipse.ui.commands" and click Finish.
 +
[[Image:rcp-menu-3.png|left|thumb]]<br style="clear:left;" />

Revision as of 09:06, 3 March 2011

Add Menu to RCP Application

In this example I'll be adding a menu to an RCP application checked out from Simple Sample from RCP Course Repository

  • Start Eclipse and check out the example from our course's SVN repository.
  • Run the example and you should get something like this:
Rcp-menu-1.png

  • We'll now create a command (Exit) which we will later add to the menu (File) that we have yet to create.
  • Start by double clicking plugin.xml in the Package window. This will bring the plugin.xml file into the edit window.
  • Now click on the Extensions tab. You should see this:
Rcp-menu-2.png

  • Click the Add button and select "org.eclipse.ui.commands" and click Finish.
Rcp-menu-3.png