本文整理匯總了Java中com.intellij.openapi.editor.markup.TextAttributes.getErrorStripeColor方法的典型用法代碼示例。如果您正苦於以下問題:Java TextAttributes.getErrorStripeColor方法的具體用法?Java TextAttributes.getErrorStripeColor怎麽用?Java TextAttributes.getErrorStripeColor使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.intellij.openapi.editor.markup.TextAttributes
的用法示例。
在下文中一共展示了TextAttributes.getErrorStripeColor方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: errorColor
import com.intellij.openapi.editor.markup.TextAttributes; //導入方法依賴的package包/類
public static Color errorColor() {
TextAttributes attribute = EditorColorsManager.getInstance().getGlobalScheme().getAttributes(CodeInsightColors.ERRORS_ATTRIBUTES);
Color color = JBColor.RED;
if (attribute != null) {
if (attribute.getForegroundColor() != null) {
color = attribute.getForegroundColor();
} else if (attribute.getEffectColor() != null) {
color = attribute.getEffectColor();
} else if (attribute.getErrorStripeColor() != null) {
color = attribute.getErrorStripeColor();
}
}
return color;
}
示例2: warningColor
import com.intellij.openapi.editor.markup.TextAttributes; //導入方法依賴的package包/類
public static Color warningColor() {
TextAttributes attribute = EditorColorsManager.getInstance().getGlobalScheme().getAttributes(CodeInsightColors.WARNINGS_ATTRIBUTES);
Color color = JBColor.ORANGE;
if (attribute != null) {
if (attribute.getForegroundColor() != null) {
color = attribute.getForegroundColor();
} else if (attribute.getEffectColor() != null) {
color = attribute.getEffectColor();
} else if (attribute.getErrorStripeColor() != null) {
color = attribute.getErrorStripeColor();
}
}
return color;
}
示例3: getColorInner
import com.intellij.openapi.editor.markup.TextAttributes; //導入方法依賴的package包/類
@Nullable
public Color getColorInner() {
final EditorColorsManager manager = EditorColorsManager.getInstance();
if (manager != null) {
TextAttributes attributes = manager.getGlobalScheme().getAttributes(myKey);
Color stripe = attributes.getErrorStripeColor();
if (stripe != null) return stripe;
return attributes.getEffectColor();
}
TextAttributes defaultAttributes = myKey.getDefaultAttributes();
if (defaultAttributes == null) defaultAttributes = TextAttributes.ERASE_MARKER;
return defaultAttributes.getErrorStripeColor();
}
示例4: MyColorAndFontDescription
import com.intellij.openapi.editor.markup.TextAttributes; //導入方法依賴的package包/類
public MyColorAndFontDescription(@NotNull TextDiffType diffType, @NotNull EditorColorsScheme scheme) {
myScheme = scheme;
myDiffType = diffType;
TextAttributes attrs = diffType.getTextAttributes(myScheme);
myBackgroundColor = attrs.getBackgroundColor();
myStripebarColor = attrs.getErrorStripeColor();
myOriginalBackground = myBackgroundColor;
myOriginalStripebar = myStripebarColor;
}
示例5: getScrollmarkColor
import com.intellij.openapi.editor.markup.TextAttributes; //導入方法依賴的package包/類
@Nullable
private static Color getScrollmarkColor(TextAttributes textAttributes) {
if (textAttributes.getErrorStripeColor() != null) {
return textAttributes.getErrorStripeColor();
} else if (textAttributes.getBackgroundColor() != null) {
return textAttributes.getBackgroundColor().darker();
} else {
return null;
}
}
示例6: highlightPsiElement
import com.intellij.openapi.editor.markup.TextAttributes; //導入方法依賴的package包/類
private static void highlightPsiElement(@NotNull Project project,
@NotNull PsiElement psiElement, @NotNull Editor editor, @NotNull PsiFile file,
boolean shouldClear) {
final PsiElement target = SmartPointerManager.getInstance(psiElement.getProject())
.createSmartPsiElementPointer(psiElement)
.getElement();
if (target == null) {
return;
}
if (file instanceof PsiCompiledFile) {
file = ((PsiCompiledFile) file).getDecompiledPsiFile();
}
final Couple<List<TextRange>> usages = getUsages(target, file);
final List<TextRange> readRanges = usages.first;
final List<TextRange> writeRanges = usages.second;
final HighlightManager highlightManager = HighlightManager.getInstance(project);
if (shouldClear) {
clearHighlights(editor, highlightManager, readRanges);
clearHighlights(editor, highlightManager, writeRanges);
WindowManager.getInstance().getStatusBar(project).setInfo("");
return;
}
// TODO: 10/02/2017 pass target?
final TextAttributes ta = TextAttributesFactory.getInstance().get();
final Color scrollMarkColor;
if (ta.getErrorStripeColor() != null) {
scrollMarkColor = ta.getErrorStripeColor();
} else if (ta.getBackgroundColor() != null) {
scrollMarkColor = ta.getBackgroundColor().darker();
} else {
scrollMarkColor = null;
}
final String elementName = ElementDescriptionUtil.getElementDescription(target,
HighlightUsagesDescriptionLocation.INSTANCE);
// TODO: 06/02/2017 highlight write and read access
ArrayList<RangeHighlighter> highlighters = new ArrayList<>();
highlight(highlightManager, readRanges, editor, ta, highlighters, scrollMarkColor);
highlight(highlightManager, writeRanges, editor, ta, highlighters, scrollMarkColor);
final Document doc = editor.getDocument();
for (RangeHighlighter highlighter : highlighters) {
highlighter.setErrorStripeTooltip(
HighlightHandlerBase.getLineTextErrorStripeTooltip(doc,
highlighter.getStartOffset(), true));
}
int refCount = readRanges.size() + writeRanges.size();
String msg;
if (refCount > 0) {
msg = MessageFormat.format("{0} {0, choice, 1#usage|2#usages} of {1} found", refCount,
elementName);
} else {
msg = MessageFormat.format("No usages of {0} found", elementName);
}
WindowManager.getInstance().getStatusBar(project).setInfo(msg);
}
示例7: getTrafficRendererColor
import com.intellij.openapi.editor.markup.TextAttributes; //導入方法依賴的package包/類
@Override
public Color getTrafficRendererColor(@NotNull TextAttributes textAttributes) {
return textAttributes.getErrorStripeColor();
}
示例8: getTrafficRendererColor
import com.intellij.openapi.editor.markup.TextAttributes; //導入方法依賴的package包/類
public Color getTrafficRendererColor(@NotNull TextAttributes textAttributes) {
return textAttributes.getErrorStripeColor();
}