/* * Copyright 2000-2015 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.codeEditor.printing; import com.intellij.codeInsight.daemon.LineMarkerInfo; import com.intellij.codeInsight.daemon.impl.LineMarkersPass; import com.intellij.openapi.editor.Document; import com.intellij.openapi.editor.markup.SeparatorPlacement; import com.intellij.psi.PsiFile; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.List; public class FileSeparatorProvider { @Nullable public static List<LineMarkerInfo> getFileSeparators(PsiFile file, final Document document) { final List<LineMarkerInfo> result = new ArrayList<>(); for (LineMarkerInfo lineMarkerInfo : LineMarkersPass.queryLineMarkers(file, document)) { if (lineMarkerInfo.separatorColor != null) { result.add(lineMarkerInfo); } } Collections.sort(result, (i1, i2) -> getDisplayLine(i1, document) - getDisplayLine(i2, document)); return result; } public static int getDisplayLine(@NotNull LineMarkerInfo lineMarkerInfo, @NotNull Document document) { int offset = lineMarkerInfo.separatorPlacement == SeparatorPlacement.TOP ? lineMarkerInfo.startOffset : lineMarkerInfo.endOffset; return document.getLineNumber(Math.min(document.getTextLength(), Math.max(0, offset))) + (lineMarkerInfo.separatorPlacement == SeparatorPlacement.TOP ? 0 : 1); } }