/* * Copyright 2000-2013 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.intellij.refactoring.invertBoolean; import com.intellij.openapi.actionSystem.CommonDataKeys; import com.intellij.openapi.actionSystem.DataContext; import com.intellij.openapi.diagnostic.Logger; import com.intellij.openapi.editor.Editor; import com.intellij.openapi.editor.ScrollType; import com.intellij.openapi.extensions.Extensions; import com.intellij.openapi.project.Project; import com.intellij.psi.PsiElement; import com.intellij.psi.PsiFile; import com.intellij.refactoring.RefactoringActionHandler; import com.intellij.refactoring.RefactoringBundle; import com.intellij.refactoring.rename.PsiElementRenameHandler; import com.intellij.refactoring.util.CommonRefactoringUtil; import org.jetbrains.annotations.NotNull; /** * @author ven */ public class InvertBooleanHandler implements RefactoringActionHandler { public static final String INVERT_BOOLEAN_HELP_ID = "refactoring.invertBoolean"; static final String REFACTORING_NAME = RefactoringBundle.message("invert.boolean.title"); private static final Logger LOG = Logger.getInstance(InvertBooleanHandler.class); public void invoke(@NotNull Project project, Editor editor, PsiFile file, DataContext dataContext) { editor.getScrollingModel().scrollToCaret(ScrollType.MAKE_VISIBLE); PsiElement element = CommonDataKeys.PSI_ELEMENT.getData(dataContext); final InvertBooleanDelegate delegate = findDelegate(element, project, editor); if (delegate == null) { CommonRefactoringUtil.showErrorHint(project, editor, RefactoringBundle.getCannotRefactorMessage( RefactoringBundle.message("error.wrong.caret.position.method.or.variable.name")), REFACTORING_NAME, INVERT_BOOLEAN_HELP_ID); return; } final PsiElement namedElement = delegate.adjustElement(element, project, editor); if (namedElement != null && PsiElementRenameHandler.canRename(project, editor, namedElement)) { new InvertBooleanDialog(namedElement).show(); } } public static InvertBooleanDelegate findDelegate(PsiElement element, Project project, Editor editor) { for (InvertBooleanDelegate delegate : Extensions.getExtensions(InvertBooleanDelegate.EP_NAME)) { if (delegate.isVisibleOnElement(element)) { return delegate; } } return null; } public void invoke(@NotNull Project project, @NotNull PsiElement[] elements, DataContext dataContext) { LOG.assertTrue(elements.length == 1); final InvertBooleanDelegate delegate = findDelegate(elements[0], project, null); if (delegate == null) { CommonRefactoringUtil.showErrorHint(project, null, RefactoringBundle.getCannotRefactorMessage( RefactoringBundle.message("error.wrong.caret.position.method.or.variable.name")), REFACTORING_NAME, INVERT_BOOLEAN_HELP_ID); return; } PsiElement element = delegate.adjustElement(elements[0], project, null); if (element != null && PsiElementRenameHandler.canRename(project, null, element)) { new InvertBooleanDialog(element).show(); } } }