卸载使用 SWT Display.loadFont API 安装的字体

发布于 2024-10-15 15:11:55 字数 407 浏览 3 评论 0原文

我正在 eclipse 插件下工作,并尝试将字体作为资源加载到应用程序中,因此它们将出现在项目资源管理器树中。

在 SWT 中,我们有 Display 类的 loadFont 方法,它从指定文件加载字体,因此它将出现在应用程序的可用字体列表中。我正在使用这个方法。

但是当我尝试从项目资源管理器中删除字体时,出现以下异常:

org.eclipse.core.internal.resources.ResourceException: 删除资源时遇到的问题

我有以下问题:

  1. 是否可以从 SWT 中的应用程序卸载字体?
  2. 有什么办法可以处理吗?
  3. eclipse 中还有另一种处理自定义字体的方案吗?

I am working under eclipse plugin and trying to load fonts into the application as resources, so they will appear in project explorer tree.

In SWT we have method loadFont of Display class which loads font from specified file, so it will appear in list of available fonts of application. I am using this method.

But when I am trying to delete the font from project explorer I am getting following exception:

org.eclipse.core.internal.resources.ResourceException:
Problems encountered while deleting resources

I have following questions:

  1. Is it possible to unload font from application in SWT ?
  2. Is there any way to deal with it?
  3. Is there another scenario to deal with custom fonts in eclipse?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

撩发小公举 2024-10-22 15:11:55

FontData 类型的类不需要被处理,因为它们只包含有关字体的少量信息。当您创建实际的 Font 对象时,是的,您有责任调用 .dispose() 并释放这些资源。

如果您使用 JFace 以及 SWT,那么您可能需要查看 FontRegistry,它有助于跟踪字体资源。

很抱歉没有链接任何 javadoc,SWT 文档现在还没有为我加载。我确实找到了 FontRegistry 使用的小示例,它解释了 FontData 之间的区别和字体。

Classes of the type FontData don't need to be disposed of, as they simply contain a small amount of information about the font. When you create an actual Font object then yes, it is your responsibility to call .dispose() and free up those resources.

If you are using JFace as well as SWT, then you may want to look at FontRegistry, which assists in keeping track of font resources.

Apologies for not linking any javadocs, the SWT docs aren't loading for me right now. I did find a small example of FontRegistry usage which explains the difference between FontData and Font.

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