java.lang.Object
org.gjt.sp.jedit.textarea.ShapedFoldPainter
- All Implemented Interfaces:
FoldPainter
- Direct Known Subclasses:
CircleFoldPainter,SquareFoldPainter
Fold Painter
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidpaintFoldEnd(Gutter gutter, Graphics2D gfx, int screenLine, int physicalLine, int y, int lineHeight, JEditBuffer buffer) Paints the end of a fold in the gutter.voidpaintFoldMiddle(Gutter gutter, Graphics2D gfx, int screenLine, int physicalLine, int y, int lineHeight, JEditBuffer buffer) Paints the middle of a fold (single line) in the gutter.protected abstract voidpaintFoldShape(Graphics2D gfx, int top, int bottom) voidpaintFoldStart(Gutter gutter, Graphics2D gfx, int screenLine, int physicalLine, boolean nextLineVisible, int y, int lineHeight, JEditBuffer buffer) Paints the beginning of a fold in the gutter.
-
Constructor Details
-
ShapedFoldPainter
public ShapedFoldPainter()
-
-
Method Details
-
paintFoldEnd
public void paintFoldEnd(Gutter gutter, Graphics2D gfx, int screenLine, int physicalLine, int y, int lineHeight, JEditBuffer buffer) Description copied from interface:FoldPainterPaints the end of a fold in the gutter.- Specified by:
paintFoldEndin interfaceFoldPainter- Parameters:
gutter- The gutter in which the fold is drawn.gfx- The graphics object to use for the painting.screenLine- The index of the line on the screen (e.g. 5th from top).physicalLine- The index of the line in the buffer.y- The y coordinate of the top of the line on the screen.lineHeight- The line height in pixels.buffer- The buffer to which the line belongs.
-
paintFoldMiddle
public void paintFoldMiddle(Gutter gutter, Graphics2D gfx, int screenLine, int physicalLine, int y, int lineHeight, JEditBuffer buffer) Description copied from interface:FoldPainterPaints the middle of a fold (single line) in the gutter.- Specified by:
paintFoldMiddlein interfaceFoldPainter- Parameters:
gutter- The gutter in which the fold is drawn.gfx- The graphics object to use for the painting.screenLine- The index of the line on the screen (e.g. 5th from top).physicalLine- The index of the line in the buffer.y- The y coordinate of the top of the line on the screen.lineHeight- The line height in pixels.buffer- The buffer to which the line belongs.
-
paintFoldStart
public void paintFoldStart(Gutter gutter, Graphics2D gfx, int screenLine, int physicalLine, boolean nextLineVisible, int y, int lineHeight, JEditBuffer buffer) Description copied from interface:FoldPainterPaints the beginning of a fold in the gutter.- Specified by:
paintFoldStartin interfaceFoldPainter- Parameters:
gutter- The gutter in which the fold is drawn.gfx- The graphics object to use for the painting.screenLine- The index of the line on the screen (e.g. 5th from top).physicalLine- The index of the line in the buffer.nextLineVisible- Whether the next buffer line is visible on screen.y- The y coordinate of the top of the line on the screen.lineHeight- The line height in pixels.buffer- The buffer to which the line belongs.
-
paintFoldShape
-