debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/newwizard/DebugRunProcessDialog.java
branchRCL_2_4
changeset 915 3b26c948790f
parent 913 f1dffcbe3e11
child 953 68b6a294ab01
--- a/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/newwizard/DebugRunProcessDialog.java	Wed Feb 10 09:22:42 2010 -0600
+++ b/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/newwizard/DebugRunProcessDialog.java	Wed Feb 10 13:45:43 2010 -0600
@@ -19,6 +19,7 @@
 
 import java.io.File;
 import java.text.MessageFormat;
+import java.util.List;
 
 import org.eclipse.cdt.core.model.CoreModel;
 import org.eclipse.cdt.core.settings.model.CProjectDescriptionEvent;
@@ -43,8 +44,6 @@
 import org.eclipse.swt.events.ControlEvent;
 import org.eclipse.swt.events.DisposeEvent;
 import org.eclipse.swt.events.DisposeListener;
-import org.eclipse.swt.events.FocusAdapter;
-import org.eclipse.swt.events.FocusEvent;
 import org.eclipse.swt.events.ModifyEvent;
 import org.eclipse.swt.events.ModifyListener;
 import org.eclipse.swt.events.SelectionAdapter;
@@ -156,9 +155,6 @@
 			attachToProcessRadioButton.setSelection(true);
 			break;
 		}
-		handleProjectExecutableRadioSelected();
-		handleRemoteExecutableRadioSelected();
-		handleAttachToProcessRadioSelected();
 	}
 
 	private void createPackageConfiguration(Composite composite) {
@@ -332,7 +328,8 @@
 
 
 	public void handleEvent(CProjectDescriptionEvent event) {
-		if (getShell().isDisposed()) {
+		Shell shell = getShell();
+		if (shell == null || shell.isDisposed()) {
 			return;
 		}
 		
@@ -365,29 +362,31 @@
 		}
 	}
 	
-	
-	
-	
-	
-	
-	
 	protected void initUI() {
-		projectExecutableViewer.setInput(data.getExes());
-		
-		if (data.getExeSelection() == EExeSelection.USE_PROJECT_EXECUTABLE && data.getExeSelectionPath() != null) {
-			projectExecutableViewer.setSelection(new StructuredSelection(data.getExeSelectionPath()));
+		List<IPath> exes = data.getExes();
+		projectExecutableViewer.setInput(exes);
+		IPath exeSelectionPath = data.getExeSelectionPath();
+		if (exeSelectionPath.equals(Path.EMPTY) && !exes.isEmpty())
+			exeSelectionPath = exes.get(0);
+		projectExecutableViewer.setSelection(new StructuredSelection(exeSelectionPath));
+		IPath remotePath = createSuggestedRemotePath(exeSelectionPath);
+		remoteProgramEntry.setText(PathUtils.convertPathToWindows(remotePath));
+
+		if (data.getExeSelection() == EExeSelection.USE_PROJECT_EXECUTABLE && exeSelectionPath != null) {
 			projectExecutableRadioButton.forceFocus();
 		}
 		
-		if (data.getExeSelection() == EExeSelection.USE_REMOTE_EXECUTABLE && data.getExeSelectionPath() != null) {
-			IPath exeSelectionPath = createSuggestedRemotePath(data.getExeSelectionPath());
-			remoteProgramEntry.setText(PathUtils.convertPathToWindows(exeSelectionPath));
+		if (data.getExeSelection() == EExeSelection.USE_REMOTE_EXECUTABLE && exeSelectionPath != null) {
 			remoteExecutableRadioButton.forceFocus();
 		}
 		
 		if (data.getExeSelection() == EExeSelection.ATTACH_TO_PROCESS) {
 			attachToProcessRadioButton.forceFocus();
 		}
+
+		handleProjectExecutableRadioSelected();
+		handleRemoteExecutableRadioSelected();
+		handleAttachToProcessRadioSelected();
 	}
 
 
@@ -451,7 +450,11 @@
 		if (projectExecutableRadioButton.getSelection()) {
 			projectExecutableViewer.getControl().setEnabled(true);
 			data.setExeSelection(EExeSelection.USE_PROJECT_EXECUTABLE);
-			
+			IPath selectedPath = (IPath) ((IStructuredSelection) projectExecutableViewer.getSelection()).getFirstElement();
+			if (selectedPath != null) {
+				String symbianPath = PathUtils.convertPathToWindows(selectedPath);
+				data.setExeSelectionPath(new Path(symbianPath));
+			}
 			validate();
 		} else {
 			projectExecutableViewer.getControl().setEnabled(false);
@@ -483,14 +486,12 @@
 
 		});
 		
-		remoteProgramEntry.addFocusListener(new FocusAdapter() {
-			@Override
-			public void focusLost(FocusEvent e) {
+		remoteProgramEntry.addModifyListener(new ModifyListener() {
+			public void modifyText(ModifyEvent e) {
 				data.setExeSelectionPath(new Path(remoteProgramEntry.getText().trim()));
 				validate();
 			}
 		});
-		
 	}
 
 	private void handleRemoteExecutableRadioSelected() {