blob: 1355ea26448fcf6c8db5f100c7290fc7202acf03 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.actions;
import java.util.Iterator;
import org.eclipse.core.resources.IResource;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.wizard.WizardDialog;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.ISharedImages;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.internal.ide.IDEWorkbenchMessages;
import org.eclipse.ui.internal.ide.IIDEHelpContextIds;
import org.eclipse.ui.wizards.newresource.BasicNewFileResourceWizard;
/**
* Standard action for creating a file resource within the currently
* selected folder or project.
* <p>
* This class may be instantiated; it is not intended to be subclassed.
* </p>
*
* @deprecated should use NewWizardMenu to populate a New submenu instead (see Navigator view)
*/
public class CreateFileAction extends SelectionListenerAction {
/**
* The id of this action.
*/
public static final String ID = PlatformUI.PLUGIN_ID + ".CreateFileAction";//$NON-NLS-1$
/**
* The shell in which to show any dialogs.
*/
private Shell shell;
/**
* Creates a new action for creating a file resource.
*
* @param shell the shell for any dialogs
*
* @deprecated see deprecated tag on class
*/
public CreateFileAction(Shell shell) {
super(IDEWorkbenchMessages.CreateFileAction_text);
if (shell == null) {
throw new IllegalArgumentException();
}
this.shell = shell;
setToolTipText(IDEWorkbenchMessages.CreateFileAction_toolTip);
setImageDescriptor(PlatformUI.getWorkbench().getSharedImages()
.getImageDescriptor(ISharedImages.IMG_OBJ_FILE));
setId(ID);
PlatformUI.getWorkbench().getHelpSystem().setHelp(this,
IIDEHelpContextIds.CREATE_FILE_ACTION);
}
/**
* The <code>CreateFileAction</code> implementation of this
* <code>IAction</code> method opens a <code>BasicNewFileResourceWizard</code>
* in a wizard dialog under the shell passed to the constructor.
*/
public void run() {
BasicNewFileResourceWizard wizard = new BasicNewFileResourceWizard();
wizard.init(PlatformUI.getWorkbench(), getStructuredSelection());
wizard.setNeedsProgressMonitor(true);
WizardDialog dialog = new WizardDialog(shell, wizard);
dialog.create();
dialog.getShell().setText(
IDEWorkbenchMessages.CreateFileAction_title);
PlatformUI.getWorkbench().getHelpSystem().setHelp(dialog.getShell(),
IIDEHelpContextIds.NEW_FILE_WIZARD);
dialog.open();
}
/**
* The <code>CreateFileAction</code> implementation of this
* <code>SelectionListenerAction</code> method enables the action only
* if the selection contains folders and open projects.
*/
protected boolean updateSelection(IStructuredSelection s) {
if (!super.updateSelection(s)) {
return false;
}
Iterator resources = getSelectedResources().iterator();
while (resources.hasNext()) {
IResource resource = (IResource) resources.next();
if (!resourceIsType(resource, IResource.PROJECT | IResource.FOLDER)
|| !resource.isAccessible()) {
return false;
}
}
return true;
}
}