/* * 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.openapi.editor.impl; import com.intellij.openapi.editor.Document; import com.intellij.openapi.editor.ex.MarkupModelEx; import com.intellij.openapi.editor.ex.RangeHighlighterEx; import com.intellij.openapi.util.Getter; import org.jetbrains.annotations.NotNull; class RangeHighlighterTree extends RangeMarkerTree<RangeHighlighterEx> { private final MarkupModelEx myMarkupModel; RangeHighlighterTree(@NotNull Document document, @NotNull MarkupModelEx markupModel) { super(document); myMarkupModel = markupModel; } @Override protected int compareEqualStartIntervals(@NotNull IntervalNode<RangeHighlighterEx> i1, @NotNull IntervalNode<RangeHighlighterEx> i2) { RHNode o1 = (RHNode)i1; RHNode o2 = (RHNode)i2; int d = o2.myLayer - o1.myLayer; if (d != 0) { return d; } return super.compareEqualStartIntervals(i1, i2); } @NotNull @Override protected RHNode createNewNode(@NotNull RangeHighlighterEx key, int start, int end, boolean greedyToLeft, boolean greedyToRight, int layer) { return new RHNode(this, key, start, end, greedyToLeft, greedyToRight,layer); } static class RHNode extends RMNode<RangeHighlighterEx> { final int myLayer; RHNode(@NotNull RangeHighlighterTree rangeMarkerTree, @NotNull final RangeHighlighterEx key, int start, int end, boolean greedyToLeft, boolean greedyToRight, int layer) { super(rangeMarkerTree, key, start, end, greedyToLeft, greedyToRight); myLayer = layer; } //range highlighters are strongly referenced @Override protected Getter<RangeHighlighterEx> createGetter(@NotNull RangeHighlighterEx interval) { //noinspection unchecked return (Getter<RangeHighlighterEx>)interval; } } @Override void fireBeforeRemoved(@NotNull RangeHighlighterEx markerEx, @NotNull Object reason) { myMarkupModel.fireBeforeRemoved(markerEx); } }