debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/wizard/LaunchWizardSelectionPage.java
changeset 569 369485fbe634
parent 212 0e84cf0560e1
child 953 68b6a294ab01
equal deleted inserted replaced
561:f3a460c2cbae 569:369485fbe634
    60 	}
    60 	}
    61 
    61 
    62 	public void createDescriptionIn(Composite composite) {
    62 	public void createDescriptionIn(Composite composite) {
    63 		descriptionBrowser.createControl(composite);
    63 		descriptionBrowser.createControl(composite);
    64 		Control c = descriptionBrowser.getControl();
    64 		Control c = descriptionBrowser.getControl();
       
    65 		c.setData(".uid", "LaunchWizardSelection.descriptionBrowser");
    65 		GridData gd = new GridData(GridData.FILL_BOTH);
    66 		GridData gd = new GridData(GridData.FILL_BOTH);
    66 		gd.widthHint = 200;
    67 		gd.widthHint = 200;
    67 		c.setLayoutData(gd);
    68 		c.setLayoutData(gd);
    68 	}
    69 	}
    69 
    70 
    88 		
    89 		
    89 		Label label = new Label(container, SWT.NONE);
    90 		Label label = new Label(container, SWT.NONE);
    90 		label.setText(getLabel());
    91 		label.setText(getLabel());
    91 		GridData gd = new GridData();
    92 		GridData gd = new GridData();
    92 		label.setLayoutData(gd);
    93 		label.setLayoutData(gd);
       
    94 		label.setData(".uid", "LaunchWizardSelectionPage.label");
    93 		
    95 		
    94 		SashForm sashForm = new SashForm(container, SWT.VERTICAL);
    96 		SashForm sashForm = new SashForm(container, SWT.VERTICAL);
    95 		gd = new GridData(GridData.FILL_BOTH);
    97 		gd = new GridData(GridData.FILL_BOTH);
    96 		gd.widthHint = 300;
    98 		gd.widthHint = 300;
    97 		gd.heightHint = 300;
    99 		gd.heightHint = 300;
   113 
   115 
   114 		Dialog.applyDialogFont(container);
   116 		Dialog.applyDialogFont(container);
   115 		setControl(container);
   117 		setControl(container);
   116 
   118 
   117 		PlatformUI.getWorkbench().getHelpSystem().setHelp(getControl(), LaunchWizardHelpIds.WIZARD_SELECTION_PAGE);
   119 		PlatformUI.getWorkbench().getHelpSystem().setHelp(getControl(), LaunchWizardHelpIds.WIZARD_SELECTION_PAGE);
       
   120 	}
       
   121 	
       
   122 	public TableViewer getViewer() {
       
   123 		return wizardSelectionTableViewer;
   118 	}
   124 	}
   119 	
   125 	
   120 	public void selectionChanged(SelectionChangedEvent event) {
   126 	public void selectionChanged(SelectionChangedEvent event) {
   121 		selectedWizard = null;
   127 		selectedWizard = null;
   122 		setErrorMessage(null);
   128 		setErrorMessage(null);