/* * Copyright 2000-2012 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.codeInsight.lookup; import com.intellij.openapi.util.text.StringUtil; import com.intellij.ui.JBColor; import com.intellij.util.SmartList; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import javax.swing.*; import java.awt.*; import java.util.Collections; import java.util.List; /** * @author peter */ public class LookupElementPresentation { private Icon myIcon; private Icon myTypeIcon; private String myItemText; private String myTypeText; private boolean myStrikeout; private Color myItemTextForeground = JBColor.foreground(); private boolean myItemTextBold; private boolean myItemTextUnderlined; private boolean myTypeGrayed; @Nullable private List<TextFragment> myTail; public void setIcon(@Nullable Icon icon) { myIcon = icon; } public void setItemText(@Nullable String text) { myItemText = text; } public void setStrikeout(boolean strikeout) { myStrikeout = strikeout; } public void setItemTextBold(boolean bold) { myItemTextBold = bold; } public void setTailText(@Nullable String text) { setTailText(text, false); } public void clearTail() { myTail = null; } public void appendTailText(@NotNull String text, boolean grayed) { appendTailText(new TextFragment(text, grayed, false, null)); } public void appendTailTextItalic(@NotNull String text, boolean grayed) { appendTailText(new TextFragment(text, grayed, true, null)); } private void appendTailText(@NotNull TextFragment fragment) { if (myTail == null) { myTail = new SmartList<>(); } myTail.add(fragment); } public void setTailText(@Nullable String text, boolean grayed) { clearTail(); if (text != null) { appendTailText(new TextFragment(text, grayed, false, null)); } } public void setTailText(@Nullable String text, @Nullable Color foreground) { clearTail(); if (text != null) { appendTailText(new TextFragment(text, false, false, foreground)); } } public void setTypeText(@Nullable String text) { setTypeText(text, null); } public void setTypeText(@Nullable String text, @Nullable Icon icon) { myTypeText = text; myTypeIcon = icon; } /** * Is equivalent to instanceof {@link RealLookupElementPresentation} check. * * @return whether the presentation is requested to actually render lookup element on screen, or just to estimate its width. * In the second, 'non-real' case, some heavy operations (e.g. getIcon()) can be omitted (only icon width is important) */ public boolean isReal() { return false; } @Nullable public Icon getIcon() { return myIcon; } @Nullable public Icon getTypeIcon() { return myTypeIcon; } @Nullable public String getItemText() { return myItemText; } @NotNull public List<TextFragment> getTailFragments() { return myTail == null ? Collections.emptyList() : Collections.unmodifiableList(myTail); } @Nullable public String getTailText() { if (myTail == null) return null; return StringUtil.join(myTail, fragment -> fragment.text, ""); } @Nullable public String getTypeText() { return myTypeText; } public boolean isStrikeout() { return myStrikeout; } @Deprecated public boolean isTailGrayed() { return myTail != null && myTail.get(0).myGrayed; } @Nullable @Deprecated public Color getTailForeground() { return myTail != null ? myTail.get(0).myFgColor : null; } public boolean isItemTextBold() { return myItemTextBold; } public boolean isItemTextUnderlined() { return myItemTextUnderlined; } public void setItemTextUnderlined(boolean itemTextUnderlined) { myItemTextUnderlined = itemTextUnderlined; } @NotNull public Color getItemTextForeground() { return myItemTextForeground; } public void setItemTextForeground(@NotNull Color itemTextForeground) { myItemTextForeground = itemTextForeground; } public void copyFrom(@NotNull LookupElementPresentation presentation) { myIcon = presentation.myIcon; myTypeIcon = presentation.myTypeIcon; myItemText = presentation.myItemText; List<TextFragment> thatTail = presentation.myTail; myTail = thatTail == null ? null : new SmartList<>(thatTail); myTypeText = presentation.myTypeText; myStrikeout = presentation.myStrikeout; myItemTextBold = presentation.myItemTextBold; myTypeGrayed = presentation.myTypeGrayed; myItemTextUnderlined = presentation.myItemTextUnderlined; myItemTextForeground = presentation.myItemTextForeground; } public boolean isTypeGrayed() { return myTypeGrayed; } public void setTypeGrayed(boolean typeGrayed) { myTypeGrayed = typeGrayed; } public static LookupElementPresentation renderElement(LookupElement element) { LookupElementPresentation presentation = new LookupElementPresentation(); element.renderElement(presentation); return presentation; } @Override public String toString() { return "LookupElementPresentation{" + ", itemText='" + myItemText + '\'' + ", tail=" + myTail + ", typeText='" + myTypeText + '\'' + '}'; } public static class TextFragment { public final String text; private final boolean myGrayed; private final boolean myItalic; @Nullable private final Color myFgColor; private TextFragment(String text, boolean grayed, boolean italic, @Nullable Color fgColor) { this.text = text; myGrayed = grayed; myItalic = italic; myFgColor = fgColor; } @Override public String toString() { return "TextFragment{" + "text='" + text + '\'' + ", grayed=" + myGrayed + ", fgColor=" + myFgColor + '}'; } public boolean isGrayed() { return myGrayed; } public boolean isItalic() { return myItalic; } @Nullable public Color getForegroundColor() { return myFgColor; } } }