/* * Copyright 2000-2016 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.codeInspection.ex; import com.intellij.codeHighlighting.HighlightDisplayLevel; import com.intellij.codeInsight.daemon.HighlightDisplayKey; import com.intellij.codeInspection.InspectionProfile; import com.intellij.codeInspection.InspectionsBundle; import com.intellij.codeInspection.IntentionAndQuickFixAction; import com.intellij.codeInspection.LocalInspectionTool; import com.intellij.icons.AllIcons; import com.intellij.openapi.editor.Editor; import com.intellij.openapi.project.Project; import com.intellij.openapi.util.Iconable; import com.intellij.profile.codeInspection.InspectionProjectProfileManager; import com.intellij.psi.PsiFile; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import javax.swing.*; public class DisableInspectionToolAction extends IntentionAndQuickFixAction implements Iconable { private final String myToolId; public static final String NAME = InspectionsBundle.message("disable.inspection.action.name"); public DisableInspectionToolAction(LocalInspectionTool tool) { myToolId = tool.getShortName(); } public DisableInspectionToolAction(final HighlightDisplayKey key) { myToolId = key.toString(); } @NotNull @Override public String getName() { return NAME; } @Override @NotNull public String getFamilyName() { return NAME; } @Override public boolean isAvailable(@NotNull Project project, Editor editor, PsiFile file) { final InspectionProjectProfileManager profileManager = InspectionProjectProfileManager.getInstance(project); InspectionProfile inspectionProfile = profileManager.getCurrentProfile(); InspectionToolWrapper toolWrapper = inspectionProfile.getInspectionTool(myToolId, project); return toolWrapper == null || toolWrapper.getDefaultLevel() != HighlightDisplayLevel.NON_SWITCHABLE_ERROR; } @Override public void applyFix(@NotNull Project project, final PsiFile file, @Nullable Editor editor) { InspectionProfileModifiableModelKt.modifyAndCommitProjectProfile(project, it -> it.disableTool(myToolId, file)); } @Override public boolean startInWriteAction() { return false; } @Override public Icon getIcon(int flags) { return AllIcons.Actions.Cancel; } }