Uses of Class
org.gjt.sp.jedit.View

Packages that use View
org.gjt.sp.jedit This package contains jEdit's core classes. 
org.gjt.sp.jedit.browser jEdit's file system browser. 
org.gjt.sp.jedit.buffer Buffer event listeners, and classes used to implement jEdit's document model. 
org.gjt.sp.jedit.gui Various GUI controls and dialog boxes. 
org.gjt.sp.jedit.io Virtual file system and multi-threaded I/O. 
org.gjt.sp.jedit.msg EditBus messages. 
org.gjt.sp.jedit.print Printing. 
org.gjt.sp.jedit.search Search and replace classes. 
org.gjt.sp.jedit.textarea The classes in this package are in the process of being refactored, for jedit 4.3final. 
 

Uses of View in org.gjt.sp.jedit
 

Methods in org.gjt.sp.jedit that return View
static View jEdit.getActiveView()
          Returns the currently focused view.
static View jEdit.getFirstView()
          Returns the first view.
static View jEdit.getLastView()
          Returns the last view.
 View View.getNext()
          Returns the next view in the list.
 View View.getPrev()
          Returns the previous view in the list.
 View EditPane.getView()
          Returns the view containing this edit pane.
static View GUIUtilities.getView(java.awt.Component comp)
          Finds the view parent of the specified component.
static View EditAction.getView(java.awt.Component comp)
          Deprecated. Call GUIUtilities.getView() instead.
static View[] jEdit.getViews()
          Returns an array of all open views.
static View PerspectiveManager.loadPerspective(boolean restoreFiles)
           
static View jEdit.newView(View view)
          Creates a new view.
static View jEdit.newView(View view, Buffer buffer)
          Creates a new view of a buffer.
static View jEdit.newView(View view, Buffer buffer, boolean plainView)
          Creates a new view of a buffer.
static View jEdit.newView(View view, Buffer buffer, View.ViewConfig config)
          Creates a new view.
 

Methods in org.gjt.sp.jedit with parameters of type View
static void jEdit._closeBuffer(View view, Buffer buffer)
          Closes the buffer, even if it has unsaved changes.
static java.lang.Object BeanShell._eval(View view, NameSpace namespace, java.lang.String command)
          Evaluates the specified BeanShell expression.
static void BeanShell._runScript(View view, java.lang.String path, java.io.Reader in, boolean ownNamespace)
          Runs a BeanShell script.
static void BeanShell._runScript(View view, java.lang.String path, java.io.Reader in, NameSpace namespace)
          Runs a BeanShell script.
static void jEdit.checkBufferStatus(View view)
          Checks each buffer's status on disk and shows the dialog box informing the user that buffers changed on disk, if necessary.
 int Buffer.checkFileStatus(View view)
          Check if the buffer has changed on disk.
static boolean jEdit.closeAllBuffers(View view)
          Closes all open buffers.
static boolean jEdit.closeAllBuffers(View view, boolean isExiting)
          Closes all open buffers.
static boolean jEdit.closeBuffer(View view, Buffer buffer)
          Closes a buffer.
static void jEdit.closeView(View view)
          Closes a view.
static java.lang.Object BeanShell.eval(View view, NameSpace namespace, java.lang.String command)
          Evaluates the specified BeanShell expression.
static java.lang.Object BeanShell.eval(View view, NameSpace namespace, java.lang.String command, boolean rethrowBshErrors)
          Deprecated. The rethrowBshErrors parameter is now obsolete; call _eval() or eval() instead.
static java.lang.Object BeanShell.eval(View view, java.lang.String command, boolean rethrowBshErrors)
          Deprecated. The rethrowBshErrors parameter is now obsolete; call _eval() or eval() instead.
static void BeanShell.evalSelection(View view, JEditTextArea textArea)
          Evaluates the text selected in the specified text area.
static void jEdit.exit(View view, boolean reallyExit)
          Exits cleanly from jEdit, prompting the user if any unsaved files should be saved first.
static boolean Abbrevs.expandAbbrev(View view, boolean add)
          Expands the abbrev at the caret position in the specified view.
 boolean Buffer.insertFile(View view, java.lang.String path)
          Loads a file from disk, and inserts it into this buffer.
 void BeanShellAction.invoke(View view)
           
 void EditAction.invoke(View view)
          Invokes the action.
 void Macros.Macro.invoke(View view)
           
 boolean Buffer.load(View view, boolean reload)
          Loads the buffer from disk.
