Eclipse 标准警告/错误覆盖图标
我正在编写一个 Eclipse 插件...在我的自定义标签装饰器中,我想覆盖一个警告图标,并且我想使用 Eclipse 使用的标准图标(黄色小三角形)。我怎样才能获得这个图标的图像描述符?
我尝试使用
workbench.getSharedImages().getImageDescriptor(ISharedImages.IMG_DEC_FIELD_WARNING)
该 ID,因为该 ID 似乎与我要查找的内容相匹配,但共享图像集合中实际上并没有该图像(因此我只返回了 null)。
还有其他一些我应该查看的共享图像集吗?
I'm writing an Eclipse plug-in... In my custom label decorator, I want to overlay a warning icon, and I'd like to use the standard one used by eclipse (the little yellow triangle). How can I get an image descriptor of this icon?
I tried using
workbench.getSharedImages().getImageDescriptor(ISharedImages.IMG_DEC_FIELD_WARNING)
since that ID seems to match what I'm looking for, but the shared images collection doesn't actually have that image in it (so I just get a null returned).
Is there some other shared image collection that I should be looking at?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您遇到了 Eclipse bug:https://bugs.eclipse.org/ bugs/show_bug.cgi?id=304397
bugzilla 条目提供了以下代码作为解决方法:
ImageDescriptor描述符=
JFaceResources.getImageRegistry().getDescriptor("org.eclipse.jface.fieldassist.IMG_DEC_FIELD_WARNING");
You have run across an Eclipse bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=304397
The bugzilla entry gives this code as workaround:
ImageDescriptor descriptor =
JFaceResources.getImageRegistry().getDescriptor("org.eclipse.jface.fieldassist.IMG_DEC_FIELD_WARNING");