|
|||||||||
| Home >> All >> org >> gjt >> sp >> [ jedit overview ] | PREV NEXT | ||||||||
Uses of Class
org.gjt.sp.jedit.View
| Uses of View in org.gjt.sp.jedit |
| Fields in org.gjt.sp.jedit declared as View | |
(package private) View |
PerspectiveManager.PerspectiveHandler.view
|
private static View |
jEdit.viewsFirst
|
private static View |
jEdit.viewsLast
|
private static View |
jEdit.activeView
|
(package private) View |
View.prev
|
(package private) View |
View.next
|
(package private) View |
Macros.Recorder.view
|
private View |
EditPane.view
|
| Methods in org.gjt.sp.jedit that return View | |
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. |
static View[] |
jEdit.getViews()
Returns an array of all open views. |
static View |
jEdit.getFirstView()
Returns the first view. |
static View |
jEdit.getLastView()
Returns the last view. |
static View |
jEdit.getActiveView()
Returns the currently focused view. |
View |
View.getNext()
Returns the next view in the list. |
View |
View.getPrev()
Returns the previous view in the list. |
static View |
GUIUtilities.getView(java.awt.Component comp)
Finds the view parent of the specified component. |
View |
EditPane.getView()
Returns the view containing this edit pane. |
static View |
EditAction.getView(java.awt.Component comp)
Deprecated. Call GUIUtilities.getView() instead. |
| Methods in org.gjt.sp.jedit with parameters of type View | |
static boolean |
Abbrevs.expandAbbrev(View view,
boolean add)
Expands the abbrev at the caret position in the specified view. |
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.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.openTemporary(View view,
java.lang.String parent,
java.lang.String path,
boolean newFile)
Opens a temporary buffer. |
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 boolean |
jEdit.closeBuffer(View view,
Buffer buffer)
Closes a buffer. |
static void |
jEdit._closeBuffer(View view,
Buffer buffer)
Closes the buffer, even if it has unsaved changes. |
static boolean |
jEdit.closeAllBuffers(View view)
Closes all open buffers. |
static boolean |
jEdit.closeAllBuffers(View view,
boolean isExiting)
Closes all open buffers. |
static void |
jEdit.saveAllBuffers(View view)
Saves all open buffers. |
static void |
jEdit.saveAllBuffers(View view,
boolean confirm)
Saves all open buffers. |
static void |
jEdit.reloadAllBuffers(View view,
boolean confirm)
Reloads all open buffers. |
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. |
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 void |
jEdit.closeView(View view)
Closes a view. |
static void |
jEdit.showMemoryDialog(View view)
Performs garbage collection and displays a dialog box showing memory status. |
static void |
jEdit.exit(View view,
boolean reallyExit)
Exits cleanly from jEdit, prompting the user if any unsaved files should be saved first. |
(package private) static void |
jEdit.setActiveView(View view)
|
private static void |
jEdit.gotoMarker(View view,
Buffer buffer,
java.lang.String marker)
|
private static void |
jEdit.addViewToList(View view)
|
private static void |
jEdit.removeViewFromList(View view)
|
private static void |
jEdit.closeView(View view,
boolean callExit)
closeView() used by exit(). |
static void |
Macros.showRunScriptDialog(View view)
Prompts for one or more files to run as macros |
static void |
Macros.runScript(View view,
java.lang.String path,
boolean ignoreUnknown)
Runs the specified script. |
static void |
Macros.recordTemporaryMacro(View view)
Starts recording a temporary macro. |
static void |
Macros.recordMacro(View view)
Starts recording a macro. |
static void |
Macros.stopRecording(View view)
Stops a recording currently in progress. |
static void |
Macros.runTemporaryMacro(View view)
Runs the temporary macro. |
private static void |
Macros.recordMacro(View view,
Buffer buffer,
boolean temporary)
Starts recording a macro. |
void |
Macros.Macro.invoke(View view)
|
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. |
void |
Macros.BeanShellHandler.runMacro(View view,
Macros.Macro macro)
|
void |
Macros.BeanShellHandler.runMacro(View view,
Macros.Macro macro,
boolean ownNamespace)
|
static java.lang.String[] |
GUIUtilities.showVFSFileDialog(View view,
java.lang.String path,
int type,
boolean multipleSelection)
Displays a VFS file selection dialog box. |
void |
EditAction.invoke(View view)
Invokes the action. |
void |
Buffer.reload(View view)
Reloads the buffer from disk, asking for confirmation if the buffer has unsaved changes. |
boolean |
Buffer.load(View view,
boolean reload)
Loads the buffer from disk, even if it is loaded already. |
boolean |
Buffer.insertFile(View view,
java.lang.String path)
Loads a file from disk, and inserts it into this buffer. |
boolean |
Buffer.saveAs(View view,
boolean rename)
Prompts the user for a file to save this buffer to. |
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. |
int |
Buffer.checkFileStatus(View view)
Check if the buffer has changed on disk. |
void |
Buffer.toggleWordWrap(View view)
Toggles word wrap between the three available modes. |
void |
Buffer.toggleLineSeparator(View view)
Toggles the line separator between the three available settings. |
private boolean |
Buffer.recoverAutosave(View view)
|
private boolean |
Buffer.checkFileForLoad(View view,
org.gjt.sp.jedit.io.VFS vfs,
java.lang.String path)
|
private boolean |
Buffer.checkFileForSave(View view,
org.gjt.sp.jedit.io.VFS vfs,
java.lang.String path)
|
private void |
Buffer.finishSaving(View view,
java.lang.String oldPath,
java.lang.String oldSymlinkPath,
java.lang.String path,
boolean rename,
boolean error)
|
void |
BeanShellAction.invoke(View view)
|
static void |
BeanShell.evalSelection(View view,
org.gjt.sp.jedit.textarea.JEditTextArea textArea)
Evaluates the text selected in the specified text area. |
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 |
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,
bsh.NameSpace namespace)
Runs a BeanShell script. |
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,
bsh.NameSpace namespace)
Runs a BeanShell script. |
static java.lang.Object |
BeanShell.eval(View view,
bsh.NameSpace namespace,
java.lang.String command)
Evaluates the specified BeanShell expression. |
static java.lang.Object |
BeanShell._eval(View view,
bsh.NameSpace namespace,
java.lang.String command)
Evaluates the specified BeanShell expression. |
static java.lang.Object |
BeanShell.runCachedBlock(bsh.BshMethod method,
View view,
bsh.NameSpace namespace)
Runs a cached block of code in the specified namespace. |
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,
boolean rethrowBshErrors)
Deprecated. The rethrowBshErrors parameter is now
obsolete; call _runScript() or runScript()
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 java.lang.Object |
BeanShell.eval(View view,
bsh.NameSpace namespace,
java.lang.String command,
boolean rethrowBshErrors)
Deprecated. The rethrowBshErrors parameter is now
obsolete; call _eval() or eval() instead. |
private static void |
BeanShell.setupDefaultVariables(bsh.NameSpace namespace,
View view)
|
private static void |
BeanShell.handleException(View view,
java.lang.String path,
java.lang.Throwable t)
|
| Constructors in org.gjt.sp.jedit with parameters of type View | |
Macros.Recorder(View view,
Buffer buffer,
boolean temporary)
|
|
EditPane(View view,
Buffer buffer)
|
|
|
|||||||||
| Home >> All >> org >> gjt >> sp >> [ jedit overview ] | PREV NEXT | ||||||||