javafx.scene.Node.minWidth()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(2.6k)|赞(0)|评价(0)|浏览(151)

本文整理了Java中javafx.scene.Node.minWidth()方法的一些代码示例,展示了Node.minWidth()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Node.minWidth()方法的具体详情如下:
包路径:javafx.scene.Node
类名称:Node
方法名:minWidth

Node.minWidth介绍

暂无

代码示例

代码示例来源:origin: stackoverflow.com

  1. double minX = Double.MAX_VALUE;
  2. double maxX = Double.MIN_VALUE;
  3. for (int i = 0; i < children.size(); i++) {
  4. Node node = children.get(i);
  5. if (node.isManaged()) {
  6. final double x = node.getLayoutBounds().getMinX() + node.getLayoutX();
  7. minX = Math.min(minX, x);
  8. maxX = Math.max(maxX, x + node.minWidth(-1));
  9. }
  10. }

代码示例来源:origin: org.controlsfx/controlsfx

  1. @Override
  2. protected double computeMinWidth(double height, double topInset, double rightInset, double bottomInset, double leftInset) {
  3. return content == null ? 0 : content.minWidth(height);
  4. };

代码示例来源:origin: org.fxmisc.flowless/flowless

  1. @Override
  2. public double minBreadth(Node node) {
  3. return node.minWidth(-1);
  4. }

代码示例来源:origin: org.controlsfx/controlsfx

  1. @Override protected double computeMinWidth(double height) {
  2. String text = getText();
  3. Node graphic = getGraphic();
  4. if ((text == null || text.isEmpty()) && (graphic != null)) {
  5. return graphic.minWidth(height);
  6. }
  7. return 400;
  8. }

代码示例来源:origin: no.tornado/tornadofx-controls

  1. protected double computeMinWidth(double height, double topInset, double rightInset, double bottomInset, double leftInset) {
  2. if (iconPosition().isHorizontal())
  3. return biggest(n -> n.minWidth(height));
  4. else
  5. return acc(n -> n.minWidth(height));
  6. }

代码示例来源:origin: org.jfxtras/jfxtras-common

  1. private double calculateNodeWidth(Node n, MinPrefMax size) {
  2. if (size == MinPrefMax.MIN) {
  3. return n.minWidth(-1);
  4. }
  5. if (size == MinPrefMax.MAX) {
  6. return n.maxWidth(-1);
  7. }
  8. return n.prefWidth(-1);
  9. }

代码示例来源:origin: no.tornado/tornadofx-controls

  1. protected double computeMinWidth(double height, double topInset, double rightInset, double bottomInset, double leftInset) {
  2. if (getSkinnable().getOrientation() == Orientation.VERTICAL)
  3. return biggest(n -> n.minWidth(height));
  4. else
  5. return acc(n -> n.minWidth(height));
  6. }

代码示例来源:origin: at.bestsolution.efxclipse.rt/org.eclipse.fx.ui.panes

  1. childWidth += (extra + 1) / 2;
  2. childWidth = Math.max(childWidth, child.minWidth(height));
  3. child.resizeRelocate(x, y, childWidth, Math.max(height,child.minHeight(childWidth)));
  4. x += childWidth + this.spacing.get();
  5. child.resizeRelocate(x, y, Math.max(width,child.minWidth(childHeight)), childHeight);
  6. y += childHeight + this.spacing.get();

代码示例来源:origin: org.eclipse.fx/org.eclipse.fx.ui.panes

  1. childWidth += (extra + 1) / 2;
  2. childWidth = Math.max(childWidth, child.minWidth(height));
  3. child.resizeRelocate(x, y, childWidth, Math.max(height,child.minHeight(childWidth)));
  4. x += childWidth + this.spacing.get();
  5. child.resizeRelocate(x, y, Math.max(width,child.minWidth(childHeight)), childHeight);
  6. y += childHeight + this.spacing.get();

相关文章

Node类方法