org.gjt.sp.jedit.textarea |
|
Java Source File Name | Type | Comment |
Anchor.java | Class | A base point for physical line/screen line conversion. |
AntiAlias.java | Class | Class for representing AntiAlias values. |
BufferHandler.java | Class | Note that in this class we take great care to defer complicated
calculations to the end of the current transaction if the buffer
informs us a compound edit is in progress
(isTransactionInProgress() ).
This greatly speeds up replace all for example, by only doing certain
things once, particularly in moveCaretPosition() .
Try doing a replace all in a large file, for example. |
ChunkCache.java | Class | Manages low-level text display tasks - the visible lines in the TextArea. |
DisplayManager.java | Class | Manages low-level text display tasks, such as folding. |
ExtensionManager.java | Class | Manage the extensions for the gutter and the textarea. |
FastRepaintManager.java | Class | Manages blitting the offscreen graphics context to speed up scrolling. |
FirstLine.java | Class | This Anchor is the first visible line of the textarea. |
Gutter.java | Class | The gutter is the component that displays folding triangles and line
numbers to the left of the text area. |
InputMethodSupport.java | Class | |
JEditTextArea.java | Class | jEdit's text component.
Unlike most other text editors, the selection API permits selection and
concurrent manipulation of multiple, non-contiguous regions of text. |
MouseActions.java | Class | |
MouseActionsProvider.java | Interface | |
MouseHandler.java | Class | The mouseHandler used for jEdit. |
RangeMap.java | Class | The fold visibility map. |
ScreenLineManager.java | Class | Performs the Mapping between physical lines and screen lines. |
ScrollLayout.java | Class | |
ScrollLineCount.java | Class | Maintains the vertical scrollbar. |
ScrollListener.java | Interface | A scroll listener will be notified when the text area is scrolled, either
horizontally or vertically. |
Selection.java | Class | An abstract class that holds data on a region of selected text. |
SelectionManager.java | Class | |
StatusListener.java | Interface | Fired when the text area needs to display a status message. |
StructureMatcher.java | Interface | An interface for matching parts of a source file's stucture. |
TextArea.java | Class | jEdit's text component.
Unlike most other text editors, the selection API permits selection and
concurrent manipulation of multiple, non-contiguous regions of text.
Methods in this class that deal with selecting text rely upon classes derived
the
Selection class.
author: Slava Pestov author: John Gellene (API documentation) version: $Id: JEditTextArea.java 7148 2006-09-29 23:09:06 +0200 (ven., 29 sept. |
TextAreaBorder.java | Class | |
TextAreaDropHandler.java | Class | |
TextAreaException.java | Class | Exception that the TextArea can throw when an error occurs. |
TextAreaExtension.java | Class | Subclasses of this class can perform custom painting and tool tip
handling in the text area and gutter. |
TextAreaMouseHandler.java | Class | |
TextAreaPainter.java | Class | The text area painter is the component responsible for displaying the
text of the current buffer. |
TextAreaTransferHandler.java | Class | |