static Buffer jEdit.newFile(View view)
          Creates a new `untitled' file.
static Buffer jEdit.newFile(View view, java.lang.String dir)
          Creates a new `untitled' file.
static View jEdit.newView(View view)
          Creates a new view.
static View jEdit.newView(View view, Buffer buffer)
          Creates a new view of a buffer.
static View jEdit.newView(View view, Buffer buffer, boolean plainView)
          Creates a new view of a buffer.
static View jEdit.newView(View view, Buffer buffer, View.ViewConfig config)
          Creates a new view.
static Buffer jEdit.openFile(View view, java.lang.String path)
          Opens a file.
static Buffer jEdit.openFile(View view, java.lang.String parent, java.lang.String path, boolean readOnly, boolean newFile)
          Deprecated. The openFile() forms with the readOnly parameter should not be used. The readOnly prameter is no longer supported.
static Buffer jEdit.openFile(View view, java.lang.String parent, java.lang.String path, boolean readOnly, boolean newFile, java.util.Hashtable props)
          Deprecated. The openFile() forms with the readOnly parameter should not be used. The readOnly prameter is no longer supported.
static Buffer jEdit.openFile(View view, java.lang.String parent, java.lang.String path, boolean newFile, java.util.Hashtable props)
          Opens a file.
static Buffer jEdit.openFiles(View view, java.lang.String parent, java.lang.String[] args)
          Opens the file names specified in the argument array.
static Buffer jEdit.openTemporary(View view, java.lang.String parent, java.lang.String path, boolean newFile)
          Opens a temporary buffer.
static void Macros.recordMacro(View view)
          Starts recording a macro.
static void Macros.recordTemporaryMacro(View view)
          Starts recording a temporary macro.
 void Buffer.reload(View view)
          Reloads the buffer from disk, asking for confirmation if the buffer has unsaved changes.
static void jEdit.reloadAllBuffers(View view, boolean confirm)
          Reloads all open buffers.
static java.lang.Object BeanShell.runCachedBlock(BshMethod method, View view, NameSpace namespace)
          Runs a cached block of code in the specified namespace.
abstract  void Macros.Handler.runMacro(View view, Macros.Macro macro)
          Runs the specified macro.
 void Macros.Handler.runMacro(View view, Macros.Macro macro, boolean ownNamespace)
          Runs the specified macro.
static void Macros.runScript(View view, java.lang.String path, boolean ignoreUnknown)
          Runs the specified script.
static void BeanShell.runScript(View view, java.lang.String path, boolean ownNamespace, boolean rethrowBshErrors)
          Deprecated. The rethrowBshErrors parameter is now obsolete; call _runScript() or runScript() instead.
static void BeanShell.runScript(View view, java.lang.String path, java.io.Reader in, boolean ownNamespace)
          Runs a BeanShell script.
static void BeanShell.runScript(View view, java.lang.String path, java.io.Reader in, boolean ownNamespace, boolean rethrowBshErrors)
          Deprecated. The rethrowBshErrors parameter is now obsolete; call _runScript() or runScript() instead.
static void BeanShell.runScript(View view, java.lang.String path, java.io.Reader in, NameSpace namespace)
          Runs a BeanShell script.
static void Macros.runTemporaryMacro(View view)
          Runs the temporary macro.
 boolean Buffer.save(View view, java.lang.String path)
          Saves this buffer to the specified path name, or the current path name if it's null.
 boolean Buffer.save(View view, java.lang.String path, boolean rename)
          Saves this buffer to the specified path name, or the current path name if it's null.
static void jEdit.saveAllBuffers(View view)
          Saves all open buffers.
static void jEdit.saveAllBuffers(View view, boolean confirm)
          Saves all open buffers.
 boolean Buffer.saveAs(View view, boolean rename)
          Prompts the user for a file to save this buffer to.
static void BeanShell.showEvaluateDialog(View view)
          Prompts for a BeanShell expression to evaluate.
static void BeanShell.showEvaluateLinesDialog(View view)
          Evaluates the specified script for each selected line.
static void jEdit.showMemoryDialog(View view)
          Performs garbage collection and displays a dialog box showing memory status.
static void Macros.showRunScriptDialog(View view)
          Prompts for one or more files to run as macros
static java.lang.String[] GUIUtilities.showVFSFileDialog(View view, java.lang.String path, int type, boolean multipleSelection)
          Displays a VFS file selection dialog box.
static void Macros.stopRecording(View view)
          Stops a recording currently in progress.
 void Buffer.toggleLineSeparator(View view)
          Toggles the line separator between the three available settings.
 void Buffer.toggleWordWrap(View view)
          Toggles word wrap between the three available modes.
 

Constructors in org.gjt.sp.jedit with parameters of type View
Macros.Recorder(View view, Buffer buffer, boolean temporary)
           
 

Uses of View in org.gjt.sp.jedit.browser
 

Methods in org.gjt.sp.jedit.browser that return View
 View VFSBrowser.getView()
           
 

Methods in org.gjt.sp.jedit.browser with parameters of type View
static void VFSBrowser.browseDirectory(View view, java.lang.String path)
          Opens the specified directory in a file system browser.
static void VFSBrowser.browseDirectoryInNewWindow(View view, java.lang.String path)
          Opens the specified directory in a new, floating, file system browser.
 

Constructors in org.gjt.sp.jedit.browser with parameters of type View
VFSBrowser(View view, java.lang.String position)
          Creates a new VFS browser.
VFSBrowser(View view, java.lang.String path, int mode, boolean multipleSelection, java.lang.String position)
          Creates a new VFS browser.
VFSFileChooserDialog(View view, java.lang.String path, int mode, boolean multipleSelection)
           
 

Uses of View in org.gjt.sp.jedit.buffer
 

Fields in org.gjt.sp.jedit.buffer declared as View
protected  View BufferIORequest.view
           
 

Constructors in org.gjt.sp.jedit.buffer with parameters of type View
BufferAutosaveRequest(View view, Buffer buffer, java.lang.Object session, VFS vfs, java.lang.String path)
          Creates a new buffer I/O request.
BufferInsertRequest(View view, Buffer buffer, java.lang.Object session, VFS vfs, java.lang.String path)
          Creates a new buffer I/O request.
BufferIORequest(View view, Buffer buffer, java.lang.Object session, VFS vfs, java.lang.String path)
          Creates a new buffer I/O request.
BufferLoadRequest(View view, Buffer buffer, java.lang.Object session, VFS vfs, java.lang.String path)
          Creates a new buffer I/O request.
BufferSaveRequest(View view, Buffer buffer, java.lang.Object session, VFS vfs, java.lang.String path)
          Creates a new buffer I/O request.
 

Uses of View in org.gjt.sp.jedit.gui
 

Fields in org.gjt.sp.jedit.gui declared as View
protected  View InputHandler.view
           
 

Methods in org.gjt.sp.jedit.gui that return View
 View DockableWindowManager.getView()
          Returns this dockable window manager's view.
 

Methods in org.gjt.sp.jedit.gui with parameters of type View
static void CompleteWord.completeWord(View view)
           
 

Constructors in org.gjt.sp.jedit.gui with parameters of type View
AboutDialog(View view)
           
ActionBar(View view, boolean temp)
           
AddAbbrevDialog(View view, java.lang.String abbrev)
           
BeanShellErrorDialog(View view, java.lang.Throwable t)
           
BufferOptions(View view, Buffer buffer)
           
CloseDialog(View view)
           
CompleteWord(View view, java.lang.String word, org.gjt.sp.jedit.gui.CompleteWord.Completion[] completions, java.awt.Point location, java.lang.String noWordSep)
           
DefaultInputHandler(View view)
          Creates a new input handler with no key bindings defined.
DefaultInputHandler(View view, DefaultInputHandler copy)
          Creates a new input handler with the same set of key bindings as the one specified.
DefaultInputHandler(View view, java.util.Hashtable bindings)
          Creates a new input handler with no key bindings defined.
DockableWindowManager(View view, DockableWindowFactory factory, View.ViewConfig config)
          Creates a new dockable window manager.
FilesChangedDialog(View view, int[] states, boolean alreadyReloaded)
           
InputHandler(View view)
          Creates a new input handler.
MarkerViewer(View view)
           
PasteFromListDialog(java.lang.String name, View view, MutableListModel model)
           
RegisterViewer(View view, java.lang.String position)
           
SelectLineRange(View view)
           
StatusBar(View view)
           
TipOfTheDay(View view)
           
 

Uses of View in org.gjt.sp.jedit.io
 

