All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.ui.actions.CreateFolderAction Maven / Gradle / Ivy

There is a newer version: 3.22.400
Show newest version
/*******************************************************************************
 * Copyright (c) 2000, 2017 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * 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.core.runtime.Assert;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.window.IShellProvider;
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.BasicNewFolderResourceWizard;


/**
 * Standard action for creating a folder resource within the currently
 * selected folder or project.
 * 

* This class may be instantiated; it is not intended to be subclassed. *

* * @deprecated should use NewWizardMenu to populate a New submenu instead (see Navigator view) * @noextend This class is not intended to be subclassed by clients. */ @Deprecated public class CreateFolderAction extends SelectionListenerAction { /** * The id of this action. */ public static final String ID = PlatformUI.PLUGIN_ID + ".CreateFolderAction";//$NON-NLS-1$ /** * The shell in which to show any dialogs. */ protected IShellProvider shellProvider; /** * Creates a new action for creating a folder resource. * * @param shell the shell for any dialogs * * @deprecated {@link #CreateFolderAction(IShellProvider)} */ @Deprecated public CreateFolderAction(final Shell shell) { super(IDEWorkbenchMessages.CreateFolderAction_text); Assert.isNotNull(shell); shellProvider = () -> shell; initAction(); } /** * Creates a new action for creating a folder resource. * * @param provider the shell for any dialogs * * @deprecated see deprecated tag on class * @since 3.4 */ @Deprecated public CreateFolderAction(IShellProvider provider){ super(IDEWorkbenchMessages.CreateFolderAction_text); Assert.isNotNull(provider); shellProvider = provider; initAction(); } /** * Initializes for the constructor. */ private void initAction(){ setImageDescriptor(PlatformUI.getWorkbench().getSharedImages() .getImageDescriptor(ISharedImages.IMG_OBJ_FOLDER)); setToolTipText(IDEWorkbenchMessages.CreateFolderAction_toolTip); setId(ID); PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IIDEHelpContextIds.CREATE_FOLDER_ACTION); } /** * The CreateFolderAction implementation of this * IAction method opens a BasicNewFolderResourceWizard * in a wizard dialog under the shell passed to the constructor. */ @Override public void run() { BasicNewFolderResourceWizard wizard = new BasicNewFolderResourceWizard(); wizard.init(PlatformUI.getWorkbench(), getStructuredSelection()); wizard.setNeedsProgressMonitor(true); WizardDialog dialog = new WizardDialog(shellProvider.getShell(), wizard); dialog.create(); dialog.getShell().setText( IDEWorkbenchMessages.CreateFolderAction_title); PlatformUI.getWorkbench().getHelpSystem().setHelp(dialog.getShell(), IIDEHelpContextIds.NEW_FOLDER_WIZARD); dialog.open(); } /** * The CreateFolderAction implementation of this * SelectionListenerAction method enables the action only * if the selection contains folders and open projects. */ @Override protected boolean updateSelection(IStructuredSelection s) { if (!super.updateSelection(s)) { return false; } Iterator resources = getSelectedResources().iterator(); while (resources.hasNext()) { IResource resource = resources.next(); if (!resourceIsType(resource, IResource.PROJECT | IResource.FOLDER) || !resource.isAccessible()) { return false; } } return true; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy