IDEA-110113 spellchecker always on in commit text field

This commit is contained in:
Dmitry Batrak
2014-01-09 18:44:22 +04:00
parent 07c3b8cfcb
commit b20f87d110
3 changed files with 57 additions and 8 deletions
@@ -1,5 +1,5 @@
/*
* Copyright 2000-2013 JetBrains s.r.o.
* Copyright 2000-2014 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.
@@ -79,10 +79,6 @@ public class InspectionProfileWrapper {
return myProfile.isToolEnabled(key, element);
}
public boolean isToolEnabled(final HighlightDisplayKey key) {
return myProfile.isToolEnabled(key);
}
public InspectionToolWrapper getInspectionTool(final String shortName, PsiElement element) {
return myProfile.getInspectionTool(shortName, element);
}
@@ -1,5 +1,5 @@
/*
* Copyright 2000-2010 JetBrains s.r.o.
* Copyright 2000-2014 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.
@@ -25,6 +25,7 @@ import com.intellij.codeInspection.ex.LocalInspectionToolWrapper;
import com.intellij.openapi.editor.ex.EditorEx;
import com.intellij.openapi.project.Project;
import com.intellij.psi.PsiDocumentManager;
import com.intellij.psi.PsiElement;
import com.intellij.psi.PsiFile;
import com.intellij.spellchecker.inspections.SpellCheckingInspection;
import com.intellij.ui.SimpleEditorCustomization;
@@ -152,8 +153,8 @@ public class SpellCheckingEditorCustomization extends SimpleEditorCustomization
}
@Override
public boolean isToolEnabled(HighlightDisplayKey key) {
return myDelegate.isToolEnabled(key) && SPELL_CHECK_TOOLS.containsKey(key.toString()) && myUseSpellCheck;
public boolean isToolEnabled(HighlightDisplayKey key, PsiElement element) {
return myDelegate.isToolEnabled(key, element) && SPELL_CHECK_TOOLS.containsKey(key.toString()) && myUseSpellCheck;
}
public void setUseSpellCheck(boolean useSpellCheck) {
@@ -0,0 +1,52 @@
/*
* Copyright 2000-2014 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.spellchecker.ui;
import com.intellij.codeInspection.ex.InspectionProfileImpl;
import com.intellij.openapi.editor.ex.EditorEx;
import com.intellij.openapi.fileTypes.PlainTextFileType;
import com.intellij.spellchecker.inspections.SpellCheckingInspection;
import com.intellij.testFramework.fixtures.LightPlatformCodeInsightFixtureTestCase;
public class SpellCheckingEditorCustomizationTest extends LightPlatformCodeInsightFixtureTestCase {
public void testEnabled() throws Exception {
doTest(true, "<TYPO descr=\"Typo: In word 'missspelling'\">missspelling</TYPO>");
}
public void testDisabled() throws Exception {
doTest(false, "missspelling");
}
@Override
protected boolean isWriteActionRequired() {
return false;
}
private void doTest(boolean enabled, String document) {
InspectionProfileImpl.INIT_INSPECTIONS = true;
try {
myFixture.configureByText(PlainTextFileType.INSTANCE, document);
myFixture.enableInspections(new SpellCheckingInspection());
SpellCheckingEditorCustomization.getInstance(enabled).customize((EditorEx)myFixture.getEditor());
myFixture.checkHighlighting();
}
finally {
InspectionProfileImpl.INIT_INSPECTIONS = false;
}
}
}