|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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.bufferio | |
org.gjt.sp.jedit.bufferset | |
org.gjt.sp.jedit.gui | Various GUI controls and dialog boxes. |
org.gjt.sp.jedit.gui.statusbar | |
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 | Since jEdit 4.2, many TextArea classes have been split into a base and derived class. |
org.gjt.sp.jedit.visitors |
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.getActiveViewInternal()
Returns the internal active view, which might be null. |
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. |
void |
View.adjust(View parent,
View.ViewConfig config)
|
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 void |
jEdit.checkBufferStatus(View view,
boolean currentBuffer)
Checks buffer 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 |
Macros.Macro.invoke(View view)
|
abstract void |
EditAction.invoke(View view)
Invokes the action. |
void |
BeanShellAction.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 Buffer |
jEdit.openTemporary(View view,
java.lang.String parent,
java.lang.String path,
boolean newFile,
java.util.Hashtable props)
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. |
boolean |
Buffer.save(View view,
java.lang.String path,
boolean rename,
boolean disableFileStatusCheck)
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(java.awt.Dialog parent,
View view,
java.lang.String path,
int type,
boolean multipleSelection)
Displays a VFS file selection dialog box. |
static java.lang.String[] |
GUIUtilities.showVFSFileDialog(java.awt.Frame parent,
View view,
java.lang.String path,
int type,
boolean multipleSelection)
Displays a VFS file selection dialog box. |
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. |
boolean |
Buffer.updateMarkersFile(View view)
Save the markers file, or delete it when there are mo markers left Handling markers is now independent from saving the buffer. |
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(java.awt.Dialog parent,
View view,
java.lang.String path,
int mode,
boolean multipleSelection,
boolean autoshow)
Constructs a new VFSFileChooserDialog. |
|
VFSFileChooserDialog(java.awt.Frame parent,
View view,
java.lang.String path,
int mode,
boolean multipleSelection,
boolean autoshow)
Constructs a new VFSFileChooserDialog. |
|
VFSFileChooserDialog(View view,
java.lang.String path,
int mode,
boolean multipleSelection)
|
|
VFSFileChooserDialog(View view,
java.lang.String path,
int mode,
boolean multipleSelection,
boolean autoshow)
Constructs a new VFSFileChooserDialog. |
Uses of View in org.gjt.sp.jedit.bufferio |
---|
Fields in org.gjt.sp.jedit.bufferio declared as View | |
---|---|
protected View |
MarkersSaveRequest.view
|
protected View |
BufferIORequest.view
|
Constructors in org.gjt.sp.jedit.bufferio 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. |
|
MarkersSaveRequest(View view,
Buffer buffer,
java.lang.Object session,
VFS vfs,
java.lang.String path)
Creates a new I/O request for markers. |
Uses of View in org.gjt.sp.jedit.bufferset |
---|
Methods in org.gjt.sp.jedit.bufferset with parameters of type View | |
---|---|
void |
BufferSetManager.addBuffer(View view,
Buffer buffer)
Add a buffer into the current editPane of the given view. |
Uses of View in org.gjt.sp.jedit.gui |
---|
Fields in org.gjt.sp.jedit.gui declared as View | |
---|---|
protected View |
InputHandler.view
|
protected View |
DockableWindowManager.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)
|
DockableWindowManager |
DockingFrameworkProvider.create(View view,
DockableWindowFactory instance,
View.ViewConfig config)
|
DockableWindowManager |
DockableWindowManagerProvider.create(View view,
DockableWindowFactory instance,
View.ViewConfig config)
|
static void |
DockingLayoutManager.load(View view)
|
static void |
DockingLayoutManager.loadCurrentModeLayout(View view)
|
static void |
DockingLayoutManager.saveAs(View view)
|
static void |
DockingLayoutManager.saveCurrentModeLayout(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)
|
|
CloseDialog(View view,
java.util.Collection<Buffer> buffers)
|
|
CompleteWord(View view,
java.lang.String word,
org.gjt.sp.jedit.gui.CompleteWord.Completion[] completions,
java.awt.Point location,
java.lang.String noWordSep)
|
|
CompletionPopup(View view)
Create a completion popup. |
|
CompletionPopup(View view,
java.awt.Point location)
|
|
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 instance,
View.ViewConfig config)
|
|
DockableWindowManagerImpl(View view,
DockableWindowFactory factory,
View.ViewConfig config)
Creates a new dockable window manager. |
|
FilePropertiesDialog(View view,
VFSBrowser browser,
VFSFile[] files)
The FilePropertiesDialog's constructor |
|
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.gui.statusbar |
---|
Methods in org.gjt.sp.jedit.gui.statusbar with parameters of type View | |
---|---|
Widget |
WrapWidgetFactory.getWidget(View view)
|
Widget |
StatusWidgetFactory.getWidget(View view)
returns an instance of Widget for the given view |
Widget |
SelectionLengthWidgetFactory.getWidget(View view)
|
Widget |
RectSelectWidgetFactory.getWidget(View view)
|
Widget |
OverwriteWidgetFactory.getWidget(View view)
|
Widget |
MultiSelectWidgetFactory.getWidget(View view)
|
Widget |
ModeWidgetFactory.getWidget(View view)
|
Widget |
MemoryStatusWidgetFactory.getWidget(View view)
|
Widget |
LineSepWidgetFactory.getWidget(View view)
|
Widget |
FoldWidgetFactory.getWidget(View view)
|
Widget |
ErrorsWidgetFactory.getWidget(View view)
|
Widget |
EncodingWidgetFactory.getWidget(View view)
|
Widget |
ClockWidgetFactory.getWidget(View view)
|
Widget |
BufferSetWidgetFactory.getWidget(View view)
|
Uses of View in org.gjt.sp.jedit.io |
---|
Methods in org.gjt.sp.jedit.io with parameters of type View | |
---|---|
boolean |
VFS.insert(View view,
Buffer buffer,
java.lang.String path)
Inserts a file into the specified buffer. |
boolean |
FileVFS.insert(View view,
Buffer buffer,
java.lang.String path)
|
boolean |
VFS.load(View view,
Buffer buffer,
java.lang.String path)
Loads the specified buffer. |
boolean |
VFS.save(View view,
Buffer buffer,
java.lang.String path)
Saves the specifies buffer. |
boolean |
FileVFS.save(View view,
Buffer buffer,
java.lang.String path)
|
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 |
VFSPathSelected.getView()
|
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. |
|
VFSPathSelected(View source,
java.lang.String path,
boolean isDirectory)
|
|
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 occurrence 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. |
Buffer |
HyperSearchResult.getBuffer(View view)
|
Buffer |
HyperSearchNode.getBuffer(View view)
|
Buffer |
HyperSearchFileNode.getBuffer(View view)
|
int |
SearchFileSet.getFileCount(View view)
Returns the number of files in this file set. |
int |
CurrentBufferSet.getFileCount(View view)
|
int |
BufferListSet.getFileCount(View view)
|
java.lang.String[] |
SearchFileSet.getFiles(View view)
Returns all path names in this file set. |
java.lang.String[] |
CurrentBufferSet.getFiles(View view)
|
java.lang.String[] |
BufferListSet.getFiles(View view)
|
java.lang.String |
SearchFileSet.getFirstFile(View view)
Returns the first file to search. |
java.lang.String |
CurrentBufferSet.getFirstFile(View view)
|
java.lang.String |
BufferListSet.getFirstFile(View view)
|
java.lang.String |
SearchFileSet.getNextFile(View view,
java.lang.String path)
Returns the next file to search. |
java.lang.String |
CurrentBufferSet.getNextFile(View view,
java.lang.String file)
|
java.lang.String |
BufferListSet.getNextFile(View view,
java.lang.String path)
|
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 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 occurrences of the search string with the replacement string. |
static boolean |
SearchAndReplace.replaceAll(View view,
boolean dontOpenChangedFiles)
Replaces all occurrences 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. |
Methods in org.gjt.sp.jedit.textarea with parameters of type View | |
---|---|
protected static void |
JEditTextArea.doWordCount(View view,
java.lang.String text)
|
Constructors in org.gjt.sp.jedit.textarea with parameters of type View | |
---|---|
JEditTextArea(View view)
Creates a new JEditTextArea. |
Uses of View in org.gjt.sp.jedit.visitors |
---|
Methods in org.gjt.sp.jedit.visitors with parameters of type View | |
---|---|
void |
JEditVisitorAdapter.visit(View view)
Visit a view. |
void |
JEditVisitor.visit(View view)
Visit a view. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |