Package ghidra.plugins.fsbrowser
Class FileIconService
- java.lang.Object
-
- ghidra.plugins.fsbrowser.FileIconService
-
public class FileIconService extends java.lang.Object
ProvidesIcon
s that represent the type and status of a file, based on a filename mapping and caller specified status overlays.The mappings between a file's extension and its icon are stored in a resource file called "file_extension_icons.xml", which is read and parsed the first time this service is referenced.
Status overlays are also specified in the file_extension_icons.xml file, and are resized to be 1/2 the width and height of the icon they are being overlaid on.
Threadsafe
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
OVERLAY_FILESYSTEM
static java.lang.String
OVERLAY_IMPORTED
static java.lang.String
OVERLAY_MISSING_PASSWORD
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.swing.Icon
getImage(java.lang.String fileName, java.lang.String... overlays)
Returns anIcon
that represents a file's content based on its name.static FileIconService
getInstance()
protected void
loadIfNeeded()
Loads XML file if it has not been loaded yet.
-
-
-
Field Detail
-
OVERLAY_IMPORTED
public static final java.lang.String OVERLAY_IMPORTED
- See Also:
- Constant Field Values
-
OVERLAY_FILESYSTEM
public static final java.lang.String OVERLAY_FILESYSTEM
- See Also:
- Constant Field Values
-
OVERLAY_MISSING_PASSWORD
public static final java.lang.String OVERLAY_MISSING_PASSWORD
- See Also:
- Constant Field Values
-
-
Method Detail
-
getInstance
public static FileIconService getInstance()
-
getImage
public javax.swing.Icon getImage(java.lang.String fileName, java.lang.String... overlays)
Returns anIcon
that represents a file's content based on its name.- Parameters:
fileName
- name of file that an icon is being requested for.overlays
- optional list of overlay names, names of icons that should be overlaid on top of the base icon, that represent a status or feature independent of the file's base icon.- Returns:
Icon
instance that best represents the named file, never null.
-
loadIfNeeded
protected void loadIfNeeded()
Loads XML file if it has not been loaded yet.
-
-