View
is jEdit's top-level frame window. In a BeanShell script, you can obtain the current view instance from the view
variable.
The largest component it contains is an {@link EditPane} that in turncontains a {@link org.gjt.sp.jedit.textarea.JEditTextArea} that displays a{@link Buffer}. A view can have more than one edit pane in a split window configuration. A view also contains a menu bar, an optional toolbar and other window decorations, as well as docked windows.
The View class performs two important operations dealing with plugins: creating plugin menu items, and managing dockable windows.
jEdit
class.
@see org.gjt.sp.jedit.jEdit#newView(View)
@see org.gjt.sp.jedit.jEdit#newView(View,Buffer)
@see org.gjt.sp.jedit.jEdit#newView(View,Buffer,boolean)
@see org.gjt.sp.jedit.jEdit#closeView(View)
@author Slava Pestov
@author John Gellene (API documentation)
@version $Id: View.java,v 1.111 2004/05/06 22:35:11 spestov Exp $
|
|