java.lang.Object
org.gjt.sp.jedit.textarea.TextAreaExtension
- Direct Known Subclasses:
PageBreakExtension
,StructureMatcher.Highlight
Subclasses of this class can perform custom painting and tool tip
handling in the text area and gutter.
- Since:
- jEdit 4.0pre4
- Version:
- $Id: TextAreaExtension.java 21831 2012-06-18 22:54:17Z ezust $
- Author:
- Slava Pestov
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetToolTipText
(int x, int y) Called by the text area when the mouse hovers over the location specified in the mouse event.void
paintInvalidLine
(Graphics2D gfx, int screenLine, int y) Called by the text area when the extension is to paint a screen line which is not part of the buffer.void
paintScreenLineRange
(Graphics2D gfx, int firstLine, int lastLine, int[] physicalLines, int[] start, int[] end, int y, int lineHeight) Paints a range of screen lines.void
paintValidLine
(Graphics2D gfx, int screenLine, int physicalLine, int start, int end, int y) Called by the text area when the extension is to paint a screen line which has an associated physical line number in the buffer.
-
Constructor Details
-
TextAreaExtension
public TextAreaExtension()
-
-
Method Details
-
paintScreenLineRange
public void paintScreenLineRange(Graphics2D gfx, int firstLine, int lastLine, int[] physicalLines, int[] start, int[] end, int y, int lineHeight) Paints a range of screen lines. The default implementation callspaintValidLine(Graphics2D,int,int,int,int,int)
andpaintInvalidLine(Graphics2D,int,int)
.- Parameters:
gfx
- A graphics contextfirstLine
- The first screen linelastLine
- The last screen linephysicalLines
- The list of physical line numbers. Entries are -1 if the screen line is out of range.start
- An array of screen line start offsets.end
- An array of screen line end offsetsy
- The y co-ordinatelineHeight
- The line height- Since:
- jEdit 4.2pre2
-
paintValidLine
public void paintValidLine(Graphics2D gfx, int screenLine, int physicalLine, int start, int end, int y) Called by the text area when the extension is to paint a screen line which has an associated physical line number in the buffer. Note that since one physical line may consist of several screen lines due to soft wrap, the start and end offsets of the screen line are passed in as well.- Parameters:
gfx
- The graphics contextscreenLine
- The screen line numberphysicalLine
- The physical line numberstart
- The offset where the screen line begins, from the start of the bufferend
- The offset where the screen line ends, from the start of the buffery
- The y co-ordinate of the top of the line's bounding box- Since:
- jEdit 4.0pre4
-
paintInvalidLine
Called by the text area when the extension is to paint a screen line which is not part of the buffer. This can happen if the buffer is shorter than the height of the text area, for example.- Parameters:
gfx
- The graphics contextscreenLine
- The screen line numbery
- The y co-ordinate of the top of the line's bounding box- Since:
- jEdit 4.0pre4
-
getToolTipText
Called by the text area when the mouse hovers over the location specified in the mouse event.- Parameters:
x
- The x co-ordinatey
- The y co-ordinate- Since:
- jEdit 4.0pre4
-