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


Java EditorGutterComponentEx.getWidth方法代码示例

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


在下文中一共展示了EditorGutterComponentEx.getWidth方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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 range) {
  Color color = myDiffType.getPolygonColor(editor);
  if (color == null) {
    return;
  }

  EditorGutterComponentEx gutter = ((EditorEx)editor).getGutterComponentEx();
  Graphics2D g2 = (Graphics2D)g;
  int x = 0;
  int y = range.y;
  int width = gutter.getWidth();
  int height = range.height;

  if (!myDiffType.isApplied()) {
    if (height > 2) {
      g.setColor(color);
      g.fillRect(x, y, width, height);
      DiffUtil.drawDoubleShadowedLine(g2, x, x + width, y - 1, color);
      DiffUtil.drawDoubleShadowedLine(g2, x, x + width, y + height - 1, color);
    }
    else {
      // insertion or deletion, when a range is null. matching the text highlighter which is a 2 pixel line
      DiffUtil.drawDoubleShadowedLine(g2, x, x + width, y - 1, color);
    }
  }
  else {
    DiffUtil.drawBoldDottedFramingLines(g2, x, x + width, y - 1, y + height - 1, color);
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:31,代码来源:DiffLineMarkerRenderer.java

示例3: createFoldingGutterLineRenderer

import com.intellij.openapi.editor.ex.EditorGutterComponentEx; //导入方法依赖的package包/类
@Nonnull
private static LineMarkerRenderer createFoldingGutterLineRenderer(@Nonnull final TextDiffType type,
                                                                  @Nonnull final SeparatorPlacement placement,
                                                                  final boolean doubleLine,
                                                                  final boolean resolved) {
  return new LineMarkerRendererEx() {
    @Override
    public void paint(Editor editor, Graphics g, Rectangle r) {
      EditorGutterComponentEx gutter = ((EditorEx)editor).getGutterComponentEx();
      Graphics2D g2 = (Graphics2D)g;

      int x1 = gutter.getWhitespaceSeparatorOffset();
      int x2 = gutter.getWidth();

      int y = r.y;
      if (placement == SeparatorPlacement.BOTTOM) y += editor.getLineHeight();

      drawChunkBorderLine(g2, x1, x2, y - 1, type.getColor(editor), doubleLine, resolved);
    }

    @Nonnull
    @Override
    public Position getPosition() {
      return Position.CUSTOM;
    }
  };
}
 
开发者ID:consulo,项目名称:consulo,代码行数:28,代码来源:DiffDrawUtil.java

示例4: 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.getWidth方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。