Methods in org.gjt.sp.jedit.io with parameters of type View
 boolean FileVFS.insert(View view, Buffer buffer, java.lang.String path)
           
 boolean VFS.insert(View view, Buffer buffer, java.lang.String path)
          Inserts a file into the specified buffer.
 boolean VFS.load(View view, Buffer buffer, java.lang.String path)
          Loads the specified buffer.
 boolean FileVFS.save(View view, Buffer buffer, java.lang.String path)
           
 boolean VFS.save(View view, Buffer buffer, java.lang.String path)
          Saves the specifies buffer.
 

Uses of View in org.gjt.sp.jedit.msg
 

Methods in org.gjt.sp.jedit.msg that return View
 View ViewUpdate.getView()
          Returns the view involved.
 View EditorExitRequested.getView()
          Returns the view involved.
 View BufferUpdate.getView()
          Returns the view involved, which may be null.
 

Constructors in org.gjt.sp.jedit.msg with parameters of type View
BufferUpdate(Buffer buffer, View view, java.lang.Object what)
          Creates a new buffer update message.
EditorExitRequested(View view)
          Creates a new editor exiting started message.
ViewUpdate(View view, java.lang.Object what)
          Creates a new view update message.
 

Uses of View in org.gjt.sp.jedit.print
 

Methods in org.gjt.sp.jedit.print with parameters of type View
static void BufferPrinter1_4.pageSetup(View view)
           
static void BufferPrinter1_3.pageSetup(View view)
           
static void BufferPrinter1_4.print(View view, Buffer buffer, boolean selection)
           
static void BufferPrinter1_3.print(View view, Buffer buffer, boolean selection)
           
 

Uses of View in org.gjt.sp.jedit.search
 

Methods in org.gjt.sp.jedit.search with parameters of type View
static boolean SearchAndReplace.find(View view)
          Finds the next occurance of the search string.
static boolean SearchAndReplace.find(View view, Buffer buffer, int start)
          Finds the next instance of the search string in the specified buffer.
static boolean SearchAndReplace.find(View view, Buffer buffer, int start, boolean firstTime, boolean reverse)
          Finds the next instance of the search string in the specified buffer.
 int CurrentBufferSet.getFileCount(View view)
           
 int SearchFileSet.getFileCount(View view)
          Returns the number of files in this file set.
 int BufferListSet.getFileCount(View view)
           
 java.lang.String[] CurrentBufferSet.getFiles(View view)
           
 java.lang.String[] SearchFileSet.getFiles(View view)
          Returns all path names in this file set.
 java.lang.String[] BufferListSet.getFiles(View view)
           
 java.lang.String CurrentBufferSet.getFirstFile(View view)
           
 java.lang.String SearchFileSet.getFirstFile(View view)
          Returns the first file to search.
 java.lang.String BufferListSet.getFirstFile(View view)
           
 java.lang.String CurrentBufferSet.getNextFile(View view, java.lang.String file)
           
 java.lang.String SearchFileSet.getNextFile(View view, java.lang.String path)
          Returns the next file to search.
 java.lang.String BufferListSet.getNextFile(View view, java.lang.String file)
           
static SearchDialog SearchDialog.getSearchDialog(View view)
           
static boolean SearchAndReplace.hyperSearch(View view)
          Performs a HyperSearch.
static boolean SearchAndReplace.hyperSearch(View view, boolean selection)
          Performs a HyperSearch.
static void SearchDialog.preloadSearchDialog(View view)
          Preloads the search dialog for the given for so that it can be quickly displayed later.
static boolean SearchAndReplace.replace(View view)
          Replaces the current selection with the replacement string.
static boolean SearchAndReplace.replace(View view, Buffer buffer, int start, int end)
          Replaces text in the specified range with the replacement string.
static boolean SearchAndReplace.replaceAll(View view)
          Replaces all occurances of the search string with the replacement string.
static void SearchDialog.showSearchDialog(View view, java.lang.String searchString, int searchIn)
          Displays a search and replace dialog box, reusing an existing one if necessary.
 

Constructors in org.gjt.sp.jedit.search with parameters of type View
HyperSearchResults(View view)
           
SearchBar(View view, boolean temp)
           
 

Uses of View in org.gjt.sp.jedit.textarea
 

Methods in org.gjt.sp.jedit.textarea that return View
 View JEditTextArea.getView()
          Returns this text area's view.
 

Constructors in org.gjt.sp.jedit.textarea with parameters of type View
JEditTextArea(View view)
          Creates a new JEditTextArea.