com.jetbrains.python.codeInsight.PyLineSeparatorUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of python-community Show documentation
Show all versions of python-community Show documentation
A packaging of the IntelliJ Community Edition python-community library.
This is release number 1 of trunk branch 142.
The newest version!
/*
* 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.jetbrains.python.codeInsight;
import com.intellij.codeHighlighting.Pass;
import com.intellij.codeInsight.daemon.LineMarkerInfo;
import com.intellij.openapi.application.ApplicationManager;
import com.intellij.openapi.editor.colors.CodeInsightColors;
import com.intellij.openapi.editor.colors.EditorColorsManager;
import com.intellij.openapi.editor.markup.SeparatorPlacement;
import com.intellij.openapi.util.Ref;
import com.intellij.psi.PsiElement;
import org.jetbrains.annotations.Nullable;
/**
* @author oleg
*/
public class PyLineSeparatorUtil {
private PyLineSeparatorUtil() {
}
public interface Provider {
boolean isSeparatorAllowed(PsiElement element);
}
@Nullable
public static LineMarkerInfo addLineSeparatorIfNeeded(final Provider provider,
final PsiElement element) {
final Ref info = new Ref(null);
ApplicationManager.getApplication().runReadAction(new Runnable() {
public void run() {
if (!provider.isSeparatorAllowed(element)) {
return;
}
boolean hasSeparableBefore = false;
final PsiElement parent = element.getParent();
if (parent == null) {
return;
}
for (PsiElement child : parent.getChildren()) {
if (child == element){
break;
}
if (provider.isSeparatorAllowed(child)) {
hasSeparableBefore = true;
break;
}
}
if (!hasSeparableBefore) {
return;
}
info.set(createLineSeparatorByElement(element));
}
});
return info.get();
}
private static LineMarkerInfo createLineSeparatorByElement(final PsiElement element) {
final LineMarkerInfo info = new LineMarkerInfo(element, element.getTextRange().getStartOffset(), null, Pass.UPDATE_ALL, null, null);
info.separatorColor = EditorColorsManager.getInstance().getGlobalScheme().getColor(CodeInsightColors.METHOD_SEPARATORS_COLOR);
info.separatorPlacement = SeparatorPlacement.TOP;
return info;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy