Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can Eclipse icons be downloaded [closed]

I am developing an eclipse ECP application where I wanted to use the Eclipse icons like project, folder, task, etc.

Can anyone help me from where I can download these icons? I searched in workspace/.metadata/org.eclipse.pde.core/.bundlepool but I could not find the Eclipse related icons.

like image 985
user414967 Avatar asked May 09 '15 04:05

user414967


2 Answers

I'd like to add to Greg's answer:

  • If you search the .bundlepool directory for icons you will have to look into/extract each jar. The icons are usually stored under an icons folder in the jar.
  • a collection of commonly used Eclipse icons can be found here: http://eclipse-icons.i24.cc/
  • since Eclipse Kepler, PDE has a Plug-in Image Browser to browse images inside plug-ins from the workspace or target platform.
like image 158
Rüdiger Herrmann Avatar answered Oct 03 '22 05:10

Rüdiger Herrmann


In your plugin.xml you can use it like this

<command
           commandId="id"
           icon="platform:/plugin/org.eclipse.ui.ide/icons/full/obj16/hprio_tsk.gif"
           style="push"
           tooltip="%cmd1.commandtooltip">                  
</command>

You can use Plugin image browser to find it reference. Check here.

like image 30
Chandrayya G K Avatar answered Oct 03 '22 04:10

Chandrayya G K