有没有使用IDecorationContext进行标签装饰的例子?
从它的外观来看,IDecorationContext类似乎提供了某种上下文装饰支持,但对于我的生活,我找不到任何使用此功能的示例代码…
PS:我正在寻找一种将图像装饰应用于对象标签的方法,并且根据对象的显示位置,基本图标大小会有所不同(例如,表和树项中的传统“小”图标和内容标题的较大图标).
应用于原始图标的装饰应相应地选择合适的尺寸装饰.
IDecorationContext似乎符合我所需的条件,但是文档与开源库的一个小功能一样稀疏,并且没有找到示例.
谷歌搜索“IDecorationContext”也没有透露任何有趣的东西,所以我转向StackOverflow众智,希望下一个得到问题的人能够更快地得到答案;)
解决方法
我没有使用IDecorationContext,但你可以看到它在
org.eclipse.jface.viewers.LabelDecorator
中使用.
它也在this thread讨论(即使没有答案,至少可以给你一个起点)
我目前的方法是使用a扩展org.eclipse.ui.decorators
ILightweightLabelDecorator为各自添加替换叠加层
图标:
public class ProjectLabelDecorator extends LabelProvider implements ILightweightLabelDecorator { ... public void decorate(Object element,IDecoration decoration) { if (element instanceof IFolder) { IFolder folder = (IFolder) element; try { if (folder.getProject().hasNature("rttdt.nature")) { if (ProjectNature.isTestcase(folder)) { IDecorationContext context = decoration.getDecorationContext(); if (context instanceof DecorationContext) { ((DecorationContext) context).putProperty( IDecoration.ENABLE_REPLACE,Boolean.TRUE); } decoration.addOverlay(fTestcaSEOverlay,IDecoration.REPLACE); } } catch (CoreException e) { } } } ... }