Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Overview of ISharedImages?

The Java UI plugin provides the Interface ISharedImages to access standard images which can be used in own plugins.

e.g.

Image image = PlatformUI.getWorkbench().getSharedImages().getImage(ISharedImages.IMG_OBJ_ELEMENT);

This works very well but I did not find an overview of the available images. Can someone please point me to such a documentation?

like image 751
Kai Avatar asked Sep 26 '11 08:09

Kai


2 Answers

You can use the Plug-in Image Browser which was added recently:

Window > Show View > Other... > Plug-in Development > Plug-in Image Browser

See also http://help.eclipse.org/mars/index.jsp?topic=%2Forg.eclipse.pde.doc.user%2Fguide%2Ftools%2Fviews%2Fimage_browser_view.htm

like image 109
lorenzo-bettini Avatar answered Nov 16 '22 17:11

lorenzo-bettini


Some of them you can find here, but keep in mind that other 3rd party plugins can add another set of shared images for which, you would have to refer to that plugin documentation.

like image 32
Kris Avatar answered Nov 16 '22 15:11

Kris