提问者:小点点

在自定义控件中使用TextFlow时,TitledPane未垂直调整大小


我在自定义JavaFX控件中使用带有Text的TextFlow,并且该控件放置在TitledPane中。

控制声明:

public class CustomControl extends Control {
    @Override
    protected Skin<?> createDefaultSkin() {
        return new CustomControlSkin(this);
    }
}

皮肤声明:

public class CustomControlSkin extends SkinBase<CustomControl> implements Skin<CustomControl> {
    public CustomControlSkin(CustomControl customControl) {
        super(customControl);
        TextFlow textFlow = new TextFlow();
        textFlow.getChildren().add(new Text("This is a long long long long long long long long long long long long long long text"));
        getChildren().add(new StackPane(textFlow));
    }
}

应用:

@Override
public void start(Stage primaryStage) throws Exception {
    TitledPane titledPane = new TitledPane();
    titledPane.setContent(new CustomControl());
    Scene scene = new Scene(new StackPane(titledPane));
    primaryStage.setScene(scene);
    primaryStage.show();
}

当场景水平调整大小时,文本会换行并增加其高度。但是,TitledPane不会垂直调整大小。

当TextFlow直接放置在TitledPane中而不使用自定义控件时,不会发生这种情况。

使用风景视图我注意到,当在自定义控件中使用TextFlow时,控件的布局边界与父级中的边界不同。实际上,父级中的边界似乎计算正确,但没有使用。

这可能是这个问题的根源。我已经尝试了将所有计算(Min/Pref/Max)皮肤高度的方法,但没有设法正确调整TitledPane的大小。

知道为什么TextFlow在自定义控件/皮肤中使用时表现不同,以及如何正确调整TitledPane的大小吗?


共1个答案

匿名用户

我向Oracle报告了这个问题,这被接受为JavaFXbug:JDK-8144128

作为bug的解决方法,我做了以下操作:

>

  • 将控制内容偏差设置为Orientation. HORIZONTAL

    public class CustomControl extends Control {
        @Override
        protected Skin<?> createDefaultSkin() {
            return new CustomControlSkin(this);
        }
    
        @Override
        public Orientation getContentBias() {
            return Orientation.HORIZONTAL;
        }
    }
    

    覆盖皮肤computeMinHeight以在调用node. minHeight时使用节点宽度而不是-1

    public class CustomControlSkin extends SkinBase<CustomControl> implements Skin<CustomControl> {
        public CustomControlSkin(CustomControl customControl) {
            super(customControl);
            TextFlow textFlow = new TextFlow();
            textFlow.getChildren().add(new Text("This is a long long long long long long long long long long long long long long text"));
            getChildren().add(new StackPane(textFlow));
        }
    
        @Override
        protected double computeMinHeight(double width, double topInset, double rightInset, double bottomInset, double leftInset) {
            double minY = 0;
            double maxY = 0;
            boolean firstManagedChild = true;
            for (int i = 0; i < getChildren().size(); i++) {
                Node node = getChildren().get(i);
                if (node.isManaged()) {
                    final double y = node.getLayoutBounds().getMinY() + node.getLayoutY();
                    if (!firstManagedChild) {
                        minY = Math.min(minY, y);
                        maxY = Math.max(maxY, y + node.minHeight(width));
                    } else {
                        minY = y;
                        maxY = y + node.minHeight(width);
                        firstManagedChild = false;
                    }
                }
            }
            double minHeight = maxY - minY;
            return topInset + minHeight + bottomInset;
         }
    }