Eclipse RCP 应用程序中的曲线选项卡

发布于 2024-11-25 06:27:23 字数 105 浏览 3 评论 0原文

我目前正在使用 Eclipse Helios Service Release 1。我对 IDE 和平台都很陌生。

我的问题是,如何在我的应用程序上获得与 IDE 相同的弯曲选项卡?

I am currently using Eclipse Helios Service Release 1. I am new to both the IDE and the platform.

My question is, how do I get the same curvy tab on my app that of the IDE?

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

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

发布评论

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

评论(1

别忘他 2024-12-02 06:27:23

根据 此线程 和这个博客文章

请参阅“Eclipse 外观和感觉自定义”了解更多。

都看到这个“java-tips":

Eclipse RCP 上的曲线选项卡

要更改视图标题的形状,可以在 ApplicationWorkbenchWindowAdvisorpreWindowOpen() 方法中编写以下代码行。

PlatformUI.getPreferenceStore().setValue(IWorkbenchPreferenceConstants.SHOW_TRADITIONAL_STYLE_TABS, false); 

请注意,当有很多选项卡时,长标题可能会出现问题:
请参阅错误 322623
“使用新样式选项卡时,编辑器选项卡不会显示长文件名的省略号。”

According to this thread and this blog post:

See "eclipse look&feel customization" for more.

All see this "java-tips":

curvy tabs on Eclipse RCP

To change the shape of the title of a view following line of code can be written in the preWindowOpen() method of the ApplicationWorkbenchWindowAdvisor.

PlatformUI.getPreferenceStore().setValue(IWorkbenchPreferenceConstants.SHOW_TRADITIONAL_STYLE_TABS, false); 

Note that there might be an issue with long titles when there is many tabs:
See bug 322623:
"Editor tabs do not show ellipsis for long filenames when using new style tabs."

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