Eclipse 标准警告/错误覆盖图标

发布于 2024-08-25 04:10:11 字数 320 浏览 6 评论 0原文

我正在编写一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不爱素颜 2024-09-01 04:10:11

您遇到了 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");

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文