/* * Copyright 2000-2016 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; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.awt.*; /** * An interface, defining size and representation of custom visual element in editor. * * @see InlayModel#addInlineElement(int, EditorCustomElementRenderer) * @see Inlay#getRenderer() */ public interface EditorCustomElementRenderer { /** * Defines width of custom element (in pixels) */ int calcWidthInPixels(@NotNull Editor editor); /** * Implements painting for the custom region. Rectangle passed as a parameter defines target region where painting should be performed. */ void paint(@NotNull Editor editor, @NotNull Graphics g, @NotNull Rectangle r); /** * Returns a registered id of action group, which is to be used for displaying context menu for the given custom element. * If <code>null</code> is returned, standard editor's context menu will be displayed upon corresponding mouse event. */ @Nullable default String getContextMenuGroupId() { return null; } }