我正在开发一个eclipse ECP应用程序,我想使用项目,文件夹,任务等Eclipse图标。
有人可以帮助我从哪里下载这些图标吗?我在workspace/.metadata/org.eclipse.pde.core/.bundlepool
搜索,但找不到与Eclipse相关的图标。
答案 0 :(得分:6)
我想添加到Greg's answer:
.bundlepool
目录中搜索图标,则必须查看/提取每个jar。图标通常存储在jar中的icons
文件夹下。答案 1 :(得分:1)
可以使用以下内容从共享图像注册表访问许多标准Eclipse图标:
ISharedImage sharedImages = PlatformUI.getWorkbench().getSharedImages();
Image image = sharedImages.getImage(ISharedImages.IMG_OBJ_FOLDER);
ImageDescriptor imageDesc = sharedImages.getImageDescriptor(ISharedImages.IMG_OBJ_FILE);
org.eclipse.ui.ISharedImages
界面包含可用图像的名称。
注意:这在e4 RCP中不可用。
图标文件本身存储在各种插件jar文件中,您可以使用标准jar
工具之类的工具来提取它们。
答案 2 :(得分:1)
不幸的是,截至2020年http://eclipse-icons.i24.cc/处于离线状态。
我发现https://help.eclipse.org/2020-03/index.jsp?topic=%2Forg.eclipse.jdt.doc.user%2Freference%2Fref-icons.htm包含一些有用的Eclipse图标。
答案 3 :(得分:0)
在plugin.xml中,您可以像这样使用它
<command
commandId="id"
icon="platform:/plugin/org.eclipse.ui.ide/icons/full/obj16/hprio_tsk.gif"
style="push"
tooltip="%cmd1.commandtooltip">
</command>
您可以使用插件图片浏览器找到它的参考。检查here。