Class RTextAreaEditorKit
java.lang.Object
javax.swing.text.EditorKit
javax.swing.text.DefaultEditorKit
org.fife.ui.rtextarea.RTextAreaEditorKit
- All Implemented Interfaces:
Serializable, Cloneable
- Direct Known Subclasses:
RSyntaxTextAreaEditorKit
An extension of
DefaultEditorKit that adds functionality found
in RTextArea.- Version:
- 0.1
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classCreates a beep.static classMoves the caret to the beginning of the document.static classToggles the position of the caret between the beginning of the line, and the first non-whitespace character on the line.static classAction that begins recording a macro.protected static classPositions the caret at the beginning of the word.static classAction for displaying a popup with a list of recently pasted text snippets.static classAction for copying text.static classAction for cutting text.static classAction for decreasing the font size.static classThe action to use when no actions in the input/action map meet the key pressed.static classDeletes the current line(s).static classDeletes the character of content that follows the current caret position.static classDeletes the character of content that precedes the current caret position.static classAction that deletes the previous word in the text area.static classAction that deletes all text from the caret position to the end of the caret's line.static classFinds the most recent word in the document that matches the "word" up to the current caret position, and auto-completes the rest.static classMoves the caret to the end of the document.static classPositions the caret at the end of the line.static classAction that ends recording a macro.protected static classPositions the caret at the end of the word.static classAction for increasing the font size.static classAction for when the user presses the Enter key.static classAction taken when content is to be inserted.static classPlaces a tab character into the document.static classAction to invert the selection's case.static classAction to join the current line and the following line.static classAction that moves a line up or down.static classAction to make the selection lower-case.static classAction that moves the caret to the next (or previous) bookmark.static classSelects the next occurrence of the text last selected.static classAction to move the selection and/or caret.static classPositions the caret at the next word.(package private) static classPages one view to the left or right.static classAction for pasting text.static class"Plays back" the last macro recorded.static classSelect the previous occurrence of the text last selected.static classPositions the caret at the beginning of the previous word.static classRe-does the last action undone.static classScrolls the text area one line up or down, without changing the caret position.static classSelects the entire document.static classSelects the line around the caret.static classSelects the word around the caret.static classPuts the text area into read-only mode.static classPuts the text area into writable (from read-only) mode.static classThe action for inserting a time/date stamp.static classToggles whether the current line has a bookmark.static classThe action for the insert key toggling insert/overwrite modes.static classUndoes the last action done.static classRemoves the selection, if any.static classAction to make the selection upper-case.static classScrolls up/down vertically. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringAction to display the paste history popup.private static final RecordableTextAction[]The actions thatRTextAreaEditorKitadds to those of the default editor kit.private static final intThe amount of characters read at a time when reading a file.static final StringThe name of the action that begins recording a macro.static final StringThe name of the action to decrease the font size.static final StringThe name of the action that deletes the current line.static final StringThe name of the action to delete the word before the caret.static final StringThe name of the action taken to delete the remainder of the line (from the caret position to the end of the line).static final StringThe name of the action that completes the word at the caret position with the last word in the document that starts with the text up to the caret.static final StringThe name of the action that ends recording a macro.static final StringThe name of the action to increase the font size.static final StringThe name of the action that inverts the case of the current selection.static final StringThe name of the action to join two lines.static final StringAction to move a line down.static final StringAction to move a line up.static final StringThe name of the action to make the current selection lower-case.static final StringAction to jump to the next bookmark.static final StringAction to select the next occurrence of the selected text.static final StringThe name of the action that "plays back" the last macro.static final StringAction to jump to the previous bookmark.static final StringAction to select the previous occurrence of the selected text.static final StringThe name of the action for "redoing" the last action undone.static final StringThe name of the action to scroll the text area down one line without changing the caret's position.static final StringThe name of the action to scroll the text area up one line without changing the caret's position.static final StringThe name of the action for "paging down" with the selection.static final StringThe name of the action for "paging left" with the selection.static final StringThe name of the action for "paging right" with the selection.static final StringThe name of the action for "paging up" with the selection.static final StringThe name of the action for inserting a time/date stamp.static final StringToggles whether the current line has a bookmark, if this text area is in anRTextScrollPane.static final StringThe name of the action taken when the user hits the Insert key (thus toggling between insert and overwrite modes).static final StringThe name of the action for "undoing" the last action done.static final StringThe name of the action for unselecting any selected text in the text area.static final StringThe name of the action for making the current selection upper-case.Fields inherited from class DefaultEditorKit
backwardAction, beepAction, beginAction, beginLineAction, beginLineUpAction, beginParagraphAction, beginWordAction, copyAction, cutAction, defaultKeyTypedAction, deleteNextCharAction, deleteNextWordAction, deletePrevCharAction, deletePrevWordAction, downAction, endAction, endLineAction, endLineDownAction, EndOfLineStringProperty, endParagraphAction, endWordAction, forwardAction, insertBreakAction, insertContentAction, insertTabAction, nextWordAction, pageDownAction, pageUpAction, pasteAction, previousWordAction, readOnlyAction, selectAllAction, selectionBackwardAction, selectionBeginAction, selectionBeginLineAction, selectionBeginParagraphAction, selectionBeginWordAction, selectionDownAction, selectionEndAction, selectionEndLineAction, selectionEndParagraphAction, selectionEndWordAction, selectionForwardAction, selectionNextWordAction, selectionPreviousWordAction, selectionUpAction, selectLineAction, selectParagraphAction, selectWordAction, upAction, writableAction -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreateIconRowHeader(RTextArea textArea) Creates an icon row header to use in the gutter for a text area.createLineNumberList(RTextArea textArea) Creates a line number list to use in the gutter for a text area.Action[]Fetches the set of commands that can be used on a text component that is using a model and view produced by this kit.voidInserts content from the given stream, which will be treated as plain text.Methods inherited from class DefaultEditorKit
createCaret, createDefaultDocument, getContentType, getViewFactory, read, write, write
-
Field Details
-
rtaBeginRecordingMacroAction
The name of the action that begins recording a macro.- See Also:
-
rtaDecreaseFontSizeAction
The name of the action to decrease the font size.- See Also:
-
rtaDeleteLineAction
The name of the action that deletes the current line.- See Also:
-
rtaDeletePrevWordAction
The name of the action to delete the word before the caret.- See Also:
-
rtaDeleteRestOfLineAction
The name of the action taken to delete the remainder of the line (from the caret position to the end of the line).- See Also:
-
rtaDumbCompleteWordAction
The name of the action that completes the word at the caret position with the last word in the document that starts with the text up to the caret.- See Also:
-
rtaEndRecordingMacroAction
The name of the action that ends recording a macro.- See Also:
-
rtaIncreaseFontSizeAction
The name of the action to increase the font size.- See Also:
-
rtaInvertSelectionCaseAction
The name of the action that inverts the case of the current selection.- See Also:
-
rtaJoinLinesAction
-
rtaLineDownAction
-
rtaLineUpAction
-
rtaLowerSelectionCaseAction
The name of the action to make the current selection lower-case.- See Also:
-
rtaNextOccurrenceAction
Action to select the next occurrence of the selected text.- See Also:
-
rtaPrevOccurrenceAction
Action to select the previous occurrence of the selected text.- See Also:
-
rtaNextBookmarkAction
-
clipboardHistoryAction
Action to display the paste history popup.- See Also:
-
rtaPrevBookmarkAction
-
rtaPlaybackLastMacroAction
The name of the action that "plays back" the last macro.- See Also:
-
rtaRedoAction
The name of the action for "redoing" the last action undone.- See Also:
-
rtaScrollDownAction
The name of the action to scroll the text area down one line without changing the caret's position.- See Also:
-
rtaScrollUpAction
The name of the action to scroll the text area up one line without changing the caret's position.- See Also:
-
rtaSelectionPageUpAction
The name of the action for "paging up" with the selection.- See Also:
-
rtaSelectionPageDownAction
The name of the action for "paging down" with the selection.- See Also:
-
rtaSelectionPageLeftAction
The name of the action for "paging left" with the selection.- See Also:
-
rtaSelectionPageRightAction
The name of the action for "paging right" with the selection.- See Also:
-
rtaTimeDateAction
The name of the action for inserting a time/date stamp.- See Also:
-
rtaToggleBookmarkAction
Toggles whether the current line has a bookmark, if this text area is in anRTextScrollPane.- See Also:
-
rtaToggleTextModeAction
The name of the action taken when the user hits the Insert key (thus toggling between insert and overwrite modes).- See Also:
-
rtaUndoAction
The name of the action for "undoing" the last action done.- See Also:
-
rtaUnselectAction
The name of the action for unselecting any selected text in the text area.- See Also:
-
rtaUpperSelectionCaseAction
The name of the action for making the current selection upper-case.- See Also:
-
defaultActions
The actions thatRTextAreaEditorKitadds to those of the default editor kit. -
READBUFFER_SIZE
private static final int READBUFFER_SIZEThe amount of characters read at a time when reading a file.- See Also:
-
-
Constructor Details
-
RTextAreaEditorKit
public RTextAreaEditorKit()Constructor.
-
-
Method Details
-
createIconRowHeader
Creates an icon row header to use in the gutter for a text area.- Parameters:
textArea- The text area.- Returns:
- The icon row header.
-
createLineNumberList
Creates a line number list to use in the gutter for a text area.- Parameters:
textArea- The text area.- Returns:
- The line number list.
-
getActions
Fetches the set of commands that can be used on a text component that is using a model and view produced by this kit.- Overrides:
getActionsin classDefaultEditorKit- Returns:
- the command list
-
read
Inserts content from the given stream, which will be treated as plain text. This method is overridden merely so we can increase the number of characters read at a time.- Overrides:
readin classDefaultEditorKit- Parameters:
in- The stream to read fromdoc- The destination for the insertion.pos- The location in the document to place the content >= 0.- Throws:
IOException- on any I/O errorBadLocationException- if pos represents an invalid location within the document.
-