|
|||||||||
Home >> All >> alice >> util >> [ jedit overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: ![]() ![]() ![]() |
DETAIL: FIELD | CONSTR | METHOD |
alice.util.jedit
Class TextAreaPainter

java.lang.Objectjava.awt.Component
java.awt.Container
javax.swing.JComponent
alice.util.jedit.TextAreaPainter
- All Implemented Interfaces:
- java.awt.image.ImageObserver, java.awt.MenuContainer, java.io.Serializable, javax.swing.text.TabExpander
- public class TextAreaPainter
- extends javax.swing.JComponent
- implements javax.swing.text.TabExpander
- extends javax.swing.JComponent
The text area repaint manager. It performs double buffering and paints lines of text.
- Version:
- $Id: TextAreaPainter.java,v 1.24 1999/12/13 03:40:30 sp Exp $
Nested Class Summary | |
static interface |
TextAreaPainter.Highlight
Highlight interface. |
Nested classes inherited from class javax.swing.JComponent |
javax.swing.JComponent.AccessibleJComponent |
Nested classes inherited from class java.awt.Container |
java.awt.Container.AccessibleAWTContainer |
Nested classes inherited from class java.awt.Component |
java.awt.Component.AccessibleAWTComponent, java.awt.Component.BltBufferStrategy, java.awt.Component.FlipBufferStrategy |
Field Summary | |
protected boolean |
blockCaret
|
protected boolean |
bracketHighlight
|
protected java.awt.Color |
bracketHighlightColor
|
protected java.awt.Color |
caretColor
|
protected int |
cols
|
(package private) javax.swing.text.Segment |
currentLine
|
(package private) int |
currentLineIndex
|
(package private) Token |
currentLineTokens
|
(package private) static java.lang.String |
EOF_MARKER
|
(package private) static java.lang.String |
EOL_MARKER
|
protected java.awt.Color |
eolMarkerColor
|
protected boolean |
eolMarkers
|
protected java.awt.FontMetrics |
fm
|
protected TextAreaPainter.Highlight |
highlights
|
protected boolean |
lineHighlight
|
protected java.awt.Color |
lineHighlightColor
|
protected boolean |
paintInvalid
|
protected int |
rows
|
protected java.awt.Color |
selectionColor
|
protected SyntaxStyle[] |
styles
|
protected int |
tabSize
|
protected JEditTextArea |
textArea
|
Fields inherited from class javax.swing.JComponent |
accessibleContext, listenerList, TOOL_TIP_TEXT_KEY, ui, UNDEFINED_CONDITION, WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, WHEN_FOCUSED, WHEN_IN_FOCUSED_WINDOW |
Fields inherited from class java.awt.Container |
|
Fields inherited from class java.awt.Component |
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT |
Fields inherited from interface java.awt.image.ImageObserver |
ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH |
Constructor Summary | |
TextAreaPainter(JEditTextArea textArea,
TextAreaDefaults defaults)
Creates a new repaint manager. |
Method Summary | |
void |
addCustomHighlight(TextAreaPainter.Highlight highlight)
Adds a custom highlight painter. |
java.awt.Color |
getBracketHighlightColor()
Returns the bracket highlight color. |
java.awt.Color |
getCaretColor()
Returns the caret color. |
java.awt.Color |
getEOLMarkerColor()
Returns the EOL marker color. |
boolean |
getEOLMarkersPainted()
Returns true if EOL markers are drawn, false otherwise. |
java.awt.FontMetrics |
getFontMetrics()
Returns the font metrics used by this component. |
boolean |
getInvalidLinesPainted()
Returns true if invalid lines are painted as red tildes (~), false otherwise. |
java.awt.Color |
getLineHighlightColor()
Returns the line highlight color. |
java.awt.Dimension |
getMinimumSize()
Returns the painter's minimum size. |
java.awt.Dimension |
getPreferredSize()
Returns the painter's preferred size. |
java.awt.Color |
getSelectionColor()
Returns the selection color. |
SyntaxStyle[] |
getStyles()
Returns the syntax styles used to paint colorized text. |
java.lang.String |
getToolTipText(java.awt.event.MouseEvent evt)
Returns the tool tip to display at the specified location. |
void |
invalidateLine(int line)
Marks a line as needing a repaint. |
void |
invalidateLineRange(int firstLine,
int lastLine)
Marks a range of lines as needing a repaint. |
void |
invalidateSelectedLines()
Repaints the lines containing the selection. |
boolean |
isBlockCaretEnabled()
Returns true if the caret should be drawn as a block, false otherwise. |
boolean |
isBracketHighlightEnabled()
Returns true if bracket highlighting is enabled, false otherwise. |
boolean |
isLineHighlightEnabled()
Returns true if line highlight is enabled, false otherwise. |
boolean |
isManagingFocus()
Returns if this component can be traversed by pressing the Tab key. |
float |
nextTabStop(float x,
int tabOffset)
Implementation of TabExpander interface. |
void |
paint(java.awt.Graphics gfx)
Repaints the text. |
protected void |
paintBracketHighlight(java.awt.Graphics gfx,
int line,
int y)
|
protected void |
paintCaret(java.awt.Graphics gfx,
int line,
int y)
|
protected void |
paintHighlight(java.awt.Graphics gfx,
int line,
int y)
|
protected void |
paintLine(java.awt.Graphics gfx,
TokenMarker tokenMarker,
int line,
int x)
|
protected void |
paintLineHighlight(java.awt.Graphics gfx,
int line,
int y)
|
protected void |
paintPlainLine(java.awt.Graphics gfx,
int line,
java.awt.Font defaultFont,
java.awt.Color defaultColor,
int x,
int y)
|
protected void |
paintSyntaxLine(java.awt.Graphics gfx,
TokenMarker tokenMarker,
int line,
java.awt.Font defaultFont,
java.awt.Color defaultColor,
int x,
int y)
|
void |
setBlockCaretEnabled(boolean blockCaret)
Sets if the caret should be drawn as a block, false otherwise. |
void |
setBracketHighlightColor(java.awt.Color bracketHighlightColor)
Sets the bracket highlight color. |
void |
setBracketHighlightEnabled(boolean bracketHighlight)
Enables or disables bracket highlighting. |
void |
setCaretColor(java.awt.Color caretColor)
Sets the caret color. |
void |
setEOLMarkerColor(java.awt.Color eolMarkerColor)
Sets the EOL marker color. |
void |
setEOLMarkersPainted(boolean eolMarkers)
Sets if EOL markers are to be drawn. |
void |
setFont(java.awt.Font font)
Sets the font for this component. |
void |
setInvalidLinesPainted(boolean paintInvalid)
Sets if invalid lines are to be painted as red tildes. |
void |
setLineHighlightColor(java.awt.Color lineHighlightColor)
Sets the line highlight color. |
void |
setLineHighlightEnabled(boolean lineHighlight)
Enables or disables current line highlighting. |
void |
setSelectionColor(java.awt.Color selectionColor)
Sets the selection color. |
void |
setStyles(SyntaxStyle[] styles)
Sets the syntax styles used to paint colorized text. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
EOL_MARKER
static final java.lang.String EOL_MARKER
- See Also:
- Constant Field Values
EOF_MARKER
static final java.lang.String EOF_MARKER
- See Also:
- Constant Field Values
currentLineIndex
int currentLineIndex
currentLineTokens
Token currentLineTokens
currentLine
javax.swing.text.Segment currentLine
textArea
protected JEditTextArea textArea
styles
protected SyntaxStyle[] styles
caretColor
protected java.awt.Color caretColor
selectionColor
protected java.awt.Color selectionColor
lineHighlightColor
protected java.awt.Color lineHighlightColor
bracketHighlightColor
protected java.awt.Color bracketHighlightColor
eolMarkerColor
protected java.awt.Color eolMarkerColor
blockCaret
protected boolean blockCaret
lineHighlight
protected boolean lineHighlight
bracketHighlight
protected boolean bracketHighlight
paintInvalid
protected boolean paintInvalid
eolMarkers
protected boolean eolMarkers
cols
protected int cols
rows
protected int rows
tabSize
protected int tabSize
fm
protected java.awt.FontMetrics fm
highlights
protected TextAreaPainter.Highlight highlights
Constructor Detail |
TextAreaPainter
public TextAreaPainter(JEditTextArea textArea, TextAreaDefaults defaults)
- Creates a new repaint manager. This should be not be called
directly.
Method Detail |
isManagingFocus
public final boolean isManagingFocus()
- Returns if this component can be traversed by pressing the
Tab key. This returns false.
getStyles
public final SyntaxStyle[] getStyles()
- Returns the syntax styles used to paint colorized text. Entry n
will be used to paint tokens with id = n.
setStyles
public final void setStyles(SyntaxStyle[] styles)
- Sets the syntax styles used to paint colorized text. Entry n
will be used to paint tokens with id = n.
getCaretColor
public final java.awt.Color getCaretColor()
- Returns the caret color.
setCaretColor
public final void setCaretColor(java.awt.Color caretColor)
- Sets the caret color.
getSelectionColor
public final java.awt.Color getSelectionColor()
- Returns the selection color.
setSelectionColor
public final void setSelectionColor(java.awt.Color selectionColor)
- Sets the selection color.
getLineHighlightColor
public final java.awt.Color getLineHighlightColor()
- Returns the line highlight color.
setLineHighlightColor
public final void setLineHighlightColor(java.awt.Color lineHighlightColor)
- Sets the line highlight color.
isLineHighlightEnabled
public final boolean isLineHighlightEnabled()
- Returns true if line highlight is enabled, false otherwise.
setLineHighlightEnabled
public final void setLineHighlightEnabled(boolean lineHighlight)
- Enables or disables current line highlighting.
getBracketHighlightColor
public final java.awt.Color getBracketHighlightColor()
- Returns the bracket highlight color.
setBracketHighlightColor
public final void setBracketHighlightColor(java.awt.Color bracketHighlightColor)
- Sets the bracket highlight color.
isBracketHighlightEnabled
public final boolean isBracketHighlightEnabled()
- Returns true if bracket highlighting is enabled, false otherwise.
When bracket highlighting is enabled, the bracket matching the
one before the caret (if any) is highlighted.
setBracketHighlightEnabled
public final void setBracketHighlightEnabled(boolean bracketHighlight)
- Enables or disables bracket highlighting.
When bracket highlighting is enabled, the bracket matching the
one before the caret (if any) is highlighted.
isBlockCaretEnabled
public final boolean isBlockCaretEnabled()
- Returns true if the caret should be drawn as a block, false otherwise.
setBlockCaretEnabled
public final void setBlockCaretEnabled(boolean blockCaret)
- Sets if the caret should be drawn as a block, false otherwise.
getEOLMarkerColor
public final java.awt.Color getEOLMarkerColor()
- Returns the EOL marker color.
setEOLMarkerColor
public final void setEOLMarkerColor(java.awt.Color eolMarkerColor)
- Sets the EOL marker color.
getEOLMarkersPainted
public final boolean getEOLMarkersPainted()
- Returns true if EOL markers are drawn, false otherwise.
setEOLMarkersPainted
public final void setEOLMarkersPainted(boolean eolMarkers)
- Sets if EOL markers are to be drawn.
getInvalidLinesPainted
public boolean getInvalidLinesPainted()
- Returns true if invalid lines are painted as red tildes (~),
false otherwise.
setInvalidLinesPainted
public void setInvalidLinesPainted(boolean paintInvalid)
- Sets if invalid lines are to be painted as red tildes.
addCustomHighlight
public void addCustomHighlight(TextAreaPainter.Highlight highlight)
- Adds a custom highlight painter.
getToolTipText
public java.lang.String getToolTipText(java.awt.event.MouseEvent evt)
- Returns the tool tip to display at the specified location.
getFontMetrics
public java.awt.FontMetrics getFontMetrics()
- Returns the font metrics used by this component.
setFont
public void setFont(java.awt.Font font)
- Sets the font for this component. This is overridden to update the
cached font metrics and to recalculate which lines are visible.
paint
public void paint(java.awt.Graphics gfx)
- Repaints the text.
invalidateLine
public final void invalidateLine(int line)
- Marks a line as needing a repaint.
invalidateLineRange
public final void invalidateLineRange(int firstLine, int lastLine)
- Marks a range of lines as needing a repaint.
invalidateSelectedLines
public final void invalidateSelectedLines()
- Repaints the lines containing the selection.
nextTabStop
public float nextTabStop(float x, int tabOffset)
- Implementation of TabExpander interface. Returns next tab stop after
a specified point.
- Specified by:
nextTabStop
in interfacejavax.swing.text.TabExpander
getPreferredSize
public java.awt.Dimension getPreferredSize()
- Returns the painter's preferred size.
getMinimumSize
public java.awt.Dimension getMinimumSize()
- Returns the painter's minimum size.
paintLine
protected void paintLine(java.awt.Graphics gfx, TokenMarker tokenMarker, int line, int x)
paintPlainLine
protected void paintPlainLine(java.awt.Graphics gfx, int line, java.awt.Font defaultFont, java.awt.Color defaultColor, int x, int y)
paintSyntaxLine
protected void paintSyntaxLine(java.awt.Graphics gfx, TokenMarker tokenMarker, int line, java.awt.Font defaultFont, java.awt.Color defaultColor, int x, int y)
paintHighlight
protected void paintHighlight(java.awt.Graphics gfx, int line, int y)
paintLineHighlight
protected void paintLineHighlight(java.awt.Graphics gfx, int line, int y)
paintBracketHighlight
protected void paintBracketHighlight(java.awt.Graphics gfx, int line, int y)
paintCaret
protected void paintCaret(java.awt.Graphics gfx, int line, int y)
|
|||||||||
Home >> All >> alice >> util >> [ jedit overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: ![]() ![]() ![]() |
DETAIL: FIELD | CONSTR | METHOD |