Uses of Interface
org.fife.ui.rsyntaxtextarea.TokenPainter
-
Packages that use TokenPainter Package Description org.fife.ui.rsyntaxtextarea A syntax-highlighting text editor. -
-
Uses of TokenPainter in org.fife.ui.rsyntaxtextarea
Classes in org.fife.ui.rsyntaxtextarea that implement TokenPainter Modifier and Type Class Description (package private) class
DefaultTokenPainter
Standard implementation of a token painter.(package private) class
VisibleWhitespaceTokenPainter
A token painter that visibly renders whitespace (spaces and tabs).Fields in org.fife.ui.rsyntaxtextarea declared as TokenPainter Modifier and Type Field Description private TokenPainter
RSyntaxTextArea. tokenPainter
Renders tokens.Methods in org.fife.ui.rsyntaxtextarea that return TokenPainter Modifier and Type Method Description (package private) TokenPainter
RSyntaxTextArea. getTokenPainter()
Returns the painter to use for rendering tokens.Methods in org.fife.ui.rsyntaxtextarea with parameters of type TokenPainter Modifier and Type Method Description private float
SyntaxView. drawLine(TokenPainter painter, Token token, java.awt.Graphics2D g, float x, float y, int line)
Draws the passed-in text using syntax highlighting for the current language.private float
SyntaxView. drawLineWithSelection(TokenPainter painter, Token token, java.awt.Graphics2D g, float x, float y, int selStart, int selEnd)
Draws the passed-in text using syntax highlighting for the current language.protected void
WrappedSyntaxView. drawView(TokenPainter painter, java.awt.Graphics2D g, java.awt.Rectangle r, javax.swing.text.View view, int fontHeight, int y, int line)
Draws a single view (i.e., a line of text for a wrapped view), wrapping the text onto multiple lines if necessary.protected void
WrappedSyntaxView. drawViewWithSelection(TokenPainter painter, java.awt.Graphics2D g, java.awt.Rectangle r, javax.swing.text.View view, int fontHeight, int y, int selStart, int selEnd)
Draws a single view (i.e., a line of text for a wrapped view), wrapping the text onto multiple lines if necessary.
-