当前位置: 首页>>代码示例>>Java>>正文


Java TextAttributes.getErrorStripeColor方法代码示例

本文整理汇总了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;
}
 
开发者ID:vsch,项目名称:MissingInActions,代码行数:15,代码来源:Utils.java

示例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;
}
 
开发者ID:vsch,项目名称:MissingInActions,代码行数:15,代码来源:Utils.java

示例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();
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:14,代码来源:HighlightDisplayLevel.java

示例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;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:10,代码来源:DiffOptionsPanel.java

示例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;
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:11,代码来源:VariableInlineHandler.java

示例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);
}
 
开发者ID:huoguangjin,项目名称:MultiHighlight,代码行数:66,代码来源:MultiHighlightHandler.java

示例7: getTrafficRendererColor

import com.intellij.openapi.editor.markup.TextAttributes; //导入方法依赖的package包/类
@Override
public Color getTrafficRendererColor(@NotNull TextAttributes textAttributes) {
  return textAttributes.getErrorStripeColor();
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:5,代码来源:SpellCheckerSeveritiesProvider.java

示例8: getTrafficRendererColor

import com.intellij.openapi.editor.markup.TextAttributes; //导入方法依赖的package包/类
public Color getTrafficRendererColor(@NotNull TextAttributes textAttributes) {
  return textAttributes.getErrorStripeColor();
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:4,代码来源:SeveritiesProvider.java


注:本文中的com.intellij.openapi.editor.markup.TextAttributes.getErrorStripeColor方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。