Class FileIconService

java.lang.Object
ghidra.plugins.fsbrowser.FileIconService

public class FileIconService extends Object
Provides Icons 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 Details

  • Method Details

    • getInstance

      public static FileIconService getInstance()
    • getImage

      public Icon getImage(String fileName, String... overlays)
      Returns an Icon 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.