/******************************************************************************* * Copyright (c) 2000, 2007 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 * *******************************************************************************/ package org.eclipse.dltk.internal.ui.actions; import org.eclipse.core.resources.IFolder; import org.eclipse.core.resources.IProject; import org.eclipse.core.resources.IResource; import org.eclipse.dltk.core.DLTKLanguageManager; import org.eclipse.dltk.core.IModelElement; import org.eclipse.dltk.core.IProjectFragment; import org.eclipse.dltk.core.IScriptFolder; import org.eclipse.dltk.core.IScriptProject; import org.eclipse.dltk.internal.corext.util.Messages; import org.eclipse.dltk.internal.ui.editor.ScriptEditor; import org.eclipse.dltk.ui.viewsupport.BasicElementLabels; import org.eclipse.jface.dialogs.IDialogConstants; import org.eclipse.jface.dialogs.MessageDialog; import org.eclipse.jface.dialogs.MessageDialogWithToggle; import org.eclipse.jface.preference.IPreferenceStore; import org.eclipse.swt.widgets.Shell; import org.eclipse.ui.editors.text.EditorsUI; import org.eclipse.ui.ide.ResourceUtil; import org.eclipse.ui.texteditor.AbstractDecoratedTextEditorPreferenceConstants; import org.eclipse.ui.texteditor.ITextEditor; import org.eclipse.ui.texteditor.ITextEditorExtension2; /* * http://dev.eclipse.org/bugs/show_bug.cgi?id=19104 */ public class ActionUtil { private ActionUtil() { } // bug 31998 we will have to disable renaming of linked packages (and cus) public static boolean mustDisableScriptModelAction(Shell shell, Object element) { if (!(element instanceof IScriptFolder) && !(element instanceof IProjectFragment)) return false; IResource resource = ResourceUtil.getResource(element); if ((resource == null) || (!(resource instanceof IFolder)) || (!resource.isLinked())) return false; MessageDialog.openInformation(shell, ActionMessages.ActionUtil_not_possible, ActionMessages.ActionUtil_no_linked); return true; } public static boolean isProcessable(ITextEditor editor) { if (editor == null) return true; Shell shell = editor.getSite().getShell(); IModelElement input = SelectionConverter.getInput(editor); // if a Java editor doesn't have an input of type Java element // then it is for sure not on the build path if (input == null) { MessageDialog.openInformation(shell, ActionMessages.ActionUtil_notOnBuildPath_title, ActionMessages.ActionUtil_notOnBuildPath_message); return false; } return isProcessable(shell, input); } public static boolean isProcessable(Shell shell, ScriptEditor editor) { if (editor == null) return true; IModelElement input = SelectionConverter.getInput(editor); // if a Script editor doesn't have an input of type Script element // then it is for sure not on the build path if (input == null) { MessageDialog.openInformation(shell, ActionMessages.ActionUtil_notOnBuildPath_title, ActionMessages.ActionUtil_notOnBuildPath_message); return false; } return isProcessable(shell, input); } public static boolean isProcessable(Shell shell, Object element) { if (!(element instanceof IModelElement)) return true; if (isOnBuildPath((IModelElement) element)) return true; MessageDialog.openInformation(shell, ActionMessages.ActionUtil_notOnBuildPath_title, ActionMessages.ActionUtil_notOnBuildPath_message); return false; } public static boolean isOnBuildPath(IModelElement element) { // fix for bug http://dev.eclipse.org/bugs/show_bug.cgi?id=20051 if (element.getElementType() == IModelElement.SCRIPT_PROJECT) return true; IScriptProject project = element.getScriptProject(); if (!project.isOnBuildpath(element)) return false; IProject resourceProject = project.getProject(); if (resourceProject == null) return false; if (DLTKLanguageManager.hasScriptNature(project.getProject())) { return true; } return false; } public static boolean areProcessable(Shell shell, IModelElement[] elements) { for (int i = 0; i < elements.length; i++) { if (!isOnBuildPath(elements[i])) { MessageDialog .openInformation( shell, ActionMessages.ActionUtil_notOnBuildPath_title, Messages .format( ActionMessages.ActionUtil_notOnBuildPath_resource_message, new Object[] { elements[i] .getPath() })); return false; } } return true; } /** * Check whether <code>editor</code> and <code>element</code> are * processable and editable. If the editor edits the element, the validation * is only performed once. If necessary, ask the user whether the file(s) * should be edited. * * @param editor * an editor, or <code>null</code> iff the action was not * executed from an editor * @param shell * a shell to serve as parent for a dialog * @param element * the element to check, cannot be <code>null</code> * @return <code>true</code> if the element can be edited, * <code>false</code> otherwise */ public static boolean isEditable(ITextEditor editor, Shell shell, IModelElement element) { if (editor != null) { IModelElement input = SelectionConverter.getInput(editor); if (input != null && input.equals(element .getAncestor(IModelElement.SOURCE_MODULE))) return isEditable(editor); else return isEditable(editor) && isEditable(shell, element); } return isEditable(shell, element); } public static boolean isEditable(ITextEditor editor) { if (!isProcessable(editor)) return false; if (editor instanceof ITextEditorExtension2) { return ((ITextEditorExtension2) editor).validateEditorInputState(); } return false; } public static boolean isEditable(Shell shell, IModelElement element) { if (!isProcessable(shell, element)) return false; IModelElement cu = element.getAncestor(IModelElement.SOURCE_MODULE); if (cu != null) { IResource resource = cu.getResource(); if (resource != null && resource.isDerived()) { // see // org.eclipse.ui.texteditor.AbstractDecoratedTextEditor#validateEditorInputState() final String warnKey = AbstractDecoratedTextEditorPreferenceConstants.EDITOR_WARN_IF_INPUT_DERIVED; IPreferenceStore store = EditorsUI.getPreferenceStore(); if (!store.getBoolean(warnKey)) return true; MessageDialogWithToggle toggleDialog = MessageDialogWithToggle .openYesNoQuestion( shell, ActionMessages.ActionUtil_warning_derived_title, Messages .format( ActionMessages.ActionUtil_warning_derived_message, BasicElementLabels .getPathLabel(resource .getFullPath(), false)), ActionMessages.ActionUtil_warning_derived_dontShowAgain, false, null, null); EditorsUI.getPreferenceStore().setValue(warnKey, !toggleDialog.getToggleState()); return toggleDialog.getReturnCode() == IDialogConstants.YES_ID; } } return true; } }