From Fedora Project Wiki

Line 9: Line 9:
* Window builder -> [http://dev.eclipse.org/svnroot/tools/org.eclipse.windowbuilder/trunk/org.eclipse.wb.discovery.ui/src/org/eclipse/wb/internal/discovery/ui/wizard/ swt InstallToolkitWizard]
* Window builder -> [http://dev.eclipse.org/svnroot/tools/org.eclipse.windowbuilder/trunk/org.eclipse.wb.discovery.ui/src/org/eclipse/wb/internal/discovery/ui/wizard/ swt InstallToolkitWizard]
* Window builder -> [http://www.eclipse.org/swt/ SWT]
* Window builder -> [http://www.eclipse.org/swt/ SWT]
* swt tutorial -> [http://www.eclipse.org/articles/article.php?file=Article-Understanding-Layouts/index.html eclipse.org]
* [http://rajakannappan.blogspot.com/2009/05/context-sensitive-help-in-eclipse.html Context Sensitive Help]
* [http://rajakannappan.blogspot.com/2009/05/context-sensitive-help-in-eclipse.html Context Sensitive Help]



Revision as of 13:29, 7 July 2011

Fedora Packager Process plug-in

Tickets

Resources

Challenges

  • To install window builder
yum --enablerepo=rawhide update eclipse-pde
Install Window Builder from http://download.eclipse.org/releases/indigo
  • Window Builder
To be able to create a new 'WizardNewCreationProject' -> import org.eclipse.ui.dialogs in manifest -> select SWT -> 'wizard page'-> 'org.eclipse.ui.dialogs.WizardNewCreationProject
  • If you want to change the 'project name' to 'package name' for instance.
you need to add your own string, then externalize the string.
public class projectNewWizard extends Wizard implements INewWizard {
    ......
    public void init(IWorkbench workbench, IStructuredSelection selection) {
      super.addPages();
      mainPage = new WizardNewProjectCreationPage(PAGE_NAME){ //$NON-NLS-1$
        public void createControl(Composite parent) {
        super.createControl(parent);
        Composite container = (Composite) getControl();
        // I want to do something here to override it....
        projectLabel.setText("Package Name"); // this string should be externalized
     

// Here is where it's declared.
public class WizardNewProjectCreationPage extends WizardPage {
    ....
    /**
    * Creates the project name specification controls.
    *
    * @param parent the parent composite
    */
    private final void createProjectNameGroup(Composite parent) {
    ....
       // new project label
       Label projectLabel = new Label(projectGroup, SWT.NONE);
       projectLabel.setText(IDEWorkbenchMessages.WizardNewProjectCreationPage_nameLabel);  // want to change this message in org.eclipse.ui.internal.ide.messages.properties