Package | Description |
---|---|
org.gjt.sp.jedit |
This package contains jEdit's core classes.
|
org.gjt.sp.jedit.bufferset |
Classes related to implementation of the BufferSets feature of jEdit.
|
org.gjt.sp.jedit.gui |
Various GUI controls and dialog boxes.
|
org.gjt.sp.jedit.msg |
EditBus messages.
|
org.gjt.sp.jedit.search |
Search and replace classes.
|
org.gjt.sp.jedit.visitors |
Visitor classes for EditPanes, Views, and Text Areas.
|
Modifier and Type | Method | Description |
---|---|---|
static EditPane |
EditPane.get(TextArea ta) |
Returns the EditPane of a TextArea.
|
EditPane |
View.getEditPane() |
Returns the current edit pane.
|
EditPane[] |
View.getEditPanes() |
Returns all edit panes.
|
EditPane |
View.goToBuffer(Buffer buffer) |
If this buffer is open in one of the view's edit panes, sets focus
to that edit pane.
|
EditPane |
View.showBuffer(Buffer buffer) |
If this buffer is open in one of the view's edit panes, activates
that edit pane.
|
EditPane |
View.split(int orientation) |
Splits the view.
|
EditPane |
View.splitHorizontally() |
Splits the view horizontally.
|
EditPane |
View.splitVertically() |
Splits the view vertically.
|
Modifier and Type | Method | Description |
---|---|---|
static void |
jEdit.closeBuffer(EditPane editPane,
Buffer buffer) |
Close a buffer.
|
static void |
jEdit.moveBuffer(EditPane editPane,
int oldPosition,
int newPosition) |
Moves a buffer from a old position to a new position in the
BufferSet used in an EditPane.
|
static Buffer |
jEdit.newFile(EditPane editPane) |
Creates a new `untitled' file.
|
static Buffer |
jEdit.newFile(EditPane editPane,
java.lang.String dir) |
Creates a new `untitled' file.
|
static Buffer |
jEdit.openFile(EditPane editPane,
java.lang.String path) |
Opens a file.
|
static Buffer |
jEdit.openFile(EditPane editPane,
java.lang.String parent,
java.lang.String path,
boolean newFile,
java.util.Hashtable<java.lang.String,java.lang.Object> props) |
Opens a file.
|
Modifier and Type | Method | Description |
---|---|---|
void |
BufferSetManager.addBuffer(EditPane editPane,
Buffer buffer) |
Add a buffer into the current editPane of the given editPane.
|
void |
BufferSetManager.moveBuffer(EditPane editPane,
int oldPosition,
int newPosition) |
Moves a buffer from a old position to a new position in the
BufferSet used in an EditPane.
|
void |
BufferSetManager.removeBuffer(EditPane editPane,
Buffer buffer) |
Remove a buffer from the EditPane's bufferSet.
|
Constructor | Description |
---|---|
BufferSwitcher(EditPane editPane) |
Modifier and Type | Method | Description |
---|---|---|
EditPane |
EditPaneUpdate.getEditPane() |
Returns the edit pane involved.
|
Constructor | Description |
---|---|
BufferChanging(EditPane editPane,
Buffer newBuffer) |
|
EditPaneUpdate(EditPane editPane,
java.lang.Object what) |
Creates a new edit pane update message.
|
PositionChanging(EditPane editPane) |
|
PositionChanging(EditPane editPane,
java.lang.Object whatt) |
Modifier and Type | Method | Description |
---|---|---|
void |
HyperSearchFileNode.goTo(EditPane editPane) |
|
void |
HyperSearchNode.goTo(EditPane editPane) |
|
void |
HyperSearchResult.goTo(EditPane editPane) |
Modifier and Type | Method | Description |
---|---|---|
void |
JEditVisitor.visit(EditPane editPane) |
Visit an EditPane.
|
void |
JEditVisitorAdapter.visit(EditPane editPane) |
Visit an EditPane.
|
void |
SaveCaretInfoVisitor.visit(EditPane editPane) |