Groovy Documentation

griffon.plugins.miglayout
[Java] Class MigLayoutPane

java.lang.Object
  javafx.scene.Node
      javafx.scene.Parent
          javafx.scene.layout.Region
              javafx.scene.layout.Pane
                  griffon.plugins.miglayout.MigLayoutPane

@DefaultProperty(value = "children") // for FXML integration
public class MigLayoutPane extends Pane {
public class MigLayoutPane
extends javafx.scene.layout.Pane

MigLayout container for JavaFX.
Based on MigLayoutPane originally from Tom Eugelink.

Authors:
Andres Almiray


Nested Class Summary
class MigLayoutPane.DebugRectangle

MigLayout container for JavaFX.

enum MigLayoutPane.DebugRectangleType

debugExternalColor

class MigLayoutPane.FX2ComponentWrapper

class MigLayoutPane.FX2ContainerWrapper

 
Field Summary
protected static Map cNodeToCC

private Object colConstraints

private net.miginfocom.layout.AC colSpecs

private List componentWrapperList

private javafx.scene.paint.Color debugCellColor

private javafx.scene.paint.Color debugContainerOutlineColor

private javafx.scene.paint.Color debugExternalColor

private javafx.scene.paint.Color debugOutlineColor

private List debugRectangles

debugCellColor

private Map fx2ComponentWrapperToCCMap

private MigLayoutPane.FX2ContainerWrapper fx2ContainerWrapper

Hold the serializable text representation of the constraints.

private String fxmLayoutConstraints

private String fxmlColumConstraints

private String fxmlRowConstraints

private net.miginfocom.layout.Grid grid

private boolean iDebug

private Object layoutConstraints

private net.miginfocom.layout.LC lc

private Map nodeToComponentWrapperMap

private Map nodeToHashcodeMap

private Object rowConstraints

private net.miginfocom.layout.AC rowSpecs

boolean valid

 
Fields inherited from class javafx.scene.layout.Pane
USE_PREF_SIZE, USE_COMPUTED_SIZE
 
Fields inherited from class javafx.scene.layout.Region
USE_PREF_SIZE, USE_COMPUTED_SIZE
 
Constructor Summary
MigLayoutPane()

MigLayoutPane(net.miginfocom.layout.LC layoutConstraints)

use the class layout constraints

MigLayoutPane(net.miginfocom.layout.LC layoutConstraints, net.miginfocom.layout.AC colConstraints)

use the class layout constraints

MigLayoutPane(net.miginfocom.layout.LC layoutConstraints, net.miginfocom.layout.AC colConstraints, net.miginfocom.layout.AC rowConstraints)

use the class layout constraints

MigLayoutPane(String layoutConstraints)

use the string layout constraints

MigLayoutPane(String layoutConstraints, String colConstraints)

use the string layout constraints

MigLayoutPane(String layoutConstraints, String colConstraints, String rowConstraints)

use the string layout constraints

 
Method Summary
void add(javafx.scene.Node node, net.miginfocom.layout.CC cc)

@param node

void add(javafx.scene.Node node)

void add(javafx.scene.Node node, String cc)

private void addDebugRectangle(double x, double y, double w, double h, MigLayoutPane.DebugRectangleType type)

private Integer calculateHashcode(javafx.scene.Node node)

void clearDebug()

protected double computeMaxHeight(double width)

protected double computeMaxWidth(double height)

protected double computeMinHeight(double width)

protected double computeMinWidth(double height)

protected double computePrefHeight(double width)

protected double computePrefWidth(double height)

private void construct()

private void createMigLayoutGrid()

String getCols()

Object getColumnConstraints()

Sets the column layout constraints for the layout manager instance as a String.

javafx.scene.paint.Color getDebugCellColor()

javafx.scene.paint.Color getDebugContainerOutlineColor()

javafx.scene.paint.Color getDebugExternalColor()

javafx.scene.paint.Color getDebugOutlineColor()

String getLayout()

Object getLayoutConstraints()

Sets the layout constraints for the layout manager instance as a String.

Object getRowConstraints()

Sets the row layout constraints for the layout manager instance as a String.

String getRows()

private void invalidateMigLayoutGrid()

use all kinds of properties to calculate a hash for the layout

private boolean isMiglayoutGridValid()

protected void layoutChildren()

static void setCc(javafx.scene.Node node, net.miginfocom.layout.CC cc)

static void setCc(javafx.scene.Node node, String cc)

void setCols(String value)

void setColumnConstraints(Object constr)

Returns the row layout constraints either as a String or net.miginfocom.layout.AC.

void setDebugCellColor(javafx.scene.paint.Color value)

void setDebugContainerOutlineColor(javafx.scene.paint.Color value)

void setDebugExternalColor(javafx.scene.paint.Color value)

void setDebugOutlineColor(javafx.scene.paint.Color value)

void setLayout(String value)

void setLayoutConstraints(Object constr)

void setRowConstraints(Object constr)

@param node

void setRows(String value)

private void validateMigLayoutGrid()

MigLayoutPane valueOf(String name)

Returns the enum constant of this type with the specified name.

MigLayoutPane[] values()

Returns an array containing the constants of this enum type, in the order they are declared.

 
Methods inherited from class javafx.scene.layout.Pane
javafx.scene.layout.Pane#getChildren(), javafx.scene.layout.Pane#resize(double, double), javafx.scene.layout.Pane#getPadding(), javafx.scene.layout.Pane#getInsets(), javafx.scene.layout.Pane#insets(), javafx.scene.layout.Pane#getWidth(), javafx.scene.layout.Pane#getHeight(), javafx.scene.layout.Pane#minWidth(double), javafx.scene.layout.Pane#maxWidth(double), javafx.scene.layout.Pane#isResizable(), javafx.scene.layout.Pane#setMinWidth(double), javafx.scene.layout.Pane#getMinWidth(), javafx.scene.layout.Pane#setMaxWidth(double), javafx.scene.layout.Pane#getMaxWidth(), javafx.scene.layout.Pane#setPrefWidth(double), javafx.scene.layout.Pane#setMinHeight(double), javafx.scene.layout.Pane#setPrefHeight(double), javafx.scene.layout.Pane#setMaxHeight(double), javafx.scene.layout.Pane#minHeight(double), javafx.scene.layout.Pane#prefWidth(double), javafx.scene.layout.Pane#prefHeight(double), javafx.scene.layout.Pane#maxHeight(double), javafx.scene.layout.Pane#snapToPixelProperty(), javafx.scene.layout.Pane#setSnapToPixel(boolean), javafx.scene.layout.Pane#isSnapToPixel(), javafx.scene.layout.Pane#paddingProperty(), javafx.scene.layout.Pane#setPadding(javafx.geometry.Insets), javafx.scene.layout.Pane#widthProperty(), javafx.scene.layout.Pane#heightProperty(), javafx.scene.layout.Pane#minWidthProperty(), javafx.scene.layout.Pane#minHeightProperty(), javafx.scene.layout.Pane#getMinHeight(), javafx.scene.layout.Pane#setMinSize(double, double), javafx.scene.layout.Pane#prefWidthProperty(), javafx.scene.layout.Pane#getPrefWidth(), javafx.scene.layout.Pane#prefHeightProperty(), javafx.scene.layout.Pane#getPrefHeight(), javafx.scene.layout.Pane#setPrefSize(double, double), javafx.scene.layout.Pane#maxWidthProperty(), javafx.scene.layout.Pane#maxHeightProperty(), javafx.scene.layout.Pane#getMaxHeight(), javafx.scene.layout.Pane#setMaxSize(double, double), javafx.scene.layout.Pane#impl_setShape(javafx.scene.shape.Shape), javafx.scene.layout.Pane#impl_getShape(), javafx.scene.layout.Pane#impl_setScaleShape(boolean), javafx.scene.layout.Pane#impl_getScaleShape(), javafx.scene.layout.Pane#impl_setPositionShape(boolean), javafx.scene.layout.Pane#impl_getPositionShape(), javafx.scene.layout.Pane#impl_setBackgroundFills(java.util.List), javafx.scene.layout.Pane#impl_getBackgroundFills(), javafx.scene.layout.Pane#impl_updatePG(), javafx.scene.layout.Pane#impl_createPGNode(), javafx.scene.layout.Pane#impl_computeGeomBounds(com.sun.javafx.geom.BaseBounds, com.sun.javafx.geom.transform.BaseTransform), javafx.scene.layout.Pane#impl_CSS_STYLEABLES(), javafx.scene.layout.Pane#impl_getStyleableProperties(), javafx.scene.layout.Pane#lookup(java.lang.String), javafx.scene.layout.Pane#layout(), javafx.scene.layout.Pane#requestLayout(), javafx.scene.layout.Pane#getBaselineOffset(), javafx.scene.layout.Pane#getChildrenUnmodifiable(), javafx.scene.layout.Pane#setImpl_traversalEngine(com.sun.javafx.scene.traversal.TraversalEngine), javafx.scene.layout.Pane#getImpl_traversalEngine(), javafx.scene.layout.Pane#impl_traversalEngineProperty(), javafx.scene.layout.Pane#isNeedsLayout(), javafx.scene.layout.Pane#needsLayoutProperty(), javafx.scene.layout.Pane#getStylesheets(), javafx.scene.layout.Pane#impl_getAllParentStylesheets(), javafx.scene.layout.Pane#impl_processCSS(boolean), javafx.scene.layout.Pane#impl_cssResetInitialValues(), javafx.scene.layout.Pane#impl_processMXNode(com.sun.javafx.jmx.MXNodeAlgorithm, com.sun.javafx.jmx.MXNodeAlgorithmContext), javafx.scene.layout.Pane#toString(), javafx.scene.layout.Pane#contains(double, double), javafx.scene.layout.Pane#contains(javafx.geometry.Point2D), javafx.scene.layout.Pane#getParent(), javafx.scene.layout.Pane#getProperties(), javafx.scene.layout.Pane#intersects(double, double, double, double), javafx.scene.layout.Pane#intersects(javafx.geometry.Bounds), javafx.scene.layout.Pane#getTransforms(), javafx.scene.layout.Pane#getId(), javafx.scene.layout.Pane#setUserData(java.lang.Object), javafx.scene.layout.Pane#getUserData(), javafx.scene.layout.Pane#isVisible(), javafx.scene.layout.Pane#requestFocus(), javafx.scene.layout.Pane#setVisible(boolean), javafx.scene.layout.Pane#setCursor(javafx.scene.Cursor), javafx.scene.layout.Pane#getCursor(), javafx.scene.layout.Pane#getInputMethodRequests(), javafx.scene.layout.Pane#isFocusTraversable(), javafx.scene.layout.Pane#setClip(javafx.scene.Node), javafx.scene.layout.Pane#getClip(), javafx.scene.layout.Pane#isPressed(), javafx.scene.layout.Pane#isDisabled(), javafx.scene.layout.Pane#setCache(boolean), javafx.scene.layout.Pane#snapshot(javafx.util.Callback, javafx.scene.SnapshotParameters, javafx.scene.image.WritableImage), javafx.scene.layout.Pane#snapshot(javafx.scene.SnapshotParameters, javafx.scene.image.WritableImage), javafx.scene.layout.Pane#isCache(), javafx.scene.layout.Pane#getStyle(), javafx.scene.layout.Pane#setStyle(java.lang.String), javafx.scene.layout.Pane#getLayoutBounds(), javafx.scene.layout.Pane#mouseTransparentProperty(), javafx.scene.layout.Pane#hasProperties(), javafx.scene.layout.Pane#setPickOnBounds(boolean), javafx.scene.layout.Pane#getContentBias(), javafx.scene.layout.Pane#relocate(double, double), javafx.scene.layout.Pane#impl_getPGNode(), javafx.scene.layout.Pane#getStyleClass(), javafx.scene.layout.Pane#impl_syncPGNode(), javafx.scene.layout.Pane#impl_pickNode(com.sun.javafx.geom.PickRay), javafx.scene.layout.Pane#impl_pickNode(double, double), javafx.scene.layout.Pane#lookupAll(java.lang.String), javafx.scene.layout.Pane#isManaged(), javafx.scene.layout.Pane#getScene(), javafx.scene.layout.Pane#getLayoutX(), javafx.scene.layout.Pane#getLayoutY(), javafx.scene.layout.Pane#autosize(), javafx.scene.layout.Pane#parentToLocal(javafx.geometry.Point2D), javafx.scene.layout.Pane#parentToLocal(double, double), javafx.scene.layout.Pane#parentToLocal(javafx.geometry.Bounds), javafx.scene.layout.Pane#parentProperty(), javafx.scene.layout.Pane#sceneProperty(), javafx.scene.layout.Pane#setId(java.lang.String), javafx.scene.layout.Pane#idProperty(), javafx.scene.layout.Pane#styleProperty(), javafx.scene.layout.Pane#visibleProperty(), javafx.scene.layout.Pane#cursorProperty(), javafx.scene.layout.Pane#setOpacity(double), javafx.scene.layout.Pane#getOpacity(), javafx.scene.layout.Pane#opacityProperty(), javafx.scene.layout.Pane#setBlendMode(javafx.scene.effect.BlendMode), javafx.scene.layout.Pane#getBlendMode(), javafx.scene.layout.Pane#blendModeProperty(), javafx.scene.layout.Pane#clipProperty(), javafx.scene.layout.Pane#cacheProperty(), javafx.scene.layout.Pane#setCacheHint(javafx.scene.CacheHint), javafx.scene.layout.Pane#getCacheHint(), javafx.scene.layout.Pane#cacheHintProperty(), javafx.scene.layout.Pane#setEffect(javafx.scene.effect.Effect), javafx.scene.layout.Pane#getEffect(), javafx.scene.layout.Pane#effectProperty(), javafx.scene.layout.Pane#setDepthTest(javafx.scene.DepthTest), javafx.scene.layout.Pane#getDepthTest(), javafx.scene.layout.Pane#depthTestProperty(), javafx.scene.layout.Pane#setDisable(boolean), javafx.scene.layout.Pane#isDisable(), javafx.scene.layout.Pane#disableProperty(), javafx.scene.layout.Pane#isPickOnBounds(), javafx.scene.layout.Pane#pickOnBoundsProperty(), javafx.scene.layout.Pane#disabledProperty(), javafx.scene.layout.Pane#toBack(), javafx.scene.layout.Pane#toFront(), javafx.scene.layout.Pane#setOnDragEntered(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnDragEntered(), javafx.scene.layout.Pane#onDragEnteredProperty(), javafx.scene.layout.Pane#setOnDragExited(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnDragExited(), javafx.scene.layout.Pane#onDragExitedProperty(), javafx.scene.layout.Pane#setOnDragOver(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnDragOver(), javafx.scene.layout.Pane#onDragOverProperty(), javafx.scene.layout.Pane#setOnDragDropped(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnDragDropped(), javafx.scene.layout.Pane#onDragDroppedProperty(), javafx.scene.layout.Pane#setOnDragDone(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnDragDone(), javafx.scene.layout.Pane#onDragDoneProperty(), javafx.scene.layout.Pane#startDragAndDrop([Ljavafx.scene.input.TransferMode;), javafx.scene.layout.Pane#startFullDrag(), javafx.scene.layout.Pane#setManaged(boolean), javafx.scene.layout.Pane#managedProperty(), javafx.scene.layout.Pane#setLayoutX(double), javafx.scene.layout.Pane#layoutXProperty(), javafx.scene.layout.Pane#setLayoutY(double), javafx.scene.layout.Pane#layoutYProperty(), javafx.scene.layout.Pane#resizeRelocate(double, double, double, double), javafx.scene.layout.Pane#getBoundsInParent(), javafx.scene.layout.Pane#boundsInParentProperty(), javafx.scene.layout.Pane#getBoundsInLocal(), javafx.scene.layout.Pane#boundsInLocalProperty(), javafx.scene.layout.Pane#layoutBoundsProperty(), javafx.scene.layout.Pane#sceneToLocal(double, double), javafx.scene.layout.Pane#sceneToLocal(javafx.geometry.Point2D), javafx.scene.layout.Pane#sceneToLocal(javafx.geometry.Bounds), javafx.scene.layout.Pane#localToScene(javafx.geometry.Point2D), javafx.scene.layout.Pane#localToScene(double, double), javafx.scene.layout.Pane#localToScene(javafx.geometry.Bounds), javafx.scene.layout.Pane#localToParent(double, double), javafx.scene.layout.Pane#localToParent(javafx.geometry.Point2D), javafx.scene.layout.Pane#localToParent(javafx.geometry.Bounds), javafx.scene.layout.Pane#getLocalToParentTransform(), javafx.scene.layout.Pane#impl_getLeafTransform(), javafx.scene.layout.Pane#impl_transformsChanged(), javafx.scene.layout.Pane#impl_getPivotX(), javafx.scene.layout.Pane#impl_getPivotY(), javafx.scene.layout.Pane#impl_getPivotZ(), javafx.scene.layout.Pane#setTranslateX(double), javafx.scene.layout.Pane#getTranslateX(), javafx.scene.layout.Pane#translateXProperty(), javafx.scene.layout.Pane#setTranslateY(double), javafx.scene.layout.Pane#getTranslateY(), javafx.scene.layout.Pane#translateYProperty(), javafx.scene.layout.Pane#setTranslateZ(double), javafx.scene.layout.Pane#getTranslateZ(), javafx.scene.layout.Pane#translateZProperty(), javafx.scene.layout.Pane#setScaleX(double), javafx.scene.layout.Pane#getScaleX(), javafx.scene.layout.Pane#scaleXProperty(), javafx.scene.layout.Pane#setScaleY(double), javafx.scene.layout.Pane#getScaleY(), javafx.scene.layout.Pane#scaleYProperty(), javafx.scene.layout.Pane#setScaleZ(double), javafx.scene.layout.Pane#getScaleZ(), javafx.scene.layout.Pane#scaleZProperty(), javafx.scene.layout.Pane#setRotate(double), javafx.scene.layout.Pane#getRotate(), javafx.scene.layout.Pane#rotateProperty(), javafx.scene.layout.Pane#setRotationAxis(javafx.geometry.Point3D), javafx.scene.layout.Pane#getRotationAxis(), javafx.scene.layout.Pane#rotationAxisProperty(), javafx.scene.layout.Pane#localToParentTransformProperty(), javafx.scene.layout.Pane#localToSceneTransformProperty(), javafx.scene.layout.Pane#getLocalToSceneTransform(), javafx.scene.layout.Pane#impl_hasTransforms(), javafx.scene.layout.Pane#setMouseTransparent(boolean), javafx.scene.layout.Pane#isMouseTransparent(), javafx.scene.layout.Pane#isHover(), javafx.scene.layout.Pane#hoverProperty(), javafx.scene.layout.Pane#pressedProperty(), javafx.scene.layout.Pane#setOnContextMenuRequested(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnContextMenuRequested(), javafx.scene.layout.Pane#onContextMenuRequestedProperty(), javafx.scene.layout.Pane#setOnMouseClicked(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnMouseClicked(), javafx.scene.layout.Pane#onMouseClickedProperty(), javafx.scene.layout.Pane#setOnMouseDragged(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnMouseDragged(), javafx.scene.layout.Pane#onMouseDraggedProperty(), javafx.scene.layout.Pane#setOnMouseEntered(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnMouseEntered(), javafx.scene.layout.Pane#onMouseEnteredProperty(), javafx.scene.layout.Pane#setOnMouseExited(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnMouseExited(), javafx.scene.layout.Pane#onMouseExitedProperty(), javafx.scene.layout.Pane#setOnMouseMoved(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnMouseMoved(), javafx.scene.layout.Pane#onMouseMovedProperty(), javafx.scene.layout.Pane#setOnMousePressed(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnMousePressed(), javafx.scene.layout.Pane#onMousePressedProperty(), javafx.scene.layout.Pane#setOnMouseReleased(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnMouseReleased(), javafx.scene.layout.Pane#onMouseReleasedProperty(), javafx.scene.layout.Pane#setOnDragDetected(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnDragDetected(), javafx.scene.layout.Pane#onDragDetectedProperty(), javafx.scene.layout.Pane#setOnMouseDragOver(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnMouseDragOver(), javafx.scene.layout.Pane#onMouseDragOverProperty(), javafx.scene.layout.Pane#setOnMouseDragReleased(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnMouseDragReleased(), javafx.scene.layout.Pane#onMouseDragReleasedProperty(), javafx.scene.layout.Pane#setOnMouseDragEntered(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnMouseDragEntered(), javafx.scene.layout.Pane#onMouseDragEnteredProperty(), javafx.scene.layout.Pane#setOnMouseDragExited(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnMouseDragExited(), javafx.scene.layout.Pane#onMouseDragExitedProperty(), javafx.scene.layout.Pane#setOnScrollStarted(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnScrollStarted(), javafx.scene.layout.Pane#onScrollStartedProperty(), javafx.scene.layout.Pane#setOnScroll(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnScroll(), javafx.scene.layout.Pane#onScrollProperty(), javafx.scene.layout.Pane#setOnScrollFinished(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnScrollFinished(), javafx.scene.layout.Pane#onScrollFinishedProperty(), javafx.scene.layout.Pane#setOnRotationStarted(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnRotationStarted(), javafx.scene.layout.Pane#onRotationStartedProperty(), javafx.scene.layout.Pane#setOnRotate(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnRotate(), javafx.scene.layout.Pane#onRotateProperty(), javafx.scene.layout.Pane#setOnRotationFinished(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnRotationFinished(), javafx.scene.layout.Pane#onRotationFinishedProperty(), javafx.scene.layout.Pane#setOnZoomStarted(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnZoomStarted(), javafx.scene.layout.Pane#onZoomStartedProperty(), javafx.scene.layout.Pane#setOnZoom(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnZoom(), javafx.scene.layout.Pane#onZoomProperty(), javafx.scene.layout.Pane#setOnZoomFinished(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnZoomFinished(), javafx.scene.layout.Pane#onZoomFinishedProperty(), javafx.scene.layout.Pane#setOnSwipeUp(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnSwipeUp(), javafx.scene.layout.Pane#onSwipeUpProperty(), javafx.scene.layout.Pane#setOnSwipeDown(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnSwipeDown(), javafx.scene.layout.Pane#onSwipeDownProperty(), javafx.scene.layout.Pane#setOnSwipeLeft(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnSwipeLeft(), javafx.scene.layout.Pane#onSwipeLeftProperty(), javafx.scene.layout.Pane#setOnSwipeRight(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnSwipeRight(), javafx.scene.layout.Pane#onSwipeRightProperty(), javafx.scene.layout.Pane#setOnTouchPressed(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnTouchPressed(), javafx.scene.layout.Pane#onTouchPressedProperty(), javafx.scene.layout.Pane#setOnTouchMoved(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnTouchMoved(), javafx.scene.layout.Pane#onTouchMovedProperty(), javafx.scene.layout.Pane#setOnTouchReleased(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnTouchReleased(), javafx.scene.layout.Pane#onTouchReleasedProperty(), javafx.scene.layout.Pane#setOnTouchStationary(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnTouchStationary(), javafx.scene.layout.Pane#onTouchStationaryProperty(), javafx.scene.layout.Pane#setOnKeyPressed(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnKeyPressed(), javafx.scene.layout.Pane#onKeyPressedProperty(), javafx.scene.layout.Pane#setOnKeyReleased(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnKeyReleased(), javafx.scene.layout.Pane#onKeyReleasedProperty(), javafx.scene.layout.Pane#setOnKeyTyped(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnKeyTyped(), javafx.scene.layout.Pane#onKeyTypedProperty(), javafx.scene.layout.Pane#setOnInputMethodTextChanged(javafx.event.EventHandler), javafx.scene.layout.Pane#getOnInputMethodTextChanged(), javafx.scene.layout.Pane#onInputMethodTextChangedProperty(), javafx.scene.layout.Pane#setInputMethodRequests(javafx.scene.input.InputMethodRequests), javafx.scene.layout.Pane#inputMethodRequestsProperty(), javafx.scene.layout.Pane#isFocused(), javafx.scene.layout.Pane#focusedProperty(), javafx.scene.layout.Pane#setFocusTraversable(boolean), javafx.scene.layout.Pane#focusTraversableProperty(), javafx.scene.layout.Pane#impl_traverse(com.sun.javafx.scene.traversal.Direction), javafx.scene.layout.Pane#impl_isTreeVisible(), javafx.scene.layout.Pane#impl_setShowMnemonics(boolean), javafx.scene.layout.Pane#impl_isShowMnemonics(), javafx.scene.layout.Pane#impl_showMnemonicsProperty(), javafx.scene.layout.Pane#setEventDispatcher(javafx.event.EventDispatcher), javafx.scene.layout.Pane#getEventDispatcher(), javafx.scene.layout.Pane#eventDispatcherProperty(), javafx.scene.layout.Pane#addEventHandler(javafx.event.EventType, javafx.event.EventHandler), javafx.scene.layout.Pane#removeEventHandler(javafx.event.EventType, javafx.event.EventHandler), javafx.scene.layout.Pane#addEventFilter(javafx.event.EventType, javafx.event.EventHandler), javafx.scene.layout.Pane#removeEventFilter(javafx.event.EventType, javafx.event.EventHandler), javafx.scene.layout.Pane#buildEventDispatchChain(javafx.event.EventDispatchChain), javafx.scene.layout.Pane#fireEvent(javafx.event.Event), javafx.scene.layout.Pane#impl_getStyleable(), javafx.scene.layout.Pane#impl_getStyleMap(), javafx.scene.layout.Pane#impl_setStyleMap(javafx.collections.ObservableMap), javafx.scene.layout.Pane#impl_reapplyCSS(), javafx.scene.layout.Pane#impl_getStyleHelper(), javafx.scene.layout.Pane#impl_getPseudoClassState(), javafx.scene.layout.Pane#wait(long, int), javafx.scene.layout.Pane#wait(long), javafx.scene.layout.Pane#wait(), javafx.scene.layout.Pane#equals(java.lang.Object), javafx.scene.layout.Pane#hashCode(), javafx.scene.layout.Pane#getClass(), javafx.scene.layout.Pane#notify(), javafx.scene.layout.Pane#notifyAll()
 
Methods inherited from class javafx.scene.layout.Region
javafx.scene.layout.Region#resize(double, double), javafx.scene.layout.Region#getPadding(), javafx.scene.layout.Region#getInsets(), javafx.scene.layout.Region#insets(), javafx.scene.layout.Region#getWidth(), javafx.scene.layout.Region#getHeight(), javafx.scene.layout.Region#minWidth(double), javafx.scene.layout.Region#maxWidth(double), javafx.scene.layout.Region#isResizable(), javafx.scene.layout.Region#setMinWidth(double), javafx.scene.layout.Region#getMinWidth(), javafx.scene.layout.Region#setMaxWidth(double), javafx.scene.layout.Region#getMaxWidth(), javafx.scene.layout.Region#setPrefWidth(double), javafx.scene.layout.Region#setMinHeight(double), javafx.scene.layout.Region#setPrefHeight(double), javafx.scene.layout.Region#setMaxHeight(double), javafx.scene.layout.Region#minHeight(double), javafx.scene.layout.Region#prefWidth(double), javafx.scene.layout.Region#prefHeight(double), javafx.scene.layout.Region#maxHeight(double), javafx.scene.layout.Region#snapToPixelProperty(), javafx.scene.layout.Region#setSnapToPixel(boolean), javafx.scene.layout.Region#isSnapToPixel(), javafx.scene.layout.Region#paddingProperty(), javafx.scene.layout.Region#setPadding(javafx.geometry.Insets), javafx.scene.layout.Region#widthProperty(), javafx.scene.layout.Region#heightProperty(), javafx.scene.layout.Region#minWidthProperty(), javafx.scene.layout.Region#minHeightProperty(), javafx.scene.layout.Region#getMinHeight(), javafx.scene.layout.Region#setMinSize(double, double), javafx.scene.layout.Region#prefWidthProperty(), javafx.scene.layout.Region#getPrefWidth(), javafx.scene.layout.Region#prefHeightProperty(), javafx.scene.layout.Region#getPrefHeight(), javafx.scene.layout.Region#setPrefSize(double, double), javafx.scene.layout.Region#maxWidthProperty(), javafx.scene.layout.Region#maxHeightProperty(), javafx.scene.layout.Region#getMaxHeight(), javafx.scene.layout.Region#setMaxSize(double, double), javafx.scene.layout.Region#impl_setShape(javafx.scene.shape.Shape), javafx.scene.layout.Region#impl_getShape(), javafx.scene.layout.Region#impl_setScaleShape(boolean), javafx.scene.layout.Region#impl_getScaleShape(), javafx.scene.layout.Region#impl_setPositionShape(boolean), javafx.scene.layout.Region#impl_getPositionShape(), javafx.scene.layout.Region#impl_setBackgroundFills(java.util.List), javafx.scene.layout.Region#impl_getBackgroundFills(), javafx.scene.layout.Region#impl_updatePG(), javafx.scene.layout.Region#impl_createPGNode(), javafx.scene.layout.Region#impl_computeGeomBounds(com.sun.javafx.geom.BaseBounds, com.sun.javafx.geom.transform.BaseTransform), javafx.scene.layout.Region#impl_CSS_STYLEABLES(), javafx.scene.layout.Region#impl_getStyleableProperties(), javafx.scene.layout.Region#lookup(java.lang.String), javafx.scene.layout.Region#layout(), javafx.scene.layout.Region#requestLayout(), javafx.scene.layout.Region#getBaselineOffset(), javafx.scene.layout.Region#getChildrenUnmodifiable(), javafx.scene.layout.Region#setImpl_traversalEngine(com.sun.javafx.scene.traversal.TraversalEngine), javafx.scene.layout.Region#getImpl_traversalEngine(), javafx.scene.layout.Region#impl_traversalEngineProperty(), javafx.scene.layout.Region#isNeedsLayout(), javafx.scene.layout.Region#needsLayoutProperty(), javafx.scene.layout.Region#getStylesheets(), javafx.scene.layout.Region#impl_getAllParentStylesheets(), javafx.scene.layout.Region#impl_processCSS(boolean), javafx.scene.layout.Region#impl_cssResetInitialValues(), javafx.scene.layout.Region#impl_processMXNode(com.sun.javafx.jmx.MXNodeAlgorithm, com.sun.javafx.jmx.MXNodeAlgorithmContext), javafx.scene.layout.Region#toString(), javafx.scene.layout.Region#contains(double, double), javafx.scene.layout.Region#contains(javafx.geometry.Point2D), javafx.scene.layout.Region#getParent(), javafx.scene.layout.Region#getProperties(), javafx.scene.layout.Region#intersects(double, double, double, double), javafx.scene.layout.Region#intersects(javafx.geometry.Bounds), javafx.scene.layout.Region#getTransforms(), javafx.scene.layout.Region#getId(), javafx.scene.layout.Region#setUserData(java.lang.Object), javafx.scene.layout.Region#getUserData(), javafx.scene.layout.Region#isVisible(), javafx.scene.layout.Region#requestFocus(), javafx.scene.layout.Region#setVisible(boolean), javafx.scene.layout.Region#setCursor(javafx.scene.Cursor), javafx.scene.layout.Region#getCursor(), javafx.scene.layout.Region#getInputMethodRequests(), javafx.scene.layout.Region#isFocusTraversable(), javafx.scene.layout.Region#setClip(javafx.scene.Node), javafx.scene.layout.Region#getClip(), javafx.scene.layout.Region#isPressed(), javafx.scene.layout.Region#isDisabled(), javafx.scene.layout.Region#setCache(boolean), javafx.scene.layout.Region#snapshot(javafx.util.Callback, javafx.scene.SnapshotParameters, javafx.scene.image.WritableImage), javafx.scene.layout.Region#snapshot(javafx.scene.SnapshotParameters, javafx.scene.image.WritableImage), javafx.scene.layout.Region#isCache(), javafx.scene.layout.Region#getStyle(), javafx.scene.layout.Region#setStyle(java.lang.String), javafx.scene.layout.Region#getLayoutBounds(), javafx.scene.layout.Region#mouseTransparentProperty(), javafx.scene.layout.Region#hasProperties(), javafx.scene.layout.Region#setPickOnBounds(boolean), javafx.scene.layout.Region#getContentBias(), javafx.scene.layout.Region#relocate(double, double), javafx.scene.layout.Region#impl_getPGNode(), javafx.scene.layout.Region#getStyleClass(), javafx.scene.layout.Region#impl_syncPGNode(), javafx.scene.layout.Region#impl_pickNode(com.sun.javafx.geom.PickRay), javafx.scene.layout.Region#impl_pickNode(double, double), javafx.scene.layout.Region#lookupAll(java.lang.String), javafx.scene.layout.Region#isManaged(), javafx.scene.layout.Region#getScene(), javafx.scene.layout.Region#getLayoutX(), javafx.scene.layout.Region#getLayoutY(), javafx.scene.layout.Region#autosize(), javafx.scene.layout.Region#parentToLocal(javafx.geometry.Point2D), javafx.scene.layout.Region#parentToLocal(double, double), javafx.scene.layout.Region#parentToLocal(javafx.geometry.Bounds), javafx.scene.layout.Region#parentProperty(), javafx.scene.layout.Region#sceneProperty(), javafx.scene.layout.Region#setId(java.lang.String), javafx.scene.layout.Region#idProperty(), javafx.scene.layout.Region#styleProperty(), javafx.scene.layout.Region#visibleProperty(), javafx.scene.layout.Region#cursorProperty(), javafx.scene.layout.Region#setOpacity(double), javafx.scene.layout.Region#getOpacity(), javafx.scene.layout.Region#opacityProperty(), javafx.scene.layout.Region#setBlendMode(javafx.scene.effect.BlendMode), javafx.scene.layout.Region#getBlendMode(), javafx.scene.layout.Region#blendModeProperty(), javafx.scene.layout.Region#clipProperty(), javafx.scene.layout.Region#cacheProperty(), javafx.scene.layout.Region#setCacheHint(javafx.scene.CacheHint), javafx.scene.layout.Region#getCacheHint(), javafx.scene.layout.Region#cacheHintProperty(), javafx.scene.layout.Region#setEffect(javafx.scene.effect.Effect), javafx.scene.layout.Region#getEffect(), javafx.scene.layout.Region#effectProperty(), javafx.scene.layout.Region#setDepthTest(javafx.scene.DepthTest), javafx.scene.layout.Region#getDepthTest(), javafx.scene.layout.Region#depthTestProperty(), javafx.scene.layout.Region#setDisable(boolean), javafx.scene.layout.Region#isDisable(), javafx.scene.layout.Region#disableProperty(), javafx.scene.layout.Region#isPickOnBounds(), javafx.scene.layout.Region#pickOnBoundsProperty(), javafx.scene.layout.Region#disabledProperty(), javafx.scene.layout.Region#toBack(), javafx.scene.layout.Region#toFront(), javafx.scene.layout.Region#setOnDragEntered(javafx.event.EventHandler), javafx.scene.layout.Region#getOnDragEntered(), javafx.scene.layout.Region#onDragEnteredProperty(), javafx.scene.layout.Region#setOnDragExited(javafx.event.EventHandler), javafx.scene.layout.Region#getOnDragExited(), javafx.scene.layout.Region#onDragExitedProperty(), javafx.scene.layout.Region#setOnDragOver(javafx.event.EventHandler), javafx.scene.layout.Region#getOnDragOver(), javafx.scene.layout.Region#onDragOverProperty(), javafx.scene.layout.Region#setOnDragDropped(javafx.event.EventHandler), javafx.scene.layout.Region#getOnDragDropped(), javafx.scene.layout.Region#onDragDroppedProperty(), javafx.scene.layout.Region#setOnDragDone(javafx.event.EventHandler), javafx.scene.layout.Region#getOnDragDone(), javafx.scene.layout.Region#onDragDoneProperty(), javafx.scene.layout.Region#startDragAndDrop([Ljavafx.scene.input.TransferMode;), javafx.scene.layout.Region#startFullDrag(), javafx.scene.layout.Region#setManaged(boolean), javafx.scene.layout.Region#managedProperty(), javafx.scene.layout.Region#setLayoutX(double), javafx.scene.layout.Region#layoutXProperty(), javafx.scene.layout.Region#setLayoutY(double), javafx.scene.layout.Region#layoutYProperty(), javafx.scene.layout.Region#resizeRelocate(double, double, double, double), javafx.scene.layout.Region#getBoundsInParent(), javafx.scene.layout.Region#boundsInParentProperty(), javafx.scene.layout.Region#getBoundsInLocal(), javafx.scene.layout.Region#boundsInLocalProperty(), javafx.scene.layout.Region#layoutBoundsProperty(), javafx.scene.layout.Region#sceneToLocal(double, double), javafx.scene.layout.Region#sceneToLocal(javafx.geometry.Point2D), javafx.scene.layout.Region#sceneToLocal(javafx.geometry.Bounds), javafx.scene.layout.Region#localToScene(javafx.geometry.Point2D), javafx.scene.layout.Region#localToScene(double, double), javafx.scene.layout.Region#localToScene(javafx.geometry.Bounds), javafx.scene.layout.Region#localToParent(double, double), javafx.scene.layout.Region#localToParent(javafx.geometry.Point2D), javafx.scene.layout.Region#localToParent(javafx.geometry.Bounds), javafx.scene.layout.Region#getLocalToParentTransform(), javafx.scene.layout.Region#impl_getLeafTransform(), javafx.scene.layout.Region#impl_transformsChanged(), javafx.scene.layout.Region#impl_getPivotX(), javafx.scene.layout.Region#impl_getPivotY(), javafx.scene.layout.Region#impl_getPivotZ(), javafx.scene.layout.Region#setTranslateX(double), javafx.scene.layout.Region#getTranslateX(), javafx.scene.layout.Region#translateXProperty(), javafx.scene.layout.Region#setTranslateY(double), javafx.scene.layout.Region#getTranslateY(), javafx.scene.layout.Region#translateYProperty(), javafx.scene.layout.Region#setTranslateZ(double), javafx.scene.layout.Region#getTranslateZ(), javafx.scene.layout.Region#translateZProperty(), javafx.scene.layout.Region#setScaleX(double), javafx.scene.layout.Region#getScaleX(), javafx.scene.layout.Region#scaleXProperty(), javafx.scene.layout.Region#setScaleY(double), javafx.scene.layout.Region#getScaleY(), javafx.scene.layout.Region#scaleYProperty(), javafx.scene.layout.Region#setScaleZ(double), javafx.scene.layout.Region#getScaleZ(), javafx.scene.layout.Region#scaleZProperty(), javafx.scene.layout.Region#setRotate(double), javafx.scene.layout.Region#getRotate(), javafx.scene.layout.Region#rotateProperty(), javafx.scene.layout.Region#setRotationAxis(javafx.geometry.Point3D), javafx.scene.layout.Region#getRotationAxis(), javafx.scene.layout.Region#rotationAxisProperty(), javafx.scene.layout.Region#localToParentTransformProperty(), javafx.scene.layout.Region#localToSceneTransformProperty(), javafx.scene.layout.Region#getLocalToSceneTransform(), javafx.scene.layout.Region#impl_hasTransforms(), javafx.scene.layout.Region#setMouseTransparent(boolean), javafx.scene.layout.Region#isMouseTransparent(), javafx.scene.layout.Region#isHover(), javafx.scene.layout.Region#hoverProperty(), javafx.scene.layout.Region#pressedProperty(), javafx.scene.layout.Region#setOnContextMenuRequested(javafx.event.EventHandler), javafx.scene.layout.Region#getOnContextMenuRequested(), javafx.scene.layout.Region#onContextMenuRequestedProperty(), javafx.scene.layout.Region#setOnMouseClicked(javafx.event.EventHandler), javafx.scene.layout.Region#getOnMouseClicked(), javafx.scene.layout.Region#onMouseClickedProperty(), javafx.scene.layout.Region#setOnMouseDragged(javafx.event.EventHandler), javafx.scene.layout.Region#getOnMouseDragged(), javafx.scene.layout.Region#onMouseDraggedProperty(), javafx.scene.layout.Region#setOnMouseEntered(javafx.event.EventHandler), javafx.scene.layout.Region#getOnMouseEntered(), javafx.scene.layout.Region#onMouseEnteredProperty(), javafx.scene.layout.Region#setOnMouseExited(javafx.event.EventHandler), javafx.scene.layout.Region#getOnMouseExited(), javafx.scene.layout.Region#onMouseExitedProperty(), javafx.scene.layout.Region#setOnMouseMoved(javafx.event.EventHandler), javafx.scene.layout.Region#getOnMouseMoved(), javafx.scene.layout.Region#onMouseMovedProperty(), javafx.scene.layout.Region#setOnMousePressed(javafx.event.EventHandler), javafx.scene.layout.Region#getOnMousePressed(), javafx.scene.layout.Region#onMousePressedProperty(), javafx.scene.layout.Region#setOnMouseReleased(javafx.event.EventHandler), javafx.scene.layout.Region#getOnMouseReleased(), javafx.scene.layout.Region#onMouseReleasedProperty(), javafx.scene.layout.Region#setOnDragDetected(javafx.event.EventHandler), javafx.scene.layout.Region#getOnDragDetected(), javafx.scene.layout.Region#onDragDetectedProperty(), javafx.scene.layout.Region#setOnMouseDragOver(javafx.event.EventHandler), javafx.scene.layout.Region#getOnMouseDragOver(), javafx.scene.layout.Region#onMouseDragOverProperty(), javafx.scene.layout.Region#setOnMouseDragReleased(javafx.event.EventHandler), javafx.scene.layout.Region#getOnMouseDragReleased(), javafx.scene.layout.Region#onMouseDragReleasedProperty(), javafx.scene.layout.Region#setOnMouseDragEntered(javafx.event.EventHandler), javafx.scene.layout.Region#getOnMouseDragEntered(), javafx.scene.layout.Region#onMouseDragEnteredProperty(), javafx.scene.layout.Region#setOnMouseDragExited(javafx.event.EventHandler), javafx.scene.layout.Region#getOnMouseDragExited(), javafx.scene.layout.Region#onMouseDragExitedProperty(), javafx.scene.layout.Region#setOnScrollStarted(javafx.event.EventHandler), javafx.scene.layout.Region#getOnScrollStarted(), javafx.scene.layout.Region#onScrollStartedProperty(), javafx.scene.layout.Region#setOnScroll(javafx.event.EventHandler), javafx.scene.layout.Region#getOnScroll(), javafx.scene.layout.Region#onScrollProperty(), javafx.scene.layout.Region#setOnScrollFinished(javafx.event.EventHandler), javafx.scene.layout.Region#getOnScrollFinished(), javafx.scene.layout.Region#onScrollFinishedProperty(), javafx.scene.layout.Region#setOnRotationStarted(javafx.event.EventHandler), javafx.scene.layout.Region#getOnRotationStarted(), javafx.scene.layout.Region#onRotationStartedProperty(), javafx.scene.layout.Region#setOnRotate(javafx.event.EventHandler), javafx.scene.layout.Region#getOnRotate(), javafx.scene.layout.Region#onRotateProperty(), javafx.scene.layout.Region#setOnRotationFinished(javafx.event.EventHandler), javafx.scene.layout.Region#getOnRotationFinished(), javafx.scene.layout.Region#onRotationFinishedProperty(), javafx.scene.layout.Region#setOnZoomStarted(javafx.event.EventHandler), javafx.scene.layout.Region#getOnZoomStarted(), javafx.scene.layout.Region#onZoomStartedProperty(), javafx.scene.layout.Region#setOnZoom(javafx.event.EventHandler), javafx.scene.layout.Region#getOnZoom(), javafx.scene.layout.Region#onZoomProperty(), javafx.scene.layout.Region#setOnZoomFinished(javafx.event.EventHandler), javafx.scene.layout.Region#getOnZoomFinished(), javafx.scene.layout.Region#onZoomFinishedProperty(), javafx.scene.layout.Region#setOnSwipeUp(javafx.event.EventHandler), javafx.scene.layout.Region#getOnSwipeUp(), javafx.scene.layout.Region#onSwipeUpProperty(), javafx.scene.layout.Region#setOnSwipeDown(javafx.event.EventHandler), javafx.scene.layout.Region#getOnSwipeDown(), javafx.scene.layout.Region#onSwipeDownProperty(), javafx.scene.layout.Region#setOnSwipeLeft(javafx.event.EventHandler), javafx.scene.layout.Region#getOnSwipeLeft(), javafx.scene.layout.Region#onSwipeLeftProperty(), javafx.scene.layout.Region#setOnSwipeRight(javafx.event.EventHandler), javafx.scene.layout.Region#getOnSwipeRight(), javafx.scene.layout.Region#onSwipeRightProperty(), javafx.scene.layout.Region#setOnTouchPressed(javafx.event.EventHandler), javafx.scene.layout.Region#getOnTouchPressed(), javafx.scene.layout.Region#onTouchPressedProperty(), javafx.scene.layout.Region#setOnTouchMoved(javafx.event.EventHandler), javafx.scene.layout.Region#getOnTouchMoved(), javafx.scene.layout.Region#onTouchMovedProperty(), javafx.scene.layout.Region#setOnTouchReleased(javafx.event.EventHandler), javafx.scene.layout.Region#getOnTouchReleased(), javafx.scene.layout.Region#onTouchReleasedProperty(), javafx.scene.layout.Region#setOnTouchStationary(javafx.event.EventHandler), javafx.scene.layout.Region#getOnTouchStationary(), javafx.scene.layout.Region#onTouchStationaryProperty(), javafx.scene.layout.Region#setOnKeyPressed(javafx.event.EventHandler), javafx.scene.layout.Region#getOnKeyPressed(), javafx.scene.layout.Region#onKeyPressedProperty(), javafx.scene.layout.Region#setOnKeyReleased(javafx.event.EventHandler), javafx.scene.layout.Region#getOnKeyReleased(), javafx.scene.layout.Region#onKeyReleasedProperty(), javafx.scene.layout.Region#setOnKeyTyped(javafx.event.EventHandler), javafx.scene.layout.Region#getOnKeyTyped(), javafx.scene.layout.Region#onKeyTypedProperty(), javafx.scene.layout.Region#setOnInputMethodTextChanged(javafx.event.EventHandler), javafx.scene.layout.Region#getOnInputMethodTextChanged(), javafx.scene.layout.Region#onInputMethodTextChangedProperty(), javafx.scene.layout.Region#setInputMethodRequests(javafx.scene.input.InputMethodRequests), javafx.scene.layout.Region#inputMethodRequestsProperty(), javafx.scene.layout.Region#isFocused(), javafx.scene.layout.Region#focusedProperty(), javafx.scene.layout.Region#setFocusTraversable(boolean), javafx.scene.layout.Region#focusTraversableProperty(), javafx.scene.layout.Region#impl_traverse(com.sun.javafx.scene.traversal.Direction), javafx.scene.layout.Region#impl_isTreeVisible(), javafx.scene.layout.Region#impl_setShowMnemonics(boolean), javafx.scene.layout.Region#impl_isShowMnemonics(), javafx.scene.layout.Region#impl_showMnemonicsProperty(), javafx.scene.layout.Region#setEventDispatcher(javafx.event.EventDispatcher), javafx.scene.layout.Region#getEventDispatcher(), javafx.scene.layout.Region#eventDispatcherProperty(), javafx.scene.layout.Region#addEventHandler(javafx.event.EventType, javafx.event.EventHandler), javafx.scene.layout.Region#removeEventHandler(javafx.event.EventType, javafx.event.EventHandler), javafx.scene.layout.Region#addEventFilter(javafx.event.EventType, javafx.event.EventHandler), javafx.scene.layout.Region#removeEventFilter(javafx.event.EventType, javafx.event.EventHandler), javafx.scene.layout.Region#buildEventDispatchChain(javafx.event.EventDispatchChain), javafx.scene.layout.Region#fireEvent(javafx.event.Event), javafx.scene.layout.Region#impl_getStyleable(), javafx.scene.layout.Region#impl_getStyleMap(), javafx.scene.layout.Region#impl_setStyleMap(javafx.collections.ObservableMap), javafx.scene.layout.Region#impl_reapplyCSS(), javafx.scene.layout.Region#impl_getStyleHelper(), javafx.scene.layout.Region#impl_getPseudoClassState(), javafx.scene.layout.Region#wait(long, int), javafx.scene.layout.Region#wait(long), javafx.scene.layout.Region#wait(), javafx.scene.layout.Region#equals(java.lang.Object), javafx.scene.layout.Region#hashCode(), javafx.scene.layout.Region#getClass(), javafx.scene.layout.Region#notify(), javafx.scene.layout.Region#notifyAll()
 

Field Detail

cNodeToCC

protected static final Map cNodeToCC


colConstraints

private Object colConstraints


colSpecs

private net.miginfocom.layout.AC colSpecs


componentWrapperList

private final List componentWrapperList


debugCellColor

private javafx.scene.paint.Color debugCellColor


debugContainerOutlineColor

private javafx.scene.paint.Color debugContainerOutlineColor


debugExternalColor

private javafx.scene.paint.Color debugExternalColor


debugOutlineColor

private javafx.scene.paint.Color debugOutlineColor


debugRectangles

private final List debugRectangles
debugCellColor


fx2ComponentWrapperToCCMap

private final Map fx2ComponentWrapperToCCMap


fx2ContainerWrapper

private MigLayoutPane.FX2ContainerWrapper fx2ContainerWrapper
Hold the serializable text representation of the constraints.


fxmLayoutConstraints

private String fxmLayoutConstraints


fxmlColumConstraints

private String fxmlColumConstraints


fxmlRowConstraints

private String fxmlRowConstraints


grid

private net.miginfocom.layout.Grid grid


iDebug

private boolean iDebug


layoutConstraints

private Object layoutConstraints


lc

private net.miginfocom.layout.LC lc


nodeToComponentWrapperMap

private final Map nodeToComponentWrapperMap


nodeToHashcodeMap

private final Map nodeToHashcodeMap


rowConstraints

private Object rowConstraints


rowSpecs

private net.miginfocom.layout.AC rowSpecs


valid

boolean valid


 
Constructor Detail

MigLayoutPane

public MigLayoutPane()


MigLayoutPane

public MigLayoutPane(net.miginfocom.layout.LC layoutConstraints)
use the class layout constraints


MigLayoutPane

public MigLayoutPane(net.miginfocom.layout.LC layoutConstraints, net.miginfocom.layout.AC colConstraints)
use the class layout constraints


MigLayoutPane

public MigLayoutPane(net.miginfocom.layout.LC layoutConstraints, net.miginfocom.layout.AC colConstraints, net.miginfocom.layout.AC rowConstraints)
use the class layout constraints


MigLayoutPane

public MigLayoutPane(String layoutConstraints)
use the string layout constraints


MigLayoutPane

public MigLayoutPane(String layoutConstraints, String colConstraints)
use the string layout constraints


MigLayoutPane

public MigLayoutPane(String layoutConstraints, String colConstraints, String rowConstraints)
use the string layout constraints


 
Method Detail

add

public void add(javafx.scene.Node node, net.miginfocom.layout.CC cc)
Parameters:
node


add

public void add(javafx.scene.Node node)


add

public void add(javafx.scene.Node node, String cc)


addDebugRectangle

private void addDebugRectangle(double x, double y, double w, double h, MigLayoutPane.DebugRectangleType type)


calculateHashcode

private Integer calculateHashcode(javafx.scene.Node node)


clearDebug

public void clearDebug()


computeMaxHeight

protected double computeMaxHeight(double width)


computeMaxWidth

protected double computeMaxWidth(double height)


computeMinHeight

protected double computeMinHeight(double width)


computeMinWidth

protected double computeMinWidth(double height)


computePrefHeight

protected double computePrefHeight(double width)


computePrefWidth

protected double computePrefWidth(double height)


construct

private void construct()


createMigLayoutGrid

private void createMigLayoutGrid()


getCols

public String getCols()


getColumnConstraints

public Object getColumnConstraints()
Sets the column layout constraints for the layout manager instance as a String.

See the class JavaDocs for information on how this string is formatted.

throws:
RuntimeException if the constraint was not valid.
Parameters:
constr - The column layout constraints as a String or net.miginfocom.layout.AC representation. null is converted to "" for storage.


getDebugCellColor

public javafx.scene.paint.Color getDebugCellColor()


getDebugContainerOutlineColor

public javafx.scene.paint.Color getDebugContainerOutlineColor()


getDebugExternalColor

public javafx.scene.paint.Color getDebugExternalColor()


getDebugOutlineColor

public javafx.scene.paint.Color getDebugOutlineColor()


getLayout

public String getLayout()


getLayoutConstraints

public Object getLayoutConstraints()
Sets the layout constraints for the layout manager instance as a String.

See the class JavaDocs for information on how this string is formatted.

throws:
RuntimeException if the constraint was not valid.
Parameters:
constr - The layout constraints as a String pr net.miginfocom.layout.LC representation. null is converted to "" for storage.


getRowConstraints

public Object getRowConstraints()
Sets the row layout constraints for the layout manager instance as a String.

See the class JavaDocs for information on how this string is formatted.

throws:
RuntimeException if the constraint was not valid.
Parameters:
constr - The row layout constraints as a String or net.miginfocom.layout.AC representation. null is converted to "" for storage.


getRows

public String getRows()


invalidateMigLayoutGrid

private void invalidateMigLayoutGrid()
use all kinds of properties to calculate a hash for the layout
Parameters:
node
Returns:


isMiglayoutGridValid

private boolean isMiglayoutGridValid()


layoutChildren

protected void layoutChildren()


setCc

public static void setCc(javafx.scene.Node node, net.miginfocom.layout.CC cc)


setCc

public static void setCc(javafx.scene.Node node, String cc)


setCols

public void setCols(String value)


setColumnConstraints

public void setColumnConstraints(Object constr)
Returns the row layout constraints either as a String or net.miginfocom.layout.AC.
Returns:
The row constraints either as a String or net.miginfocom.layout.AC depending what was sent in to the constructor or set with setRowConstraints(Object). Never null.


setDebugCellColor

public void setDebugCellColor(javafx.scene.paint.Color value)


setDebugContainerOutlineColor

public void setDebugContainerOutlineColor(javafx.scene.paint.Color value)


setDebugExternalColor

public void setDebugExternalColor(javafx.scene.paint.Color value)


setDebugOutlineColor

public void setDebugOutlineColor(javafx.scene.paint.Color value)


setLayout

public void setLayout(String value)


setLayoutConstraints

public void setLayoutConstraints(Object constr)


setRowConstraints

public void setRowConstraints(Object constr)
Parameters:
node
cc


setRows

public void setRows(String value)


validateMigLayoutGrid

private void validateMigLayoutGrid()


valueOf

MigLayoutPane valueOf(String name)
Returns the enum constant of this type with the specified name.


values

MigLayoutPane[] values()
Returns an array containing the constants of this enum type, in the order they are declared.


 

Groovy Documentation