Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "FAQ How do I create an image registry for my plug-in?"

m
Line 24: Line 24:
 
</pre>
 
</pre>
  
 +
 +
=== Comments: ===
 +
This FAQ seems misleading given the API comment on <tt>AbstractUIPlugin.getImageRegistry()</tt>:
 +
<pre>The image registry contains the images used by this plug-in that are very
 +
frequently used and so need to be globally shared within the plug-in. Since
 +
many OSs have a severe limit on the number of images that can be in memory at
 +
any given time, a plug-in should only keep a small number of images in their
 +
registry.</pre>
 
== See Also: ==
 
== See Also: ==
 
*[[FAQ How do I use image and font registries?]]
 
*[[FAQ How do I use image and font registries?]]

Revision as of 11:15, 18 March 2010

If you&#146;re writing a plug-in with UI components, it should be a subclass of AbstractUIPlugin. This superclass already provides you with an empty image registry accessible by calling getImageRegistry. When the registry is first accessed, the hook method initializeImageRegistry will be called. You should override this method to populate your image registry with the image descriptors you need. You don&#146;t have to use this registry if you don&#146;t need it, and because it is created lazily on first access, there is no performance overhead if you never use it. Here is an example of a plug-in that adds a sample.gif image to its image registry:

   public class ExamplesPlugin extends AbstractUIPlugin {
      public static final String PLUGIN_ID = "org.eclipse.faq.examples";
      public static final String IMAGE_ID = "sample.image";
      ...
      protected void initializeImageRegistry(ImageRegistry registry) {
         Bundle bundle = Platform.getBundle(PLUGIN_ID);
         IPath path = new Path("icons/sample.gif");
         URL url = Platform.find(bundle, path);
         ImageDescriptor desc = ImageDescriptor.createFromURL(url);
         registry.put(IMAGE_ID, desc);
      }
   }


Comments:

This FAQ seems misleading given the API comment on AbstractUIPlugin.getImageRegistry():

The image registry contains the images used by this plug-in that are very 
frequently used and so need to be globally shared within the plug-in. Since 
many OSs have a severe limit on the number of images that can be in memory at 
any given time, a plug-in should only keep a small number of images in their 
registry.

See Also:


This FAQ was originally published in Official Eclipse 3.0 FAQs. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the Eclipse Public License v1.0.

Copyright © Eclipse Foundation, Inc. All Rights Reserved.