X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/wizards/HTMLFileWizardPage.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/wizards/HTMLFileWizardPage.java index 554b6b4..dc70027 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/wizards/HTMLFileWizardPage.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/wizards/HTMLFileWizardPage.java @@ -9,14 +9,10 @@ package net.sourceforge.phpeclipse.wizards; Contributors: IBM Corporation - Initial implementation - Klaus Hartlage - www.eclipseproject.de + www.phpeclipse.de **********************************************************************/ -import net.sourceforge.phpdt.internal.ui.util.PHPFileUtil; - import org.eclipse.core.resources.IContainer; -import org.eclipse.core.resources.IFolder; -import org.eclipse.core.resources.IProject; import org.eclipse.core.resources.IResource; import org.eclipse.core.resources.ResourcesPlugin; import org.eclipse.core.runtime.IPath; @@ -45,7 +41,9 @@ import org.eclipse.ui.dialogs.ContainerSelectionDialog; */ public class HTMLFileWizardPage extends WizardPage { - private Text containerText; + private static final String INITIAL_FILENAME = "file.html"; + +private Text containerText; private Text fileText; @@ -53,7 +51,7 @@ public class HTMLFileWizardPage extends WizardPage { /** * Constructor for SampleNewWizardPage. - * + * * @param pageName */ public HTMLFileWizardPage(ISelection selection) { @@ -125,9 +123,10 @@ public class HTMLFileWizardPage extends WizardPage { else container = ((IResource) obj).getParent(); containerText.setText(container.getFullPath().toString()); + fileText.setFocus(); } } - fileText.setText("*.html"); + fileText.setText(INITIAL_FILENAME); } /** @@ -165,10 +164,6 @@ public class HTMLFileWizardPage extends WizardPage { return; } -// if (!PHPFileUtil.isPHPFileName(fileName)) { -// updateStatus(PHPWizardMessages.getString("WizardPage.mustBePHP")); -// return; -// } updateStatus(null); } @@ -193,43 +188,51 @@ public class HTMLFileWizardPage extends WizardPage { } /** - * Finds the current directory where the file should be created - */ - protected boolean checkFolderForExistingFile() { - boolean result = false; - - if (containerText.getText() != null) { - IPath containerPath = new Path(containerText.getText().trim()); - if (containerPath.segmentCount() > 1) { - IFolder container = ResourcesPlugin.getWorkspace().getRoot().getFolder( - containerPath); - if (container != null && container.exists()) { - IResource file = container.getFile(fileText.getText().trim()); - if (file != null && file.exists()) { - this.setErrorMessage(PHPWizardMessages - .getString("WizardPage.fileAlreadyExists")); - result = true; - } - } - } else { - // this is a project - IProject project = ResourcesPlugin.getWorkspace().getRoot().getProject( - containerText.getText().trim()); - if (project != null && project.exists()) { - IResource file = project.getFile(fileText.getText().trim()); - if (file != null && file.exists()) { - this.setErrorMessage(PHPWizardMessages - .getString("WizardPage.fileAlreadyExists")); - result = true; - } - } - } - } - - if (!result) - ((HTMLFileWizard) this.getWizard()).setFileName(fileText.getText().trim()); - - return result; - } + * Finds the current directory where the file should be created + */ + protected boolean checkFolderForExistingFile() { + IContainer container = getFileContainer(); + if (container != null) { + IResource file = container.getFile(new Path(fileText.getText() + .trim())); + if (file != null && file.exists()) { + this.setErrorMessage(PHPWizardMessages + .getString("WizardPage.fileAlreadyExists")); + return true; + } + } + return false; + } + + private IContainer getFileContainer() { + if (containerText.getText() != null) { + IPath containerPath = new Path(containerText.getText().trim()); + IContainer container; + if (containerPath.segmentCount() > 1) { + container = ResourcesPlugin.getWorkspace().getRoot().getFolder( + containerPath); + } else { + // this is a project + container = ResourcesPlugin.getWorkspace().getRoot() + .getProject(containerText.getText().trim()); + } + if (container != null && container.exists()) { + return container; + } + } + return null; + } + + public void setVisible(boolean visible) { + super.setVisible(visible); + if (visible) { + String fileName=fileText.getText().trim(); + if (getFileContainer() != null && fileName.equalsIgnoreCase(INITIAL_FILENAME)) { + fileText.setFocus(); + fileText.setText(fileName); + fileText.setSelection(0, fileName.length()-(new Path(INITIAL_FILENAME)).getFileExtension().length()-1); + } + } + } } \ No newline at end of file