eclipse-rcp – Eclipse RCP App中的Curvy选项卡

我目前正在使用
Eclipse Helios Service Release 1.我是IDE和平台的新手.

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

最佳答案 根据
this thread
blog post

有关更多信息,请参见“eclipse look&feel customization”.

所有人都看到这个“java-tips”:

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); 

请注意,当有多个标签时,长标题可能存在问题:
bug 322623
“使用新样式选项卡时,编辑器选项卡不会显示长文件名的省略号.”

点赞