Package | Description |
---|---|
org.q.app.engine.context |
Package for creating a snapshot of the file browser.
|
org.q.app.engine.script |
Package for invoking javax.script's in a hassle free manner.
|
org.q.app.ui.context |
Package for managing the locations opened in the file browser lists.
|
org.q.app.ui.render.browser |
Package for configuring the rendering of browser lists in the application.
|
org.q.app.vfs |
Package for resolving URL's and converting between URL's and Files and back.
|
org.q.plugins.open |
Package for the open ShellCommand.
|
org.q.plugins.various |
Package for the various ShellCommand.
|
Modifier and Type | Method and Description |
---|---|
VirtualFile |
FileSnapshot.getDir()
Get the location opened at the time of the snapshot.
|
VirtualFile |
FileSnapshot.getFile()
Get the primary selection at the time of the snapshot.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<VirtualFile> |
FileSnapshot.getFiles()
Get all selected files at the time of the snapshot.
|
Constructor and Description |
---|
FileSnapshot(VirtualFile dir,
VirtualFile file,
java.util.List<VirtualFile> files)
Constructor.
|
Constructor and Description |
---|
FileSnapshot(VirtualFile dir,
VirtualFile file,
java.util.List<VirtualFile> files)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
VirtualFile |
QVariables.getVirtualFile(java.lang.String key)
Get a Q variable as a
VirtualFile . |
Modifier and Type | Method and Description |
---|---|
VirtualFile |
UIContext.getDir()
Get the directory currently shown.
|
Modifier and Type | Method and Description |
---|---|
void |
UIContext.setDir(VirtualFile file)
Set the directory currently shown.
|
Modifier and Type | Method and Description |
---|---|
VirtualFile |
VirtualFileWrapper.getVirtualFile()
Get the contained
VirtualFile . |
Constructor and Description |
---|
VirtualFileWrapper(VirtualFile file)
Wrap a VirtualFile.
|
Modifier and Type | Method and Description |
---|---|
static VirtualFile[] |
VirtualFiles.getChildrenAlphabetically(VirtualFile file)
Return the children of a
VirtualFile in order. |
static VirtualFile |
VirtualFiles.getLongestExistingPath(VirtualFile child)
Return the
VirtualFile if it exists, otherwise return the longest
existing parent path. |
VirtualFile |
VirtualFile.getParentFile()
Get the parent file that has this file as a child.
|
VirtualFile[] |
VirtualFile.listFiles()
List the children of this VirtualFile in random order.
|
static VirtualFile |
UrlResolver.resolve(java.lang.String url)
Resolve an absolute URL.
|
static VirtualFile |
UrlResolver.resolve(java.lang.String url,
org.apache.commons.vfs.FileObject base)
Resolve a
VirtualFile using a relative or absolute URL relative to a base URL. |
VirtualFile |
VirtualFile.resolveFile(java.lang.String relative)
Resolve a child.
|
static VirtualFile |
UrlResolver.resolveFuzzy(java.lang.String url,
org.apache.commons.vfs.FileObject base)
Use a fuzzy matching algorithm to resolve a URL.
|
Modifier and Type | Method and Description |
---|---|
static java.util.List<VirtualFile> |
VirtualFiles.getAllContainedFiles(VirtualFile root)
Return a List of all files nested at any depth.
|
Modifier and Type | Method and Description |
---|---|
int |
VirtualFileComparator.compare(VirtualFile o1,
VirtualFile o2)
Compare two files alphabetically.
|
static java.util.List<VirtualFile> |
VirtualFiles.getAllContainedFiles(VirtualFile root)
Return a List of all files nested at any depth.
|
static VirtualFile[] |
VirtualFiles.getChildrenAlphabetically(VirtualFile file)
Return the children of a
VirtualFile in order. |
static VirtualFile |
VirtualFiles.getLongestExistingPath(VirtualFile child)
Return the
VirtualFile if it exists, otherwise return the longest
existing parent path. |
static boolean |
VirtualFiles.isParentOf(VirtualFile isParent,
VirtualFile child)
Returns true iff isParent is a parent of child.
|
static boolean |
VirtualFiles.isSameUrl(VirtualFile first,
VirtualFile second)
Returns true iff both files refer to the same url.
|
static java.lang.String |
VirtualFiles.toString(VirtualFile file)
Read a VirtualFile to String.
|
static java.lang.String |
VirtualFiles.toString(VirtualFile file,
java.lang.String encoding)
Read a VirtualFile to String.
|
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
VirtualFiles.findDuplicateFileName(java.util.Collection<? extends VirtualFile> files)
Find duplicate names in a
Collection of VirtualFile 's. |
Modifier and Type | Method and Description |
---|---|
java.util.List<VirtualFile> |
M3uSelection.getEntries()
Get all entries in the m3u file that are available on the file system.
|
java.util.List<VirtualFile> |
M3uSelection.getMissing()
Get all entries in the m3u file, not available on the file system.
|
Modifier and Type | Method and Description |
---|---|
VirtualFile |
FileMatchResults.getDirectory()
Get the last directory that was matched to one or more files.
|
VirtualFile[] |
FileMatchResults.getVirtualFiles()
Get the files that were matched to the directory on the last match.
|
Modifier and Type | Method and Description |
---|---|
void |
FileMatchResults.setMoved(VirtualFile file)
Move the selected File to the matched directory.
|