Serialized Form
Package org.fife.ui.rsyntaxtextarea |
min
int min
max
int max
textArea
RSyntaxTextArea textArea
- The text area.
listener
org.fife.ui.rsyntaxtextarea.ErrorStrip.Listener listener
- Listens for events in this component.
showMarkedOccurrences
boolean showMarkedOccurrences
- Whether "marked occurrences" in the text area should be shown in this
error strip.
brighterColors
Map<K,V> brighterColors
- Mapping of colors to brighter colors. This is kept to prevent
unnecessary creation of the same Colors over and over.
levelThreshold
int levelThreshold
- Only notices of this severity (or worse) will be displayed in this
error strip.
followCaret
boolean followCaret
- Whether the caret marker's location should be rendered.
caretMarkerColor
Color caretMarkerColor
- The color to use for the caret marker.
caretLineY
int caretLineY
- Where we paint the caret marker.
lastLineY
int lastLineY
- The last location of the caret marker.
readObject
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
- Deserializes a document.
- Throws:
ClassNotFoundException
IOException
tokenMaker
TokenMaker tokenMaker
- Splits text into tokens for the current programming language.
lastTokensOnLines
DynamicIntArray lastTokensOnLines
- Array of values representing the "last token type" on each line. This
is used in cases such as multiline comments: if the previous line
ended with an (unclosed) multiline comment, we can use this knowledge
and start the current line's syntax highlighting in multiline comment
state.
syntaxStyleKey
String syntaxStyleKey
- The key for the syntax style to be highlighting.
syntaxScheme
SyntaxScheme syntaxScheme
- The colors used for syntax highlighting.
match
Rectangle match
- The rectangle surrounding the "matched bracket" if bracket matching
is enabled.
matchedBracketBGColor
Color matchedBracketBGColor
- Colors used for the "matched bracket" if bracket matching is
enabled.
matchedBracketBorderColor
Color matchedBracketBorderColor
lastBracketMatchPos
int lastBracketMatchPos
- The location of the last matched bracket.
bracketMatchingEnabled
boolean bracketMatchingEnabled
- Whether or not bracket matching is enabled.
animateBracketMatching
boolean animateBracketMatching
- Whether or not bracket matching is animated.
bracketRepaintTimer
org.fife.ui.rsyntaxtextarea.RSyntaxTextArea.BracketMatchingTimer bracketRepaintTimer
autoIndentEnabled
boolean autoIndentEnabled
- Whether or not auto-indent is on.
closeCurlyBraces
boolean closeCurlyBraces
- Whether curly braces should be closed on Enter key presses, (if the
current language supports it).
closeMarkupTags
boolean closeMarkupTags
- Whether closing markup tags should be automatically completed when
"
</
" is typed (if the current language is a markup
language).
clearWhitespaceLines
boolean clearWhitespaceLines
- Whether or not lines with nothing but whitespace are "made empty."
whitespaceVisible
boolean whitespaceVisible
- Whether we are displaying visible whitespace (spaces and tabs).
eolMarkersVisible
boolean eolMarkersVisible
- Whether EOL markers should be visible at the end of each line.
hyperlinksEnabled
boolean hyperlinksEnabled
- Whether hyperlinks are enabled (must be supported by the syntax
scheme being used).
hyperlinkFG
Color hyperlinkFG
- The color to use when painting hyperlinks.
linkScanningMask
int linkScanningMask
- Mask used to determine if the correct key is being held down to scan
for hyperlinks (ctrl, meta, etc.).
rtfGenerator
RtfGenerator rtfGenerator
- Used during "Copy as RTF" operations.
markOccurrencesSupport
org.fife.ui.rsyntaxtextarea.MarkOccurrencesSupport markOccurrencesSupport
- Handles "mark occurrences" support.
markOccurrencesColor
Color markOccurrencesColor
- The color used to render "marked occurrences."
defaultFontMetrics
FontMetrics defaultFontMetrics
- Metrics of the text area's font.
parserManager
org.fife.ui.rsyntaxtextarea.ParserManager parserManager
- Manages running the parser.
isScanningForLinks
boolean isScanningForLinks
- Whether the editor is currently scanning for hyperlinks on mouse
movement.
hoveredOverLinkOffset
int hoveredOverLinkOffset
useFocusableTips
boolean useFocusableTips
- Whether "focusable" tool tips are used instead of standard ones.
focusableTip
FocusableTip focusableTip
- The last focusable tip displayed.
lineHeight
int lineHeight
maxAscent
int maxAscent
aaHintFieldName
String aaHintFieldName
aaHint
Object aaHint
fractionalFontMetricsEnabled
boolean fractionalFontMetricsEnabled
serialVersionUID: 1L
seg
Segment seg
serialVersionUID: 1L
seg
Segment seg
serialVersionUID: 1L
serialVersionUID: 1L
serialVersionUID: 1L
serialVersionUID: 1L
s
Segment s
seg
Segment seg
serialVersionUID: 1L
serialVersionUID: 1L
serialVersionUID: 1L
serialVersionUID: 1L
seg
Segment seg
serialVersionUID: 1L
seg
Segment seg
Class org.fife.ui.rsyntaxtextarea.RTfToText extends Object implements Serializable |
serialVersionUID: 1L
loc
FileLocation loc
- The location of the file being edited.
charSet
String charSet
- The charset to use when reading or writing this file.
readOnly
boolean readOnly
- Whether the file should be treated as read-only.
dirty
boolean dirty
- Whether the file is dirty.
lastSaveOrLoadTime
long lastSaveOrLoadTime
- The last time this file was modified on disk, for local files.
For remote files, this value should always be
TextEditorPane.LAST_MODIFIED_UNKNOWN
.
Package org.fife.ui.rsyntaxtextarea.templates |
id
String id
- The ID of this template.
serialVersionUID: 1L
readObject
private void readObject(ObjectInputStream in)
throws ClassNotFoundException,
IOException
- Called when reading a serialized version of this document. This is
overridden to initialize the transient members of this class.
- Throws:
ClassNotFoundException
- Never.
IOException
- If an IO error occurs.
beforeCaret
String beforeCaret
- The code inserted before the caret position.
afterCaret
String afterCaret
- The code inserted after the caret position.
Package org.fife.ui.rtextarea |
readObject
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
- Deserializes a painter.
- Throws:
ClassNotFoundException
IOException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- Serializes this painter.
- Throws:
IOException
- If an IO error occurs.
paint
Paint paint
- The
Paint
/Color
of this highlight.
roundedEdges
boolean roundedEdges
- Whether selections have rounded edges.
alpha
float alpha
- The alpha value used in computing translucency. This should stay in the
range
0.0f
(completely invisible) to 1.0f
(completely opaque).
readObject
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
- Deserializes a caret. This is overridden to read the caret's style.
- Throws:
ClassNotFoundException
IOException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- Serializes this caret. This is overridden to write the style of the
caret.
- Throws:
IOException
- If an IO error occurs.
style
int style
- Whether the caret is a vertical line, a horizontal line, or a block.
selectionPainter
ChangeableHighlightPainter selectionPainter
- The selection painter. By default this paints selections with the
text area's selection color.
textArea
RTextArea textArea
- The text area.
lineNumberList
org.fife.ui.rtextarea.LineNumberList lineNumberList
- Renders line numbers.
iconArea
org.fife.ui.rtextarea.IconRowHeader iconArea
- Renders bookmark icons, breakpoints, error icons, etc.
listener
org.fife.ui.rtextarea.Gutter.TextAreaListener listener
- Listens for events in our text area.
isRecordable
boolean isRecordable
- Whether or not this text action should be recorded in a macro.
exportComp
JTextComponent exportComp
shouldRemove
boolean shouldRemove
p0
int p0
p1
int p1
withinSameComponent
boolean withinSameComponent
readObject
private void readObject(ObjectInputStream s)
throws ClassNotFoundException,
IOException
- De-serializes a text area.
- Throws:
ClassNotFoundException
IOException
writeObject
private void writeObject(ObjectOutputStream s)
throws IOException
- Serializes this text area.
- Throws:
IOException
- If an IO error occurs.
textMode
int textMode
- The current text mode (
RTextArea.INSERT_MODE
or RTextArea.OVERWRITE_MODE
).
popupMenu
JPopupMenu popupMenu
- This text area's popup menu.
popupMenuCreated
boolean popupMenuCreated
- Whether the popup menu has been created.
toolTipSupplier
ToolTipSupplier toolTipSupplier
- Can return tool tips for this text area. Subclasses can install a
supplier as a means of adding custom tool tips without subclassing
RTextArea.
JComponent.getToolTipText()
checks this supplier
before calling the super class's version.
markAllHighlights
ArrayList<E> markAllHighlights
markedWord
String markedWord
markAllHighlightPainter
ChangeableHighlightPainter markAllHighlightPainter
carets
int[] carets
repTabsSB
StringBuffer repTabsSB
Class org.fife.ui.rtextarea.RTextAreaBase.RTAMouseListener extends CaretEvent implements Serializable |
dot
int dot
mark
int mark
select
boolean select
currentLine
Segment currentLine
select
boolean select
select
boolean select
decreaseAmount
float decreaseAmount
delegate
Action delegate
lastWordStart
int lastWordStart
lastDot
int lastDot
searchOffs
int searchOffs
lastPrefix
String lastPrefix
select
boolean select
select
boolean select
select
boolean select
increaseAmount
float increaseAmount
moveAmt
int moveAmt
forward
boolean forward
select
boolean select
direction
int direction
select
boolean select
select
boolean select
delta
int delta
start
Action start
end
Action end
start
Action start
end
Action end
select
boolean select
direction
int direction
textArea
RTextArea textArea
gutter
Gutter gutter