Difference between revisions of "Teams Winter 2011/team2/lab3"
Line 1: | Line 1: | ||
=Tutorial= | =Tutorial= | ||
− | + | In this tutorial, | |
==Prerequisites== | ==Prerequisites== | ||
*Download [http://www.eclipse.org/downloads/packages/eclipse-rcp-and-rap-developers/heliossr2 Eclipse RCP & RAP Developer] | *Download [http://www.eclipse.org/downloads/packages/eclipse-rcp-and-rap-developers/heliossr2 Eclipse RCP & RAP Developer] | ||
Line 15: | Line 15: | ||
[[File:Wiz4wT2.png]] | [[File:Wiz4wT2.png]] | ||
*Since we decided to use a template to create our first project, there are already a few predefined classes that we will alter to suit our requirements for this lab. | *Since we decided to use a template to create our first project, there are already a few predefined classes that we will alter to suit our requirements for this lab. | ||
− | * | + | *What you should see in your Eclipse environment is something that looks very similar to the picture below |
+ | [[File:EclipseStartT2.png]] | ||
+ | *In the "MANIFEST" file, click on "Launch an Eclipse Application", this will run the "Hello RCP" template program that has not been edited yet. Running this application as is will result in a window to pop-up. | ||
+ | [[File:ManiRun1T2.png]][[File:FWindowpopT2.png]] | ||
+ | *Lets open "ApplicationWorkbenchWindowAdvisor.java" file so we can alter the window of our application. | ||
+ | *Replace the following method with the one below | ||
+ | <pre> | ||
+ | public void preWindowOpen() { | ||
+ | //Retrieves the main window | ||
+ | IWorkbenchWindowConfigurer configurer = getWindowConfigurer(); | ||
+ | //Sets the size of the window | ||
+ | configurer.setInitialSize(new Point(600, 500)); | ||
+ | |||
+ | //Header bar becomes available | ||
+ | configurer.setShowCoolBar(true); | ||
+ | |||
+ | //Footer bar becomes available | ||
+ | configurer.setShowStatusLine(true); | ||
+ | |||
+ | //Title of the window | ||
+ | configurer.setTitle("My First RCP Application"); //$NON-NLS-1$ | ||
+ | } |
Revision as of 21:02, 11 March 2011
Tutorial
In this tutorial,
Prerequisites
- Download Eclipse RCP & RAP Developer
Create a RCP Application
- Run Eclipse
- Select/Enter your preferred workspace in the text box provided and click okay
- After Eclipse has completed loaded, create a plug-in project by clicking on "File" on the menu bar then scroll to New->Project->Other. A wizard should pop-up in which you should progress to click on the "Plugin-in Development" tree, select "Plug-in Project", and click next.
- Enter the following information that is seen in the image below
- Since we decided to use a template to create our first project, there are already a few predefined classes that we will alter to suit our requirements for this lab.
- What you should see in your Eclipse environment is something that looks very similar to the picture below
- In the "MANIFEST" file, click on "Launch an Eclipse Application", this will run the "Hello RCP" template program that has not been edited yet. Running this application as is will result in a window to pop-up.
- Lets open "ApplicationWorkbenchWindowAdvisor.java" file so we can alter the window of our application.
- Replace the following method with the one below
public void preWindowOpen() { //Retrieves the main window IWorkbenchWindowConfigurer configurer = getWindowConfigurer(); //Sets the size of the window configurer.setInitialSize(new Point(600, 500)); //Header bar becomes available configurer.setShowCoolBar(true); //Footer bar becomes available configurer.setShowStatusLine(true); //Title of the window configurer.setTitle("My First RCP Application"); //$NON-NLS-1$ }