public class GridPane extends Pane
A child may be placed anywhere within the grid and may span multiple rows/columns. Children may freely overlap within rows/columns and their stacking order will be defined by the order of the gridpane's children list (0th node in back, last node in front).
GridPane may be styled with backgrounds and borders using CSS. See
Region
superclass for details.
A child's placement within the grid is defined by it's layout constraints:
Constraint | Type | Description |
---|---|---|
columnIndex | integer | column where child's layout area starts. |
rowIndex | integer | row where child's layout area starts. |
columnSpan | integer | the number of columns the child's layout area spans horizontally. |
rowSpan | integer | the number of rows the child's layout area spans vertically. |
If the row/column indices are not explicitly set, then the child will be placed in the first row/column. If row/column spans are not set, they will default to 1. A child's placement constraints can be changed dynamically and the gridpane will update accordingly.
The total number of rows/columns does not need to be specified up front as the gridpane will automatically expand/contract the grid to accommodate the content.
To use the GridPane, an application needs to set the layout constraints on the children and add those children to the gridpane instance. Constraints are set on the children using static setter methods on the GridPane class:
GridPane gridpane = new GridPane();
// Set one constraint at a time...
// Places the button at the first row and second column
Button button = new Button();
GridPane.setRowIndex(button, 0);
GridPane.setColumnIndex(button, 1);
// or convenience methods set more than one constraint at once...
Label label = new Label();
GridPane.setConstraints(label, 2, 0); // column=2 row=0
// don't forget to add children to gridpane
gridpane.getChildren().addAll(button, label);
Applications may also use convenience methods which combine the steps of
setting the constraints and adding the children:
GridPane gridpane = new GridPane();
gridpane.add(new Button(), 1, 0); // column=1 row=0
gridpane.add(new Label(), 2, 0); // column=2 row=0
GridPane gridpane = new GridPane();
gridpane.getColumnConstraints().add(new ColumnConstraints(100)); // column 0 is 100 wide
gridpane.getColumnConstraints().add(new ColumnConstraints(200)); // column 1 is 200 wide
By default the gridpane will resize rows/columns to their preferred sizes (either
computed from content or fixed), even if the gridpane is resized larger than
its preferred size. If an application needs a particular row or column to
grow if there is extra space, it may set its grow priority on the RowConstraints
or ColumnConstraints object. For example:
GridPane gridpane = new GridPane();
ColumnConstraints column1 = new ColumnConstraints(100,100,Double.MAX_VALUE);
column1.setHgrow(Priority.ALWAYS);
ColumnConstraints column2 = new ColumnConstraints(100);
gridpane.getColumnConstraints().addAll(column1, column2); // first column gets any extra width
Note: Nodes spanning multiple rows/columns will be also size to the preferred sizes. The affected rows/columns are resized by the following priority: grow priorities, last row. This is with respect to row/column constraints.
GridPane gridpane = new GridPane();
ColumnConstraints column1 = new ColumnConstraints();
column1.setPercentWidth(50);
ColumnConstraints column2 = new ColumnConstraints();
column2.setPercentWidth(50);
gridpane.getColumnConstraints().addAll(column1, column2); // each get 50% of width
If a percentage value is set on a row/column, then that value takes precedent and the
row/column's min, pref, max, and grow constraints will be ignored.
Note that if the sum of the widthPercent (or heightPercent) values total greater than 100, the values will be treated as weights. e.g. if 3 columns are each given a widthPercent of 50, then each will be allocated 1/3 of the gridpane's available width (50/(50+50+50)).
width | height | |
---|---|---|
minimum | left/right insets plus the sum of each column's min width. | top/bottom insets plus the sum of each row's min height. |
preferred | left/right insets plus the sum of each column's pref width. | top/bottom insets plus the sum of each row's pref height. |
maximum | Double.MAX_VALUE | Double.MAX_VALUE |
A gridpane's unbounded maximum width and height are an indication to the parent that it may be resized beyond its preferred size to fill whatever space is assigned to it.
GridPane provides properties for setting the size range directly. These properties default to the sentinel value USE_COMPUTED_SIZE, however the application may set them to other values as needed:
gridpane.setPrefSize(300, 300);
// never size the gridpane larger than its preferred size:
gridpane.setMaxSize(Region.USE_COMPUTED_SIZE, Region.USE_COMPUTED_SIZE);
Applications may restore the computed values by setting these properties back
to USE_COMPUTED_SIZE.
GridPane does not clip its content by default, so it is possible that childrens' bounds may extend outside its own bounds if a child's min size prevents it from being fit within it space.
Constraint | Type | Description |
---|---|---|
halignment | javafx.geometry.HPos | The horizontal alignment of the child within its layout area. |
valignment | javafx.geometry.VPos | The vertical alignment of the child within its layout area. |
hgrow | javafx.scene.layout.Priority | The horizontal grow priority of the child. |
vgrow | javafx.scene.layout.Priority | The vertical grow priority of the child. |
margin | javafx.geometry.Insets | Margin space around the outside of the child. |
By default the alignment of a child within its layout area is defined by the alignment set for the row and column. If an individual alignment constraint is set on a child, that alignment will override the row/column alignment only for that child. Alignment of other children in the same row or column will not be affected.
Grow priorities, on the other hand, can only be applied to entire rows or columns. Therefore, if a grow priority constraint is set on a single child, it will be used to compute the default grow priority of the encompassing row/column. If a grow priority is set directly on a RowConstraint or ColumnConstraint object, it will override the value computed from content.
Type | Property and Description |
---|---|
ObjectProperty<Pos> |
alignment
The alignment of of the grid within the gridpane's width and height.
|
BooleanProperty |
gridLinesVisible
For debug purposes only: controls whether lines are displayed to show the gridpane's rows and columns.
|
DoubleProperty |
hgap
The width of the horizontal gaps between columns.
|
DoubleProperty |
vgap
The height of the vertical gaps between rows.
|
background, border, cacheShape, centerShape, height, insets, maxHeight, maxWidth, minHeight, minWidth, opaqueInsets, padding, prefHeight, prefWidth, scaleShape, shape, snapToPixel, width
needsLayout
accessibleHelp, accessibleRoleDescription, accessibleRole, accessibleText, blendMode, boundsInLocal, boundsInParent, cacheHint, cache, clip, cursor, depthTest, disabled, disable, effectiveNodeOrientation, effect, eventDispatcher, focused, focusTraversable, hover, id, inputMethodRequests, layoutBounds, layoutX, layoutY, localToParentTransform, localToSceneTransform, managed, mouseTransparent, nodeOrientation, onContextMenuRequested, onDragDetected, onDragDone, onDragDropped, onDragEntered, onDragExited, onDragOver, onInputMethodTextChanged, onKeyPressed, onKeyReleased, onKeyTyped, onMouseClicked, onMouseDragEntered, onMouseDragExited, onMouseDragged, onMouseDragOver, onMouseDragReleased, onMouseEntered, onMouseExited, onMouseMoved, onMousePressed, onMouseReleased, onRotate, onRotationFinished, onRotationStarted, onScrollFinished, onScroll, onScrollStarted, onSwipeDown, onSwipeLeft, onSwipeRight, onSwipeUp, onTouchMoved, onTouchPressed, onTouchReleased, onTouchStationary, onZoomFinished, onZoom, onZoomStarted, opacity, parent, pickOnBounds, pressed, rotate, rotationAxis, scaleX, scaleY, scaleZ, scene, style, translateX, translateY, translateZ, visible
Modifier and Type | Field and Description |
---|---|
static int |
REMAINING
Sentinel value which may be set on a child's row/column span constraint to
indicate that it should span the remaining rows/columns.
|
USE_COMPUTED_SIZE, USE_PREF_SIZE
BASELINE_OFFSET_SAME_AS_HEIGHT
Constructor and Description |
---|
GridPane()
Creates a GridPane layout with hgap/vgap = 0 and TOP_LEFT alignment.
|
Modifier and Type | Method and Description |
---|---|
void |
add(Node child,
int columnIndex,
int rowIndex)
Adds a child to the gridpane at the specified column,row position.
|
void |
add(Node child,
int columnIndex,
int rowIndex,
int colspan,
int rowspan)
Adds a child to the gridpane at the specified column,row position and spans.
|
void |
addColumn(int columnIndex,
Node... children)
Convenience method for placing the specified nodes sequentially in a given
column of the gridpane.
|
void |
addRow(int rowIndex,
Node... children)
Convenience method for placing the specified nodes sequentially in a given
row of the gridpane.
|
ObjectProperty<Pos> |
alignmentProperty()
The alignment of of the grid within the gridpane's width and height.
|
static void |
clearConstraints(Node child)
Removes all gridpane constraints from the child node.
|
protected double |
computeMinHeight(double width)
Computes the minimum height of this region.
|
protected double |
computeMinWidth(double height)
Computes the minimum width of this region.
|
protected double |
computePrefHeight(double width)
Computes the preferred height of this region for the given width;
Region subclasses should override this method to return an appropriate
value based on their content and layout strategy.
|
protected double |
computePrefWidth(double height)
Computes the preferred width of this region for the given height.
|
Pos |
getAlignment()
Gets the value of the property alignment.
|
static List<CssMetaData<? extends Styleable,?>> |
getClassCssMetaData() |
ObservableList<ColumnConstraints> |
getColumnConstraints()
Returns list of column constraints.
|
static Integer |
getColumnIndex(Node child)
Returns the child's column index constraint if set.
|
static Integer |
getColumnSpan(Node child)
Returns the child's column-span constraint if set.
|
Orientation |
getContentBias()
Returns the orientation of a node's resizing bias for layout purposes.
|
List<CssMetaData<? extends Styleable,?>> |
getCssMetaData()
This method should delegate to
Node.getClassCssMetaData() so that
a Node's CssMetaData can be accessed without the need for reflection. |
static HPos |
getHalignment(Node child)
Returns the child's halignment constraint if set.
|
double |
getHgap()
Gets the value of the property hgap.
|
static Priority |
getHgrow(Node child)
Returns the child's hgrow constraint if set.
|
static Insets |
getMargin(Node child)
Returns the child's margin constraint if set.
|
ObservableList<RowConstraints> |
getRowConstraints()
Returns list of row constraints.
|
static Integer |
getRowIndex(Node child)
Returns the child's row index constraint if set.
|
static Integer |
getRowSpan(Node child)
Returns the child's row-span constraint if set.
|
static VPos |
getValignment(Node child)
Returns the child's valignment constraint if set.
|
double |
getVgap()
Gets the value of the property vgap.
|
static Priority |
getVgrow(Node child)
Returns the child's vgrow constraint if set.
|
BooleanProperty |
gridLinesVisibleProperty()
For debug purposes only: controls whether lines are displayed to show the gridpane's rows and columns.
|
DoubleProperty |
hgapProperty()
The width of the horizontal gaps between columns.
|
static Boolean |
isFillHeight(Node child)
Returns the child's vertical fill policy if set
|
static Boolean |
isFillWidth(Node child)
Returns the child's horizontal fill policy if set
|
boolean |
isGridLinesVisible()
Gets the value of the property gridLinesVisible.
|
protected void |
layoutChildren()
Invoked during the layout pass to layout the children in this
Parent . |
void |
requestLayout()
Requests a layout pass to be performed before the next scene is
rendered.
|
void |
setAlignment(Pos value)
Sets the value of the property alignment.
|
static void |
setColumnIndex(Node child,
Integer value)
Sets the column index for the child when contained by a gridpane
so that it will be positioned starting in that column of the gridpane.
|
static void |
setColumnSpan(Node child,
Integer value)
Sets the column span for the child when contained by a gridpane
so that it will span that number of columns horizontally.
|
static void |
setConstraints(Node child,
int columnIndex,
int rowIndex)
Sets the column,row indeces for the child when contained in a gridpane.
|
static void |
setConstraints(Node child,
int columnIndex,
int rowIndex,
int columnspan,
int rowspan)
Sets the column, row, column-span, and row-span value for the child when
contained in a gridpane.
|
static void |
setConstraints(Node child,
int columnIndex,
int rowIndex,
int columnspan,
int rowspan,
HPos halignment,
VPos valignment)
Sets the grid position, spans, and alignment for the child when contained in a gridpane.
|
static void |
setConstraints(Node child,
int columnIndex,
int rowIndex,
int columnspan,
int rowspan,
HPos halignment,
VPos valignment,
Priority hgrow,
Priority vgrow)
Sets the grid position, spans, and alignment for the child when contained in a gridpane.
|
static void |
setConstraints(Node child,
int columnIndex,
int rowIndex,
int columnspan,
int rowspan,
HPos halignment,
VPos valignment,
Priority hgrow,
Priority vgrow,
Insets margin)
Sets the grid position, spans, alignment, grow priorities, and margin for
the child when contained in a gridpane.
|
static void |
setFillHeight(Node child,
Boolean value)
Sets the vertical fill policy for the child when contained by a gridpane.
|
static void |
setFillWidth(Node child,
Boolean value)
Sets the horizontal fill policy for the child when contained by a gridpane.
|
void |
setGridLinesVisible(boolean value)
Sets the value of the property gridLinesVisible.
|
static void |
setHalignment(Node child,
HPos value)
Sets the horizontal alignment for the child when contained by a gridpane.
|
void |
setHgap(double value)
Sets the value of the property hgap.
|
static void |
setHgrow(Node child,
Priority value)
Sets the horizontal grow priority for the child when contained by a gridpane.
|
static void |
setMargin(Node child,
Insets value)
Sets the margin for the child when contained by a gridpane.
|
static void |
setRowIndex(Node child,
Integer value)
Sets the row index for the child when contained by a gridpane
so that it will be positioned starting in that row of the gridpane.
|
static void |
setRowSpan(Node child,
Integer value)
Sets the row span for the child when contained by a gridpane
so that it will span that number of rows vertically.
|
static void |
setValignment(Node child,
VPos value)
Sets the vertical alignment for the child when contained by a gridpane.
|
void |
setVgap(double value)
Sets the value of the property vgap.
|
static void |
setVgrow(Node child,
Priority value)
Sets the vertical grow priority for the child when contained by a gridpane.
|
String |
toString()
Returns a string representation of this
GridPane object. |
DoubleProperty |
vgapProperty()
The height of the vertical gaps between rows.
|
getChildren
backgroundProperty, borderProperty, cacheShapeProperty, centerShapeProperty, computeMaxHeight, computeMaxWidth, getBackground, getBorder, getHeight, getInsets, getMaxHeight, getMaxWidth, getMinHeight, getMinWidth, getOpaqueInsets, getPadding, getPrefHeight, getPrefWidth, getShape, getUserAgentStylesheet, getWidth, heightProperty, insetsProperty, isCacheShape, isCenterShape, isResizable, isScaleShape, isSnapToPixel, layoutInArea, layoutInArea, layoutInArea, layoutInArea, maxHeight, maxHeightProperty, maxWidth, maxWidthProperty, minHeight, minHeightProperty, minWidth, minWidthProperty, opaqueInsetsProperty, paddingProperty, positionInArea, positionInArea, prefHeight, prefHeightProperty, prefWidth, prefWidthProperty, resize, scaleShapeProperty, setBackground, setBorder, setCacheShape, setCenterShape, setHeight, setMaxHeight, setMaxSize, setMaxWidth, setMinHeight, setMinSize, setMinWidth, setOpaqueInsets, setPadding, setPrefHeight, setPrefSize, setPrefWidth, setScaleShape, setShape, setSnapToPixel, setWidth, shapeProperty, snappedBottomInset, snappedLeftInset, snappedRightInset, snappedTopInset, snapPosition, snapSize, snapSpace, snapToPixelProperty, widthProperty
getBaselineOffset, getChildrenUnmodifiable, getManagedChildren, getStylesheets, isNeedsLayout, layout, lookup, needsLayoutProperty, queryAccessibleAttribute, requestParentLayout, setNeedsLayout, updateBounds
accessibleHelpProperty, accessibleRoleDescriptionProperty, accessibleRoleProperty, accessibleTextProperty, addEventFilter, addEventHandler, applyCss, autosize, blendModeProperty, boundsInLocalProperty, boundsInParentProperty, buildEventDispatchChain, cacheHintProperty, cacheProperty, clipProperty, computeAreaInScreen, contains, contains, cursorProperty, depthTestProperty, disabledProperty, disableProperty, effectiveNodeOrientationProperty, effectProperty, eventDispatcherProperty, executeAccessibleAction, fireEvent, focusedProperty, focusTraversableProperty, getAccessibleHelp, getAccessibleRole, getAccessibleRoleDescription, getAccessibleText, getBlendMode, getBoundsInLocal, getBoundsInParent, getCacheHint, getClip, getCursor, getDepthTest, getEffect, getEffectiveNodeOrientation, getEventDispatcher, getId, getInputMethodRequests, getLayoutBounds, getLayoutX, getLayoutY, getLocalToParentTransform, getLocalToSceneTransform, getNodeOrientation, getOnContextMenuRequested, getOnDragDetected, getOnDragDone, getOnDragDropped, getOnDragEntered, getOnDragExited, getOnDragOver, getOnInputMethodTextChanged, getOnKeyPressed, getOnKeyReleased, getOnKeyTyped, getOnMouseClicked, getOnMouseDragEntered, getOnMouseDragExited, getOnMouseDragged, getOnMouseDragOver, getOnMouseDragReleased, getOnMouseEntered, getOnMouseExited, getOnMouseMoved, getOnMousePressed, getOnMouseReleased, getOnRotate, getOnRotationFinished, getOnRotationStarted, getOnScroll, getOnScrollFinished, getOnScrollStarted, getOnSwipeDown, getOnSwipeLeft, getOnSwipeRight, getOnSwipeUp, getOnTouchMoved, getOnTouchPressed, getOnTouchReleased, getOnTouchStationary, getOnZoom, getOnZoomFinished, getOnZoomStarted, getOpacity, getParent, getProperties, getPseudoClassStates, getRotate, getRotationAxis, getScaleX, getScaleY, getScaleZ, getScene, getStyle, getStyleableParent, getStyleClass, getTransforms, getTranslateX, getTranslateY, getTranslateZ, getTypeSelector, getUserData, hasProperties, hoverProperty, idProperty, inputMethodRequestsProperty, intersects, intersects, isCache, isDisable, isDisabled, isFocused, isFocusTraversable, isHover, isManaged, isMouseTransparent, isPickOnBounds, isPressed, isVisible, layoutBoundsProperty, layoutXProperty, layoutYProperty, localToParent, localToParent, localToParent, localToParent, localToParent, localToParentTransformProperty, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToSceneTransformProperty, localToScreen, localToScreen, localToScreen, localToScreen, localToScreen, lookupAll, managedProperty, mouseTransparentProperty, nodeOrientationProperty, notifyAccessibleAttributeChanged, onContextMenuRequestedProperty, onDragDetectedProperty, onDragDoneProperty, onDragDroppedProperty, onDragEnteredProperty, onDragExitedProperty, onDragOverProperty, onInputMethodTextChangedProperty, onKeyPressedProperty, onKeyReleasedProperty, onKeyTypedProperty, onMouseClickedProperty, onMouseDragEnteredProperty, onMouseDragExitedProperty, onMouseDraggedProperty, onMouseDragOverProperty, onMouseDragReleasedProperty, onMouseEnteredProperty, onMouseExitedProperty, onMouseMovedProperty, onMousePressedProperty, onMouseReleasedProperty, onRotateProperty, onRotationFinishedProperty, onRotationStartedProperty, onScrollFinishedProperty, onScrollProperty, onScrollStartedProperty, onSwipeDownProperty, onSwipeLeftProperty, onSwipeRightProperty, onSwipeUpProperty, onTouchMovedProperty, onTouchPressedProperty, onTouchReleasedProperty, onTouchStationaryProperty, onZoomFinishedProperty, onZoomProperty, onZoomStartedProperty, opacityProperty, parentProperty, parentToLocal, parentToLocal, parentToLocal, parentToLocal, parentToLocal, pickOnBoundsProperty, pressedProperty, pseudoClassStateChanged, relocate, removeEventFilter, removeEventHandler, requestFocus, resizeRelocate, rotateProperty, rotationAxisProperty, scaleXProperty, scaleYProperty, scaleZProperty, sceneProperty, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, screenToLocal, screenToLocal, screenToLocal, setAccessibleHelp, setAccessibleRole, setAccessibleRoleDescription, setAccessibleText, setBlendMode, setCache, setCacheHint, setClip, setCursor, setDepthTest, setDisable, setDisabled, setEffect, setEventDispatcher, setEventHandler, setFocused, setFocusTraversable, setHover, setId, setInputMethodRequests, setLayoutX, setLayoutY, setManaged, setMouseTransparent, setNodeOrientation, setOnContextMenuRequested, setOnDragDetected, setOnDragDone, setOnDragDropped, setOnDragEntered, setOnDragExited, setOnDragOver, setOnInputMethodTextChanged, setOnKeyPressed, setOnKeyReleased, setOnKeyTyped, setOnMouseClicked, setOnMouseDragEntered, setOnMouseDragExited, setOnMouseDragged, setOnMouseDragOver, setOnMouseDragReleased, setOnMouseEntered, setOnMouseExited, setOnMouseMoved, setOnMousePressed, setOnMouseReleased, setOnRotate, setOnRotationFinished, setOnRotationStarted, setOnScroll, setOnScrollFinished, setOnScrollStarted, setOnSwipeDown, setOnSwipeLeft, setOnSwipeRight, setOnSwipeUp, setOnTouchMoved, setOnTouchPressed, setOnTouchReleased, setOnTouchStationary, setOnZoom, setOnZoomFinished, setOnZoomStarted, setOpacity, setPickOnBounds, setPressed, setRotate, setRotationAxis, setScaleX, setScaleY, setScaleZ, setStyle, setTranslateX, setTranslateY, setTranslateZ, setUserData, setVisible, snapshot, snapshot, startDragAndDrop, startFullDrag, styleProperty, toBack, toFront, translateXProperty, translateYProperty, translateZProperty, usesMirroring, visibleProperty
public final DoubleProperty hgapProperty
getHgap()
,
setHgap(double)
public final DoubleProperty vgapProperty
getVgap()
,
setVgap(double)
public final ObjectProperty<Pos> alignmentProperty
getAlignment()
,
setAlignment(Pos)
public final BooleanProperty gridLinesVisibleProperty
false
.isGridLinesVisible()
,
setGridLinesVisible(boolean)
public static final int REMAINING
public GridPane()
public static void setRowIndex(Node child, Integer value)
child
- the child node of a gridpanevalue
- the row index of the childpublic static Integer getRowIndex(Node child)
child
- the child node of a gridpanepublic static void setColumnIndex(Node child, Integer value)
child
- the child node of a gridpanevalue
- the column index of the childpublic static Integer getColumnIndex(Node child)
child
- the child node of a gridpanepublic static void setRowSpan(Node child, Integer value)
If a gridpane child has no row span set, it will default to spanning one row. Setting the value to null will remove the constraint.
child
- the child node of a gridpanevalue
- the row span of the childpublic static Integer getRowSpan(Node child)
child
- the child node of a gridpanepublic static void setColumnSpan(Node child, Integer value)
If a gridpane child has no column span set, it will default to spanning one column. Setting the value to null will remove the constraint.
child
- the child node of a gridpanevalue
- the column span of the childpublic static Integer getColumnSpan(Node child)
child
- the child node of a gridpanepublic static void setMargin(Node child, Insets value)
child
- the child node of a gridpanevalue
- the margin of space around the childpublic static Insets getMargin(Node child)
child
- the child node of a gridpanepublic static void setHalignment(Node child, HPos value)
child
- the child node of a gridpanevalue
- the hozizontal alignment for the childpublic static HPos getHalignment(Node child)
child
- the child node of a gridpanepublic static void setValignment(Node child, VPos value)
child
- the child node of a gridpanevalue
- the vertical alignment for the childpublic static VPos getValignment(Node child)
child
- the child node of a gridpanepublic static void setHgrow(Node child, Priority value)
child
- the child of a gridpanevalue
- the horizontal grow priority for the childpublic static Priority getHgrow(Node child)
child
- the child node of a gridpanepublic static void setVgrow(Node child, Priority value)
child
- the child of a gridpanevalue
- the vertical grow priority for the childpublic static Priority getVgrow(Node child)
child
- the child node of a gridpanepublic static void setFillWidth(Node child, Boolean value)
child
- the child node of a gridpanevalue
- the horizontal fill policy or null for unsetpublic static Boolean isFillWidth(Node child)
child
- the child node of a gridpanepublic static void setFillHeight(Node child, Boolean value)
child
- the child node of a gridpanevalue
- the vertical fill policy or null for unsetpublic static Boolean isFillHeight(Node child)
child
- the child node of a gridpanepublic static void setConstraints(Node child, int columnIndex, int rowIndex)
child
- the child node of a gridpanecolumnIndex
- the column index position for the childrowIndex
- the row index position for the childpublic static void setConstraints(Node child, int columnIndex, int rowIndex, int columnspan, int rowspan)
child
- the child node of a gridpanecolumnIndex
- the column index position for the childrowIndex
- the row index position for the childcolumnspan
- the number of columns the child should spanrowspan
- the number of rows the child should spanpublic static void setConstraints(Node child, int columnIndex, int rowIndex, int columnspan, int rowspan, HPos halignment, VPos valignment)
child
- the child node of a gridpanecolumnIndex
- the column index position for the childrowIndex
- the row index position for the childcolumnspan
- the number of columns the child should spanrowspan
- the number of rows the child should spanhalignment
- the horizontal alignment of the childvalignment
- the vertical alignment of the childpublic static void setConstraints(Node child, int columnIndex, int rowIndex, int columnspan, int rowspan, HPos halignment, VPos valignment, Priority hgrow, Priority vgrow)
child
- the child node of a gridpanecolumnIndex
- the column index position for the childrowIndex
- the row index position for the childcolumnspan
- the number of columns the child should spanrowspan
- the number of rows the child should spanhalignment
- the horizontal alignment of the childvalignment
- the vertical alignment of the childhgrow
- the horizontal grow priority of the childvgrow
- the vertical grow priority of the childpublic static void setConstraints(Node child, int columnIndex, int rowIndex, int columnspan, int rowspan, HPos halignment, VPos valignment, Priority hgrow, Priority vgrow, Insets margin)
child
- the child node of a gridpanecolumnIndex
- the column index position for the childrowIndex
- the row index position for the childcolumnspan
- the number of columns the child should spanrowspan
- the number of rows the child should spanhalignment
- the horizontal alignment of the childvalignment
- the vertical alignment of the childhgrow
- the horizontal grow priority of the childvgrow
- the vertical grow priority of the childmargin
- the margin of space around the childpublic static void clearConstraints(Node child)
child
- the child nodepublic final DoubleProperty hgapProperty()
getHgap()
,
setHgap(double)
public final void setHgap(double value)
public final double getHgap()
public final DoubleProperty vgapProperty()
getVgap()
,
setVgap(double)
public final void setVgap(double value)
public final double getVgap()
public final ObjectProperty<Pos> alignmentProperty()
getAlignment()
,
setAlignment(Pos)
public final void setAlignment(Pos value)
public final Pos getAlignment()
public final BooleanProperty gridLinesVisibleProperty()
false
.isGridLinesVisible()
,
setGridLinesVisible(boolean)
public final void setGridLinesVisible(boolean value)
false
.public final boolean isGridLinesVisible()
false
.public final ObservableList<RowConstraints> getRowConstraints()
public final ObservableList<ColumnConstraints> getColumnConstraints()
public void add(Node child, int columnIndex, int rowIndex)
child
- the node being added to the gridpanecolumnIndex
- the column index position for the child within the gridpane, counting from 0rowIndex
- the row index position for the child within the gridpane, counting from 0public void add(Node child, int columnIndex, int rowIndex, int colspan, int rowspan)
child
- the node being added to the gridpanecolumnIndex
- the column index position for the child within the gridpane, counting from 0rowIndex
- the row index position for the child within the gridpane, counting from 0colspan
- the number of columns the child's layout area should spanrowspan
- the number of rows the child's layout area should spanpublic void addRow(int rowIndex, Node... children)
rowIndex
- the row index position for the children within the gridpanechildren
- the nodes to be added as a row in the gridpanepublic void addColumn(int columnIndex, Node... children)
columnIndex
- the column index position for the children within the gridpanechildren
- the nodes to be added as a column in the gridpaneprotected double computeMinWidth(double height)
Region
computeMinWidth
in class Region
height
- the height that should be used if min width depends
on itprotected double computeMinHeight(double width)
Region
computeMinHeight
in class Region
width
- the width that should be used if min height depends
on itprotected double computePrefWidth(double height)
Region
computePrefWidth
in class Region
height
- the height that should be used if preferred width depends
on itprotected double computePrefHeight(double width)
Region
computePrefHeight
in class Region
width
- the width that should be used if preferred height depends
on itpublic Orientation getContentBias()
Node
Resizable subclasses should override this method to return an appropriate value.
getContentBias
in class Node
Node.isResizable()
,
Node.minWidth(double)
,
Node.minHeight(double)
,
Node.prefWidth(double)
,
Node.prefHeight(double)
,
Node.maxWidth(double)
,
Node.maxHeight(double)
public void requestLayout()
Parent
If this parent is either a layout root or unmanaged, then it will be added directly to the scene's dirty layout list, otherwise requestParentLayout will be invoked.
requestLayout
in class Parent
protected void layoutChildren()
Parent
Parent
. By default it will only set the size of managed,
resizable content to their preferred sizes and does not do any node
positioning.
Subclasses should override this function to layout content as needed.
layoutChildren
in class Parent
public String toString()
GridPane
object.public static List<CssMetaData<? extends Styleable,?>> getClassCssMetaData()
public List<CssMetaData<? extends Styleable,?>> getCssMetaData()
Node.getClassCssMetaData()
so that
a Node's CssMetaData can be accessed without the need for reflection.getCssMetaData
in interface Styleable
getCssMetaData
in class Region
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 2008, 2017, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.