This class handles all hierarchical scene graph operations, including adding/removing child nodes, marking branches dirty for layout and rendering, picking, bounds calculations, and executing the layout pass on each pulse.
There are two direct concrete Parent subclasses
Group
effects and transforms to be applied to a collection of child nodes.javafx.scene.layout.Region
class for nodes that can be styled with CSS and layout children. Modifier and Type | Field and Description |
---|---|
private Node | |
private static final int | |
private BaseBounds | cachedBounds
The cached bounds for the Group. |
private boolean | cachedBoundsInvalid
Indicates that the cachedBounds is invalid (or old) and need to be recomputed. |
private final ObservableList | |
private boolean | |
private final Set | |
private boolean | |
private Node | currentLayoutChild
It stores the reference to the current child being laid out by its parent. |
private Node | |
pack-priv static final int | |
private ArrayList | dirtyChildren
This set is used to track all of the children of this group which are dirty. |
private int | dirtyChildrenCount
The number of dirty children which bounds haven't been incorporated into the cached bounds yet. |
private Node | |
private static final int | |
private boolean | |
private boolean | |
pack-priv LayoutFlags | |
pack-priv boolean | layoutRoot
Keeps track of whether this node is a layout root. |
private Node | |
private static final int | |
private double | |
private double | |
private Node | |
private static final int | |
private ReadOnlyBooleanWrapper | needsLayout
Indicates that this Node and its subnodes requires a layout pass on the next pulse. |
private boolean | performingLayout
This is used only by CCS in Node. |
private int | |
private double | |
private double | |
private List | |
private static final int | REMOVED_CHILDREN_THRESHOLD
Threshold when it's worth to populate list of removed children. |
private boolean | removedChildrenOptimizationDisabled
Do not populate list of removed children when its number exceeds threshold, but mark whole parent dirty. |
private Node | |
private static final int | |
private boolean | sceneRoot
This field is managed by the Scene, and set on any node which is the root of a Scene. |
private boolean | |
private int | |
private final ObservableList | stylesheets
A ObservableList of string URLs linking to the stylesheets to use with this scene's contents. |
private BaseBounds | |
private Node | |
private static final int | |
private ParentTraversalEngine | |
private final ObservableList | unmodifiableChildren
A constant reference to an unmodifiable view of the children, such that every time we ask for an unmodifiable list of children, we don't actually create a new collection and return it. |
private List | unmodifiableManagedChildren
A cached reference to the unmodifiable managed children of this Parent. |
private final List | viewOrderChildren
The viewOrderChildren is a list children sorted in decreasing viewOrder order if it is not empty. |
private static final boolean |
Access | Constructor and Description |
---|---|
protected |
Modifier and Type | Method and Description |
---|---|
pack-priv void | |
private void | |
private void | |
pack-priv void | |
pack-priv void | |
protected double | Returns: the calculated min heightthe width that should be used if min height depends
on it width)Calculates the min height of this |
protected double | Returns: the calculated min widththe height that should be used if min width depends
on it height)Calculates the minimum width of this |
protected double | Returns: the calculated preferred heightthe width that should be used if preferred height depends
on it width)Calculates the preferred height of this |
protected double | Returns: the calculated preferred widththe height that should be used if preferred width depends
on it height)Calculates the preferred width of this |
private void | |
private void | |
private boolean | |
private BaseBounds | |
private NGNode | |
private List | |
private void | |
private void | |
private void | |
public double | Returns: baseline offsetOverrides javafx. Calculates the baseline offset based on the first managed child. |
protected ObservableList | |
public ObservableList | Returns: read-only access to this parent's children ObservableListGets the list of children of this |
private BaseBounds | |
protected < the type of the children nodes E extends Node> List | Returns: list of all managed children in this parentGets the list of all managed children of this |
private List | |
public final ObservableList | Returns: the list of stylesheets to use with this ParentGets an observable list of string URLs linking to the stylesheets to use with this Parent's contents. |
private final ParentTraversalEngine | |
pack-priv boolean | isConnected()
Overrides javafx. Determines whether this node is connected anywhere in the scene graph. |
pack-priv boolean | |
public final boolean | |
pack-priv boolean | |
pack-priv final boolean | |
public final void | |
protected void | |
public Node | lookup(String
The css selector of the node to find selector)Overrides javafx. Finds this |
pack-priv List | lookupAll(Selector
the css selector of the nodes to find selector, List<Node> the results results)Overrides javafx. Note This method should never create the results set, let the Node class implementation do this! |
pack-priv final void | managedChildChanged()
Called by Node whenever its managed state may have changed, this method will cause the view of managed children to be updated such that it properly includes or excludes this child. |
private void | |
pack-priv void | |
public double | minHeight(double
the width that should be used if minimum height depends on it width)Overrides javafx. Returns the node's minimum height for use in layout calculations. |
public double | minWidth(double
the height that should be used if minimum width depends on it height)Overrides javafx. Returns the node's minimum width for use in layout calculations. |
public final ReadOnlyBooleanProperty | |
pack-priv void | |
pack-priv final void | notifyManagedChanged()
Overrides javafx. Called whenever the "managed" flag has changed. |
pack-priv boolean | |
public double | prefHeight(double
the width that should be used if preferred height depends on it width)Overrides javafx. Returns the node's preferred height for use in layout calculations. |
public double | prefWidth(double
the height that should be used if preferred width depends on it height)Overrides javafx. Returns the node's preferred width for use in layout calculations. |
pack-priv void | |
public Object | queryAccessibleAttribute(AccessibleAttribute
the requested attribute attribute, Object... optional list of parameters parameters)Overrides javafx. This method is called by the assistive technology to request the value for an attribute. |
private void | |
pack-priv void | |
public void | |
pack-priv void | requestLayout(boolean forceParentLayout)
A package scope method used by Node and serves as a helper method for requestLayout() (see above). |
protected final void | requestParentLayout()
Requests a layout pass of the parent to be performed before the next scene is rendered. |
pack-priv void | requestParentLayout(boolean forceParentLayout)
A package scope method used by Node and serves as a helper method for requestParentLayout() (see above). |
pack-priv void | scenesChanged(final Scene newScene, final SubScene newSubScene, final Scene oldScene, final SubScene oldSubScene)
Overrides javafx. Exists for Parent and LightBase |
private void | |
pack-priv void | |
pack-priv void | |
protected final void | |
private final void | |
pack-priv List | |
pack-priv List | test_getViewOrderChildren()
Note The only user of this method is in unit test: Parent_viewOrderChildren_sync_Test. |
pack-priv final void | |
pack-priv final void | |
protected void | updateBounds()
Overrides javafx. Updates the bounds of this |
private boolean | |
pack-priv void |