/* * Copyright 2000-2017 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.application.options.colors.highlighting; import com.intellij.codeInsight.daemon.impl.ParameterHintsPresentationManager; import com.intellij.openapi.editor.Editor; import com.intellij.openapi.editor.EditorCustomElementRenderer; import com.intellij.openapi.editor.Inlay; import com.intellij.openapi.editor.colors.EditorColorsScheme; import com.intellij.openapi.editor.colors.TextAttributesKey; import com.intellij.openapi.editor.markup.TextAttributes; import com.intellij.openapi.util.Disposer; import org.jetbrains.annotations.NotNull; import java.awt.*; import java.util.Collection; import java.util.List; import java.util.Map; import static com.intellij.openapi.editor.colors.CodeInsightColors.BLINKING_HIGHLIGHTS_ATTRIBUTES; public class InlineElementData extends HighlightData { private final String myText; private boolean myAddBorder; public InlineElementData(int offset, TextAttributesKey attributesKey, String text) { this(offset, attributesKey, text, false); } private InlineElementData(int offset, TextAttributesKey attributesKey, String text, boolean highlighted) { super(offset, offset, attributesKey); myText = text; myAddBorder = highlighted; } public String getText() { return myText; } @Override public void addHighlToView(Editor view, EditorColorsScheme scheme, Map<TextAttributesKey, String> displayText) { int offset = getStartOffset(); ParameterHintsPresentationManager.getInstance().addHint(view, offset, myText, false, false); List<Inlay> inlays = view.getInlayModel().getInlineElementsInRange(offset, offset); for (Inlay inlay : inlays) { EditorCustomElementRenderer renderer = inlay.getRenderer(); if (!(renderer instanceof RendererWrapper)) { Disposer.dispose(inlay); RendererWrapper wrapper = new RendererWrapper(renderer); wrapper.drawBorder = myAddBorder; view.getInlayModel().addInlineElement(offset, wrapper); } } } @Override public void addToCollection(@NotNull Collection<HighlightData> list, boolean highlighted) { list.add(new InlineElementData(getStartOffset(), getHighlightKey(), myText, highlighted)); } public static class RendererWrapper implements EditorCustomElementRenderer { private final EditorCustomElementRenderer myDelegate; private boolean drawBorder; public RendererWrapper(EditorCustomElementRenderer delegate) { myDelegate = delegate; } @Override public int calcWidthInPixels(@NotNull Editor editor) { return myDelegate.calcWidthInPixels(editor); } @Override public void paint(@NotNull Editor editor, @NotNull Graphics g, @NotNull Rectangle r) { myDelegate.paint(editor, g, r); if (drawBorder) { TextAttributes attributes = editor.getColorsScheme().getAttributes(BLINKING_HIGHLIGHTS_ATTRIBUTES); if (attributes != null && attributes.getEffectColor() != null) { g.setColor(attributes.getEffectColor()); g.drawRect(r.x, r.y, r.width, r.height); } } } } }