Importing the XDebugProxy code in the HEAD. The repo was tagged with T_BEFORE_XDEBUGP...
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.ui / src / net / sourceforge / phpeclipse / xdebug / ui / EditPathMapDialog.java
diff --git a/net.sourceforge.phpeclipse.xdebug.ui/src/net/sourceforge/phpeclipse/xdebug/ui/EditPathMapDialog.java b/net.sourceforge.phpeclipse.xdebug.ui/src/net/sourceforge/phpeclipse/xdebug/ui/EditPathMapDialog.java
new file mode 100644 (file)
index 0000000..6f1e882
--- /dev/null
@@ -0,0 +1,104 @@
+/*
+ * Created on 12.02.2004
+ *
+ * To change the template for this generated file go to
+ * Window>Preferences>Java>Code Generation>Code and Comments
+ */
+package net.sourceforge.phpeclipse.xdebug.ui;
+
+import net.sourceforge.phpdt.internal.ui.dialogs.StatusDialog;
+
+import org.eclipse.swt.SWT;
+import org.eclipse.swt.events.SelectionAdapter;
+import org.eclipse.swt.events.SelectionEvent;
+import org.eclipse.swt.layout.GridData;
+import org.eclipse.swt.layout.GridLayout;
+import org.eclipse.swt.widgets.Button;
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.swt.widgets.Control;
+import org.eclipse.swt.widgets.DirectoryDialog;
+import org.eclipse.swt.widgets.Label;
+import org.eclipse.swt.widgets.Shell;
+import org.eclipse.swt.widgets.Text;
+
+/**
+ * @author Christian
+ *
+ * To change the template for this generated type comment go to
+ * Window>Preferences>Java>Code Generation>Code and Comments
+ */
+public class EditPathMapDialog extends StatusDialog {
+       
+
+       private Text fLocalPathText;
+       private Text fRemotePathText;
+       private String[] fInitialValues;
+       private String fLocalPath;
+       private String fRemotePath; 
+       
+       public EditPathMapDialog(Shell parentShell, String aDialogTitle, String[] initialValues) {
+               super(parentShell);
+               setTitle(aDialogTitle);
+               fInitialValues= initialValues;
+       }
+       
+       protected void okPressed() {
+               fLocalPath= fLocalPathText.getText();
+               fRemotePath = fRemotePathText.getText();
+               super.okPressed();
+       }
+       protected Control createDialogArea(Composite composite) {
+               Composite comp = new Composite(composite, SWT.NONE);
+               comp.setLayout(new GridLayout());       
+                               
+               Composite fileComp= new Composite(comp,SWT.NONE);
+               GridLayout gridLayout = new GridLayout();               
+               gridLayout.numColumns = 3;
+//             gridLayout.marginHeight = 0;
+//             gridLayout.marginWidth = 0;
+               fileComp.setLayout(gridLayout);
+                               
+               Label label= new Label(fileComp,SWT.NONE);
+               label.setText("Local_Path");
+               
+               
+               fLocalPathText = new Text(fileComp,SWT.SINGLE | SWT.BORDER);
+               GridData gd = new GridData();
+               gd.widthHint=250;
+               fLocalPathText.setLayoutData(gd);
+               fLocalPathText.setText(fInitialValues[0]);
+               Button button= new Button(fileComp, SWT.PUSH);
+               button.setText("Browse"); 
+               button.addSelectionListener(new SelectionAdapter() {
+                       public void widgetSelected(SelectionEvent e) {
+                               handleBrowseButtonSelected();
+                       }
+               });
+               label= new Label(fileComp,SWT.NONE);
+               label.setText("Remote Path");
+               fRemotePathText = new Text(fileComp,SWT.SINGLE | SWT.BORDER);
+               fRemotePathText.setText(fInitialValues[1]);
+               gd = new GridData(GridData.HORIZONTAL_ALIGN_FILL);
+               gd.horizontalSpan = 2;
+               fRemotePathText.setLayoutData(gd);
+               
+               return composite;
+       }
+       
+       public String[] getPathPair() {
+               return new String[] {fLocalPath,fRemotePath};
+       }
+       
+       
+       private void handleBrowseButtonSelected() {
+               DirectoryDialog dd = new DirectoryDialog(getShell(),SWT.OPEN);
+               dd.setMessage("Select the directory to map");
+               String path=dd.open();
+               
+               if (path != null)
+                       fLocalPathText.setText(path);
+               
+       }
+
+
+}