Eclipse eRCP
Release 1.1

Uses of Class
org.eclipse.jface.resource.ImageDescriptor

Packages that use ImageDescriptor
org.eclipse.jface.action Provides support for shared UI resources such as menus, tool bars, and status lines.  
org.eclipse.jface.preference Provides a framework for preferences.  
org.eclipse.jface.resource Provides support for managing resources such as SWT fonts and images.  
org.eclipse.jface.viewers Provides a framework for viewers, which are model-based content adapters for SWT widgets.  
org.eclipse.ui Application programming interfaces for interaction with and extension of the Eclipse Platform User Interface.  
org.eclipse.ui.application Application-level APIs for configuring and controling the Eclipse Platform User Interface.  
org.eclipse.ui.plugin Class hierarchies for plug-ins that integrate with the Eclipse Platform UI.  
org.eclipse.ui.views   
 

Uses of ImageDescriptor in org.eclipse.jface.action
 

Methods in org.eclipse.jface.action that return ImageDescriptor
 ImageDescriptor IAction.getDisabledImageDescriptor()
          Returns the disabled image for this action as an image descriptor.
 ImageDescriptor IAction.getHoverImageDescriptor()
          Returns the hover image for this action as an image descriptor.
 ImageDescriptor IAction.getImageDescriptor()
          Returns the image for this action as an image descriptor.
 ImageDescriptor Action.getDisabledImageDescriptor()
           
 ImageDescriptor Action.getHoverImageDescriptor()
           
 ImageDescriptor Action.getImageDescriptor()
           
 

Methods in org.eclipse.jface.action with parameters of type ImageDescriptor
 void IAction.setDisabledImageDescriptor(ImageDescriptor newImage)
          Sets the disabled image for this action, as an image descriptor.
 void IAction.setHoverImageDescriptor(ImageDescriptor newImage)
          Sets the hover image for this action, as an image descriptor.
 void IAction.setImageDescriptor(ImageDescriptor newImage)
          Sets the image for this action, as an image descriptor.
 void Action.setDisabledImageDescriptor(ImageDescriptor newImage)
           
 void Action.setHoverImageDescriptor(ImageDescriptor newImage)
           
 void Action.setImageDescriptor(ImageDescriptor newImage)
           
 

Constructors in org.eclipse.jface.action with parameters of type ImageDescriptor
Action(String text, ImageDescriptor image)
          Creates a new action with the given text and image.
 

Uses of ImageDescriptor in org.eclipse.jface.preference
 

Methods in org.eclipse.jface.preference that return ImageDescriptor
protected  ImageDescriptor PreferenceNode.getImageDescriptor()
          Returns the image descriptor for this node.
 

Methods in org.eclipse.jface.preference with parameters of type ImageDescriptor
 void PreferencePage.setImageDescriptor(ImageDescriptor desc)
           
 void IPreferencePage.setImageDescriptor(ImageDescriptor image)
          Sets this page's image.
 

Constructors in org.eclipse.jface.preference with parameters of type ImageDescriptor
PreferencePage(String title, ImageDescriptor image)
          Creates a new abstract preference page with the given title and image.
PreferenceNode(String id, String label, ImageDescriptor image, String className)
          Creates a preference node with the given id, label, and image, and lazily-loaded preference page.
 

Uses of ImageDescriptor in org.eclipse.jface.resource
 

Subclasses of ImageDescriptor in org.eclipse.jface.resource
 class CompositeImageDescriptor
          Abstract base class for image descriptors that synthesize an image from other images in order to simulate the effect of custom drawing.
 

Methods in org.eclipse.jface.resource that return ImageDescriptor
 ImageDescriptor ImageRegistry.getDescriptor(String key)
          Returns the descriptor associated with the given key in this registry, or null if none.
static ImageDescriptor ImageDescriptor.createFromFile(Class location, String filename)
          Creates and returns a new image descriptor from a file.
static ImageDescriptor ImageDescriptor.createFromImageData(ImageData data)
          Creates and returns a new image descriptor given ImageData describing the image.
static ImageDescriptor ImageDescriptor.createFromImage(Image img)
          Creates and returns a new image descriptor for the given image.
static ImageDescriptor ImageDescriptor.createWithFlags(ImageDescriptor originalImage, int swtFlags)
          Creates an ImageDescriptor based on the given original descriptor, but with additional SWT flags.
static ImageDescriptor ImageDescriptor.createFromImage(Image img, Device theDevice)
          Creates and returns a new image descriptor for the given image.
static ImageDescriptor ImageDescriptor.createFromURL(URL url)
          Creates and returns a new image descriptor from a URL.
static ImageDescriptor ImageDescriptor.getMissingImageDescriptor()
          Returns the shared image descriptor for a missing image.
 

Methods in org.eclipse.jface.resource with parameters of type ImageDescriptor
 Image ResourceManager.createImage(ImageDescriptor descriptor)
          Creates an image, given an image descriptor.
 Image ResourceManager.createImageWithDefault(ImageDescriptor descriptor)
          Creates an image, given an image descriptor.
 void ResourceManager.destroyImage(ImageDescriptor descriptor)
          Undoes everything that was done by createImage(...).
 void ImageRegistry.put(String key, ImageDescriptor descriptor)
          Adds (or replaces) an image descriptor to this registry.
static ImageDescriptor ImageDescriptor.createWithFlags(ImageDescriptor originalImage, int swtFlags)
          Creates an ImageDescriptor based on the given original descriptor, but with additional SWT flags.
 

Uses of ImageDescriptor in org.eclipse.jface.viewers
 

Methods in org.eclipse.jface.viewers with parameters of type ImageDescriptor
 void IDecoration.addOverlay(ImageDescriptor overlay)
          Adds an overlay to the element's image.
 void IDecoration.addOverlay(ImageDescriptor overlay, int quadrant)
          Adds an overlay to the element's image.
 

Uses of ImageDescriptor in org.eclipse.ui
 

Methods in org.eclipse.ui that return ImageDescriptor
 ImageDescriptor IWorkbenchPartDescriptor.getImageDescriptor()
          Returns the descriptor of the image for this part.
 ImageDescriptor ISharedImages.getImageDescriptor(String symbolicName)
          Retrieves the image descriptor for specified image from the workbench's image registry.
 ImageDescriptor IPerspectiveDescriptor.getImageDescriptor()
          Returns the descriptor of the image to show for this perspective.
 

Uses of ImageDescriptor in org.eclipse.ui.application
 

Methods in org.eclipse.ui.application with parameters of type ImageDescriptor
 void IWorkbenchConfigurer.declareImage(String symbolicName, ImageDescriptor descriptor, boolean shared)
          Declares a workbench image.
 

Uses of ImageDescriptor in org.eclipse.ui.plugin
 

Methods in org.eclipse.ui.plugin that return ImageDescriptor
static ImageDescriptor AbstractUIPlugin.imageDescriptorFromPlugin(String pluginId, String imageFilePath)
          Creates and returns a new image descriptor for an image file located within the specified plug-in.
 

Uses of ImageDescriptor in org.eclipse.ui.views
 

Methods in org.eclipse.ui.views that return ImageDescriptor
 ImageDescriptor IViewDescriptor.getImageDescriptor()
          Returns the descriptor for the icon to show for this view.
 


Eclipse eRCP
Release 1.1