1

我在我的 Eclipse RCP ViewPart 中使用 JFace TreeViewer 对象,我想通过图像向我的一些节点上的标签添加一些附加信息。

本质上,图像应该位于标签文本的右侧并代表一个评级(我在想 1 - 5 星)

如果有办法做到这一点,我找不到它,有人知道吗?

如果没有,那么有谁知道在使用其他插件(如 Subclipse)时 eclipse 包资源管理器如何显示不同颜色的额外信息?我想如果我被迫使用它和“*”字符?(我试图查看源代码,但它非常抽象,目前有点超出我的理解,所以我只是问是否有人知道手头,我不是要求任何人为我挖掘源代码)

问候,

格伦

X

4

2 回答 2

1

您使用的是 PackageExplorer 还是您自己的 TreeViewer ?

1.PackageExplorer:需要扩展ui装饰器。

<extension point="org.eclipse.ui.decorators">
    <decorator
    adaptable="true"
    class="org.example.com.PackageExplorerDecorator"
    id="org.example.filedecorator"
    label="File Decorator"
    lightweight="true"
    state="true">
 <enablement>
    <or>
       <objectClass
             name="org.eclipse.jdt.core.IMethod">
       </objectClass>
       <objectClass
             name="org.eclipse.core.resources.IResource">
       </objectClass>
    </or>
 </enablement>

该类应如下所示:

public class PackageExplorerDecorator extends LabelProvider implements ILightweightLabelDecorator {

    @Override
    public void decorate(final Object resource, final IDecoration decoration) {
       decoration.addSuffix(..)
       decoration.addPrefix(..)
    }
}

2. TreeViewer:您可以尝试创建自定义小部件,或者只创建具有多列的TreeViewer(第一个用于树,第二个用于星星)。

可能对你有用。

于 2012-04-30T16:06:53.870 回答
1

SWT.MeasureItem您可以通过向树添加和SWT.PaintItem侦听器来自定义绘制树项。查看本教程中的示例 5 。

为了在扩展区域上绘制选择突出显示,还要添加SWT.EraseItemlistener 和 update event.width

于 2012-05-02T06:53:55.250 回答