|
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjavax.swing.text.View
javax.swing.text.PlainView
org.bounce.text.FoldingPlainView
org.bounce.text.SyntaxHighlightingView
public abstract class SyntaxHighlightingView
The View uses the syntax highlighting scanner to determine the style (font, color) of the text that it renders.
Note: The Editor package is based on the JavaEditorKit example as described in the article 'Customizing a Text Editor' by Timothy Prinzing . See: http://java.sun.com/products/jfc/tsc/articles/text/editor_kit/
| Field Summary |
|---|
| Fields inherited from class org.bounce.text.FoldingPlainView |
|---|
firstLineOffset, font, lineBuffer, longLine, metrics, sel0, sel1, tabBase, tabSize, unselected |
| Fields inherited from class javax.swing.text.View |
|---|
BadBreakWeight, ExcellentBreakWeight, ForcedBreakWeight, GoodBreakWeight, X_AXIS, Y_AXIS |
| Fields inherited from interface javax.swing.SwingConstants |
|---|
BOTTOM, CENTER, EAST, HORIZONTAL, LEADING, LEFT, NEXT, NORTH, NORTH_EAST, NORTH_WEST, PREVIOUS, RIGHT, SOUTH, SOUTH_EAST, SOUTH_WEST, TOP, TRAILING, VERTICAL, WEST |
| Constructor Summary | |
|---|---|
SyntaxHighlightingView(SyntaxHighlightingScanner scanner,
javax.swing.text.StyleContext context,
javax.swing.text.Element elem)
Construct a colorized view of xml text for the element. |
|
| Method Summary | |
|---|---|
protected int |
drawSelectedText(java.awt.Graphics g,
int x,
int y,
int start,
int end)
Renders the given range in the model as selected text. |
protected int |
drawUnselectedText(java.awt.Graphics g,
int x,
int y,
int start,
int end)
Renders the given range in the model as normal unselected text. |
static int |
getFontStyle(javax.swing.text.Style style)
Fetch the font to use for a lexical token with the given scan value. |
protected abstract boolean |
isErrorHighlighting()
|
void |
paint(java.awt.Graphics g,
java.awt.Shape a)
Invalidates the scanner, to make sure a new range is set later. |
protected abstract void |
updateScanner(SyntaxHighlightingScanner scanner,
javax.swing.text.Document doc,
int start,
int end)
|
| Methods inherited from class org.bounce.text.FoldingPlainView |
|---|
calculateLongestLine, changedUpdate, damageLineRange, drawLine, getNextVisualPositionFrom, getPreferredSpan, insertUpdate, lineToRect, modelToView, nextTabStop, removeUpdate, setSize, updateDamage, updateMetrics, viewToModel |
| Methods inherited from class javax.swing.text.PlainView |
|---|
getLineBuffer, getTabSize |
| Methods inherited from class javax.swing.text.View |
|---|
append, breakView, createFragment, forwardUpdate, forwardUpdateToView, getAlignment, getAttributes, getBreakWeight, getChildAllocation, getContainer, getDocument, getElement, getEndOffset, getGraphics, getMaximumSpan, getMinimumSpan, getParent, getResizeWeight, getStartOffset, getToolTipText, getView, getViewCount, getViewFactory, getViewIndex, getViewIndex, insert, isVisible, modelToView, modelToView, preferenceChanged, remove, removeAll, replace, setParent, updateChildren, updateLayout, viewToModel |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public SyntaxHighlightingView(SyntaxHighlightingScanner scanner,
javax.swing.text.StyleContext context,
javax.swing.text.Element elem)
throws java.io.IOException
context - the styles used to colorize the view.elem - the element to create the view for.
java.io.IOException - input/output exception while reading document| Method Detail |
|---|
public void paint(java.awt.Graphics g,
java.awt.Shape a)
paint in class FoldingPlainViewg - the graphics context.a - the shape.View.paint(Graphics g, Shape a)
protected int drawUnselectedText(java.awt.Graphics g,
int x,
int y,
int start,
int end)
throws javax.swing.text.BadLocationException
drawUnselectedText in class FoldingPlainViewg - the graphics contextx - the starting X coordinatey - the starting Y coordinatestart - the beginning position in the modelend - the ending position in the model
javax.swing.text.BadLocationException - if the range is invalidprotected abstract boolean isErrorHighlighting()
protected int drawSelectedText(java.awt.Graphics g,
int x,
int y,
int start,
int end)
throws javax.swing.text.BadLocationException
drawSelectedText in class FoldingPlainViewg - the graphics contextx - the starting X coordinatey - the starting Y coordinatestart - the beginning position in the modelend - the ending position in the model
javax.swing.text.BadLocationException - if the range is invalid
protected abstract void updateScanner(SyntaxHighlightingScanner scanner,
javax.swing.text.Document doc,
int start,
int end)
public static int getFontStyle(javax.swing.text.Style style)
style - the style.
|
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||