在我的应用程序中我正在显示一个TreeTableView并喜欢增加缩进。我找到了相应的CSS属性-fx-indent
,它完全正常。
但是我现在正在努力计算首选宽度。
我希望该列能够完美地包装其内容,并使用
Auto resize column to fit content
这可以使用默认缩进,但它似乎不包括我在计算中的更改。通过源代码我在TreeTableCellSkin
类中找到了以下代码:
if (isDeferToParentForPrefWidth) {
// RT-27167: we must take into account the disclosure node and the
// indentation (which is not taken into account by the LabeledSkinBase.
return super.computePrefWidth(height, topInset, rightInset, bottomInset, leftInset);
}
return columnWidthProperty().get();
编辑:我部分回答了我之前的问题,发现这条评论是错误的,因为代码已移至同一类中的leftLabelPadding()
方法:
// RT-27167: we must take into account the disclosure node and the
// indentation (which is not taken into account by the LabeledSkinBase.
...
double indentPerLevel = 10;
if (treeTableRow.getSkin() instanceof TreeTableRowSkin) {
indentPerLevel = ((TreeTableRowSkin<?>)treeTableRow.getSkin()).getIndentationPerLevel();
}
leftPadding += nodeLevel * indentPerLevel;
...
调试器显示代码片段工作并将增加的缩进添加到填充,但是单元格的prefWidth保持不变并且我的文本溢出...
您对在何处或如何解决此问题有任何想法。任何方向的任何提示都会受到赞赏。
非常感谢你!
答案 0 :(得分:2)
修改强>
看起来这个问题已经用fx9修复了,所以以下解决方案只有fx8才有必要(并且可能)
<强> /修改
好吧我做了一些挖掘,发现了一个(希望是对的)解释和一个解决这个问题的肮脏解决方案。谁对解释感兴趣可以在这篇文章中进一步阅读,因为这里的所有其他人都是我的脏quickfix。
肮脏但有效的解决方案:
Method fitColumn = TreeTableViewSkin.class.getDeclaredMethod("resizeColumnToFitContent", TreeTableColumn.class, int.class);
fitColumn.setAccessible(true);
List<TreeTableColumn<S, ?>> tableColumns = aTreeTableView.getColumns();
for (TreeTableColumn<S, ?> treeTableColumn : aTreeTableView.getColumns()) {
fitColumn.invoke(aTreeTableView.getSkin(), treeTableColumn, -1);
/*
* FX does not include the altered indentation in the calculation for the prefWidth.
* Instead it uses a fixed constant of 10 (TreeTableCellSkin.leftLabelPadding()).
* To ensure the column can still display all its contents the remaining indentation must be added manually.
* To achieve this the maximum depth of the displayed tree is calculated and multiplied with the remaining indentation per level.
*/
TreeItem<S> rootItem = aTreeTableView.getRoot();
Stack<TreeItem<S>> items = new Stack<>();
if (aTreeTableView.isShowRoot() && rootItem != null) {
items.push(rootItem);
} else if (rootItem != null) {
rootItem.getChildren().forEach(items::push);
}
int maxLevel = -1;
while (!items.isEmpty()) {
TreeItem<S> curItem = items.pop();
int curLevel = aTreeTableView.getTreeItemLevel(curItem);
maxLevel = Math.max(curLevel, maxLevel);
if (curItem.isExpanded()) {
curItem.getChildren().forEach(items::push);
}
}
if (maxLevel >= 0) {
double indentation = 20; // the indentation used in the css stylesheet
double additionalIndentPerLevel = indentation - 10; // constant from TreeTableCellSkin
treeTableColumn.setPrefWidth(treeTableColumn.getWidth() + maxLevel * additionalIndentPerLevel);
}
尝试解释:
如上所述,我使用反射来使列宽适合其内容:
Method fitColumn = TreeTableViewSkin.class.getDeclaredMethod("resizeColumnToFitContent", TreeTableColumn.class, int.class);
fitColumn.setAccessible(true);
List<TreeTableColumn<S, ?>> tableColumns = aTreeTableView.getColumns();
for (TreeTableColumn<S, ?> treeTableColumn : aTreeTableView.getColumns()) {
fitColumn.invoke(aTreeTableView.getSkin(), treeTableColumn, -1);
}
所以我试着理解这个过程是如何运作的。似乎resizeColumnToFitContent
FX中的TreeTableViewSkin
methond迭代显示的值,并且对于每个值,它构造一个新的Cell和一个新的Row。
然后它将单元格放入行中,将行添加到当前视图,然后读取计算出的prefWidth。之后它会删除新的行和单元格。
TreeTableCell<S,?> cell = (TreeTableCell) cellFactory.call(col);
...
TreeTableRow<S> treeTableRow = new TreeTableRow<>();
treeTableRow.updateTreeTableView(treeTableView);
...
getChildren().add(cell);
cell.applyCss();
double w = cell.prefWidth(-1);
maxWidth = Math.max(maxWidth, w);
getChildren().remove(cell);
...
同时TreeTableCellSkin
类使用与单元格关联的TableRowSkin
来确定缩进:
// RT-27167: we must take into account the disclosure node and the
// indentation (which is not taken into account by the LabeledSkinBase.
...
double indentPerLevel = 10;
if (treeTableRow.getSkin() instanceof TreeTableRowSkin) {
indentPerLevel = ((TreeTableRowSkin<?>)treeTableRow.getSkin()).getIndentationPerLevel();
}
leftPadding += nodeLevel * indentPerLevel;
...
到目前为止,两个功能都能正常工作并计算出正确的宽度。
但是我认为它们不能组合使用。 TreeTableCellSkin
检查与单元格关联的行是否为TreeTableRowSkin
的实例,这似乎是所有显示行的情况。但是TreeTableViewSkin
将关联的行设置为TreeTableRow
类型。
因此,instanceof
检查失败,而不是自定义缩进,魔术默认常量10
用于宽度计算。
从我的观点来看,我会说这是JavaFX中的一个错误,但也许我的结论是错误的。所以欢迎任何不同的意见或观点。
因此,每列的prefWidth将始终使用每个级别{1}}的缩进。因此,如果您更改了缩进,则必须在FX计算后手动添加缩进。为了达到这个目的,我计算了所显示树的最大深度(我的实现可能不是最有效的,但在这些时间之后,我并不在乎......)。此外,我计算每个级别的缺失缩进。将这两个值相乘,您可以计算缺失的缩进,只需将其添加到列中:
10