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


Java EditorGutterComponentEx.getAnnotationsAreaOffset方法代码示例

本文整理汇总了Java中com.intellij.openapi.editor.ex.EditorGutterComponentEx.getAnnotationsAreaOffset方法的典型用法代码示例。如果您正苦于以下问题:Java EditorGutterComponentEx.getAnnotationsAreaOffset方法的具体用法?Java EditorGutterComponentEx.getAnnotationsAreaOffset怎么用?Java EditorGutterComponentEx.getAnnotationsAreaOffset使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.intellij.openapi.editor.ex.EditorGutterComponentEx的用法示例。


在下文中一共展示了EditorGutterComponentEx.getAnnotationsAreaOffset方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: paint

import com.intellij.openapi.editor.ex.EditorGutterComponentEx; //导入方法依赖的package包/类
@Override
public void paint(Editor editor, Graphics g, Rectangle range) {
  EditorGutterComponentEx gutter = ((EditorEx)editor).getGutterComponentEx();
  Graphics2D g2 = (Graphics2D)g;
  int x1 = 0;
  int x2 = x1 + gutter.getWidth();
  int y = range.y;
  int height = range.height;

  int annotationsOffset = gutter.getAnnotationsAreaOffset();
  int annotationsWidth = gutter.getAnnotationsAreaWidth();
  if (annotationsWidth != 0) {
    drawMarker(editor, g2, x1, annotationsOffset, y, height, false);
    x1 = annotationsOffset + annotationsWidth;
  }

  if (myIgnoredFoldingOutline) {
    int xOutline = gutter.getWhitespaceSeparatorOffset();
    drawMarker(editor, g2, xOutline, x2, y, height, true);
    drawMarker(editor, g2, x1, xOutline, y, height, false);
  } else {
    drawMarker(editor, g2, x1, x2, y, height, false);
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:25,代码来源:DiffLineMarkerRenderer.java

示例2: paint

import com.intellij.openapi.editor.ex.EditorGutterComponentEx; //导入方法依赖的package包/类
@Override
public void paint(Editor editor, Graphics g, Rectangle r) {
  if (!myCondition.get()) return;

  int y = r.y;
  int lineHeight = myEditor.getLineHeight();

  EditorGutterComponentEx gutter = ((EditorEx)editor).getGutterComponentEx();
  int annotationsOffset = gutter.getAnnotationsAreaOffset();
  int annotationsWidth = gutter.getAnnotationsAreaWidth();
  if (annotationsWidth != 0) {
    g.setColor(editor.getColorsScheme().getColor(EditorColors.GUTTER_BACKGROUND));
    g.fillRect(annotationsOffset, y, annotationsWidth, lineHeight);
  }

  draw(g, 0, y, lineHeight, myEditor.getColorsScheme());
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:18,代码来源:DiffLineSeparatorRenderer.java

示例3: paint

import com.intellij.openapi.editor.ex.EditorGutterComponentEx; //导入方法依赖的package包/类
@Override
public void paint(Editor editor, Graphics g, Rectangle range) {
  EditorGutterComponentEx gutter = ((EditorEx)editor).getGutterComponentEx();
  Graphics2D g2 = (Graphics2D)g;
  int x1 = 0;
  int x2 = x1 + gutter.getWidth();

  int y1, y2;
  if (myEmptyRange && myLastLine) {
    y1 = DiffDrawUtil.lineToY(editor, DiffUtil.getLineCount(editor.getDocument()));
    y2 = y1;
  }
  else {
    int startLine = editor.getDocument().getLineNumber(myHighlighter.getStartOffset());
    int endLine = editor.getDocument().getLineNumber(myHighlighter.getEndOffset()) + 1;
    y1 = DiffDrawUtil.lineToY(editor, startLine);
    y2 = myEmptyRange ? y1 : DiffDrawUtil.lineToY(editor, endLine);
  }

  if (myHideWithoutLineNumbers && !editor.getSettings().isLineNumbersShown()) {
    x1 = gutter.getWhitespaceSeparatorOffset();
  }
  else {
    int annotationsOffset = gutter.getAnnotationsAreaOffset();
    int annotationsWidth = gutter.getAnnotationsAreaWidth();
    if (annotationsWidth != 0) {
      drawMarker(editor, g2, x1, annotationsOffset, y1, y2, false);
      x1 = annotationsOffset + annotationsWidth;
    }
  }

  if (myIgnoredFoldingOutline) {
    int xOutline = gutter.getWhitespaceSeparatorOffset();
    drawMarker(editor, g2, xOutline, x2, y1, y2, true);
    drawMarker(editor, g2, x1, xOutline, y1, y2, false);
  }
  else {
    drawMarker(editor, g2, x1, x2, y1, y2, false);
  }
}
 
开发者ID:consulo,项目名称:consulo,代码行数:41,代码来源:DiffLineMarkerRenderer.java


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