gpt4 book ai didi

java - Swingx 组件提供者 : hide component on certain rows

转载 作者:行者123 更新时间:2023-11-30 09:40:36 24 4
gpt4 key购买 nike

我已将 Swingx 的 ComponentProvider 子类化以提供 JButton,但在我的 JXTreeTable 的某些行上,我不想显示任何按钮。我想要的最终“结果”是有一个空单元格,就像我在没有设置提供程序的列中显示空文本时得到的结果。

  1. 是否可以在某些行上隐藏呈现的组件(例如取决于值)?在 format()configureState() 中对呈现的组件设置 setVisible(false) 不起作用。

  2. 是否可以子类化 ComponentProvider 以提供不同类型的组件?如果是,那将如何运作?

  3. 我在哪里可以找到 ComponentProvider 提供的可能性的一些示例以及对哪个方法做什么的清晰解释(例如,我几乎不明白 configureState()格式())?

编辑

  1. 是否可以防止 JButton 显示在 JX(树)中?表格与单元格一样宽?

  2. 如果我创建另一个荧光笔,我可以使用另一个谓词(ROLLOVER 或其他)来更改光标吗?即使按钮被隐藏,光标也会变成一只手(在链接上)。

非常感谢!

最佳答案

有趣:-)

  1. 通常不起作用,因为 CellRendererPane 不尊重组件的可见属性 - 它总是标记它。但是:如果将实际提供者包装到 WrappingProvider 中然后将该包装器的组件设置为不可见,则可以在 SwingX 中工作。

一个片段,作为概念验证

table.getColumn(1).setCellRenderer(new DefaultTableRenderer(
new WrappingProvider(IconValues.NONE, new ButtonProvider(), false) {

@Override
protected void configureState(CellContext context) {
super.configureState(context);
rendererComponent.getComponent().setVisible(context.getRow() != 5);
}

}
));

另一方面,提供者不是插入自定义上下文相关配置的地方。这应该在荧光笔中完成,就像 f.i.在

AbstractHighlighter highlighter = new AbstractHighlighter(HighlightPredicate.EVEN) {

@Override
protected Component doHighlight(Component component,
ComponentAdapter adapter) {
((WrappingIconPanel) component).getComponent().setVisible(false);
return component;
}

@Override
protected boolean canHighlight(Component component,
ComponentAdapter adapter) {
return component instanceof WrappingIconPanel;
}


};
table.addHighlighter(highlighter);

它没有按预期工作(按钮始终隐藏),因为它不是保证在提供程序中重置的属性之一。没有什么能阻止自定义提供者扩展这些保证,例如

table.getColumn(1).setCellRenderer(new DefaultTableRenderer(
// custom wrappingProvider which guarantees the reset of visible
// property of the wrapped component
new WrappingProvider(IconValues.NONE, new ButtonProvider(), false) {
@Override
protected void configureState(CellContext context) {
super.configureState(context);
rendererComponent.getComponent().setVisible(true);
}

}
));

现在荧光笔可以根据上下文无所畏惧地改变可见部分。一个轻微的视觉故障:WrappingIconPanel 总是为图标留出一些空间,即使没有 - 不太确定为什么会发生这种情况或者是否安全(在 SwingX 中)删除该间距(wrappingProvider 最初用于JXTree,它没有默认安装,因为 ComponentOrientation 仍然存在问题)。

  1. (问题中的 2)不支持,componentProvider 旨在在每次调用时返回配置有完全相同属性的相同单个组件

  2. (问题中有 3 个)咳咳……不,只有源代码和示例(在演示和测试包中)

编辑(回答问题的编辑部分)

  1. 不,对于当前的 WrappingIconpPanel:它确实使用了边界布局,而我们都知道 :-) 不遵守最大尺寸。使用 BoxLayout 会但有一些我不完全记得的问题。然而,这将是调整的地方,以便尊重按钮的最大值

  2. 嗯……不完全确定您是如何实现光标更改的。假设它在您的 ButtonProvider 中:实现 isRolloverEnabled 以根据它是否可见来返回 true/false Edit-in-Edit 不起作用。不知道为什么,这可能是 WrappingProvider 中翻转检测和/或处理中的错误

现在进入周末:-)

关于java - Swingx 组件提供者 : hide component on certain rows,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9311455/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com