Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2006-01-12 18:05:40 +0000
committerDarin Wright2006-01-12 18:05:40 +0000
commit8a9b7076cfc81879bddda2220abd0f6ae3714510 (patch)
treecba44df31c9612ae948432f199b9f47374237704 /org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsDialog.java
parent49f1f0dd829d76ea620f3883b81bd279dae1c184 (diff)
downloadeclipse.platform.debug-8a9b7076cfc81879bddda2220abd0f6ae3714510.tar.gz
eclipse.platform.debug-8a9b7076cfc81879bddda2220abd0f6ae3714510.tar.xz
eclipse.platform.debug-8a9b7076cfc81879bddda2220abd0f6ae3714510.zip
Bug 19521 - Launching classes from closed projects
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsDialog.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsDialog.java22
1 files changed, 13 insertions, 9 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsDialog.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsDialog.java
index e0aaf6aac..0ae49752c 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsDialog.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsDialog.java
@@ -82,6 +82,7 @@ import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Display;
+import org.eclipse.swt.widgets.Group;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.ToolBar;
@@ -356,7 +357,7 @@ public class LaunchConfigurationsDialog extends TitleAreaDialog implements ILaun
topComp.setLayoutData(gd);
GridLayout topLayout = new GridLayout(2, false);
topLayout.marginHeight = 5;
- topLayout.marginWidth = 0;
+ topLayout.marginWidth = 5;
topComp.setLayout(topLayout);
// Set the things that TitleAreaDialog takes care of
@@ -662,22 +663,25 @@ public class LaunchConfigurationsDialog extends TitleAreaDialog implements ILaun
*/
protected Control createLaunchConfigurationSelectionArea(Composite parent) {
Font font = parent.getFont();
- Composite comp = new Composite(parent, SWT.NONE);
+ Group comp = new Group(parent, SWT.NONE);
+ comp.setText(LaunchConfigurationsMessages.LaunchConfigurationDialog_Launch_Con_figurations__1);
setSelectionArea(comp);
GridLayout layout = new GridLayout();
layout.numColumns = 1;
- layout.marginHeight = 0;
- layout.marginWidth = 5;
+// layout.marginHeight = 0;
+// layout.marginWidth = 5;
comp.setLayout(layout);
comp.setFont(font);
+
+// //create the tree view
+// Label treelabel = new Label(comp, SWT.NONE);
+// treelabel.setText(LaunchConfigurationsMessages.LaunchConfigurationDialog_Launch_Con_figurations__1);
+// treelabel.setFont(font);
+
//create the toolbar area
createToolbarArea(comp);
-
- //create the tree view
- Label treelabel = new Label(comp, SWT.NONE);
- treelabel.setText(LaunchConfigurationsMessages.LaunchConfigurationDialog_Launch_Con_figurations__1);
- treelabel.setFont(font);
+
fLaunchConfigurationView = new LaunchConfigurationView(getLaunchGroup());
fLaunchConfigurationView.createLaunchDialogControl(comp);
fDoubleClickAction = new Action() {

Back to the top