- All Implemented Interfaces:
Styleable
,EventTarget
- Direct Known Subclasses:
Camera
,Canvas
,ImageView
,LightBase
,MediaView
,Parent
,Shape
,Shape3D
,SubScene
,SwingNode
Each item in the scene graph is called a Node
. Branch nodes are
of type Parent
, whose concrete subclasses are Group
,
Region
, and Control
,
or subclasses thereof.
Leaf nodes are classes such as
Rectangle
, Text
,
ImageView
, MediaView
,
or other such leaf classes which cannot have children. Only a single node within
each scene graph tree will have no parent, which is referred to as the "root" node.
There may be several trees in the scene graph. Some trees may be part of
a Scene
, in which case they are eligible to be displayed.
Other trees might not be part of any Scene
.
A node may occur at most once anywhere in the scene graph. Specifically,
a node must appear no more than once in all of the following:
as the root node of a Scene
,
the children ObservableList of a Parent
,
or as the clip of a Node
.
The scene graph must not have cycles. A cycle would exist if a node is
an ancestor of itself in the tree, considering the Group
content
ObservableList, Parent
children ObservableList, and Node
clip relationships
mentioned above.
If a program adds a child node to a Parent (including Group, Region, etc) and that node is already a child of a different Parent or the root of a Scene, the node is automatically (and silently) removed from its former parent. If a program attempts to modify the scene graph in any other way that violates the above rules, an exception is thrown, the modification attempt is ignored and the scene graph is restored to its previous state.
It is possible to rearrange the structure of the scene graph, for example, to move a subtree from one location in the scene graph to another. In order to do this, one would normally remove the subtree from its old location before inserting it at the new location. However, the subtree will be automatically removed as described above if the application doesn't explicitly remove it.
Node objects may be constructed and modified on any thread as long they are
not yet attached to a Scene
in a Window
that is
showing
.
An application must attach nodes to such a Scene or modify them on the JavaFX
Application Thread.
The JavaFX Application Thread is created as part of the startup process for
the JavaFX runtime. See the Application
class and
the Platform.startup(Runnable)
method for more information.
An application should not extend the Node class directly. Doing so may lead to an UnsupportedOperationException being thrown.
String ID
Each node in the scene graph can be given a unique id
. This id is
much like the "id" attribute of an HTML tag in that it is up to the designer
and developer to ensure that the id
is unique within the scene graph.
A convenience function called lookup(String)
can be used to find
a node with a unique id within the scene graph, or within a subtree of the
scene graph. The id can also be used identify nodes for applying styles; see
the CSS section below.
Coordinate System
The Node
class defines a traditional computer graphics "local"
coordinate system in which the x
axis increases to the right and the
y
axis increases downwards. The concrete node classes for shapes
provide variables for defining the geometry and location of the shape
within this local coordinate space. For example,
Rectangle
provides x
, y
,
width
, height
variables while
Circle
provides centerX
, centerY
,
and radius
.
At the device pixel level, integer coordinates map onto the corners and
cracks between the pixels and the centers of the pixels appear at the
midpoints between integer pixel locations. Because all coordinate values
are specified with floating point numbers, coordinates can precisely
point to these corners (when the floating point values have exact integer
values) or to any location on the pixel. For example, a coordinate of
(0.5, 0.5)
would point to the center of the upper left pixel on the
Stage
. Similarly, a rectangle at (0, 0)
with dimensions
of 10
by 10
would span from the upper left corner of the
upper left pixel on the Stage
to the lower right corner of the
10th pixel on the 10th scanline. The pixel center of the last pixel
inside that rectangle would be at the coordinates (9.5, 9.5)
.
In practice, most nodes have transformations applied to their coordinate
system as mentioned below. As a result, the information above describing
the alignment of device coordinates to the pixel grid is relative to
the transformed coordinates, not the local coordinates of the nodes.
The Shape
class describes some additional
important context-specific information about coordinate mapping and how
it can affect rendering.
Transformations
Any Node
can have transformations applied to it. These include
translation, rotation, scaling, or shearing.
A translation transformation is one which shifts the origin of the
node's coordinate space along either the x or y axis. For example, if you
create a Rectangle
which is drawn at the origin
(x=0, y=0) and has a width of 100 and a height of 50, and then apply a
Translate
with a shift of 10 along the x axis
(x=10), then the rectangle will appear drawn at (x=10, y=0) and remain
100 points wide and 50 tall. Note that the origin was shifted, not the
x
variable of the rectangle.
A common node transform is a translation by an integer distance, most often used to lay out nodes on the stage. Such integer translations maintain the device pixel mapping so that local coordinates that are integers still map to the cracks between pixels.
A rotation transformation is one which rotates the coordinate space of
the node about a specified "pivot" point, causing the node to appear rotated.
For example, if you create a Rectangle
which is
drawn at the origin (x=0, y=0) and has a width of 100 and height of 30 and
you apply a Rotate
with a 90 degree rotation
(angle=90) and a pivot at the origin (pivotX=0, pivotY=0), then
the rectangle will be drawn as if its x and y were zero but its height was
100 and its width -30. That is, it is as if a pin is being stuck at the top
left corner and the rectangle is rotating 90 degrees clockwise around that
pin. If the pivot point is instead placed in the center of the rectangle
(at point x=50, y=15) then the rectangle will instead appear to rotate about
its center.
Note that as with all transformations, the x, y, width, and height variables of the rectangle (which remain relative to the local coordinate space) have not changed, but rather the transformation alters the entire coordinate space of the rectangle.
A scaling transformation causes a node to either appear larger or
smaller depending on the scaling factor. Scaling alters the coordinate space
of the node such that each unit of distance along the axis in local
coordinates is multiplied by the scale factor. As with rotation
transformations, scaling transformations are applied about a "pivot" point.
You can think of this as the point in the Node
around which you "zoom". For
example, if you create a Rectangle
with a
strokeWidth
of 5, and a width and height of 50, and you apply a
Scale
with scale factors (x=2.0, y=2.0) and
a pivot at the origin (pivotX=0, pivotY=0), the entire rectangle
(including the stroke) will double in size, growing to the right and
downwards from the origin.
A shearing transformation, sometimes called a skew, effectively rotates one axis so that the x and y axes are no longer perpendicular.
Multiple transformations may be applied to a node. Custom transforms are applied using the
transforms
list. Predefined transforms are applied using the properties specified below.
The matrices that represent the transforms are multiplied in this order:
- Layout (
layoutX
,layoutY
) and translate (translateX
,translateY
,translateZ
) - Rotate (
rotate
) - Scale (
scaleX
,scaleY
,scaleZ
) - Transforms list (
transforms
) starting from element 0
Bounding Rectangles
Since every Node
has transformations, every Node's geometric
bounding rectangle can be described differently depending on whether
transformations are accounted for or not.
Each Node
has a read-only boundsInLocal
variable which specifies the bounding rectangle of the Node
in
untransformed local coordinates. boundsInLocal
includes the
Node's shape geometry, including any space required for a
non-zero stroke that may fall outside the local position/size variables,
and its clip
and effect
variables.
Each Node
also has a read-only boundsInParent
variable which
specifies the bounding rectangle of the Node
after all transformations
have been applied as specified in the Transformations section.
It is called "boundsInParent" because the rectangle will be relative to the
parent's coordinate system. This is the 'visual' bounds of the node.
Finally, the layoutBounds
variable defines the rectangular bounds of
the Node
that should be used as the basis for layout calculations and
may differ from the visual bounds of the node. For shapes, Text, and ImageView,
layoutBounds by default includes only the shape geometry, including space required
for a non-zero strokeWidth
, but does not include the effect,
clip, or any transforms. For resizable classes (Regions and Controls)
layoutBounds will always map to 0,0 width x height
.
The image shows a node without any transformation and its boundsInLocal
:
If we rotate the image by 20 degrees we get following result:
The red rectangle represents
boundsInParent
in the
coordinate space of the Node's parent. The boundsInLocal
stays the same
as in the first image, the green rectangle in this image represents boundsInLocal
in the coordinate space of the Node.
The images show a filled and stroked rectangle and their bounds. The
first rectangle [x:10.0 y:10.0 width:100.0 height:100.0 strokeWidth:0]
has the following bounds bounds: [x:10.0 y:10.0 width:100.0 height:100.0]
.
The second rectangle [x:10.0 y:10.0 width:100.0 height:100.0 strokeWidth:5]
has the following bounds: [x:7.5 y:7.5 width:105 height:105]
(the stroke is centered by default, so only half of it is outside
of the original bounds; it is also possible to create inside or outside
stroke).
Since neither of the rectangles has any transformation applied,
boundsInParent
and boundsInLocal
are the same.
CSS
The Node
class contains id
, styleClass
, and
style
variables that are used in styling this node from
CSS. The id
and styleClass
variables are used in
CSS style sheets to identify nodes to which styles should be
applied. The style
variable contains style properties and
values that are applied directly to this node.
For further information about CSS and how to apply CSS styles to nodes, see the CSS Reference Guide.
- Since:
- JavaFX 2.0
-
Property Summary
TypePropertyDescriptionfinal ObjectProperty<String>
The accessible help text for thisNode
.final ObjectProperty<String>
The role description of thisNode
.final ObjectProperty<AccessibleRole>
The accessible role for thisNode
.final ObjectProperty<String>
The accessible text for thisNode
.final ObjectProperty<BlendMode>
TheBlendMode
used to blend this individual node into the scene behind it.final ReadOnlyObjectProperty<Bounds>
The rectangular bounds of thisNode
in the node's untransformed local coordinate space.final ReadOnlyObjectProperty<Bounds>
The rectangular bounds of thisNode
in the parent coordinate system.final ObjectProperty<CacheHint>
Additional hint for controlling bitmap caching.final BooleanProperty
A performance hint to the system to indicate that thisNode
should be cached as a bitmap.final ObjectProperty<Node>
Specifies aNode
to use to define the clipping shape for this Node.final ObjectProperty<Cursor>
Defines the mouse cursor for thisNode
and subnodes.final ObjectProperty<DepthTest>
Indicates whether depth testing is used when rendering this node.final ReadOnlyBooleanProperty
Indicates whether or not thisNode
is disabled.final BooleanProperty
Defines the individual disabled state of thisNode
.The effective orientation of a node resolves the inheritance of node orientation, returning either left-to-right or right-to-left.final ObjectProperty<Effect>
Specifies an effect to apply to thisNode
.final ObjectProperty<EventDispatcher>
Specifies the event dispatcher for this node.final ReadOnlyBooleanProperty
Indicates whether thisNode
currently has the input focus.final BooleanProperty
Specifies whether thisNode
should be a part of focus traversal cycle.final ReadOnlyBooleanProperty
Indicates whether thisNode
should visibly indicate focus.final ReadOnlyBooleanProperty
Indicates whether thisNode
or any of its descendants currently has the input focus.final ReadOnlyBooleanProperty
Whether or not thisNode
is being hovered over.final StringProperty
The id of thisNode
.Property holding InputMethodRequests.final ReadOnlyObjectProperty<Bounds>
The rectangular bounds that should be used for layout calculations for this node.final DoubleProperty
Defines the x coordinate of the translation that is added to thisNode
's transform for the purpose of layout.final DoubleProperty
Defines the y coordinate of the translation that is added to thisNode
's transform for the purpose of layout.final ReadOnlyObjectProperty<Transform>
An affine transform that holds the computed local-to-parent transform.final ReadOnlyObjectProperty<Transform>
An affine transform that holds the computed local-to-scene transform.final BooleanProperty
Defines whether or not this node's layout will be managed by it's parent.final BooleanProperty
Iftrue
, this node (together with all its children) is completely transparent to mouse events.final ObjectProperty<NodeOrientation>
Property holding NodeOrientation.final ObjectProperty<EventHandler<? super ContextMenuEvent>>
Defines a function to be called when a context menu has been requested on thisNode
.final ObjectProperty<EventHandler<? super MouseEvent>>
Defines a function to be called when drag gesture has been detected.final ObjectProperty<EventHandler<? super DragEvent>>
Defines a function to be called when thisNode
is a drag and drop gesture source after its data has been dropped on a drop target.final ObjectProperty<EventHandler<? super DragEvent>>
Defines a function to be called when the mouse button is released on thisNode
during drag and drop gesture.final ObjectProperty<EventHandler<? super DragEvent>>
Defines a function to be called when drag gesture enters thisNode
.final ObjectProperty<EventHandler<? super DragEvent>>
Defines a function to be called when drag gesture exits thisNode
.final ObjectProperty<EventHandler<? super DragEvent>>
Defines a function to be called when drag gesture progresses within thisNode
.final ObjectProperty<EventHandler<? super InputMethodEvent>>
Defines a function to be called when thisNode
has input focus and the input method text has changed.final ObjectProperty<EventHandler<? super KeyEvent>>
Defines a function to be called when thisNode
or its childNode
has input focus and a key has been pressed.final ObjectProperty<EventHandler<? super KeyEvent>>
Defines a function to be called when thisNode
or its childNode
has input focus and a key has been released.final ObjectProperty<EventHandler<? super KeyEvent>>
Defines a function to be called when thisNode
or its childNode
has input focus and a key has been typed.final ObjectProperty<EventHandler<? super MouseEvent>>
Defines a function to be called when a mouse button has been clicked (pressed and released) on thisNode
.final ObjectProperty<EventHandler<? super MouseDragEvent>>
Defines a function to be called when a full press-drag-release gesture enters thisNode
.final ObjectProperty<EventHandler<? super MouseDragEvent>>
Defines a function to be called when a full press-drag-release gesture leaves thisNode
.final ObjectProperty<EventHandler<? super MouseEvent>>
Defines a function to be called when a mouse button is pressed on thisNode
and then dragged.final ObjectProperty<EventHandler<? super MouseDragEvent>>
Defines a function to be called when a full press-drag-release gesture progresses within thisNode
.final ObjectProperty<EventHandler<? super MouseDragEvent>>
Defines a function to be called when a full press-drag-release gesture ends (by releasing mouse button) within thisNode
.final ObjectProperty<EventHandler<? super MouseEvent>>
Defines a function to be called when the mouse enters thisNode
.final ObjectProperty<EventHandler<? super MouseEvent>>
Defines a function to be called when the mouse exits thisNode
.final ObjectProperty<EventHandler<? super MouseEvent>>
Defines a function to be called when mouse cursor moves within thisNode
but no buttons have been pushed.final ObjectProperty<EventHandler<? super MouseEvent>>
Defines a function to be called when a mouse button has been pressed on thisNode
.final ObjectProperty<EventHandler<? super MouseEvent>>
Defines a function to be called when a mouse button has been released on thisNode
.final ObjectProperty<EventHandler<? super RotateEvent>>
Defines a function to be called when user performs a rotation action.final ObjectProperty<EventHandler<? super RotateEvent>>
Defines a function to be called when a rotation gesture ends.final ObjectProperty<EventHandler<? super RotateEvent>>
Defines a function to be called when a rotation gesture is detected.final ObjectProperty<EventHandler<? super ScrollEvent>>
Defines a function to be called when a scrolling gesture ends.final ObjectProperty<EventHandler<? super ScrollEvent>>
Defines a function to be called when user performs a scrolling action.final ObjectProperty<EventHandler<? super ScrollEvent>>
Defines a function to be called when a scrolling gesture is detected.final ObjectProperty<EventHandler<? super SwipeEvent>>
Defines a function to be called when a downward swipe gesture centered over this node happens.final ObjectProperty<EventHandler<? super SwipeEvent>>
Defines a function to be called when a leftward swipe gesture centered over this node happens.final ObjectProperty<EventHandler<? super SwipeEvent>>
Defines a function to be called when an rightward swipe gesture centered over this node happens.final ObjectProperty<EventHandler<? super SwipeEvent>>
Defines a function to be called when an upward swipe gesture centered over this node happens.final ObjectProperty<EventHandler<? super TouchEvent>>
Defines a function to be called when a touch point is moved.final ObjectProperty<EventHandler<? super TouchEvent>>
Defines a function to be called when a new touch point is pressed.final ObjectProperty<EventHandler<? super TouchEvent>>
Defines a function to be called when a touch point is released.final ObjectProperty<EventHandler<? super TouchEvent>>
Defines a function to be called when a touch point stays pressed and still.final ObjectProperty<EventHandler<? super ZoomEvent>>
Defines a function to be called when a zooming gesture ends.final ObjectProperty<EventHandler<? super ZoomEvent>>
Defines a function to be called when user performs a zooming action.final ObjectProperty<EventHandler<? super ZoomEvent>>
Defines a function to be called when a zooming gesture is detected.final DoubleProperty
Specifies how opaque (that is, solid) theNode
appears.final ReadOnlyObjectProperty<Parent>
The parent of thisNode
.final BooleanProperty
Defines how the picking computation is done for this node when triggered by aMouseEvent
or acontains
function call.final ReadOnlyBooleanProperty
Whether or not theNode
is pressed.final DoubleProperty
Defines the angle of rotation about theNode
's center, measured in degrees.final ObjectProperty<Point3D>
Defines the axis of rotation of thisNode
.final DoubleProperty
Defines the factor by which coordinates are scaled about the center of the object along the X axis of thisNode
.final DoubleProperty
Defines the factor by which coordinates are scaled about the center of the object along the Y axis of thisNode
.final DoubleProperty
Defines the factor by which coordinates are scaled about the center of the object along the Z axis of thisNode
.final ReadOnlyObjectProperty<Scene>
TheScene
that thisNode
is part of.final StringProperty
A string representation of the CSS style associated with this specificNode
.final DoubleProperty
Defines the x coordinate of the translation that is added to thisNode
's transform.final DoubleProperty
Defines the y coordinate of the translation that is added to thisNode
's transform.final DoubleProperty
Defines the Z coordinate of the translation that is added to the transformed coordinates of thisNode
.final DoubleProperty
Defines the rendering and picking order of thisNode
within its parent.final BooleanProperty
Specifies whether thisNode
and any subnodes should be rendered as part of the scene graph. -
Field Summary
Modifier and TypeFieldDescriptionstatic final double
This is a special value that might be returned bygetBaselineOffset()
. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal ObjectProperty<String>
The accessible help text for thisNode
.final ObjectProperty<String>
The role description of thisNode
.final ObjectProperty<AccessibleRole>
The accessible role for thisNode
.final ObjectProperty<String>
The accessible text for thisNode
.final <T extends Event>
voidaddEventFilter
(EventType<T> eventType, EventHandler<? super T> eventFilter) Registers an event filter to this node.final <T extends Event>
voidaddEventHandler
(EventType<T> eventType, EventHandler<? super T> eventHandler) Registers an event handler to this node.final void
applyCss()
If required, apply styles to this Node and its children, if any.final void
autosize()
If the node is resizable, will set its layout bounds to its current preferred width and height.final ObjectProperty<BlendMode>
TheBlendMode
used to blend this individual node into the scene behind it.final ReadOnlyObjectProperty<Bounds>
The rectangular bounds of thisNode
in the node's untransformed local coordinate space.final ReadOnlyObjectProperty<Bounds>
The rectangular bounds of thisNode
in the parent coordinate system.Construct an event dispatch chain for this node.final ObjectProperty<CacheHint>
Additional hint for controlling bitmap caching.final BooleanProperty
A performance hint to the system to indicate that thisNode
should be cached as a bitmap.final ObjectProperty<Node>
Specifies aNode
to use to define the clipping shape for this Node.double
Returns the area of thisNode
projected onto the physical screen in pixel units.boolean
contains
(double localX, double localY) Returnstrue
if the given point (specified in the local coordinate space of thisNode
) is contained within the shape of thisNode
.boolean
Returnstrue
if the given point (specified in the local coordinate space of thisNode
) is contained within the shape of thisNode
.final ObjectProperty<Cursor>
Defines the mouse cursor for thisNode
and subnodes.final ObjectProperty<DepthTest>
Indicates whether depth testing is used when rendering this node.final ReadOnlyBooleanProperty
Indicates whether or not thisNode
is disabled.final BooleanProperty
Defines the individual disabled state of thisNode
.The effective orientation of a node resolves the inheritance of node orientation, returning either left-to-right or right-to-left.final ObjectProperty<Effect>
Specifies an effect to apply to thisNode
.final ObjectProperty<EventDispatcher>
Specifies the event dispatcher for this node.void
executeAccessibleAction
(AccessibleAction action, Object... parameters) This method is called by the assistive technology to request the action indicated by the argument should be executed.final void
Fires the specified event.final ReadOnlyBooleanProperty
Indicates whether thisNode
currently has the input focus.final BooleanProperty
Specifies whether thisNode
should be a part of focus traversal cycle.final ReadOnlyBooleanProperty
Indicates whether thisNode
should visibly indicate focus.final ReadOnlyBooleanProperty
Indicates whether thisNode
or any of its descendants currently has the input focus.final String
Gets the value of theaccessibleHelp
property.final AccessibleRole
Gets the value of theaccessibleRole
property.final String
Gets the value of theaccessibleRoleDescription
property.final String
Gets the value of theaccessibleText
property.double
The 'alphabetic' (or 'roman') baseline offset from the node's layoutBounds.minY location that should be used when this node is being vertically aligned by baseline with other nodes.final BlendMode
Gets the value of theblendMode
property.final Bounds
Gets the value of theboundsInLocal
property.final Bounds
Gets the value of theboundsInParent
property.final CacheHint
Gets the value of thecacheHint
property.static List<CssMetaData<? extends Styleable,
?>> Gets theCssMetaData
associated with this class, which may include theCssMetaData
of its superclasses.final Node
getClip()
Gets the value of theclip
property.Returns the orientation of a node's resizing bias for layout purposes.List<CssMetaData<? extends Styleable,
?>> This method should delegate togetClassCssMetaData()
so that a Node's CssMetaData can be accessed without the need for reflection.final Cursor
Gets the value of thecursor
property.final DepthTest
Gets the value of thedepthTest
property.final Effect
Gets the value of theeffect
property.final NodeOrientation
Gets the value of theeffectiveNodeOrientation
property.final EventDispatcher
Gets the value of theeventDispatcher
property.final String
getId()
The id of thisNode
.protected Cursor
Returns the initial cursor state of this node, for use by the JavaFX CSS engine to correctly set its initial value.protected Boolean
Returns the initial focus traversable state of this node, for use by the JavaFX CSS engine to correctly set its initial value.final InputMethodRequests
Gets the value of theinputMethodRequests
property.final Bounds
Gets the value of thelayoutBounds
property.final double
Gets the value of thelayoutX
property.final double
Gets the value of thelayoutY
property.final Transform
Gets the value of thelocalToParentTransform
property.final Transform
Gets the value of thelocalToSceneTransform
property.final NodeOrientation
Gets the value of thenodeOrientation
property.final EventHandler<? super ContextMenuEvent>
Gets the value of theonContextMenuRequested
property.final EventHandler<? super MouseEvent>
Gets the value of theonDragDetected
property.final EventHandler<? super DragEvent>
Gets the value of theonDragDone
property.final EventHandler<? super DragEvent>
Gets the value of theonDragDropped
property.final EventHandler<? super DragEvent>
Gets the value of theonDragEntered
property.final EventHandler<? super DragEvent>
Gets the value of theonDragExited
property.final EventHandler<? super DragEvent>
Gets the value of theonDragOver
property.final EventHandler<? super InputMethodEvent>
Gets the value of theonInputMethodTextChanged
property.final EventHandler<? super KeyEvent>
Gets the value of theonKeyPressed
property.final EventHandler<? super KeyEvent>
Gets the value of theonKeyReleased
property.final EventHandler<? super KeyEvent>
Gets the value of theonKeyTyped
property.final EventHandler<? super MouseEvent>
Gets the value of theonMouseClicked
property.final EventHandler<? super MouseDragEvent>
Gets the value of theonMouseDragEntered
property.final EventHandler<? super MouseDragEvent>
Gets the value of theonMouseDragExited
property.final EventHandler<? super MouseEvent>
Gets the value of theonMouseDragged
property.final EventHandler<? super MouseDragEvent>
Gets the value of theonMouseDragOver
property.final EventHandler<? super MouseDragEvent>
Gets the value of theonMouseDragReleased
property.final EventHandler<? super MouseEvent>
Gets the value of theonMouseEntered
property.final EventHandler<? super MouseEvent>
Gets the value of theonMouseExited
property.final EventHandler<? super MouseEvent>
Gets the value of theonMouseMoved
property.final EventHandler<? super MouseEvent>
Gets the value of theonMousePressed
property.final EventHandler<? super MouseEvent>
Gets the value of theonMouseReleased
property.final EventHandler<? super RotateEvent>
Gets the value of theonRotate
property.final EventHandler<? super RotateEvent>
Gets the value of theonRotationFinished
property.final EventHandler<? super RotateEvent>
Gets the value of theonRotationStarted
property.final EventHandler<? super ScrollEvent>
Gets the value of theonScroll
property.final EventHandler<? super ScrollEvent>
Gets the value of theonScrollFinished
property.final EventHandler<? super ScrollEvent>
Gets the value of theonScrollStarted
property.final EventHandler<? super SwipeEvent>
Gets the value of theonSwipeDown
property.final EventHandler<? super SwipeEvent>
Gets the value of theonSwipeLeft
property.final EventHandler<? super SwipeEvent>
Gets the value of theonSwipeRight
property.final EventHandler<? super SwipeEvent>
Gets the value of theonSwipeUp
property.final EventHandler<? super TouchEvent>
Gets the value of theonTouchMoved
property.final EventHandler<? super TouchEvent>
Gets the value of theonTouchPressed
property.final EventHandler<? super TouchEvent>
Gets the value of theonTouchReleased
property.final EventHandler<? super TouchEvent>
Gets the value of theonTouchStationary
property.final EventHandler<? super ZoomEvent>
Gets the value of theonZoom
property.final EventHandler<? super ZoomEvent>
Gets the value of theonZoomFinished
property.final EventHandler<? super ZoomEvent>
Gets the value of theonZoomStarted
property.final double
Gets the value of theopacity
property.final Parent
Gets the value of theparent
property.final ObservableMap<Object,
Object> Returns an observable map of properties on this node for use primarily by application developers.final ObservableSet<PseudoClass>
Return the pseudo-class state of this Styleable.final double
Gets the value of therotate
property.final Point3D
Gets the value of therotationAxis
property.final double
Gets the value of thescaleX
property.final double
Gets the value of thescaleY
property.final double
Gets the value of thescaleZ
property.final Scene
getScene()
Gets the value of thescene
property.final String
getStyle()
A string representation of the CSS style associated with this specificNode
.Return the parent of this Styleable, or null if there is no parent.final ObservableList<String>
A list of String identifiers which can be used to logically group Nodes, specifically for an external style engine.final ObservableList<Transform>
final double
Gets the value of thetranslateX
property.final double
Gets the value of thetranslateY
property.final double
Gets the value of thetranslateZ
property.The type of thisStyleable
that is to be used in selector matching.Returns a previously set Object property, or null if no such property has been set using thesetUserData(java.lang.Object)
method.final double
Gets the value of theviewOrder
property.boolean
Tests if Node has properties.final ReadOnlyBooleanProperty
Whether or not thisNode
is being hovered over.final StringProperty
The id of thisNode
.Property holding InputMethodRequests.boolean
intersects
(double localX, double localY, double localWidth, double localHeight) Returnstrue
if the given rectangle (specified in the local coordinate space of thisNode
) intersects the shape of thisNode
.boolean
intersects
(Bounds localBounds) Returnstrue
if the given bounds (specified in the local coordinate space of thisNode
) intersects the shape of thisNode
.final boolean
isCache()
Gets the value of thecache
property.final boolean
Gets the value of thedisable
property.final boolean
Gets the value of thedisabled
property.final boolean
Gets the value of thefocused
property.final boolean
Gets the value of thefocusTraversable
property.final boolean
Gets the value of thefocusVisible
property.final boolean
Gets the value of thefocusWithin
property.final boolean
isHover()
Gets the value of thehover
property.final boolean
Gets the value of themanaged
property.final boolean
Gets the value of themouseTransparent
property.final boolean
Gets the value of thepickOnBounds
property.final boolean
Gets the value of thepressed
property.boolean
Indicates whether this node is a type which can be resized by its parent.final boolean
Gets the value of thevisible
property.final ReadOnlyObjectProperty<Bounds>
The rectangular bounds that should be used for layout calculations for this node.final DoubleProperty
Defines the x coordinate of the translation that is added to thisNode
's transform for the purpose of layout.final DoubleProperty
Defines the y coordinate of the translation that is added to thisNode
's transform for the purpose of layout.localToParent
(double localX, double localY) Transforms a point from the local coordinate space of thisNode
into the coordinate space of its parent.localToParent
(double x, double y, double z) Transforms a point from the local coordinate space of thisNode
into the coordinate space of its parent.localToParent
(Bounds localBounds) Transforms a bounds from the local coordinate space of thisNode
into the coordinate space of its parent.localToParent
(Point2D localPoint) Transforms a point from the local coordinate space of thisNode
into the coordinate space of its parent.localToParent
(Point3D localPoint) Transforms a point from the local coordinate space of thisNode
into the coordinate space of its parent.final ReadOnlyObjectProperty<Transform>
An affine transform that holds the computed local-to-parent transform.localToScene
(double localX, double localY) Transforms a point from the local coordinate space of thisNode
into the coordinate space of its scene.localToScene
(double x, double y, boolean rootScene) Transforms a point from the local coordinate space of thisNode
into the coordinate space of its scene.localToScene
(double x, double y, double z) Transforms a point from the local coordinate space of thisNode
into the coordinate space of its scene.localToScene
(double x, double y, double z, boolean rootScene) Transforms a point from the local coordinate space of thisNode
into the coordinate space of its scene.localToScene
(Bounds localBounds) Transforms a bounds from the local coordinate space of thisNode
into the coordinate space of its scene.localToScene
(Bounds localBounds, boolean rootScene) Transforms a bounds from the local coordinate space of thisNode
into the coordinate space of its scene.localToScene
(Point2D localPoint) Transforms a point from the local coordinate space of thisNode
into the coordinate space of its scene.localToScene
(Point2D localPoint, boolean rootScene) Transforms a point from the local coordinate space of thisNode
into the coordinate space of its scene.localToScene
(Point3D localPoint) Transforms a point from the local coordinate space of thisNode
into the coordinate space of its scene.localToScene
(Point3D localPoint, boolean rootScene) Transforms a point from the local coordinate space of thisNode
into the coordinate space of its scene.final ReadOnlyObjectProperty<Transform>
An affine transform that holds the computed local-to-scene transform.localToScreen
(double localX, double localY) Transforms a point from the local coordinate space of thisNode
into the coordinate space of itsScreen
.localToScreen
(double localX, double localY, double localZ) Transforms a point from the local coordinate space of thisNode
into the coordinate space of itsScreen
.localToScreen
(Bounds localBounds) Transforms a bounds from the local coordinate space of thisNode
into the coordinate space of itsScreen
.localToScreen
(Point2D localPoint) Transforms a point from the local coordinate space of thisNode
into the coordinate space of itsScreen
.localToScreen
(Point3D localPoint) Transforms a point from the local coordinate space of thisNode
into the coordinate space of itsScreen
.Finds thisNode
, or the first sub-node, based on the given CSS selector.Finds allNode
s, including this one and any children, which match the given CSS selector.final BooleanProperty
Defines whether or not this node's layout will be managed by it's parent.double
maxHeight
(double width) Returns the node's maximum height for use in layout calculations.double
maxWidth
(double height) Returns the node's maximum width for use in layout calculations.double
minHeight
(double width) Returns the node's minimum height for use in layout calculations.double
minWidth
(double height) Returns the node's minimum width for use in layout calculations.final BooleanProperty
Iftrue
, this node (together with all its children) is completely transparent to mouse events.final ObjectProperty<NodeOrientation>
Property holding NodeOrientation.final void
notifyAccessibleAttributeChanged
(AccessibleAttribute attributes) This method is called by the application to notify the assistive technology that the value for an attribute has changed.final ObjectProperty<EventHandler<? super ContextMenuEvent>>
Defines a function to be called when a context menu has been requested on thisNode
.final ObjectProperty<EventHandler<? super MouseEvent>>
Defines a function to be called when drag gesture has been detected.final ObjectProperty<EventHandler<? super DragEvent>>
Defines a function to be called when thisNode
is a drag and drop gesture source after its data has been dropped on a drop target.final ObjectProperty<EventHandler<? super DragEvent>>
Defines a function to be called when the mouse button is released on thisNode
during drag and drop gesture.final ObjectProperty<EventHandler<? super DragEvent>>
Defines a function to be called when drag gesture enters thisNode
.final ObjectProperty<EventHandler<? super DragEvent>>
Defines a function to be called when drag gesture exits thisNode
.final ObjectProperty<EventHandler<? super DragEvent>>
Defines a function to be called when drag gesture progresses within thisNode
.final ObjectProperty<EventHandler<? super InputMethodEvent>>
Defines a function to be called when thisNode
has input focus and the input method text has changed.final ObjectProperty<EventHandler<? super KeyEvent>>
Defines a function to be called when thisNode
or its childNode
has input focus and a key has been pressed.final ObjectProperty<EventHandler<? super KeyEvent>>
Defines a function to be called when thisNode
or its childNode
has input focus and a key has been released.final ObjectProperty<EventHandler<? super KeyEvent>>
Defines a function to be called when thisNode
or its childNode
has input focus and a key has been typed.final ObjectProperty<EventHandler<? super MouseEvent>>
Defines a function to be called when a mouse button has been clicked (pressed and released) on thisNode
.final ObjectProperty<EventHandler<? super MouseDragEvent>>
Defines a function to be called when a full press-drag-release gesture enters thisNode
.final ObjectProperty<EventHandler<? super MouseDragEvent>>
Defines a function to be called when a full press-drag-release gesture leaves thisNode
.final ObjectProperty<EventHandler<? super MouseEvent>>
Defines a function to be called when a mouse button is pressed on thisNode
and then dragged.final ObjectProperty<EventHandler<? super MouseDragEvent>>
Defines a function to be called when a full press-drag-release gesture progresses within thisNode
.final ObjectProperty<EventHandler<? super MouseDragEvent>>
Defines a function to be called when a full press-drag-release gesture ends (by releasing mouse button) within thisNode
.final ObjectProperty<EventHandler<? super MouseEvent>>
Defines a function to be called when the mouse enters thisNode
.final ObjectProperty<EventHandler<? super MouseEvent>>
Defines a function to be called when the mouse exits thisNode
.final ObjectProperty<EventHandler<? super MouseEvent>>
Defines a function to be called when mouse cursor moves within thisNode
but no buttons have been pushed.final ObjectProperty<EventHandler<? super MouseEvent>>
Defines a function to be called when a mouse button has been pressed on thisNode
.final ObjectProperty<EventHandler<? super MouseEvent>>
Defines a function to be called when a mouse button has been released on thisNode
.final ObjectProperty<EventHandler<? super RotateEvent>>
Defines a function to be called when user performs a rotation action.final ObjectProperty<EventHandler<? super RotateEvent>>
Defines a function to be called when a rotation gesture ends.final ObjectProperty<EventHandler<? super RotateEvent>>
Defines a function to be called when a rotation gesture is detected.final ObjectProperty<EventHandler<? super ScrollEvent>>
Defines a function to be called when a scrolling gesture ends.final ObjectProperty<EventHandler<? super ScrollEvent>>
Defines a function to be called when user performs a scrolling action.final ObjectProperty<EventHandler<? super ScrollEvent>>
Defines a function to be called when a scrolling gesture is detected.final ObjectProperty<EventHandler<? super SwipeEvent>>
Defines a function to be called when a downward swipe gesture centered over this node happens.final ObjectProperty<EventHandler<? super SwipeEvent>>
Defines a function to be called when a leftward swipe gesture centered over this node happens.final ObjectProperty<EventHandler<? super SwipeEvent>>
Defines a function to be called when an rightward swipe gesture centered over this node happens.final ObjectProperty<EventHandler<? super SwipeEvent>>
Defines a function to be called when an upward swipe gesture centered over this node happens.final ObjectProperty<EventHandler<? super TouchEvent>>
Defines a function to be called when a touch point is moved.final ObjectProperty<EventHandler<? super TouchEvent>>
Defines a function to be called when a new touch point is pressed.final ObjectProperty<EventHandler<? super TouchEvent>>
Defines a function to be called when a touch point is released.final ObjectProperty<EventHandler<? super TouchEvent>>
Defines a function to be called when a touch point stays pressed and still.final ObjectProperty<EventHandler<? super ZoomEvent>>
Defines a function to be called when a zooming gesture ends.final ObjectProperty<EventHandler<? super ZoomEvent>>
Defines a function to be called when user performs a zooming action.final ObjectProperty<EventHandler<? super ZoomEvent>>
Defines a function to be called when a zooming gesture is detected.final DoubleProperty
Specifies how opaque (that is, solid) theNode
appears.final ReadOnlyObjectProperty<Parent>
The parent of thisNode
.parentToLocal
(double parentX, double parentY) Transforms a point from the coordinate space of the parent into the local coordinate space of thisNode
.parentToLocal
(double parentX, double parentY, double parentZ) Transforms a point from the coordinate space of the parent into the local coordinate space of thisNode
.parentToLocal
(Bounds parentBounds) Transforms a rectangle from the coordinate space of the parent into the local coordinate space of thisNode
.parentToLocal
(Point2D parentPoint) Transforms a point from the coordinate space of the parent into the local coordinate space of thisNode
.parentToLocal
(Point3D parentPoint) Transforms a point from the coordinate space of the parent into the local coordinate space of thisNode
.final BooleanProperty
Defines how the picking computation is done for this node when triggered by aMouseEvent
or acontains
function call.double
prefHeight
(double width) Returns the node's preferred height for use in layout calculations.double
prefWidth
(double height) Returns the node's preferred width for use in layout calculations.final ReadOnlyBooleanProperty
Whether or not theNode
is pressed.final void
pseudoClassStateChanged
(PseudoClass pseudoClass, boolean active) Used to specify that a pseudo-class of this Node has changed.queryAccessibleAttribute
(AccessibleAttribute attribute, Object... parameters) This method is called by the assistive technology to request the value for an attribute.void
relocate
(double x, double y) Sets the node's layoutX and layoutY translation properties in order to relocate this node to the x,y location in the parent.final <T extends Event>
voidremoveEventFilter
(EventType<T> eventType, EventHandler<? super T> eventFilter) Unregisters a previously registered event filter from this node.final <T extends Event>
voidremoveEventHandler
(EventType<T> eventType, EventHandler<? super T> eventHandler) Unregisters a previously registered event handler from this node.void
Requests that thisNode
get the input focus, and that thisNode
's top-level ancestor become the focused window.void
resize
(double width, double height) If the node is resizable, will set its layout bounds to the specified width and height.void
resizeRelocate
(double x, double y, double width, double height) If the node is resizable, will set its layout bounds to the specified width and height.final DoubleProperty
Defines the angle of rotation about theNode
's center, measured in degrees.final ObjectProperty<Point3D>
Defines the axis of rotation of thisNode
.final DoubleProperty
Defines the factor by which coordinates are scaled about the center of the object along the X axis of thisNode
.final DoubleProperty
Defines the factor by which coordinates are scaled about the center of the object along the Y axis of thisNode
.final DoubleProperty
Defines the factor by which coordinates are scaled about the center of the object along the Z axis of thisNode
.final ReadOnlyObjectProperty<Scene>
TheScene
that thisNode
is part of.sceneToLocal
(double sceneX, double sceneY) Transforms a point from the coordinate space of the scene into the local coordinate space of thisNode
.sceneToLocal
(double x, double y, boolean rootScene) Transforms a point from the coordinate space of the scene into the local coordinate space of thisNode
.sceneToLocal
(double sceneX, double sceneY, double sceneZ) Transforms a point from the coordinate space of the scene into the local coordinate space of thisNode
.sceneToLocal
(Bounds sceneBounds) Transforms a rectangle from the coordinate space of the scene into the local coordinate space of thisNode
.sceneToLocal
(Bounds bounds, boolean rootScene) Transforms a bounds from the coordinate space of the scene into the local coordinate space of thisNode
.sceneToLocal
(Point2D scenePoint) Transforms a point from the coordinate space of the scene into the local coordinate space of thisNode
.sceneToLocal
(Point2D point, boolean rootScene) Transforms a point from the coordinate space of the scene into the local coordinate space of thisNode
.sceneToLocal
(Point3D scenePoint) Transforms a point from the coordinate space of the scene into the local coordinate space of thisNode
.screenToLocal
(double screenX, double screenY) Transforms a point from the coordinate space of theScreen
into the local coordinate space of thisNode
.screenToLocal
(Bounds screenBounds) Transforms a rectangle from the coordinate space of theScreen
into the local coordinate space of thisNode
.screenToLocal
(Point2D screenPoint) Transforms a point from the coordinate space of theScreen
into the local coordinate space of thisNode
.final void
setAccessibleHelp
(String value) Sets the value of theaccessibleHelp
property.final void
setAccessibleRole
(AccessibleRole value) Sets the value of theaccessibleRole
property.final void
Sets the value of theaccessibleRoleDescription
property.final void
setAccessibleText
(String value) Sets the value of theaccessibleText
property.final void
setBlendMode
(BlendMode value) Sets the value of theblendMode
property.final void
setCache
(boolean value) Sets the value of thecache
property.final void
setCacheHint
(CacheHint value) Sets the value of thecacheHint
property.final void
Sets the value of theclip
property.final void
Sets the value of thecursor
property.final void
setDepthTest
(DepthTest value) Sets the value of thedepthTest
property.final void
setDisable
(boolean value) Sets the value of thedisable
property.protected final void
setDisabled
(boolean value) Sets the value of thedisabled
property.final void
Sets the value of theeffect
property.final void
Sets the value of theeventDispatcher
property.protected final <T extends Event>
voidsetEventHandler
(EventType<T> eventType, EventHandler<? super T> eventHandler) Sets the handler to use for this event type.protected final void
setFocused
(boolean value) Sets the value of thefocused
property.final void
setFocusTraversable
(boolean value) Sets the value of thefocusTraversable
property.protected final void
setHover
(boolean value) Sets the value of thehover
property.final void
Sets the value of theid
property.final void
Sets the value of theinputMethodRequests
property.final void
setLayoutX
(double value) Sets the value of thelayoutX
property.final void
setLayoutY
(double value) Sets the value of thelayoutY
property.final void
setManaged
(boolean value) Sets the value of themanaged
property.final void
setMouseTransparent
(boolean value) Sets the value of themouseTransparent
property.final void
setNodeOrientation
(NodeOrientation orientation) Sets the value of thenodeOrientation
property.final void
setOnContextMenuRequested
(EventHandler<? super ContextMenuEvent> value) Sets the value of theonContextMenuRequested
property.final void
setOnDragDetected
(EventHandler<? super MouseEvent> value) Sets the value of theonDragDetected
property.final void
setOnDragDone
(EventHandler<? super DragEvent> value) Sets the value of theonDragDone
property.final void
setOnDragDropped
(EventHandler<? super DragEvent> value) Sets the value of theonDragDropped
property.final void
setOnDragEntered
(EventHandler<? super DragEvent> value) Sets the value of theonDragEntered
property.final void
setOnDragExited
(EventHandler<? super DragEvent> value) Sets the value of theonDragExited
property.final void
setOnDragOver
(EventHandler<? super DragEvent> value) Sets the value of theonDragOver
property.final void
setOnInputMethodTextChanged
(EventHandler<? super InputMethodEvent> value) Sets the value of theonInputMethodTextChanged
property.final void
setOnKeyPressed
(EventHandler<? super KeyEvent> value) Sets the value of theonKeyPressed
property.final void
setOnKeyReleased
(EventHandler<? super KeyEvent> value) Sets the value of theonKeyReleased
property.final void
setOnKeyTyped
(EventHandler<? super KeyEvent> value) Sets the value of theonKeyTyped
property.final void
setOnMouseClicked
(EventHandler<? super MouseEvent> value) Sets the value of theonMouseClicked
property.final void
setOnMouseDragEntered
(EventHandler<? super MouseDragEvent> value) Sets the value of theonMouseDragEntered
property.final void
setOnMouseDragExited
(EventHandler<? super MouseDragEvent> value) Sets the value of theonMouseDragExited
property.final void
setOnMouseDragged
(EventHandler<? super MouseEvent> value) Sets the value of theonMouseDragged
property.final void
setOnMouseDragOver
(EventHandler<? super MouseDragEvent> value) Sets the value of theonMouseDragOver
property.final void
setOnMouseDragReleased
(EventHandler<? super MouseDragEvent> value) Sets the value of theonMouseDragReleased
property.final void
setOnMouseEntered
(EventHandler<? super MouseEvent> value) Sets the value of theonMouseEntered
property.final void
setOnMouseExited
(EventHandler<? super MouseEvent> value) Sets the value of theonMouseExited
property.final void
setOnMouseMoved
(EventHandler<? super MouseEvent> value) Sets the value of theonMouseMoved
property.final void
setOnMousePressed
(EventHandler<? super MouseEvent> value) Sets the value of theonMousePressed
property.final void
setOnMouseReleased
(EventHandler<? super MouseEvent> value) Sets the value of theonMouseReleased
property.final void
setOnRotate
(EventHandler<? super RotateEvent> value) Sets the value of theonRotate
property.final void
setOnRotationFinished
(EventHandler<? super RotateEvent> value) Sets the value of theonRotationFinished
property.final void
setOnRotationStarted
(EventHandler<? super RotateEvent> value) Sets the value of theonRotationStarted
property.final void
setOnScroll
(EventHandler<? super ScrollEvent> value) Sets the value of theonScroll
property.final void
setOnScrollFinished
(EventHandler<? super ScrollEvent> value) Sets the value of theonScrollFinished
property.final void
setOnScrollStarted
(EventHandler<? super ScrollEvent> value) Sets the value of theonScrollStarted
property.final void
setOnSwipeDown
(EventHandler<? super SwipeEvent> value) Sets the value of theonSwipeDown
property.final void
setOnSwipeLeft
(EventHandler<? super SwipeEvent> value) Sets the value of theonSwipeLeft
property.final void
setOnSwipeRight
(EventHandler<? super SwipeEvent> value) Sets the value of theonSwipeRight
property.final void
setOnSwipeUp
(EventHandler<? super SwipeEvent> value) Sets the value of theonSwipeUp
property.final void
setOnTouchMoved
(EventHandler<? super TouchEvent> value) Sets the value of theonTouchMoved
property.final void
setOnTouchPressed
(EventHandler<? super TouchEvent> value) Sets the value of theonTouchPressed
property.final void
setOnTouchReleased
(EventHandler<? super TouchEvent> value) Sets the value of theonTouchReleased
property.final void
setOnTouchStationary
(EventHandler<? super TouchEvent> value) Sets the value of theonTouchStationary
property.final void
setOnZoom
(EventHandler<? super ZoomEvent> value) Sets the value of theonZoom
property.final void
setOnZoomFinished
(EventHandler<? super ZoomEvent> value) Sets the value of theonZoomFinished
property.final void
setOnZoomStarted
(EventHandler<? super ZoomEvent> value) Sets the value of theonZoomStarted
property.final void
setOpacity
(double value) Sets the value of theopacity
property.final void
setPickOnBounds
(boolean value) Sets the value of thepickOnBounds
property.protected final void
setPressed
(boolean value) Sets the value of thepressed
property.final void
setRotate
(double value) Sets the value of therotate
property.final void
setRotationAxis
(Point3D value) Sets the value of therotationAxis
property.final void
setScaleX
(double value) Sets the value of thescaleX
property.final void
setScaleY
(double value) Sets the value of thescaleY
property.final void
setScaleZ
(double value) Sets the value of thescaleZ
property.final void
A string representation of the CSS style associated with this specificNode
.final void
setTranslateX
(double value) Sets the value of thetranslateX
property.final void
setTranslateY
(double value) Sets the value of thetranslateY
property.final void
setTranslateZ
(double value) Sets the value of thetranslateZ
property.void
setUserData
(Object value) Convenience method for setting a single Object property that can be retrieved at a later date.final void
setViewOrder
(double value) Sets the value of theviewOrder
property.final void
setVisible
(boolean value) Sets the value of thevisible
property.snapshot
(SnapshotParameters params, WritableImage image) Takes a snapshot of this node and returns the rendered image when it is ready.void
snapshot
(Callback<SnapshotResult, Void> callback, SnapshotParameters params, WritableImage image) Takes a snapshot of this node at the next frame and calls the specified callback method when the image is ready.startDragAndDrop
(TransferMode... transferModes) Confirms a potential drag and drop gesture that is recognized over thisNode
.void
Starts a full press-drag-release gesture with this node as gesture source.final StringProperty
A string representation of the CSS style associated with this specificNode
.void
toBack()
Moves thisNode
to the back of its sibling nodes in terms of z-order.void
toFront()
Moves thisNode
to the front of its sibling nodes in terms of z-order.toString()
Returns a string representation for the object.final DoubleProperty
Defines the x coordinate of the translation that is added to thisNode
's transform.final DoubleProperty
Defines the y coordinate of the translation that is added to thisNode
's transform.final DoubleProperty
Defines the Z coordinate of the translation that is added to the transformed coordinates of thisNode
.boolean
Determines whether a node should be mirrored when node orientation is right-to-left.final DoubleProperty
Defines the rendering and picking order of thisNode
within its parent.final BooleanProperty
Specifies whether thisNode
and any subnodes should be rendered as part of the scene graph.Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods declared in interface javafx.css.Styleable
getStyleableNode
-
Property Details
-
parent
The parent of thisNode
. If thisNode
has not been added to a scene graph, then parent will be null.- Default value:
- null
- See Also:
-
scene
TheScene
that thisNode
is part of. If the Node is not part of a scene, then this variable will be null.- Default value:
- null
- See Also:
-
id
The id of thisNode
. This simple string identifier is useful for finding a specific Node within the scene graph. While the id of a Node should be unique within the scene graph, this uniqueness is not enforced. This is analogous to the "id" attribute on an HTML element (CSS ID Specification).For example, if a Node is given the id of "myId", then the lookup method can be used to find this node as follows:
scene.lookup("#myId");
.- Default value:
- null
- See Also:
-
style
A string representation of the CSS style associated with this specificNode
. This is analogous to the "style" attribute of an HTML element. Note that, like the HTML style attribute, this variable contains style properties and values and not the selector portion of a style rule.- Default value:
- empty string
- See Also:
-
visible
Specifies whether thisNode
and any subnodes should be rendered as part of the scene graph. A node may be visible and yet not be shown in the rendered scene if, for instance, it is off the screen or obscured by another Node. Invisible nodes never receive mouse events or keyboard focus and never maintain keyboard focus when they become invisible.- Default value:
- true
- See Also:
-
cursor
Defines the mouse cursor for thisNode
and subnodes. If null, then the cursor of the first parent node with a non-null cursor will be used. If no Node in the scene graph defines a cursor, then the cursor of theScene
will be used.- Default value:
- null
- See Also:
-
opacity
Specifies how opaque (that is, solid) theNode
appears. A Node with 0% opacity is fully translucent. That is, while it is stillvisible
and rendered, you generally won't be able to see it. The exception to this rule is when theNode
is combined with a blending mode and blend effect in which case a translucent Node may still have an impact in rendering. An opacity of 50% will render the node as being 50% transparent.A
visible
node with any opacity setting still receives mouse events and can receive keyboard focus. For example, if you want to have a large invisible rectangle overlay allNode
s in the scene graph in order to intercept mouse events but not be visible to the user, you could create a largeRectangle
that had an opacity of 0%.Opacity is specified as a value between 0 and 1. Values less than 0 are treated as 0, values greater than 1 are treated as 1.
On some platforms ImageView might not support opacity variable.
There is a known limitation of mixing opacity < 1.0 with a 3D Transform. Opacity/Blending is essentially a 2D image operation. The result of an opacity < 1.0 set on a
Group
node with 3D transformed children will cause its children to be rendered in order without Z-buffering applied between those children.- Default value:
- 1.0
- See Also:
-
blendMode
TheBlendMode
used to blend this individual node into the scene behind it. If this node is aGroup
, then all of the children will be composited individually into a temporary buffer using their own blend modes and then that temporary buffer will be composited into the scene using the specified blend mode. A value ofnull
is treated as pass-through. This means no effect on a parent (such as aGroup
), and the equivalent ofSRC_OVER
for a singleNode
.- Default value:
null
- See Also:
-
clip
Specifies aNode
to use to define the clipping shape for this Node. This clipping Node is not a child of thisNode
in the scene graph sense. Rather, it is used to define the clip for thisNode
.For example, you can use an
ImageView
Node as a mask to represent the Clip. Or you could use one of the geometric shape Nodes such asRectangle
orCircle
. Or you could use aText
node to represent the Clip.See the class documentation for
Node
for scene graph structure restrictions on setting the clip. If these restrictions are violated by a change to the clip variable, the change is ignored and the previous value of the clip variable is restored.Note that this is a conditional feature. See
ConditionalFeature.SHAPE_CLIP
for more information.There is a known limitation of mixing Clip with a 3D Transform. Clipping is essentially a 2D image operation. The result of a Clip set on a
Group
node with 3D transformed children will cause its children to be rendered in order without Z-buffering applied between those children.- Default value:
- null
- See Also:
-
cache
A performance hint to the system to indicate that thisNode
should be cached as a bitmap. Rendering a bitmap representation of a node will be faster than rendering primitives in many cases, especially in the case of primitives with effects applied (such as a blur). However, it also increases memory usage. This hint indicates whether that trade-off (increased memory usage for increased performance) is worthwhile. Also note that on some platforms such as GPU accelerated platforms there is little benefit to caching Nodes as bitmaps when blurs and other effects are used since they are very fast to render on the GPU. ThecacheHintProperty()
variable provides additional options for enabling more aggressive bitmap caching.Caching may be disabled for any node that has a 3D transform on itself, any of its ancestors, or any of its descendants.
- Default value:
- false
- See Also:
-
cacheHint
Additional hint for controlling bitmap caching.Under certain circumstances, such as animating nodes that are very expensive to render, it is desirable to be able to perform transformations on the node without having to regenerate the cached bitmap. An option in such cases is to perform the transforms on the cached bitmap itself.
This technique can provide a dramatic improvement to animation performance, though may also result in a reduction in visual quality. The
cacheHint
variable provides a hint to the system about how and when that trade-off (visual quality for animation performance) is acceptable.It is possible to enable the cacheHint only at times when your node is animating. In this way, expensive nodes can appear on screen with full visual quality, yet still animate smoothly.
Example:
Note thatexpensiveNode.setCache(true); expensiveNode.setCacheHint(CacheHint.QUALITY); ... // Do an animation expensiveNode.setCacheHint(CacheHint.SPEED); new Timeline( new KeyFrame(Duration.seconds(2), new KeyValue(expensiveNode.scaleXProperty(), 2.0), new KeyValue(expensiveNode.scaleYProperty(), 2.0), new KeyValue(expensiveNode.rotateProperty(), 360), new KeyValue(expensiveNode.cacheHintProperty(), CacheHint.QUALITY) ) ).play();
cacheHint
is only a hint to the system. Depending on the details of the node or the transform, this hint may be ignored.If
Node.cache
is false, cacheHint is ignored. Caching may be disabled for any node that has a 3D transform on itself, any of its ancestors, or any of its descendants.- Default value:
- CacheHint.DEFAULT
- See Also:
-
effect
Specifies an effect to apply to thisNode
.Note that this is a conditional feature. See
ConditionalFeature.EFFECT
for more information.There is a known limitation of mixing Effect with a 3D Transform. Effect is essentially a 2D image operation. The result of an Effect set on a
Group
node with 3D transformed children will cause its children to be rendered in order without Z-buffering applied between those children.- Default value:
- null
- See Also:
-
depthTest
Indicates whether depth testing is used when rendering this node. If the depthTest flag isDepthTest.DISABLE
, then depth testing is disabled for this node. If the depthTest flag isDepthTest.ENABLE
, then depth testing is enabled for this node. If the depthTest flag isDepthTest.INHERIT
, then depth testing is enabled for this node if it is enabled for the parent node or the parent node is null.The depthTest flag is only used when the depthBuffer flag for the
Scene
is true (meaning that theScene
has an associated depth buffer)Depth test comparison is only done among nodes with depthTest enabled. A node with depthTest disabled does not read, test, or write the depth buffer, that is to say its Z value will not be considered for depth testing with other nodes.
Note that this is a conditional feature. See
ConditionalFeature.SCENE3D
for more information.See the constructor in Scene with depthBuffer as one of its input arguments.
- Default value:
- INHERIT
- See Also:
-
disable
Defines the individual disabled state of thisNode
. Settingdisable
to true will cause thisNode
and any subnodes to become disabled. This property should be used only to set the disabled state of aNode
. For querying the disabled state of aNode
, thedisabled
property should instead be used, since it is possible that aNode
was disabled as a result of an ancestor being disabled even if the individualdisable
state on thisNode
isfalse
.- Default value:
- false
- See Also:
-
pickOnBounds
Defines how the picking computation is done for this node when triggered by aMouseEvent
or acontains
function call. IfpickOnBounds
istrue
, then picking is computed by intersecting with the bounds of this node, else picking is computed by intersecting with the geometric shape of this node. The default value of this property isfalse
unless overridden by a subclass. The default value istrue
forRegion
.- Default value:
- false; true for
Region
- See Also:
-
disabled
Indicates whether or not thisNode
is disabled. ANode
will become disabled ifdisable
is set totrue
on either itself or one of its ancestors in the scene graph.A disabled
Node
should render itself differently to indicate its disabled state to the user. Such disabled rendering is dependent on the implementation of theNode
. The shape classes contained injavafx.scene.shape
do not implement such rendering by default, therefore applications using shapes for handling input must implement appropriate disabled rendering themselves. The user-interface controls defined injavafx.scene.control
will implement disabled-sensitive rendering, however.A disabled
Node
does not receive mouse or key events.- Default value:
- false
- See Also:
-
onDragEntered
Defines a function to be called when drag gesture enters thisNode
. -
onDragExited
Defines a function to be called when drag gesture exits thisNode
. -
onDragOver
Defines a function to be called when drag gesture progresses within thisNode
. -
onDragDropped
-
onDragDone
Defines a function to be called when thisNode
is a drag and drop gesture source after its data has been dropped on a drop target. ThetransferMode
of the event shows what just happened at the drop target. IftransferMode
has the valueMOVE
, then the source can clear out its data. Clearing the source's data gives the appropriate appearance to a user that the data has been moved by the drag and drop gesture. AtransferMode
that has the valueNONE
indicates that no data was transferred during the drag and drop gesture. -
managed
Defines whether or not this node's layout will be managed by it's parent. If the node is managed, it's parent will factor the node's geometry into its own preferred size andlayoutBounds
calculations and will lay it out during the scene's layout pass. If a managed node's layoutBounds changes, it will automatically trigger relayout up the scene-graph to the nearest layout root (which is typically the scene's root node).If the node is unmanaged, its parent will ignore the child in both preferred size computations and layout. Changes in layoutBounds will not trigger relayout above it. If an unmanaged node is of type
Parent
, it will act as a "layout root", meaning that calls toParent.requestLayout()
beneath it will cause only the branch rooted by the node to be relayed out, thereby isolating layout changes to that root and below. It's the application's responsibility to set the size and position of an unmanaged node.By default all nodes are managed.
- See Also:
-
layoutX
Defines the x coordinate of the translation that is added to thisNode
's transform for the purpose of layout. The value should be computed as the offset required to adjust the position of the node from its currentlayoutBounds minX
position (which might not be 0) to the desired location.For example, if
textnode
should be positioned atfinalX
textnode.setLayoutX(finalX - textnode.getLayoutBounds().getMinX());
Failure to subtract
layoutBounds minX
may result in misplacement of the node. Therelocate(x, y)
method will automatically do the correct computation and should generally be used over setting layoutX directly.The node's final translation will be computed as
layoutX
+translateX
, wherelayoutX
establishes the node's stable position andtranslateX
optionally makes dynamic adjustments to that position.If the node is managed and has a
Region
as its parent, then the layout region will setlayoutX
according to its own layout policy. If the node is unmanaged or parented by aGroup
, then the application may setlayoutX
directly to position it.- See Also:
-
layoutY
Defines the y coordinate of the translation that is added to thisNode
's transform for the purpose of layout. The value should be computed as the offset required to adjust the position of the node from its currentlayoutBounds minY
position (which might not be 0) to the desired location.For example, if
textnode
should be positioned atfinalY
textnode.setLayoutY(finalY - textnode.getLayoutBounds().getMinY());
Failure to subtract
layoutBounds minY
may result in misplacement of the node. Therelocate(x, y)
method will automatically do the correct computation and should generally be used over setting layoutY directly.The node's final translation will be computed as
layoutY
+translateY
, wherelayoutY
establishes the node's stable position andtranslateY
optionally makes dynamic adjustments to that position.If the node is managed and has a
Region
as its parent, then the region will setlayoutY
according to its own layout policy. If the node is unmanaged or parented by aGroup
, then the application may setlayoutY
directly to position it.- See Also:
-
boundsInParent
The rectangular bounds of thisNode
in the parent coordinate system.boundsInParent
is calculated by taking the local bounds and applying the node transforms as specified in the Transformations section of the class doc.The resulting bounds will be conceptually in the coordinate space of the
Node
's parent, however, the node need not have a parent to calculate these bounds.Note that this method does not take the node's visibility into account; the computation is based on the geometry of this
Node
only.This property will always have a non-null value.
Note that
boundsInParent
is automatically recomputed whenever the geometry of a node changes, or when any of the following the change: transformsObservableList
, any of the translate, layout or scale variables, or the rotate variable. For this reason, it is an error to bind any of these values in a node to an expression that depends upon this variable. For example, the x or y variables of a shape, ortranslateX
,translateY
should never be bound toboundsInParent
for the purpose of positioning the node.See also the Bounding Rectangles section.
- See Also:
-
boundsInLocal
The rectangular bounds of thisNode
in the node's untransformed local coordinate space. For nodes that extendShape
, the local bounds will also include space required for a non-zero stroke that may fall outside the shape's geometry that is defined by position and size attributes. The local bounds will also include any clipping set withclip
as well as effects set witheffect
.Note that this method does not take the node's visibility into account; the computation is based on the geometry of this
Node
only.This property will always have a non-null value.
Note that boundsInLocal is automatically recomputed whenever the geometry of a node changes. For this reason, it is an error to bind any of these values in a node to an expression that depends upon this variable. For example, the x or y variables of a shape should never be bound to boundsInLocal for the purpose of positioning the node.
- See Also:
-
layoutBounds
The rectangular bounds that should be used for layout calculations for this node.layoutBounds
may differ from the visual bounds of the node and is computed differently depending on the node type.If the node type is resizable (
Region
,Control
, orWebView
) then the layoutBounds will always be0,0 width x height
. If the node type is not resizable (Shape
,Text
, orGroup
), then thelayoutBounds
are computed based on the node's geometric properties and does not include the node's clip, effect, or transforms. See individual class documentation for details.Note that the
layoutX
,layoutY
,translateX
, andtranslateY
variables are not included in the layoutBounds. This is important because layout code must first determine the current size and location of the node (usinglayoutBounds
) and then setlayoutX
andlayoutY
to adjust the translation of the node so that it will have the desired layout position.Because the computation of layoutBounds is often tied to a node's geometric variables, it is an error to bind any such variables to an expression that depends upon
layoutBounds
. For example, the x or y variables of a shape should never be bound tolayoutBounds
for the purpose of positioning the node.Note that for 3D shapes, the layout bounds is actually a rectangular box with X, Y, and Z values, although only X and Y are used in layout calculations.
The
layoutBounds
will never be null.- See Also:
-
viewOrder
Defines the rendering and picking order of thisNode
within its parent.This property is used to alter the rendering and picking order of a node within its parent without reordering the parent's
children
list. For example, this can be used as a more efficient way to implement transparency sorting. To do this, an application can assign the viewOrder value of each node to the computed distance between that node and the viewer.The parent will traverse its
children
in decreasingviewOrder
order. This means that a child with a lowerviewOrder
will be in front of a child with a higherviewOrder
. If two children have the sameviewOrder
, the parent will traverse them in the order they appear in the parent'schildren
list.However,
viewOrder
does not alter the layout and focus traversal order of this Node within its parent. A parent always traverses itschildren
list in order when doing layout or focus traversal.- Default value:
- 0.0
- Since:
- 9
- See Also:
-
translateX
Defines the x coordinate of the translation that is added to thisNode
's transform.The node's final translation will be computed as
layoutX
+translateX
, wherelayoutX
establishes the node's stable position andtranslateX
optionally makes dynamic adjustments to that position.This variable can be used to alter the location of a node without disturbing its
layoutBounds
, which makes it useful for animating a node's location.- Default value:
- 0
- See Also:
-
translateY
Defines the y coordinate of the translation that is added to thisNode
's transform.The node's final translation will be computed as
layoutY
+translateY
, wherelayoutY
establishes the node's stable position andtranslateY
optionally makes dynamic adjustments to that position.This variable can be used to alter the location of a node without disturbing its
layoutBounds
, which makes it useful for animating a node's location.- Default value:
- 0
- See Also:
-
translateZ
Defines the Z coordinate of the translation that is added to the transformed coordinates of thisNode
. This value will be added to any translation defined by thetransforms
ObservableList andlayoutZ
.This variable can be used to alter the location of a Node without disturbing its layout bounds, which makes it useful for animating a node's location.
Note that this is a conditional feature. See
ConditionalFeature.SCENE3D
for more information.- Default value:
- 0
- See Also:
-
scaleX
Defines the factor by which coordinates are scaled about the center of the object along the X axis of thisNode
. This is used to stretch or shrink the node either manually or by using an animation.This scale factor is not included in
layoutBounds
by default, which makes it ideal for scaling the entire node after all effects and transforms have been taken into account.The pivot point about which the scale occurs is the center of the untransformed
layoutBounds
.- Default value:
- 1.0
- See Also:
-
scaleY
Defines the factor by which coordinates are scaled about the center of the object along the Y axis of thisNode
. This is used to stretch or shrink the node either manually or by using an animation.This scale factor is not included in
layoutBounds
by default, which makes it ideal for scaling the entire node after all effects and transforms have been taken into account.The pivot point about which the scale occurs is the center of the untransformed
layoutBounds
.- Default value:
- 1.0
- See Also:
-
scaleZ
Defines the factor by which coordinates are scaled about the center of the object along the Z axis of thisNode
. This is used to stretch or shrink the node either manually or by using an animation.This scale factor is not included in
layoutBounds
by default, which makes it ideal for scaling the entire node after all effects and transforms have been taken into account.The pivot point about which the scale occurs is the center of the rectangular bounds formed by taking
boundsInLocal
and applying all the transforms in thetransforms
ObservableList.Note that this is a conditional feature. See
ConditionalFeature.SCENE3D
for more information.- Default value:
- 1.0
- See Also:
-
rotate
Defines the angle of rotation about theNode
's center, measured in degrees. This is used to rotate theNode
.This rotation factor is not included in
layoutBounds
by default, which makes it ideal for rotating the entire node after all effects and transforms have been taken into account.The pivot point about which the rotation occurs is the center of the untransformed
layoutBounds
.Note that because the pivot point is computed as the center of this
Node
's layout bounds, any change to the layout bounds will cause the pivot point to change, which can move the object. For a leaf node, any change to the geometry will cause the layout bounds to change. For a group node, any change to any of its children, including a change in a child's geometry, clip, effect, position, orientation, or scale, will cause the group's layout bounds to change. If this movement of the pivot point is not desired, applications should instead use the Node'stransforms
ObservableList, and add aRotate
transform, which has a user-specifiable pivot point.- Default value:
- 0.0
- See Also:
-
rotationAxis
Defines the axis of rotation of thisNode
.Note that this is a conditional feature. See
ConditionalFeature.SCENE3D
for more information.- Default value:
- Rotate.Z_AXIS
- See Also:
-
localToParentTransform
An affine transform that holds the computed local-to-parent transform. This is the concatenation of all transforms in this node, including all of the convenience transforms.- Since:
- JavaFX 2.2
- See Also:
-
localToSceneTransform
An affine transform that holds the computed local-to-scene transform. This is the concatenation of all transforms in this node's parents and in this node, including all of the convenience transforms up to the root. If this node is in aSubScene
, this property represents transforms up to the subscene, not the root scene.Note that when you register a listener or a binding to this property, it needs to listen for invalidation on all its parents to the root node. This means that registering a listener on this property on many nodes may negatively affect performance of transformation changes in their common parents.
- Since:
- JavaFX 2.2
- See Also:
-
nodeOrientation
Property holding NodeOrientation.Node orientation describes the flow of visual data within a node. In the English speaking world, visual data normally flows from left-to-right. In an Arabic or Hebrew world, visual data flows from right-to-left. This is consistent with the reading order of text in both worlds. The default value is left-to-right.
- Since:
- JavaFX 8.0
- See Also:
-
effectiveNodeOrientation
The effective orientation of a node resolves the inheritance of node orientation, returning either left-to-right or right-to-left.- Since:
- JavaFX 8.0
- See Also:
-
mouseTransparent
Iftrue
, this node (together with all its children) is completely transparent to mouse events. When choosing target for mouse event, nodes withmouseTransparent
set totrue
and their subtrees won't be taken into account. -
hover
Whether or not thisNode
is being hovered over. Typically this is due to the mouse being over the node, though it could be due to a pen hovering on a graphics tablet or other form of input.Note that current implementation of hover relies on mouse enter and exit events to determine whether this Node is in the hover state; this means that this feature is currently supported only on systems that have a mouse. Future implementations may provide alternative means of supporting hover.
- Default value:
- false
- See Also:
-
pressed
Whether or not theNode
is pressed. Typically this is true when the primary mouse button is down, though subclasses may define other mouse button state or key state to cause the node to be "pressed".- Default value:
- false
- See Also:
-
onContextMenuRequested
Defines a function to be called when a context menu has been requested on thisNode
.- Since:
- JavaFX 2.1
- See Also:
-
onMouseClicked
Defines a function to be called when a mouse button has been clicked (pressed and released) on thisNode
. -
onMouseDragged
Defines a function to be called when a mouse button is pressed on thisNode
and then dragged. -
onMouseEntered
Defines a function to be called when the mouse enters thisNode
. -
onMouseExited
Defines a function to be called when the mouse exits thisNode
. -
onMouseMoved
Defines a function to be called when mouse cursor moves within thisNode
but no buttons have been pushed. -
onMousePressed
Defines a function to be called when a mouse button has been pressed on thisNode
. -
onMouseReleased
Defines a function to be called when a mouse button has been released on thisNode
. -
onDragDetected
Defines a function to be called when drag gesture has been detected. This is the right place to start drag and drop operation. -
onMouseDragOver
Defines a function to be called when a full press-drag-release gesture progresses within thisNode
.- Since:
- JavaFX 2.1
- See Also:
-
onMouseDragReleased
Defines a function to be called when a full press-drag-release gesture ends (by releasing mouse button) within thisNode
.- Since:
- JavaFX 2.1
- See Also:
-
onMouseDragEntered
Defines a function to be called when a full press-drag-release gesture enters thisNode
.- Since:
- JavaFX 2.1
- See Also:
-
onMouseDragExited
Defines a function to be called when a full press-drag-release gesture leaves thisNode
.- Since:
- JavaFX 2.1
- See Also:
-
onScrollStarted
Defines a function to be called when a scrolling gesture is detected.- Since:
- JavaFX 2.2
- See Also:
-
onScroll
Defines a function to be called when user performs a scrolling action. -
onScrollFinished
Defines a function to be called when a scrolling gesture ends.- Since:
- JavaFX 2.2
- See Also:
-
onRotationStarted
Defines a function to be called when a rotation gesture is detected.- Since:
- JavaFX 2.2
- See Also:
-
onRotate
Defines a function to be called when user performs a rotation action.- Since:
- JavaFX 2.2
- See Also:
-
onRotationFinished
Defines a function to be called when a rotation gesture ends.- Since:
- JavaFX 2.2
- See Also:
-
onZoomStarted
Defines a function to be called when a zooming gesture is detected.- Since:
- JavaFX 2.2
- See Also:
-
onZoom
Defines a function to be called when user performs a zooming action.- Since:
- JavaFX 2.2
- See Also:
-
onZoomFinished
Defines a function to be called when a zooming gesture ends.- Since:
- JavaFX 2.2
- See Also:
-
onSwipeUp
Defines a function to be called when an upward swipe gesture centered over this node happens.- Since:
- JavaFX 2.2
- See Also:
-
onSwipeDown
Defines a function to be called when a downward swipe gesture centered over this node happens.- Since:
- JavaFX 2.2
- See Also:
-
onSwipeLeft
Defines a function to be called when a leftward swipe gesture centered over this node happens.- Since:
- JavaFX 2.2
- See Also:
-
onSwipeRight
Defines a function to be called when an rightward swipe gesture centered over this node happens.- Since:
- JavaFX 2.2
- See Also:
-
onTouchPressed
Defines a function to be called when a new touch point is pressed.- Since:
- JavaFX 2.2
- See Also:
-
onTouchMoved
Defines a function to be called when a touch point is moved.- Since:
- JavaFX 2.2
- See Also:
-
onTouchReleased
Defines a function to be called when a touch point is released.- Since:
- JavaFX 2.2
- See Also:
-
onTouchStationary
Defines a function to be called when a touch point stays pressed and still.- Since:
- JavaFX 2.2
- See Also:
-
onKeyPressed
Defines a function to be called when thisNode
or its childNode
has input focus and a key has been pressed. The function is called only if the event hasn't been already consumed during its capturing or bubbling phase. -
onKeyReleased
Defines a function to be called when thisNode
or its childNode
has input focus and a key has been released. The function is called only if the event hasn't been already consumed during its capturing or bubbling phase. -
onKeyTyped
Defines a function to be called when thisNode
or its childNode
has input focus and a key has been typed. The function is called only if the event hasn't been already consumed during its capturing or bubbling phase. -
onInputMethodTextChanged
public final ObjectProperty<EventHandler<? super InputMethodEvent>> onInputMethodTextChangedPropertyDefines a function to be called when thisNode
has input focus and the input method text has changed. If this function is not defined in thisNode
, then it receives the result string of the input method composition as a series ofonKeyTyped
function calls.When the
Node
loses the input focus, the JavaFX runtime automatically commits the existing composed text if any. -
inputMethodRequests
Property holding InputMethodRequests. -
focused
Indicates whether thisNode
currently has the input focus. To have the input focus, a node must be theScene
's focus owner, and the scene must be in aStage
that is visible and active. SeerequestFocus()
for more information.- Default value:
- false
- See Also:
-
focusVisible
Indicates whether thisNode
should visibly indicate focus. This flag is set when the node acquires input focus via keyboard navigation, and it is cleared when the node loses focus or whenrequestFocus()
is called.- Default value:
- false
- Since:
- 19
- See Also:
-
focusWithin
Indicates whether thisNode
or any of its descendants currently has the input focus.- Default value:
- false
- Since:
- 19
- See Also:
-
focusTraversable
Specifies whether thisNode
should be a part of focus traversal cycle. When this property istrue
focus can be moved to thisNode
and from thisNode
using regular focus traversal keys. On a desktop such keys are usuallyTAB
for moving focus forward andSHIFT+TAB
for moving focus backward. When aScene
is created, the system gives focus to aNode
whosefocusTraversable
variable is true and that is eligible to receive the focus, unless the focus had been set explicitly via a call torequestFocus()
.- Default value:
- false
- See Also:
-
eventDispatcher
Specifies the event dispatcher for this node. The default event dispatcher sends the received events to the registered event handlers and filters. When replacing the value with a newEventDispatcher
, the new dispatcher should forward events to the replaced dispatcher to maintain the node's default event handling behavior. -
accessibleRole
The accessible role for thisNode
.The screen reader uses the role of a node to determine the attributes and actions that are supported.
- Default value:
AccessibleRole.NODE
- Since:
- JavaFX 8u40
- See Also:
-
accessibleRoleDescription
The role description of thisNode
.Normally, when a role is provided for a node, the screen reader speaks the role as well as the contents of the node. When this value is set, it is possible to override the default. This is useful because the set of roles is predefined. For example, it is possible to set the role of a node to be a button, but have the role description be arbitrary text.
- Default value:
- null
- Since:
- JavaFX 8u40
- See Also:
-
accessibleText
The accessible text for thisNode
.This property is used to set the text that the screen reader will speak. If a node normally speaks text, that text is overriden. For example, a button usually speaks using the text in the control but will no longer do this when this value is set.
- Default value:
- null
- Since:
- JavaFX 8u40
- See Also:
-
accessibleHelp
The accessible help text for thisNode
.The help text provides a more detailed description of the accessible text for a node. By default, if the node has a tool tip, this text is used.
- Default value:
- null
- Since:
- JavaFX 8u40
- See Also:
-
-
Field Details
-
BASELINE_OFFSET_SAME_AS_HEIGHT
public static final double BASELINE_OFFSET_SAME_AS_HEIGHTThis is a special value that might be returned bygetBaselineOffset()
. This means that the Parent (layout Pane) of this Node should use the height of this Node as a baseline.- See Also:
-
-
Constructor Details
-
Node
protected Node()Creates a new instance of Node.
-
-
Method Details
-
getProperties
Returns an observable map of properties on this node for use primarily by application developers.- API Note:
- Layout managers use this map as well to specify layout constraints on the node, such as
HBox#setHgrow
, so the developer should be mindful of clearing the map or overriding its values. These entries are not removed automatically if the node is removed from the layout manager, so unused entries can exist throughout the life of the node. - Returns:
- an observable map of properties on this node for use primarily by application developers
-
hasProperties
public boolean hasProperties()Tests if Node has properties.- Returns:
- true if node has properties.
-
setUserData
Convenience method for setting a single Object property that can be retrieved at a later date. This is functionally equivalent to calling the getProperties().put(Object key, Object value) method. This can later be retrieved by callinggetUserData()
.- Parameters:
value
- The value to be stored - this can later be retrieved by callinggetUserData()
.
-
getUserData
Returns a previously set Object property, or null if no such property has been set using thesetUserData(java.lang.Object)
method.- Returns:
- The Object that was previously set, or null if no property has been set or if null was set.
-
getParent
Gets the value of theparent
property.- Property description:
- The parent of this
Node
. If thisNode
has not been added to a scene graph, then parent will be null. - Default value:
- null
- Returns:
- the value of the
parent
property - See Also:
-
parentProperty
The parent of thisNode
. If thisNode
has not been added to a scene graph, then parent will be null.- Default value:
- null
- Returns:
- the
parent
property - See Also:
-
getScene
Gets the value of thescene
property.- Property description:
- The
Scene
that thisNode
is part of. If the Node is not part of a scene, then this variable will be null. - Default value:
- null
- Returns:
- the value of the
scene
property - See Also:
-
sceneProperty
TheScene
that thisNode
is part of. If the Node is not part of a scene, then this variable will be null.- Default value:
- null
- Returns:
- the
scene
property - See Also:
-
setId
Sets the value of theid
property.- Property description:
- The id of this
Node
. This simple string identifier is useful for finding a specific Node within the scene graph. While the id of a Node should be unique within the scene graph, this uniqueness is not enforced. This is analogous to the "id" attribute on an HTML element (CSS ID Specification).For example, if a Node is given the id of "myId", then the lookup method can be used to find this node as follows:
scene.lookup("#myId");
. - Default value:
- null
- Parameters:
value
- the value for theid
property- See Also:
-
getId
The id of thisNode
. This simple string identifier is useful for finding a specific Node within the scene graph. While the id of a Node should be unique within the scene graph, this uniqueness is not enforced. This is analogous to the "id" attribute on an HTML element (CSS ID Specification). -
idProperty
The id of thisNode
. This simple string identifier is useful for finding a specific Node within the scene graph. While the id of a Node should be unique within the scene graph, this uniqueness is not enforced. This is analogous to the "id" attribute on an HTML element (CSS ID Specification).For example, if a Node is given the id of "myId", then the lookup method can be used to find this node as follows:
scene.lookup("#myId");
.- Default value:
- null
- Returns:
- the
id
property - See Also:
-
getStyleClass
Description copied from interface:Styleable
A list of String identifiers which can be used to logically group Nodes, specifically for an external style engine. This variable is analogous to the "class" attribute on an HTML element and, as such, each element of the list is a style class to which this Node belongs.- Specified by:
getStyleClass
in interfaceStyleable
- Returns:
- a list of String identifiers which can be used to logically group Nodes, specifically for an external style engine
- See Also:
-
setStyle
A string representation of the CSS style associated with this specificNode
. This is analogous to the "style" attribute of an HTML element. Note that, like the HTML style attribute, this variable contains style properties and values and not the selector portion of a style rule.- Default value:
- empty string
- Parameters:
value
- The inline CSS style to use for thisNode
.null
is implicitly converted to an empty String.- See Also:
-
getStyle
A string representation of the CSS style associated with this specificNode
. This is analogous to the "style" attribute of an HTML element. Note that, like the HTML style attribute, this variable contains style properties and values and not the selector portion of a style rule. -
styleProperty
A string representation of the CSS style associated with this specificNode
. This is analogous to the "style" attribute of an HTML element. Note that, like the HTML style attribute, this variable contains style properties and values and not the selector portion of a style rule.- Default value:
- empty string
- Returns:
- the
style
property - See Also:
-
setVisible
public final void setVisible(boolean value) Sets the value of thevisible
property.- Property description:
- Specifies whether this
Node
and any subnodes should be rendered as part of the scene graph. A node may be visible and yet not be shown in the rendered scene if, for instance, it is off the screen or obscured by another Node. Invisible nodes never receive mouse events or keyboard focus and never maintain keyboard focus when they become invisible. - Default value:
- true
- Parameters:
value
- the value for thevisible
property- See Also:
-
isVisible
public final boolean isVisible()Gets the value of thevisible
property.- Property description:
- Specifies whether this
Node
and any subnodes should be rendered as part of the scene graph. A node may be visible and yet not be shown in the rendered scene if, for instance, it is off the screen or obscured by another Node. Invisible nodes never receive mouse events or keyboard focus and never maintain keyboard focus when they become invisible. - Default value:
- true
- Returns:
- the value of the
visible
property - See Also:
-
visibleProperty
Specifies whether thisNode
and any subnodes should be rendered as part of the scene graph. A node may be visible and yet not be shown in the rendered scene if, for instance, it is off the screen or obscured by another Node. Invisible nodes never receive mouse events or keyboard focus and never maintain keyboard focus when they become invisible.- Default value:
- true
- Returns:
- the
visible
property - See Also:
-
setCursor
Sets the value of thecursor
property.- Property description:
- Defines the mouse cursor for this
Node
and subnodes. If null, then the cursor of the first parent node with a non-null cursor will be used. If no Node in the scene graph defines a cursor, then the cursor of theScene
will be used. - Default value:
- null
- Parameters:
value
- the value for thecursor
property- See Also:
-
getCursor
Gets the value of thecursor
property.- Property description:
- Defines the mouse cursor for this
Node
and subnodes. If null, then the cursor of the first parent node with a non-null cursor will be used. If no Node in the scene graph defines a cursor, then the cursor of theScene
will be used. - Default value:
- null
- Returns:
- the value of the
cursor
property - See Also:
-
cursorProperty
Defines the mouse cursor for thisNode
and subnodes. If null, then the cursor of the first parent node with a non-null cursor will be used. If no Node in the scene graph defines a cursor, then the cursor of theScene
will be used.- Default value:
- null
- Returns:
- the mouse cursor for this
Node
and subnodes - See Also:
-
setOpacity
public final void setOpacity(double value) Sets the value of theopacity
property.- Property description:
- Specifies how opaque (that is, solid) the
Node
appears. A Node with 0% opacity is fully translucent. That is, while it is stillvisible
and rendered, you generally won't be able to see it. The exception to this rule is when theNode
is combined with a blending mode and blend effect in which case a translucent Node may still have an impact in rendering. An opacity of 50% will render the node as being 50% transparent.A
visible
node with any opacity setting still receives mouse events and can receive keyboard focus. For example, if you want to have a large invisible rectangle overlay allNode
s in the scene graph in order to intercept mouse events but not be visible to the user, you could create a largeRectangle
that had an opacity of 0%.Opacity is specified as a value between 0 and 1. Values less than 0 are treated as 0, values greater than 1 are treated as 1.
On some platforms ImageView might not support opacity variable.
There is a known limitation of mixing opacity < 1.0 with a 3D Transform. Opacity/Blending is essentially a 2D image operation. The result of an opacity < 1.0 set on a
Group
node with 3D transformed children will cause its children to be rendered in order without Z-buffering applied between those children. - Default value:
- 1.0
- Parameters:
value
- the value for theopacity
property- See Also:
-
getOpacity
public final double getOpacity()Gets the value of theopacity
property.- Property description:
- Specifies how opaque (that is, solid) the
Node
appears. A Node with 0% opacity is fully translucent. That is, while it is stillvisible
and rendered, you generally won't be able to see it. The exception to this rule is when theNode
is combined with a blending mode and blend effect in which case a translucent Node may still have an impact in rendering. An opacity of 50% will render the node as being 50% transparent.A
visible
node with any opacity setting still receives mouse events and can receive keyboard focus. For example, if you want to have a large invisible rectangle overlay allNode
s in the scene graph in order to intercept mouse events but not be visible to the user, you could create a largeRectangle
that had an opacity of 0%.Opacity is specified as a value between 0 and 1. Values less than 0 are treated as 0, values greater than 1 are treated as 1.
On some platforms ImageView might not support opacity variable.
There is a known limitation of mixing opacity < 1.0 with a 3D Transform. Opacity/Blending is essentially a 2D image operation. The result of an opacity < 1.0 set on a
Group
node with 3D transformed children will cause its children to be rendered in order without Z-buffering applied between those children. - Default value:
- 1.0
- Returns:
- the value of the
opacity
property - See Also:
-
opacityProperty
Specifies how opaque (that is, solid) theNode
appears. A Node with 0% opacity is fully translucent. That is, while it is stillvisible
and rendered, you generally won't be able to see it. The exception to this rule is when theNode
is combined with a blending mode and blend effect in which case a translucent Node may still have an impact in rendering. An opacity of 50% will render the node as being 50% transparent.A
visible
node with any opacity setting still receives mouse events and can receive keyboard focus. For example, if you want to have a large invisible rectangle overlay allNode
s in the scene graph in order to intercept mouse events but not be visible to the user, you could create a largeRectangle
that had an opacity of 0%.Opacity is specified as a value between 0 and 1. Values less than 0 are treated as 0, values greater than 1 are treated as 1.
On some platforms ImageView might not support opacity variable.
There is a known limitation of mixing opacity < 1.0 with a 3D Transform. Opacity/Blending is essentially a 2D image operation. The result of an opacity < 1.0 set on a
Group
node with 3D transformed children will cause its children to be rendered in order without Z-buffering applied between those children.- Default value:
- 1.0
- Returns:
- the
opacity
property - See Also:
-
setBlendMode
Sets the value of theblendMode
property.- Property description:
- The
BlendMode
used to blend this individual node into the scene behind it. If this node is aGroup
, then all of the children will be composited individually into a temporary buffer using their own blend modes and then that temporary buffer will be composited into the scene using the specified blend mode. A value ofnull
is treated as pass-through. This means no effect on a parent (such as aGroup
), and the equivalent ofSRC_OVER
for a singleNode
. - Default value:
null
- Parameters:
value
- the value for theblendMode
property- See Also:
-
getBlendMode
Gets the value of theblendMode
property.- Property description:
- The
BlendMode
used to blend this individual node into the scene behind it. If this node is aGroup
, then all of the children will be composited individually into a temporary buffer using their own blend modes and then that temporary buffer will be composited into the scene using the specified blend mode. A value ofnull
is treated as pass-through. This means no effect on a parent (such as aGroup
), and the equivalent ofSRC_OVER
for a singleNode
. - Default value:
null
- Returns:
- the value of the
blendMode
property - See Also:
-
blendModeProperty
TheBlendMode
used to blend this individual node into the scene behind it. If this node is aGroup
, then all of the children will be composited individually into a temporary buffer using their own blend modes and then that temporary buffer will be composited into the scene using the specified blend mode. A value ofnull
is treated as pass-through. This means no effect on a parent (such as aGroup
), and the equivalent ofSRC_OVER
for a singleNode
.- Default value:
null
- Returns:
- the
blendMode
property - See Also:
-
setClip
Sets the value of theclip
property.- Property description:
- Specifies a
Node
to use to define the clipping shape for this Node. This clipping Node is not a child of thisNode
in the scene graph sense. Rather, it is used to define the clip for thisNode
.For example, you can use an
ImageView
Node as a mask to represent the Clip. Or you could use one of the geometric shape Nodes such asRectangle
orCircle
. Or you could use aText
node to represent the Clip.See the class documentation for
Node
for scene graph structure restrictions on setting the clip. If these restrictions are violated by a change to the clip variable, the change is ignored and the previous value of the clip variable is restored.Note that this is a conditional feature. See
ConditionalFeature.SHAPE_CLIP
for more information.There is a known limitation of mixing Clip with a 3D Transform. Clipping is essentially a 2D image operation. The result of a Clip set on a
Group
node with 3D transformed children will cause its children to be rendered in order without Z-buffering applied between those children. - Default value:
- null
- Parameters:
value
- the value for theclip
property- See Also:
-
getClip
Gets the value of theclip
property.- Property description:
- Specifies a
Node
to use to define the clipping shape for this Node. This clipping Node is not a child of thisNode
in the scene graph sense. Rather, it is used to define the clip for thisNode
.For example, you can use an
ImageView
Node as a mask to represent the Clip. Or you could use one of the geometric shape Nodes such asRectangle
orCircle
. Or you could use aText
node to represent the Clip.See the class documentation for
Node
for scene graph structure restrictions on setting the clip. If these restrictions are violated by a change to the clip variable, the change is ignored and the previous value of the clip variable is restored.Note that this is a conditional feature. See
ConditionalFeature.SHAPE_CLIP
for more information.There is a known limitation of mixing Clip with a 3D Transform. Clipping is essentially a 2D image operation. The result of a Clip set on a
Group
node with 3D transformed children will cause its children to be rendered in order without Z-buffering applied between those children. - Default value:
- null
- Returns:
- the value of the
clip
property - See Also:
-
clipProperty
Specifies aNode
to use to define the clipping shape for this Node. This clipping Node is not a child of thisNode
in the scene graph sense. Rather, it is used to define the clip for thisNode
.For example, you can use an
ImageView
Node as a mask to represent the Clip. Or you could use one of the geometric shape Nodes such asRectangle
orCircle
. Or you could use aText
node to represent the Clip.See the class documentation for
Node
for scene graph structure restrictions on setting the clip. If these restrictions are violated by a change to the clip variable, the change is ignored and the previous value of the clip variable is restored.Note that this is a conditional feature. See
ConditionalFeature.SHAPE_CLIP
for more information.There is a known limitation of mixing Clip with a 3D Transform. Clipping is essentially a 2D image operation. The result of a Clip set on a
Group
node with 3D transformed children will cause its children to be rendered in order without Z-buffering applied between those children.- Default value:
- null
- Returns:
- the the clipping shape for this
Node
- See Also:
-
setCache
public final void setCache(boolean value) Sets the value of thecache
property.- Property description:
- A performance hint to the system to indicate that this
Node
should be cached as a bitmap. Rendering a bitmap representation of a node will be faster than rendering primitives in many cases, especially in the case of primitives with effects applied (such as a blur). However, it also increases memory usage. This hint indicates whether that trade-off (increased memory usage for increased performance) is worthwhile. Also note that on some platforms such as GPU accelerated platforms there is little benefit to caching Nodes as bitmaps when blurs and other effects are used since they are very fast to render on the GPU. ThecacheHintProperty()
variable provides additional options for enabling more aggressive bitmap caching.Caching may be disabled for any node that has a 3D transform on itself, any of its ancestors, or any of its descendants.
- Default value:
- false
- Parameters:
value
- the value for thecache
property- See Also:
-
isCache
public final boolean isCache()Gets the value of thecache
property.- Property description:
- A performance hint to the system to indicate that this
Node
should be cached as a bitmap. Rendering a bitmap representation of a node will be faster than rendering primitives in many cases, especially in the case of primitives with effects applied (such as a blur). However, it also increases memory usage. This hint indicates whether that trade-off (increased memory usage for increased performance) is worthwhile. Also note that on some platforms such as GPU accelerated platforms there is little benefit to caching Nodes as bitmaps when blurs and other effects are used since they are very fast to render on the GPU. ThecacheHintProperty()
variable provides additional options for enabling more aggressive bitmap caching.Caching may be disabled for any node that has a 3D transform on itself, any of its ancestors, or any of its descendants.
- Default value:
- false
- Returns:
- the value of the
cache
property - See Also:
-
cacheProperty
A performance hint to the system to indicate that thisNode
should be cached as a bitmap. Rendering a bitmap representation of a node will be faster than rendering primitives in many cases, especially in the case of primitives with effects applied (such as a blur). However, it also increases memory usage. This hint indicates whether that trade-off (increased memory usage for increased performance) is worthwhile. Also note that on some platforms such as GPU accelerated platforms there is little benefit to caching Nodes as bitmaps when blurs and other effects are used since they are very fast to render on the GPU. ThecacheHintProperty()
variable provides additional options for enabling more aggressive bitmap caching.Caching may be disabled for any node that has a 3D transform on itself, any of its ancestors, or any of its descendants.
- Default value:
- false
- Returns:
- the hint to cache for this
Node
- See Also:
-
setCacheHint
Sets the value of thecacheHint
property.- Property description:
- Additional hint for controlling bitmap caching.
Under certain circumstances, such as animating nodes that are very expensive to render, it is desirable to be able to perform transformations on the node without having to regenerate the cached bitmap. An option in such cases is to perform the transforms on the cached bitmap itself.
This technique can provide a dramatic improvement to animation performance, though may also result in a reduction in visual quality. The
cacheHint
variable provides a hint to the system about how and when that trade-off (visual quality for animation performance) is acceptable.It is possible to enable the cacheHint only at times when your node is animating. In this way, expensive nodes can appear on screen with full visual quality, yet still animate smoothly.
Example:
Note thatexpensiveNode.setCache(true); expensiveNode.setCacheHint(CacheHint.QUALITY); ... // Do an animation expensiveNode.setCacheHint(CacheHint.SPEED); new Timeline( new KeyFrame(Duration.seconds(2), new KeyValue(expensiveNode.scaleXProperty(), 2.0), new KeyValue(expensiveNode.scaleYProperty(), 2.0), new KeyValue(expensiveNode.rotateProperty(), 360), new KeyValue(expensiveNode.cacheHintProperty(), CacheHint.QUALITY) ) ).play();
cacheHint
is only a hint to the system. Depending on the details of the node or the transform, this hint may be ignored.If
Node.cache
is false, cacheHint is ignored. Caching may be disabled for any node that has a 3D transform on itself, any of its ancestors, or any of its descendants. - Default value:
- CacheHint.DEFAULT
- Parameters:
value
- the value for thecacheHint
property- See Also:
-
getCacheHint
Gets the value of thecacheHint
property.- Property description:
- Additional hint for controlling bitmap caching.
Under certain circumstances, such as animating nodes that are very expensive to render, it is desirable to be able to perform transformations on the node without having to regenerate the cached bitmap. An option in such cases is to perform the transforms on the cached bitmap itself.
This technique can provide a dramatic improvement to animation performance, though may also result in a reduction in visual quality. The
cacheHint
variable provides a hint to the system about how and when that trade-off (visual quality for animation performance) is acceptable.It is possible to enable the cacheHint only at times when your node is animating. In this way, expensive nodes can appear on screen with full visual quality, yet still animate smoothly.
Example:
Note thatexpensiveNode.setCache(true); expensiveNode.setCacheHint(CacheHint.QUALITY); ... // Do an animation expensiveNode.setCacheHint(CacheHint.SPEED); new Timeline( new KeyFrame(Duration.seconds(2), new KeyValue(expensiveNode.scaleXProperty(), 2.0), new KeyValue(expensiveNode.scaleYProperty(), 2.0), new KeyValue(expensiveNode.rotateProperty(), 360), new KeyValue(expensiveNode.cacheHintProperty(), CacheHint.QUALITY) ) ).play();
cacheHint
is only a hint to the system. Depending on the details of the node or the transform, this hint may be ignored.If
Node.cache
is false, cacheHint is ignored. Caching may be disabled for any node that has a 3D transform on itself, any of its ancestors, or any of its descendants. - Default value:
- CacheHint.DEFAULT
- Returns:
- the value of the
cacheHint
property - See Also:
-
cacheHintProperty
Additional hint for controlling bitmap caching.Under certain circumstances, such as animating nodes that are very expensive to render, it is desirable to be able to perform transformations on the node without having to regenerate the cached bitmap. An option in such cases is to perform the transforms on the cached bitmap itself.
This technique can provide a dramatic improvement to animation performance, though may also result in a reduction in visual quality. The
cacheHint
variable provides a hint to the system about how and when that trade-off (visual quality for animation performance) is acceptable.It is possible to enable the cacheHint only at times when your node is animating. In this way, expensive nodes can appear on screen with full visual quality, yet still animate smoothly.
Example:
Note thatexpensiveNode.setCache(true); expensiveNode.setCacheHint(CacheHint.QUALITY); ... // Do an animation expensiveNode.setCacheHint(CacheHint.SPEED); new Timeline( new KeyFrame(Duration.seconds(2), new KeyValue(expensiveNode.scaleXProperty(), 2.0), new KeyValue(expensiveNode.scaleYProperty(), 2.0), new KeyValue(expensiveNode.rotateProperty(), 360), new KeyValue(expensiveNode.cacheHintProperty(), CacheHint.QUALITY) ) ).play();
cacheHint
is only a hint to the system. Depending on the details of the node or the transform, this hint may be ignored.If
Node.cache
is false, cacheHint is ignored. Caching may be disabled for any node that has a 3D transform on itself, any of its ancestors, or any of its descendants.- Default value:
- CacheHint.DEFAULT
- Returns:
- the
CacheHint
for thisNode
- See Also:
-
setEffect
Sets the value of theeffect
property.- Property description:
- Specifies an effect to apply to this
Node
.Note that this is a conditional feature. See
ConditionalFeature.EFFECT
for more information.There is a known limitation of mixing Effect with a 3D Transform. Effect is essentially a 2D image operation. The result of an Effect set on a
Group
node with 3D transformed children will cause its children to be rendered in order without Z-buffering applied between those children. - Default value:
- null
- Parameters:
value
- the value for theeffect
property- See Also:
-
getEffect
Gets the value of theeffect
property.- Property description:
- Specifies an effect to apply to this
Node
.Note that this is a conditional feature. See
ConditionalFeature.EFFECT
for more information.There is a known limitation of mixing Effect with a 3D Transform. Effect is essentially a 2D image operation. The result of an Effect set on a
Group
node with 3D transformed children will cause its children to be rendered in order without Z-buffering applied between those children. - Default value:
- null
- Returns:
- the value of the
effect
property - See Also:
-
effectProperty
Specifies an effect to apply to thisNode
.Note that this is a conditional feature. See
ConditionalFeature.EFFECT
for more information.There is a known limitation of mixing Effect with a 3D Transform. Effect is essentially a 2D image operation. The result of an Effect set on a
Group
node with 3D transformed children will cause its children to be rendered in order without Z-buffering applied between those children.- Default value:
- null
- Returns:
- the effect for this
Node
- See Also:
-
setDepthTest
Sets the value of thedepthTest
property.- Property description:
- Indicates whether depth testing is used when rendering this node.
If the depthTest flag is
DepthTest.DISABLE
, then depth testing is disabled for this node. If the depthTest flag isDepthTest.ENABLE
, then depth testing is enabled for this node. If the depthTest flag isDepthTest.INHERIT
, then depth testing is enabled for this node if it is enabled for the parent node or the parent node is null.The depthTest flag is only used when the depthBuffer flag for the
Scene
is true (meaning that theScene
has an associated depth buffer)Depth test comparison is only done among nodes with depthTest enabled. A node with depthTest disabled does not read, test, or write the depth buffer, that is to say its Z value will not be considered for depth testing with other nodes.
Note that this is a conditional feature. See
ConditionalFeature.SCENE3D
for more information.See the constructor in Scene with depthBuffer as one of its input arguments.
- Default value:
- INHERIT
- Parameters:
value
- the value for thedepthTest
property- See Also:
-
getDepthTest
Gets the value of thedepthTest
property.- Property description:
- Indicates whether depth testing is used when rendering this node.
If the depthTest flag is
DepthTest.DISABLE
, then depth testing is disabled for this node. If the depthTest flag isDepthTest.ENABLE
, then depth testing is enabled for this node. If the depthTest flag isDepthTest.INHERIT
, then depth testing is enabled for this node if it is enabled for the parent node or the parent node is null.The depthTest flag is only used when the depthBuffer flag for the
Scene
is true (meaning that theScene
has an associated depth buffer)Depth test comparison is only done among nodes with depthTest enabled. A node with depthTest disabled does not read, test, or write the depth buffer, that is to say its Z value will not be considered for depth testing with other nodes.
Note that this is a conditional feature. See
ConditionalFeature.SCENE3D
for more information.See the constructor in Scene with depthBuffer as one of its input arguments.
- Default value:
- INHERIT
- Returns:
- the value of the
depthTest
property - See Also:
-
depthTestProperty
Indicates whether depth testing is used when rendering this node. If the depthTest flag isDepthTest.DISABLE
, then depth testing is disabled for this node. If the depthTest flag isDepthTest.ENABLE
, then depth testing is enabled for this node. If the depthTest flag isDepthTest.INHERIT
, then depth testing is enabled for this node if it is enabled for the parent node or the parent node is null.The depthTest flag is only used when the depthBuffer flag for the
Scene
is true (meaning that theScene
has an associated depth buffer)Depth test comparison is only done among nodes with depthTest enabled. A node with depthTest disabled does not read, test, or write the depth buffer, that is to say its Z value will not be considered for depth testing with other nodes.
Note that this is a conditional feature. See
ConditionalFeature.SCENE3D
for more information.See the constructor in Scene with depthBuffer as one of its input arguments.
- Default value:
- INHERIT
- Returns:
- the depth test setting for this
Node
- See Also:
-
setDisable
public final void setDisable(boolean value) Sets the value of thedisable
property.- Property description:
- Defines the individual disabled state of this
Node
. Settingdisable
to true will cause thisNode
and any subnodes to become disabled. This property should be used only to set the disabled state of aNode
. For querying the disabled state of aNode
, thedisabled
property should instead be used, since it is possible that aNode
was disabled as a result of an ancestor being disabled even if the individualdisable
state on thisNode
isfalse
. - Default value:
- false
- Parameters:
value
- the value for thedisable
property- See Also:
-
isDisable
public final boolean isDisable()Gets the value of thedisable
property.- Property description:
- Defines the individual disabled state of this
Node
. Settingdisable
to true will cause thisNode
and any subnodes to become disabled. This property should be used only to set the disabled state of aNode
. For querying the disabled state of aNode
, thedisabled
property should instead be used, since it is possible that aNode
was disabled as a result of an ancestor being disabled even if the individualdisable
state on thisNode
isfalse
. - Default value:
- false
- Returns:
- the value of the
disable
property - See Also:
-
disableProperty
Defines the individual disabled state of thisNode
. Settingdisable
to true will cause thisNode
and any subnodes to become disabled. This property should be used only to set the disabled state of aNode
. For querying the disabled state of aNode
, thedisabled
property should instead be used, since it is possible that aNode
was disabled as a result of an ancestor being disabled even if the individualdisable
state on thisNode
isfalse
.- Default value:
- false
- Returns:
- the disabled state for this
Node
- See Also:
-
setPickOnBounds
public final void setPickOnBounds(boolean value) Sets the value of thepickOnBounds
property.- Property description:
- Defines how the picking computation is done for this node when
triggered by a
MouseEvent
or acontains
function call. IfpickOnBounds
istrue
, then picking is computed by intersecting with the bounds of this node, else picking is computed by intersecting with the geometric shape of this node. The default value of this property isfalse
unless overridden by a subclass. The default value istrue
forRegion
. - Default value:
- false; true for
Region
- Parameters:
value
- the value for thepickOnBounds
property- See Also:
-
isPickOnBounds
public final boolean isPickOnBounds()Gets the value of thepickOnBounds
property.- Property description:
- Defines how the picking computation is done for this node when
triggered by a
MouseEvent
or acontains
function call. IfpickOnBounds
istrue
, then picking is computed by intersecting with the bounds of this node, else picking is computed by intersecting with the geometric shape of this node. The default value of this property isfalse
unless overridden by a subclass. The default value istrue
forRegion
. - Default value:
- false; true for
Region
- Returns:
- the value of the
pickOnBounds
property - See Also:
-
pickOnBoundsProperty
Defines how the picking computation is done for this node when triggered by aMouseEvent
or acontains
function call. IfpickOnBounds
istrue
, then picking is computed by intersecting with the bounds of this node, else picking is computed by intersecting with the geometric shape of this node. The default value of this property isfalse
unless overridden by a subclass. The default value istrue
forRegion
.- Default value:
- false; true for
Region
- Returns:
- the
pickOnBounds
property - See Also:
-
setDisabled
protected final void setDisabled(boolean value) Sets the value of thedisabled
property.- Property description:
- Indicates whether or not this
Node
is disabled. ANode
will become disabled ifdisable
is set totrue
on either itself or one of its ancestors in the scene graph.A disabled
Node
should render itself differently to indicate its disabled state to the user. Such disabled rendering is dependent on the implementation of theNode
. The shape classes contained injavafx.scene.shape
do not implement such rendering by default, therefore applications using shapes for handling input must implement appropriate disabled rendering themselves. The user-interface controls defined injavafx.scene.control
will implement disabled-sensitive rendering, however.A disabled
Node
does not receive mouse or key events. - Default value:
- false
- Parameters:
value
- the value for thedisabled
property- See Also:
-
isDisabled
public final boolean isDisabled()Gets the value of thedisabled
property.- Property description:
- Indicates whether or not this
Node
is disabled. ANode
will become disabled ifdisable
is set totrue
on either itself or one of its ancestors in the scene graph.A disabled
Node
should render itself differently to indicate its disabled state to the user. Such disabled rendering is dependent on the implementation of theNode
. The shape classes contained injavafx.scene.shape
do not implement such rendering by default, therefore applications using shapes for handling input must implement appropriate disabled rendering themselves. The user-interface controls defined injavafx.scene.control
will implement disabled-sensitive rendering, however.A disabled
Node
does not receive mouse or key events. - Default value:
- false
- Returns:
- the value of the
disabled
property - See Also:
-
disabledProperty
Indicates whether or not thisNode
is disabled. ANode
will become disabled ifdisable
is set totrue
on either itself or one of its ancestors in the scene graph.A disabled
Node
should render itself differently to indicate its disabled state to the user. Such disabled rendering is dependent on the implementation of theNode
. The shape classes contained injavafx.scene.shape
do not implement such rendering by default, therefore applications using shapes for handling input must implement appropriate disabled rendering themselves. The user-interface controls defined injavafx.scene.control
will implement disabled-sensitive rendering, however.A disabled
Node
does not receive mouse or key events.- Default value:
- false
- Returns:
- the
disabled
property - See Also:
-
lookup
Finds thisNode
, or the first sub-node, based on the given CSS selector. If this node is aParent
, then this function will traverse down into the branch until it finds a match. If more than one sub-node matches the specified selector, this function returns the first of them.For example, if a Node is given the id of "myId", then the lookup method can be used to find this node as follows:
scene.lookup("#myId");
.- Parameters:
selector
- The css selector of the node to find- Returns:
- The first node, starting from this
Node
, which matches the CSSselector
, null if none is found.
-
lookupAll
Finds allNode
s, including this one and any children, which match the given CSS selector. If no matches are found, an empty unmodifiable set is returned. The set is explicitly unordered.- Parameters:
selector
- The css selector of the nodes to find- Returns:
- All nodes, starting from and including this
Node
, which match the CSSselector
. The returned set is always unordered and unmodifiable, and never null.
-
toBack
public void toBack()Moves thisNode
to the back of its sibling nodes in terms of z-order. This is accomplished by moving thisNode
to the first position in its parent'scontent
ObservableList. This function has no effect if thisNode
is not part of a group. -
toFront
public void toFront()Moves thisNode
to the front of its sibling nodes in terms of z-order. This is accomplished by moving thisNode
to the last position in its parent'scontent
ObservableList. This function has no effect if thisNode
is not part of a group. -
snapshot
Takes a snapshot of this node and returns the rendered image when it is ready. CSS and layout processing will be done for the node, and any of its children, prior to rendering it. The entire destination image is cleared to the fillPaint
specified by the SnapshotParameters. This node is then rendered to the image. If the viewport specified by the SnapshotParameters is null, the upper-left pixel of theboundsInParent
of this node, after first applying the transform specified by the SnapshotParameters, is mapped to the upper-left pixel (0,0) in the image. If a non-null viewport is specified, the upper-left pixel of the viewport is mapped to upper-left pixel (0,0) in the image. In both cases, this mapping to (0,0) of the image is done with an integer translation. The portion of the node that is outside of the rendered image will be clipped by the image.When taking a snapshot of a scene that is being animated, either explicitly by the application or implicitly (such as chart animation), the snapshot will be rendered based on the state of the scene graph at the moment the snapshot is taken and will not reflect any subsequent animation changes.
NOTE: In order for CSS and layout to function correctly, the node must be part of a Scene (the Scene may be attached to a Stage, but need not be).
- Parameters:
params
- the snapshot parameters containing attributes that will control the rendering. If the SnapshotParameters object is null, then the Scene's attributes will be used if this node is part of a scene, or default attributes will be used if this node is not part of a scene.image
- the writable image that will be used to hold the rendered node. It may be null in which case a new WritableImage will be constructed. The new image is constructed using integer width and height values that are derived either from the transformed bounds of this Node or from the size of the viewport as specified in the SnapShotParameters. These integer values are chosen such that the image will wholly contain the bounds of this Node or the specified viewport. If the image is non-null, the node will be rendered into the existing image. In this case, the width and height of the image determine the area that is rendered instead of the width and height of the bounds or viewport.- Returns:
- the rendered image
- Throws:
IllegalStateException
- if this method is called on a thread other than the JavaFX Application Thread.- Since:
- JavaFX 2.2
-
snapshot
public void snapshot(Callback<SnapshotResult, Void> callback, SnapshotParameters params, WritableImage image) Takes a snapshot of this node at the next frame and calls the specified callback method when the image is ready. CSS and layout processing will be done for the node, and any of its children, prior to rendering it. The entire destination image is cleared to the fillPaint
specified by the SnapshotParameters. This node is then rendered to the image. If the viewport specified by the SnapshotParameters is null, the upper-left pixel of theboundsInParent
of this node, after first applying the transform specified by the SnapshotParameters, is mapped to the upper-left pixel (0,0) in the image. If a non-null viewport is specified, the upper-left pixel of the viewport is mapped to upper-left pixel (0,0) in the image. In both cases, this mapping to (0,0) of the image is done with an integer translation. The portion of the node that is outside of the rendered image will be clipped by the image.This is an asynchronous call, which means that other events or animation might be processed before the node is rendered. If any such events modify the node, or any of its children, that modification will be reflected in the rendered image (just like it will also be reflected in the frame rendered to the Stage, if this node is part of a live scene graph).
When taking a snapshot of a node that is being animated, either explicitly by the application or implicitly (such as chart animation), the snapshot will be rendered based on the state of the scene graph at the moment the snapshot is taken and will not reflect any subsequent animation changes.
NOTE: In order for CSS and layout to function correctly, the node must be part of a Scene (the Scene may be attached to a Stage, but need not be).
- Parameters:
callback
- a class whose call method will be called when the image is ready. The SnapshotResult that is passed into the call method of the callback will contain the rendered image, the source node that was rendered, and a copy of the SnapshotParameters. The callback parameter must not be null.params
- the snapshot parameters containing attributes that will control the rendering. If the SnapshotParameters object is null, then the Scene's attributes will be used if this node is part of a scene, or default attributes will be used if this node is not part of a scene.image
- the writable image that will be used to hold the rendered node. It may be null in which case a new WritableImage will be constructed. The new image is constructed using integer width and height values that are derived either from the transformed bounds of this Node or from the size of the viewport as specified in the SnapShotParameters. These integer values are chosen such that the image will wholly contain the bounds of this Node or the specified viewport. If the image is non-null, the node will be rendered into the existing image. In this case, the width and height of the image determine the area that is rendered instead of the width and height of the bounds or viewport.- Throws:
IllegalStateException
- if this method is called on a thread other than the JavaFX Application Thread.NullPointerException
- if the callback parameter is null.- Since:
- JavaFX 2.2
-
setOnDragEntered
Sets the value of theonDragEntered
property.- Property description:
- Defines a function to be called when drag gesture
enters this
Node
. - Parameters:
value
- the value for theonDragEntered
property- See Also:
-
getOnDragEntered
Gets the value of theonDragEntered
property.- Property description:
- Defines a function to be called when drag gesture
enters this
Node
. - Returns:
- the value of the
onDragEntered
property - See Also:
-
onDragEnteredProperty
Defines a function to be called when drag gesture enters thisNode
.- Returns:
- the event handler that is called when drag gesture enters this
Node
- See Also:
-
setOnDragExited
Sets the value of theonDragExited
property.- Property description:
- Defines a function to be called when drag gesture
exits this
Node
. - Parameters:
value
- the value for theonDragExited
property- See Also:
-
getOnDragExited
Gets the value of theonDragExited
property.- Property description:
- Defines a function to be called when drag gesture
exits this
Node
. - Returns:
- the value of the
onDragExited
property - See Also:
-
onDragExitedProperty
Defines a function to be called when drag gesture exits thisNode
.- Returns:
- the event handler that is called when drag gesture exits this
Node
- See Also:
-
setOnDragOver
Sets the value of theonDragOver
property.- Property description:
- Defines a function to be called when drag gesture progresses within
this
Node
. - Parameters:
value
- the value for theonDragOver
property- See Also:
-
getOnDragOver
Gets the value of theonDragOver
property.- Property description:
- Defines a function to be called when drag gesture progresses within
this
Node
. - Returns:
- the value of the
onDragOver
property - See Also:
-
onDragOverProperty
Defines a function to be called when drag gesture progresses within thisNode
.- Returns:
- the event handler that is called when drag gesture progresses
within this
Node
- See Also:
-
setOnDragDropped
Sets the value of theonDragDropped
property. -
getOnDragDropped
Gets the value of theonDragDropped
property. -
onDragDroppedProperty
Defines a function to be called when the mouse button is released on thisNode
during drag and drop gesture. Transfer of data from theDragEvent
'sdragboard
should happen in this function.- Returns:
- the event handler that is called when the mouse button is
released on this
Node
- See Also:
-
setOnDragDone
Sets the value of theonDragDone
property.- Property description:
- Defines a function to be called when this
Node
is a drag and drop gesture source after its data has been dropped on a drop target. ThetransferMode
of the event shows what just happened at the drop target. IftransferMode
has the valueMOVE
, then the source can clear out its data. Clearing the source's data gives the appropriate appearance to a user that the data has been moved by the drag and drop gesture. AtransferMode
that has the valueNONE
indicates that no data was transferred during the drag and drop gesture. - Parameters:
value
- the value for theonDragDone
property- See Also:
-
getOnDragDone
Gets the value of theonDragDone
property.- Property description:
- Defines a function to be called when this
Node
is a drag and drop gesture source after its data has been dropped on a drop target. ThetransferMode
of the event shows what just happened at the drop target. IftransferMode
has the valueMOVE
, then the source can clear out its data. Clearing the source's data gives the appropriate appearance to a user that the data has been moved by the drag and drop gesture. AtransferMode
that has the valueNONE
indicates that no data was transferred during the drag and drop gesture. - Returns:
- the value of the
onDragDone
property - See Also:
-
onDragDoneProperty
Defines a function to be called when thisNode
is a drag and drop gesture source after its data has been dropped on a drop target. ThetransferMode
of the event shows what just happened at the drop target. IftransferMode
has the valueMOVE
, then the source can clear out its data. Clearing the source's data gives the appropriate appearance to a user that the data has been moved by the drag and drop gesture. AtransferMode
that has the valueNONE
indicates that no data was transferred during the drag and drop gesture.- Returns:
- the event handler that is called when this
Node
is a drag and drop gesture source after its data has been dropped on a drop target - See Also:
-
startDragAndDrop
Confirms a potential drag and drop gesture that is recognized over thisNode
. Can be called only from a DRAG_DETECTED event handler. The returnedDragboard
is used to transfer data during the drag and drop gesture. Placing thisNode
's data on theDragboard
also identifies thisNode
as the source of the drag and drop gesture. More detail about drag and drop gestures is described in the overivew ofDragEvent
.- Parameters:
transferModes
- The supportedTransferMode
(s) of thisNode
- Returns:
- A
Dragboard
to place thisNode
's data on - Throws:
IllegalStateException
- if drag and drop cannot be started at this moment (it's called outside ofDRAG_DETECTED
event handling or this node is not in scene).- See Also:
-
startFullDrag
public void startFullDrag()Starts a full press-drag-release gesture with this node as gesture source. This method can be called only from aDRAG_DETECTED
mouse event handler. More detail about dragging gestures can be found in the overview ofMouseEvent
andMouseDragEvent
.- Throws:
IllegalStateException
- if the full press-drag-release gesture cannot be started at this moment (it's called outside ofDRAG_DETECTED
event handling or this node is not in scene).- Since:
- JavaFX 2.1
- See Also:
-
setManaged
public final void setManaged(boolean value) Sets the value of themanaged
property.- Property description:
- Defines whether or not this node's layout will be managed by it's parent.
If the node is managed, it's parent will factor the node's geometry
into its own preferred size and
layoutBounds
calculations and will lay it out during the scene's layout pass. If a managed node's layoutBounds changes, it will automatically trigger relayout up the scene-graph to the nearest layout root (which is typically the scene's root node).If the node is unmanaged, its parent will ignore the child in both preferred size computations and layout. Changes in layoutBounds will not trigger relayout above it. If an unmanaged node is of type
Parent
, it will act as a "layout root", meaning that calls toParent.requestLayout()
beneath it will cause only the branch rooted by the node to be relayed out, thereby isolating layout changes to that root and below. It's the application's responsibility to set the size and position of an unmanaged node.By default all nodes are managed.
- Parameters:
value
- the value for themanaged
property- See Also:
-
isManaged
public final boolean isManaged()Gets the value of themanaged
property.- Property description:
- Defines whether or not this node's layout will be managed by it's parent.
If the node is managed, it's parent will factor the node's geometry
into its own preferred size and
layoutBounds
calculations and will lay it out during the scene's layout pass. If a managed node's layoutBounds changes, it will automatically trigger relayout up the scene-graph to the nearest layout root (which is typically the scene's root node).If the node is unmanaged, its parent will ignore the child in both preferred size computations and layout. Changes in layoutBounds will not trigger relayout above it. If an unmanaged node is of type
Parent
, it will act as a "layout root", meaning that calls toParent.requestLayout()
beneath it will cause only the branch rooted by the node to be relayed out, thereby isolating layout changes to that root and below. It's the application's responsibility to set the size and position of an unmanaged node.By default all nodes are managed.
- Returns:
- the value of the
managed
property - See Also:
-
managedProperty
Defines whether or not this node's layout will be managed by it's parent. If the node is managed, it's parent will factor the node's geometry into its own preferred size andlayoutBounds
calculations and will lay it out during the scene's layout pass. If a managed node's layoutBounds changes, it will automatically trigger relayout up the scene-graph to the nearest layout root (which is typically the scene's root node).If the node is unmanaged, its parent will ignore the child in both preferred size computations and layout. Changes in layoutBounds will not trigger relayout above it. If an unmanaged node is of type
Parent
, it will act as a "layout root", meaning that calls toParent.requestLayout()
beneath it will cause only the branch rooted by the node to be relayed out, thereby isolating layout changes to that root and below. It's the application's responsibility to set the size and position of an unmanaged node.By default all nodes are managed.
- Returns:
- the
managed
property - See Also:
-
setLayoutX
public final void setLayoutX(double value) Sets the value of thelayoutX
property.- Property description:
- Defines the x coordinate of the translation that is added to this
Node
's transform for the purpose of layout. The value should be computed as the offset required to adjust the position of the node from its currentlayoutBounds minX
position (which might not be 0) to the desired location.For example, if
textnode
should be positioned atfinalX
textnode.setLayoutX(finalX - textnode.getLayoutBounds().getMinX());
Failure to subtract
layoutBounds minX
may result in misplacement of the node. Therelocate(x, y)
method will automatically do the correct computation and should generally be used over setting layoutX directly.The node's final translation will be computed as
layoutX
+translateX
, wherelayoutX
establishes the node's stable position andtranslateX
optionally makes dynamic adjustments to that position.If the node is managed and has a
Region
as its parent, then the layout region will setlayoutX
according to its own layout policy. If the node is unmanaged or parented by aGroup
, then the application may setlayoutX
directly to position it. - Parameters:
value
- the value for thelayoutX
property- See Also:
-
getLayoutX
public final double getLayoutX()Gets the value of thelayoutX
property.- Property description:
- Defines the x coordinate of the translation that is added to this
Node
's transform for the purpose of layout. The value should be computed as the offset required to adjust the position of the node from its currentlayoutBounds minX
position (which might not be 0) to the desired location.For example, if
textnode
should be positioned atfinalX
textnode.setLayoutX(finalX - textnode.getLayoutBounds().getMinX());
Failure to subtract
layoutBounds minX
may result in misplacement of the node. Therelocate(x, y)
method will automatically do the correct computation and should generally be used over setting layoutX directly.The node's final translation will be computed as
layoutX
+translateX
, wherelayoutX
establishes the node's stable position andtranslateX
optionally makes dynamic adjustments to that position.If the node is managed and has a
Region
as its parent, then the layout region will setlayoutX
according to its own layout policy. If the node is unmanaged or parented by aGroup
, then the application may setlayoutX
directly to position it. - Returns:
- the value of the
layoutX
property - See Also:
-
layoutXProperty
Defines the x coordinate of the translation that is added to thisNode
's transform for the purpose of layout. The value should be computed as the offset required to adjust the position of the node from its currentlayoutBounds minX
position (which might not be 0) to the desired location.For example, if
textnode
should be positioned atfinalX
textnode.setLayoutX(finalX - textnode.getLayoutBounds().getMinX());
Failure to subtract
layoutBounds minX
may result in misplacement of the node. Therelocate(x, y)
method will automatically do the correct computation and should generally be used over setting layoutX directly.The node's final translation will be computed as
layoutX
+translateX
, wherelayoutX
establishes the node's stable position andtranslateX
optionally makes dynamic adjustments to that position.If the node is managed and has a
Region
as its parent, then the layout region will setlayoutX
according to its own layout policy. If the node is unmanaged or parented by aGroup
, then the application may setlayoutX
directly to position it.- Returns:
- the
layoutX
property - See Also:
-
setLayoutY
public final void setLayoutY(double value) Sets the value of thelayoutY
property.- Property description:
- Defines the y coordinate of the translation that is added to this
Node
's transform for the purpose of layout. The value should be computed as the offset required to adjust the position of the node from its currentlayoutBounds minY
position (which might not be 0) to the desired location.For example, if
textnode
should be positioned atfinalY
textnode.setLayoutY(finalY - textnode.getLayoutBounds().getMinY());
Failure to subtract
layoutBounds minY
may result in misplacement of the node. Therelocate(x, y)
method will automatically do the correct computation and should generally be used over setting layoutY directly.The node's final translation will be computed as
layoutY
+translateY
, wherelayoutY
establishes the node's stable position andtranslateY
optionally makes dynamic adjustments to that position.If the node is managed and has a
Region
as its parent, then the region will setlayoutY
according to its own layout policy. If the node is unmanaged or parented by aGroup
, then the application may setlayoutY
directly to position it. - Parameters:
value
- the value for thelayoutY
property- See Also:
-
getLayoutY
public final double getLayoutY()Gets the value of thelayoutY
property.- Property description:
- Defines the y coordinate of the translation that is added to this
Node
's transform for the purpose of layout. The value should be computed as the offset required to adjust the position of the node from its currentlayoutBounds minY
position (which might not be 0) to the desired location.For example, if
textnode
should be positioned atfinalY
textnode.setLayoutY(finalY - textnode.getLayoutBounds().getMinY());
Failure to subtract
layoutBounds minY
may result in misplacement of the node. Therelocate(x, y)
method will automatically do the correct computation and should generally be used over setting layoutY directly.The node's final translation will be computed as
layoutY
+translateY
, wherelayoutY
establishes the node's stable position andtranslateY
optionally makes dynamic adjustments to that position.If the node is managed and has a
Region
as its parent, then the region will setlayoutY
according to its own layout policy. If the node is unmanaged or parented by aGroup
, then the application may setlayoutY
directly to position it. - Returns:
- the value of the
layoutY
property - See Also:
-
layoutYProperty
Defines the y coordinate of the translation that is added to thisNode
's transform for the purpose of layout. The value should be computed as the offset required to adjust the position of the node from its currentlayoutBounds minY
position (which might not be 0) to the desired location.For example, if
textnode
should be positioned atfinalY
textnode.setLayoutY(finalY - textnode.getLayoutBounds().getMinY());
Failure to subtract
layoutBounds minY
may result in misplacement of the node. Therelocate(x, y)
method will automatically do the correct computation and should generally be used over setting layoutY directly.The node's final translation will be computed as
layoutY
+translateY
, wherelayoutY
establishes the node's stable position andtranslateY
optionally makes dynamic adjustments to that position.If the node is managed and has a
Region
as its parent, then the region will setlayoutY
according to its own layout policy. If the node is unmanaged or parented by aGroup
, then the application may setlayoutY
directly to position it.- Returns:
- the
layoutY
property - See Also:
-
relocate
public void relocate(double x, double y) Sets the node's layoutX and layoutY translation properties in order to relocate this node to the x,y location in the parent.This method does not alter translateX or translateY, which if also set will be added to layoutX and layoutY, adjusting the final location by corresponding amounts.
- Parameters:
x
- the target x coordinate locationy
- the target y coordinate location
-
isResizable
public boolean isResizable()Indicates whether this node is a type which can be resized by its parent. If this method returns true, then the parent will resize the node (ideally within its size range) by calling node.resize(width,height) during the layout pass. All Regions, Controls, and WebView are resizable classes which depend on their parents resizing them during layout once all sizing and CSS styling information has been applied.If this method returns false, then the parent cannot resize it during layout (resize() is a no-op) and it should return its layoutBounds for minimum, preferred, and maximum sizes. Group, Text, and all Shapes are not resizable and hence depend on the application to establish their sizing by setting appropriate properties (e.g. width/height for Rectangle, text on Text, and so on). Non-resizable nodes may still be relocated during layout.
- Returns:
- whether or not this node type can be resized by its parent during layout
- See Also:
-
getContentBias
Returns the orientation of a node's resizing bias for layout purposes. If the node type has no bias, returns null. If the node is resizable and it's height depends on its width, returns HORIZONTAL, else if its width depends on its height, returns VERTICAL.Resizable subclasses should override this method to return an appropriate value.
- Returns:
- orientation of width/height dependency or null if there is none
- See Also:
-
minWidth
public double minWidth(double height) Returns the node's minimum width for use in layout calculations. If the node is resizable, its parent should not resize its width any smaller than this value. If the node is not resizable, returns its layoutBounds width.Layout code which calls this method should first check the content-bias of the node. If the node has a vertical content-bias, then callers should pass in a height value that the minimum width should be based on. If the node has either a horizontal or null content-bias, then the caller should pass in -1.
Node subclasses with a vertical content-bias should honor the height parameter whether -1 or a positive value. All other subclasses may ignore the height parameter (which will likely be -1).
If Node's
maxWidth(double)
is lower than this number,minWidth
takes precedence. This means the Node should never be resized belowminWidth
.- Parameters:
height
- the height that should be used if minimum width depends on it- Returns:
- the minimum width that the node should be resized to during layout. The result will never be NaN, nor will it ever be negative.
- See Also:
-
minHeight
public double minHeight(double width) Returns the node's minimum height for use in layout calculations. If the node is resizable, its parent should not resize its height any smaller than this value. If the node is not resizable, returns its layoutBounds height.Layout code which calls this method should first check the content-bias of the node. If the node has a horizontal content-bias, then callers should pass in a width value that the minimum height should be based on. If the node has either a vertical or null content-bias, then the caller should pass in -1.
Node subclasses with a horizontal content-bias should honor the width parameter whether -1 or a positive value. All other subclasses may ignore the width parameter (which will likely be -1).
If Node's
maxHeight(double)
is lower than this number,minHeight
takes precedence. This means the Node should never be resized belowminHeight
.- Parameters:
width
- the width that should be used if minimum height depends on it- Returns:
- the minimum height that the node should be resized to during layout The result will never be NaN, nor will it ever be negative.
- See Also:
-
prefWidth
public double prefWidth(double height) Returns the node's preferred width for use in layout calculations. If the node is resizable, its parent should treat this value as the node's ideal width within its range. If the node is not resizable, just returns its layoutBounds width, which should be treated as the rigid width of the node.Layout code which calls this method should first check the content-bias of the node. If the node has a vertical content-bias, then callers should pass in a height value that the preferred width should be based on. If the node has either a horizontal or null content-bias, then the caller should pass in -1.
Node subclasses with a vertical content-bias should honor the height parameter whether -1 or a positive value. All other subclasses may ignore the height parameter (which will likely be -1).
- Parameters:
height
- the height that should be used if preferred width depends on it- Returns:
- the preferred width that the node should be resized to during layout The result will never be NaN, nor will it ever be negative.
- See Also:
-
prefHeight
public double prefHeight(double width) Returns the node's preferred height for use in layout calculations. If the node is resizable, its parent should treat this value as the node's ideal height within its range. If the node is not resizable, just returns its layoutBounds height, which should be treated as the rigid height of the node.Layout code which calls this method should first check the content-bias of the node. If the node has a horizontal content-bias, then callers should pass in a width value that the preferred height should be based on. If the node has either a vertical or null content-bias, then the caller should pass in -1.
Node subclasses with a horizontal content-bias should honor the height parameter whether -1 or a positive value. All other subclasses may ignore the height parameter (which will likely be -1).
- Parameters:
width
- the width that should be used if preferred height depends on it- Returns:
- the preferred height that the node should be resized to during layout The result will never be NaN, nor will it ever be negative.
- See Also:
-
maxWidth
public double maxWidth(double height) Returns the node's maximum width for use in layout calculations. If the node is resizable, its parent should not resize its width any larger than this value. A value of Double.MAX_VALUE indicates the parent may expand the node's width beyond its preferred without limits.If the node is not resizable, returns its layoutBounds width.
Layout code which calls this method should first check the content-bias of the node. If the node has a vertical content-bias, then callers should pass in a height value that the maximum width should be based on. If the node has either a horizontal or null content-bias, then the caller should pass in -1.
Node subclasses with a vertical content-bias should honor the height parameter whether -1 or a positive value. All other subclasses may ignore the height parameter (which will likely be -1).
If Node's
minWidth(double)
is greater, it should take precedence over themaxWidth
. This means the Node should never be resized belowminWidth
.- Parameters:
height
- the height that should be used if maximum width depends on it- Returns:
- the maximum width that the node should be resized to during layout The result will never be NaN, nor will it ever be negative.
- See Also:
-
maxHeight
public double maxHeight(double width) Returns the node's maximum height for use in layout calculations. If the node is resizable, its parent should not resize its height any larger than this value. A value of Double.MAX_VALUE indicates the parent may expand the node's height beyond its preferred without limits.If the node is not resizable, returns its layoutBounds height.
Layout code which calls this method should first check the content-bias of the node. If the node has a horizontal content-bias, then callers should pass in a width value that the maximum height should be based on. If the node has either a vertical or null content-bias, then the caller should pass in -1.
Node subclasses with a horizontal content-bias should honor the width parameter whether -1 or a positive value. All other subclasses may ignore the width parameter (which will likely be -1).
If Node's
minHeight(double)
is greater, it should take precedence over themaxHeight
. This means the Node should never be resized belowminHeight
.- Parameters:
width
- the width that should be used if maximum height depends on it- Returns:
- the maximum height that the node should be resized to during layout The result will never be NaN, nor will it ever be negative.
- See Also:
-
resize
public void resize(double width, double height) If the node is resizable, will set its layout bounds to the specified width and height. If the node is not resizable, this method is a no-op.This method should generally only be called by parent nodes from their layoutChildren() methods. All Parent classes will automatically resize resizable children, so resizing done directly by the application will be overridden by the node's parent, unless the child is unmanaged.
Parents are responsible for ensuring the width and height values fall within the resizable node's preferred range. The autosize() method may be used if the parent just needs to resize the node to its preferred size.
- Parameters:
width
- the target layout bounds widthheight
- the target layout bounds height- See Also:
-
autosize
public final void autosize()If the node is resizable, will set its layout bounds to its current preferred width and height. If the node is not resizable, this method is a no-op.This method automatically queries the node's content-bias and if it's horizontal, will pass in the node's preferred width to get the preferred height; if vertical, will pass in the node's preferred height to get the width, and if null, will compute the preferred width/height independently.
- See Also:
-
resizeRelocate
public void resizeRelocate(double x, double y, double width, double height) If the node is resizable, will set its layout bounds to the specified width and height. If the node is not resizable, the resize step is skipped.Once the node has been resized (if resizable) then sets the node's layoutX and layoutY translation properties in order to relocate it to x,y in the parent's coordinate space.
This method should generally only be called by parent nodes from their layoutChildren() methods. All Parent classes will automatically resize resizable children, so resizing done directly by the application will be overridden by the node's parent, unless the child is unmanaged.
Parents are responsible for ensuring the width and height values fall within the resizable node's preferred range. The autosize() and relocate() methods may be used if the parent just needs to resize the node to its preferred size and reposition it.
- Parameters:
x
- the target x coordinate locationy
- the target y coordinate locationwidth
- the target layout bounds widthheight
- the target layout bounds height- See Also:
-
getBaselineOffset
public double getBaselineOffset()The 'alphabetic' (or 'roman') baseline offset from the node's layoutBounds.minY location that should be used when this node is being vertically aligned by baseline with other nodes. By default this returnsBASELINE_OFFSET_SAME_AS_HEIGHT
for resizable Nodes and layoutBounds height for non-resizable. Subclasses which contain text should override this method to return their actual text baseline offset.- Returns:
- offset of text baseline from layoutBounds.minY for non-resizable Nodes or
BASELINE_OFFSET_SAME_AS_HEIGHT
otherwise
-
computeAreaInScreen
public double computeAreaInScreen()Returns the area of thisNode
projected onto the physical screen in pixel units.- Returns:
- the area of this
Node
projected onto the physical screen - Since:
- JavaFX 8.0
-
getBoundsInParent
Gets the value of theboundsInParent
property.- Property description:
- The rectangular bounds of this
Node
in the parent coordinate system.boundsInParent
is calculated by taking the local bounds and applying the node transforms as specified in the Transformations section of the class doc.The resulting bounds will be conceptually in the coordinate space of the
Node
's parent, however, the node need not have a parent to calculate these bounds.Note that this method does not take the node's visibility into account; the computation is based on the geometry of this
Node
only.This property will always have a non-null value.
Note that
boundsInParent
is automatically recomputed whenever the geometry of a node changes, or when any of the following the change: transformsObservableList
, any of the translate, layout or scale variables, or the rotate variable. For this reason, it is an error to bind any of these values in a node to an expression that depends upon this variable. For example, the x or y variables of a shape, ortranslateX
,translateY
should never be bound toboundsInParent
for the purpose of positioning the node.See also the Bounding Rectangles section.
- Returns:
- the value of the
boundsInParent
property - See Also:
-
boundsInParentProperty
The rectangular bounds of thisNode
in the parent coordinate system.boundsInParent
is calculated by taking the local bounds and applying the node transforms as specified in the Transformations section of the class doc.The resulting bounds will be conceptually in the coordinate space of the
Node
's parent, however, the node need not have a parent to calculate these bounds.Note that this method does not take the node's visibility into account; the computation is based on the geometry of this
Node
only.This property will always have a non-null value.
Note that
boundsInParent
is automatically recomputed whenever the geometry of a node changes, or when any of the following the change: transformsObservableList
, any of the translate, layout or scale variables, or the rotate variable. For this reason, it is an error to bind any of these values in a node to an expression that depends upon this variable. For example, the x or y variables of a shape, ortranslateX
,translateY
should never be bound toboundsInParent
for the purpose of positioning the node.See also the Bounding Rectangles section.
- Returns:
- the
boundsInParent
property for thisNode
- See Also:
-
getBoundsInLocal
Gets the value of theboundsInLocal
property.- Property description:
- The rectangular bounds of this
Node
in the node's untransformed local coordinate space. For nodes that extendShape
, the local bounds will also include space required for a non-zero stroke that may fall outside the shape's geometry that is defined by position and size attributes. The local bounds will also include any clipping set withclip
as well as effects set witheffect
.Note that this method does not take the node's visibility into account; the computation is based on the geometry of this
Node
only.This property will always have a non-null value.
Note that boundsInLocal is automatically recomputed whenever the geometry of a node changes. For this reason, it is an error to bind any of these values in a node to an expression that depends upon this variable. For example, the x or y variables of a shape should never be bound to boundsInLocal for the purpose of positioning the node.
- Returns:
- the value of the
boundsInLocal
property - See Also:
-
boundsInLocalProperty
The rectangular bounds of thisNode
in the node's untransformed local coordinate space. For nodes that extendShape
, the local bounds will also include space required for a non-zero stroke that may fall outside the shape's geometry that is defined by position and size attributes. The local bounds will also include any clipping set withclip
as well as effects set witheffect
.Note that this method does not take the node's visibility into account; the computation is based on the geometry of this
Node
only.This property will always have a non-null value.
Note that boundsInLocal is automatically recomputed whenever the geometry of a node changes. For this reason, it is an error to bind any of these values in a node to an expression that depends upon this variable. For example, the x or y variables of a shape should never be bound to boundsInLocal for the purpose of positioning the node.
- Returns:
- the boundsInLocal for this
Node
- See Also:
-
getLayoutBounds
Gets the value of thelayoutBounds
property.- Property description:
- The rectangular bounds that should be used for layout calculations for
this node.
layoutBounds
may differ from the visual bounds of the node and is computed differently depending on the node type.If the node type is resizable (
Region
,Control
, orWebView
) then the layoutBounds will always be0,0 width x height
. If the node type is not resizable (Shape
,Text
, orGroup
), then thelayoutBounds
are computed based on the node's geometric properties and does not include the node's clip, effect, or transforms. See individual class documentation for details.Note that the
layoutX
,layoutY
,translateX
, andtranslateY
variables are not included in the layoutBounds. This is important because layout code must first determine the current size and location of the node (usinglayoutBounds
) and then setlayoutX
andlayoutY
to adjust the translation of the node so that it will have the desired layout position.Because the computation of layoutBounds is often tied to a node's geometric variables, it is an error to bind any such variables to an expression that depends upon
layoutBounds
. For example, the x or y variables of a shape should never be bound tolayoutBounds
for the purpose of positioning the node.Note that for 3D shapes, the layout bounds is actually a rectangular box with X, Y, and Z values, although only X and Y are used in layout calculations.
The
layoutBounds
will never be null. - Returns:
- the value of the
layoutBounds
property - See Also:
-
layoutBoundsProperty
The rectangular bounds that should be used for layout calculations for this node.layoutBounds
may differ from the visual bounds of the node and is computed differently depending on the node type.If the node type is resizable (
Region
,Control
, orWebView
) then the layoutBounds will always be0,0 width x height
. If the node type is not resizable (Shape
,Text
, orGroup
), then thelayoutBounds
are computed based on the node's geometric properties and does not include the node's clip, effect, or transforms. See individual class documentation for details.Note that the
layoutX
,layoutY
,translateX
, andtranslateY
variables are not included in the layoutBounds. This is important because layout code must first determine the current size and location of the node (usinglayoutBounds
) and then setlayoutX
andlayoutY
to adjust the translation of the node so that it will have the desired layout position.Because the computation of layoutBounds is often tied to a node's geometric variables, it is an error to bind any such variables to an expression that depends upon
layoutBounds
. For example, the x or y variables of a shape should never be bound tolayoutBounds
for the purpose of positioning the node.Note that for 3D shapes, the layout bounds is actually a rectangular box with X, Y, and Z values, although only X and Y are used in layout calculations.
The
layoutBounds
will never be null.- Returns:
- the
layoutBounds
property - See Also:
-
contains
public boolean contains(double localX, double localY) Returnstrue
if the given point (specified in the local coordinate space of thisNode
) is contained within the shape of thisNode
. Note that this method does not take visibility into account; the test is based on the geometry of thisNode
only.- Parameters:
localX
- the x coordinate of the point in Node's spacelocalY
- the y coordinate of the point in Node's space- Returns:
- the result of contains for this
Node
-
contains
Returnstrue
if the given point (specified in the local coordinate space of thisNode
) is contained within the shape of thisNode
. Note that this method does not take visibility into account; the test is based on the geometry of thisNode
only.- Parameters:
localPoint
- the 2D point in Node's space- Returns:
- the result of contains for this
Node
-
intersects
public boolean intersects(double localX, double localY, double localWidth, double localHeight) Returnstrue
if the given rectangle (specified in the local coordinate space of thisNode
) intersects the shape of thisNode
. Note that this method does not take visibility into account; the test is based on the geometry of thisNode
only. The default behavior of this function is simply to check if the given coordinates intersect with the local bounds.- Parameters:
localX
- the x coordinate of a rectangle in Node's spacelocalY
- the y coordinate of a rectangle in Node's spacelocalWidth
- the width of a rectangle in Node's spacelocalHeight
- the height of a rectangle in Node's space- Returns:
- the result of intersects for this
Node
-
intersects
Returnstrue
if the given bounds (specified in the local coordinate space of thisNode
) intersects the shape of thisNode
. Note that this method does not take visibility into account; the test is based on the geometry of thisNode
only. The default behavior of this function is simply to check if the given coordinates intersect with the local bounds.- Parameters:
localBounds
- the bounds- Returns:
- the result of intersects for this
Node
-
screenToLocal
Transforms a point from the coordinate space of theScreen
into the local coordinate space of thisNode
.- Parameters:
screenX
- x coordinate of a point on a ScreenscreenY
- y coordinate of a point on a Screen- Returns:
- local Node's coordinates of the point or null if Node is not in a
Window
. Null is also returned if the transformation from local to Scene is not invertible. - Since:
- JavaFX 8.0
-
screenToLocal
Transforms a point from the coordinate space of theScreen
into the local coordinate space of thisNode
.- Parameters:
screenPoint
- a point on a Screen- Returns:
- local Node's coordinates of the point or null if Node is not in a
Window
. Null is also returned if the transformation from local to Scene is not invertible. - Since:
- JavaFX 8.0
-
screenToLocal
Transforms a rectangle from the coordinate space of theScreen
into the local coordinate space of thisNode
. Returns reasonable result only in 2D space.- Parameters:
screenBounds
- bounds on a Screen- Returns:
- bounds in the local Node'space or null if Node is not in a
Window
. Null is also returned if the transformation from local to Scene is not invertible. - Since:
- JavaFX 8.0
-
sceneToLocal
Transforms a point from the coordinate space of the scene into the local coordinate space of thisNode
. If the Node does not have anySubScene
orrootScene
is set to true, the arguments are inScene
coordinates of the Node returned bygetScene()
. Otherwise, the subscene coordinates are used, which is equivalent to callingsceneToLocal(double, double)
.- Parameters:
x
- the x coordinatey
- the y coordinaterootScene
- whether Scene coordinates should be used even if the Node is in a SubScene- Returns:
- local coordinates of the point
- Since:
- JavaFX 8u40
-
sceneToLocal
Transforms a point from the coordinate space of the scene into the local coordinate space of thisNode
. If the Node does not have anySubScene
orrootScene
is set to true, the arguments are inScene
coordinates of the Node returned bygetScene()
. Otherwise, the subscene coordinates are used, which is equivalent to callingsceneToLocal(javafx.geometry.Point2D)
.- Parameters:
point
- the pointrootScene
- whether Scene coordinates should be used even if the Node is in a SubScene- Returns:
- local coordinates of the point
- Since:
- JavaFX 8u40
-
sceneToLocal
Transforms a bounds from the coordinate space of the scene into the local coordinate space of thisNode
. If the Node does not have anySubScene
orrootScene
is set to true, the arguments are inScene
coordinates of the Node returned bygetScene()
. Otherwise, the subscene coordinates are used, which is equivalent to callingsceneToLocal(javafx.geometry.Bounds)
.Since 3D bounds cannot be converted with
rootScene
set totrue
, trying to convert 3D bounds will yieldnull
.- Parameters:
bounds
- the boundsrootScene
- whether Scene coordinates should be used even if the Node is in a SubScene- Returns:
- local coordinates of the bounds
- Since:
- JavaFX 8u40
-
sceneToLocal
Transforms a point from the coordinate space of the scene into the local coordinate space of thisNode
. Note that if this node is in aSubScene
, the arguments should be in the subscene coordinates, not that ofScene
.- Parameters:
sceneX
- x coordinate of a point on a ScenesceneY
- y coordinate of a point on a Scene- Returns:
- local Node's coordinates of the point or null if Node is not in a
Window
. Null is also returned if the transformation from local to Scene is not invertible.
-
sceneToLocal
Transforms a point from the coordinate space of the scene into the local coordinate space of thisNode
. Note that if this node is in aSubScene
, the arguments should be in the subscene coordinates, not that ofScene
.- Parameters:
scenePoint
- a point on a Scene- Returns:
- local Node's coordinates of the point or null if Node is not in a
Window
. Null is also returned if the transformation from local to Scene is not invertible.
-
sceneToLocal
Transforms a point from the coordinate space of the scene into the local coordinate space of thisNode
. Note that if this node is in aSubScene
, the arguments should be in the subscene coordinates, not that ofScene
.- Parameters:
scenePoint
- a point on a Scene- Returns:
- local Node's coordinates of the point or null if Node is not in a
Window
. Null is also returned if the transformation from local to Scene is not invertible. - Since:
- JavaFX 8.0
-
sceneToLocal
Transforms a point from the coordinate space of the scene into the local coordinate space of thisNode
. Note that if this node is in aSubScene
, the arguments should be in the subscene coordinates, not that ofScene
.- Parameters:
sceneX
- x coordinate of a point on a ScenesceneY
- y coordinate of a point on a ScenesceneZ
- z coordinate of a point on a Scene- Returns:
- local Node's coordinates of the point or null if Node is not in a
Window
. Null is also returned if the transformation from local to Scene is not invertible. - Since:
- JavaFX 8.0
-
sceneToLocal
Transforms a rectangle from the coordinate space of the scene into the local coordinate space of thisNode
. Note that if this node is in aSubScene
, the arguments should be in the subscene coordinates, not that ofScene
.- Parameters:
sceneBounds
- bounds on a Scene- Returns:
- bounds in the local Node'space or null if Node is not in a
Window
. Null is also returned if the transformation from local to Scene is not invertible.
-
localToScreen
Transforms a point from the local coordinate space of thisNode
into the coordinate space of itsScreen
.- Parameters:
localX
- x coordinate of a point in Node's spacelocalY
- y coordinate of a point in Node's space- Returns:
- screen coordinates of the point or null if Node is not in a
Window
- Since:
- JavaFX 8.0
-
localToScreen
Transforms a point from the local coordinate space of thisNode
into the coordinate space of itsScreen
.- Parameters:
localPoint
- a point in Node's space- Returns:
- screen coordinates of the point or null if Node is not in a
Window
- Since:
- JavaFX 8.0
-
localToScreen
Transforms a point from the local coordinate space of thisNode
into the coordinate space of itsScreen
.- Parameters:
localX
- x coordinate of a point in Node's spacelocalY
- y coordinate of a point in Node's spacelocalZ
- z coordinate of a point in Node's space- Returns:
- screen coordinates of the point or null if Node is not in a
Window
- Since:
- JavaFX 8.0
-
localToScreen
Transforms a point from the local coordinate space of thisNode
into the coordinate space of itsScreen
.- Parameters:
localPoint
- a point in Node's space- Returns:
- screen coordinates of the point or null if Node is not in a
Window
- Since:
- JavaFX 8.0
-
localToScreen
Transforms a bounds from the local coordinate space of thisNode
into the coordinate space of itsScreen
.- Parameters:
localBounds
- bounds in Node's space- Returns:
- the bounds in screen coordinates or null if Node is not in a
Window
- Since:
- JavaFX 8.0
-
localToScene
Transforms a point from the local coordinate space of thisNode
into the coordinate space of its scene. Note that if this node is in aSubScene
, the result is in the subscene coordinates, not that ofScene
.- Parameters:
localX
- x coordinate of a point in Node's spacelocalY
- y coordinate of a point in Node's space- Returns:
- scene coordinates of the point or null if Node is not in a
Window
-
localToScene
Transforms a point from the local coordinate space of thisNode
into the coordinate space of its scene. Note that if this node is in aSubScene
, the result is in the subscene coordinates, not that ofScene
.- Parameters:
localPoint
- a point in Node's space- Returns:
- scene coordinates of the point or null if Node is not in a
Window
-
localToScene
Transforms a point from the local coordinate space of thisNode
into the coordinate space of its scene. Note that if this node is in aSubScene
, the result is in the subscene coordinates, not that ofScene
.- Parameters:
localPoint
- a 3D point in Node's space- Returns:
- the transformed 3D point in Scene's space
- Since:
- JavaFX 8.0
- See Also:
-
localToScene
Transforms a point from the local coordinate space of thisNode
into the coordinate space of its scene. Note that if this node is in aSubScene
, the result is in the subscene coordinates, not that ofScene
.- Parameters:
x
- the x coordinate of a point in Node's spacey
- the y coordinate of a point in Node's spacez
- the z coordinate of a point in Node's space- Returns:
- the transformed 3D point in Scene's space
- Since:
- JavaFX 8.0
- See Also:
-
localToScene
Transforms a point from the local coordinate space of thisNode
into the coordinate space of its scene. If the Node does not have anySubScene
orrootScene
is set to true, the result point is inScene
coordinates of the Node returned bygetScene()
. Otherwise, the subscene coordinates are used, which is equivalent to callinglocalToScene(javafx.geometry.Point3D)
.- Parameters:
localPoint
- the point in local coordinatesrootScene
- whether Scene coordinates should be used even if the Node is in a SubScene- Returns:
- transformed point
- Since:
- JavaFX 8u40
- See Also:
-
localToScene
Transforms a point from the local coordinate space of thisNode
into the coordinate space of its scene. If the Node does not have anySubScene
orrootScene
is set to true, the result point is inScene
coordinates of the Node returned bygetScene()
. Otherwise, the subscene coordinates are used, which is equivalent to callinglocalToScene(double, double, double)
.- Parameters:
x
- the x coordinate of the point in local coordinatesy
- the y coordinate of the point in local coordinatesz
- the z coordinate of the point in local coordinatesrootScene
- whether Scene coordinates should be used even if the Node is in a SubScene- Returns:
- transformed point
- Since:
- JavaFX 8u40
- See Also:
-
localToScene
Transforms a point from the local coordinate space of thisNode
into the coordinate space of its scene. If the Node does not have anySubScene
orrootScene
is set to true, the result point is inScene
coordinates of the Node returned bygetScene()
. Otherwise, the subscene coordinates are used, which is equivalent to callinglocalToScene(javafx.geometry.Point2D)
.- Parameters:
localPoint
- the point in local coordinatesrootScene
- whether Scene coordinates should be used even if the Node is in a SubScene- Returns:
- transformed point
- Since:
- JavaFX 8u40
- See Also:
-
localToScene
Transforms a point from the local coordinate space of thisNode
into the coordinate space of its scene. If the Node does not have anySubScene
orrootScene
is set to true, the result point is inScene
coordinates of the Node returned bygetScene()
. Otherwise, the subscene coordinates are used, which is equivalent to callinglocalToScene(double, double)
.- Parameters:
x
- the x coordinate of the point in local coordinatesy
- the y coordinate of the point in local coordinatesrootScene
- whether Scene coordinates should be used even if the Node is in a SubScene- Returns:
- transformed point
- Since:
- JavaFX 8u40
- See Also:
-
localToScene
Transforms a bounds from the local coordinate space of thisNode
into the coordinate space of its scene. If the Node does not have anySubScene
orrootScene
is set to true, the result bounds are inScene
coordinates of the Node returned bygetScene()
. Otherwise, the subscene coordinates are used, which is equivalent to callinglocalToScene(javafx.geometry.Bounds)
.- Parameters:
localBounds
- the bounds in local coordinatesrootScene
- whether Scene coordinates should be used even if the Node is in a SubScene- Returns:
- transformed bounds
- Since:
- JavaFX 8u40
- See Also:
-
localToScene
Transforms a bounds from the local coordinate space of thisNode
into the coordinate space of its scene. Note that if this node is in aSubScene
, the result is in the subscene coordinates, not that ofScene
.- Parameters:
localBounds
- bounds in Node's space- Returns:
- the bounds in the scene coordinates or null if Node is not in a
Window
- See Also:
-
parentToLocal
Transforms a point from the coordinate space of the parent into the local coordinate space of thisNode
.- Parameters:
parentX
- the x coordinate in Parent's spaceparentY
- the y coordinate in Parent's space- Returns:
- the transformed 2D point in Node's space
-
parentToLocal
Transforms a point from the coordinate space of the parent into the local coordinate space of thisNode
.- Parameters:
parentPoint
- the 2D point in Parent's space- Returns:
- the transformed 2D point in Node's space
-
parentToLocal
Transforms a point from the coordinate space of the parent into the local coordinate space of thisNode
.- Parameters:
parentPoint
- parentPoint the 3D point in Parent's space- Returns:
- the transformed 3D point in Node's space
- Since:
- JavaFX 8.0
-
parentToLocal
Transforms a point from the coordinate space of the parent into the local coordinate space of thisNode
.- Parameters:
parentX
- the x coordinate in Parent's spaceparentY
- the y coordinate in Parent's spaceparentZ
- the z coordinate in Parent's space- Returns:
- the transformed 3D point in Node's space
- Since:
- JavaFX 8.0
-
parentToLocal
Transforms a rectangle from the coordinate space of the parent into the local coordinate space of thisNode
.- Parameters:
parentBounds
- the bounds in Parent's space- Returns:
- the transformed bounds in Node's space
-
localToParent
Transforms a point from the local coordinate space of thisNode
into the coordinate space of its parent.- Parameters:
localX
- the x coordinate of the point in Node's spacelocalY
- the y coordinate of the point in Node's space- Returns:
- the transformed 2D point in Parent's space
-
localToParent
Transforms a point from the local coordinate space of thisNode
into the coordinate space of its parent.- Parameters:
localPoint
- the 2D point in Node's space- Returns:
- the transformed 2D point in Parent's space
-
localToParent
Transforms a point from the local coordinate space of thisNode
into the coordinate space of its parent.- Parameters:
localPoint
- the 3D point in Node's space- Returns:
- the transformed 3D point in Parent's space
- Since:
- JavaFX 8.0
-
localToParent
Transforms a point from the local coordinate space of thisNode
into the coordinate space of its parent.- Parameters:
x
- the x coordinate of the point in Node's spacey
- the y coordinate of the point in Node's spacez
- the z coordinate of the point in Node's space- Returns:
- the transformed 3D point in Parent's space
- Since:
- JavaFX 8.0
-
localToParent
Transforms a bounds from the local coordinate space of thisNode
into the coordinate space of its parent.- Parameters:
localBounds
- the bounds in Node's space- Returns:
- the transformed bounds in Parent's space
-
viewOrderProperty
Defines the rendering and picking order of thisNode
within its parent.This property is used to alter the rendering and picking order of a node within its parent without reordering the parent's
children
list. For example, this can be used as a more efficient way to implement transparency sorting. To do this, an application can assign the viewOrder value of each node to the computed distance between that node and the viewer.The parent will traverse its
children
in decreasingviewOrder
order. This means that a child with a lowerviewOrder
will be in front of a child with a higherviewOrder
. If two children have the sameviewOrder
, the parent will traverse them in the order they appear in the parent'schildren
list.However,
viewOrder
does not alter the layout and focus traversal order of this Node within its parent. A parent always traverses itschildren
list in order when doing layout or focus traversal.- Default value:
- 0.0
- Returns:
- the view order for this
Node
- Since:
- 9
- See Also:
-
setViewOrder
public final void setViewOrder(double value) Sets the value of theviewOrder
property.- Property description:
- Defines the rendering and picking order of this
Node
within its parent.This property is used to alter the rendering and picking order of a node within its parent without reordering the parent's
children
list. For example, this can be used as a more efficient way to implement transparency sorting. To do this, an application can assign the viewOrder value of each node to the computed distance between that node and the viewer.The parent will traverse its
children
in decreasingviewOrder
order. This means that a child with a lowerviewOrder
will be in front of a child with a higherviewOrder
. If two children have the sameviewOrder
, the parent will traverse them in the order they appear in the parent'schildren
list.However,
viewOrder
does not alter the layout and focus traversal order of this Node within its parent. A parent always traverses itschildren
list in order when doing layout or focus traversal. - Default value:
- 0.0
- Parameters:
value
- the value for theviewOrder
property- Since:
- 9
- See Also:
-
getViewOrder
public final double getViewOrder()Gets the value of theviewOrder
property.- Property description:
- Defines the rendering and picking order of this
Node
within its parent.This property is used to alter the rendering and picking order of a node within its parent without reordering the parent's
children
list. For example, this can be used as a more efficient way to implement transparency sorting. To do this, an application can assign the viewOrder value of each node to the computed distance between that node and the viewer.The parent will traverse its
children
in decreasingviewOrder
order. This means that a child with a lowerviewOrder
will be in front of a child with a higherviewOrder
. If two children have the sameviewOrder
, the parent will traverse them in the order they appear in the parent'schildren
list.However,
viewOrder
does not alter the layout and focus traversal order of this Node within its parent. A parent always traverses itschildren
list in order when doing layout or focus traversal. - Default value:
- 0.0
- Returns:
- the value of the
viewOrder
property - Since:
- 9
- See Also:
-
getTransforms
TheObservableList
of customTransform
s to be applied to thisNode
. These transforms are applied before the predefined transforms.See also the Transformations section.
- Default value:
- empty
- Returns:
- the transforms for this
Node
-
setTranslateX
public final void setTranslateX(double value) Sets the value of thetranslateX
property.- Property description:
- Defines the x coordinate of the translation that is added to this
Node
's transform.The node's final translation will be computed as
layoutX
+translateX
, wherelayoutX
establishes the node's stable position andtranslateX
optionally makes dynamic adjustments to that position.This variable can be used to alter the location of a node without disturbing its
layoutBounds
, which makes it useful for animating a node's location. - Default value:
- 0
- Parameters:
value
- the value for thetranslateX
property- See Also:
-
getTranslateX
public final double getTranslateX()Gets the value of thetranslateX
property.- Property description:
- Defines the x coordinate of the translation that is added to this
Node
's transform.The node's final translation will be computed as
layoutX
+translateX
, wherelayoutX
establishes the node's stable position andtranslateX
optionally makes dynamic adjustments to that position.This variable can be used to alter the location of a node without disturbing its
layoutBounds
, which makes it useful for animating a node's location. - Default value:
- 0
- Returns:
- the value of the
translateX
property - See Also:
-
translateXProperty
Defines the x coordinate of the translation that is added to thisNode
's transform.The node's final translation will be computed as
layoutX
+translateX
, wherelayoutX
establishes the node's stable position andtranslateX
optionally makes dynamic adjustments to that position.This variable can be used to alter the location of a node without disturbing its
layoutBounds
, which makes it useful for animating a node's location.- Default value:
- 0
- Returns:
- the translateX for this
Node
- See Also:
-
setTranslateY
public final void setTranslateY(double value) Sets the value of thetranslateY
property.- Property description:
- Defines the y coordinate of the translation that is added to this
Node
's transform.The node's final translation will be computed as
layoutY
+translateY
, wherelayoutY
establishes the node's stable position andtranslateY
optionally makes dynamic adjustments to that position.This variable can be used to alter the location of a node without disturbing its
layoutBounds
, which makes it useful for animating a node's location. - Default value:
- 0
- Parameters:
value
- the value for thetranslateY
property- See Also:
-
getTranslateY
public final double getTranslateY()Gets the value of thetranslateY
property.- Property description:
- Defines the y coordinate of the translation that is added to this
Node
's transform.The node's final translation will be computed as
layoutY
+translateY
, wherelayoutY
establishes the node's stable position andtranslateY
optionally makes dynamic adjustments to that position.This variable can be used to alter the location of a node without disturbing its
layoutBounds
, which makes it useful for animating a node's location. - Default value:
- 0
- Returns:
- the value of the
translateY
property - See Also:
-
translateYProperty
Defines the y coordinate of the translation that is added to thisNode
's transform.The node's final translation will be computed as
layoutY
+translateY
, wherelayoutY
establishes the node's stable position andtranslateY
optionally makes dynamic adjustments to that position.This variable can be used to alter the location of a node without disturbing its
layoutBounds
, which makes it useful for animating a node's location.- Default value:
- 0
- Returns:
- the translateY for this
Node
- See Also:
-
setTranslateZ
public final void setTranslateZ(double value) Sets the value of thetranslateZ
property.- Property description:
- Defines the Z coordinate of the translation that is added to the
transformed coordinates of this
Node
. This value will be added to any translation defined by thetransforms
ObservableList andlayoutZ
.This variable can be used to alter the location of a Node without disturbing its layout bounds, which makes it useful for animating a node's location.
Note that this is a conditional feature. See
ConditionalFeature.SCENE3D
for more information. - Default value:
- 0
- Parameters:
value
- the value for thetranslateZ
property- See Also:
-
getTranslateZ
public final double getTranslateZ()Gets the value of thetranslateZ
property.- Property description:
- Defines the Z coordinate of the translation that is added to the
transformed coordinates of this
Node
. This value will be added to any translation defined by thetransforms
ObservableList andlayoutZ
.This variable can be used to alter the location of a Node without disturbing its layout bounds, which makes it useful for animating a node's location.
Note that this is a conditional feature. See
ConditionalFeature.SCENE3D
for more information. - Default value:
- 0
- Returns:
- the value of the
translateZ
property - See Also:
-
translateZProperty
Defines the Z coordinate of the translation that is added to the transformed coordinates of thisNode
. This value will be added to any translation defined by thetransforms
ObservableList andlayoutZ
.This variable can be used to alter the location of a Node without disturbing its layout bounds, which makes it useful for animating a node's location.
Note that this is a conditional feature. See
ConditionalFeature.SCENE3D
for more information.- Default value:
- 0
- Returns:
- the translateZ for this
Node
- See Also:
-
setScaleX
public final void setScaleX(double value) Sets the value of thescaleX
property.- Property description:
- Defines the factor by which coordinates are scaled about the center of the
object along the X axis of this
Node
. This is used to stretch or shrink the node either manually or by using an animation.This scale factor is not included in
layoutBounds
by default, which makes it ideal for scaling the entire node after all effects and transforms have been taken into account.The pivot point about which the scale occurs is the center of the untransformed
layoutBounds
. - Default value:
- 1.0
- Parameters:
value
- the value for thescaleX
property- See Also:
-
getScaleX
public final double getScaleX()Gets the value of thescaleX
property.- Property description:
- Defines the factor by which coordinates are scaled about the center of the
object along the X axis of this
Node
. This is used to stretch or shrink the node either manually or by using an animation.This scale factor is not included in
layoutBounds
by default, which makes it ideal for scaling the entire node after all effects and transforms have been taken into account.The pivot point about which the scale occurs is the center of the untransformed
layoutBounds
. - Default value:
- 1.0
- Returns:
- the value of the
scaleX
property - See Also:
-
scaleXProperty
Defines the factor by which coordinates are scaled about the center of the object along the X axis of thisNode
. This is used to stretch or shrink the node either manually or by using an animation.This scale factor is not included in
layoutBounds
by default, which makes it ideal for scaling the entire node after all effects and transforms have been taken into account.The pivot point about which the scale occurs is the center of the untransformed
layoutBounds
.- Default value:
- 1.0
- Returns:
- the scaleX for this
Node
- See Also:
-
setScaleY
public final void setScaleY(double value) Sets the value of thescaleY
property.- Property description:
- Defines the factor by which coordinates are scaled about the center of the
object along the Y axis of this
Node
. This is used to stretch or shrink the node either manually or by using an animation.This scale factor is not included in
layoutBounds
by default, which makes it ideal for scaling the entire node after all effects and transforms have been taken into account.The pivot point about which the scale occurs is the center of the untransformed
layoutBounds
. - Default value:
- 1.0
- Parameters:
value
- the value for thescaleY
property- See Also:
-
getScaleY
public final double getScaleY()Gets the value of thescaleY
property.- Property description:
- Defines the factor by which coordinates are scaled about the center of the
object along the Y axis of this
Node
. This is used to stretch or shrink the node either manually or by using an animation.This scale factor is not included in
layoutBounds
by default, which makes it ideal for scaling the entire node after all effects and transforms have been taken into account.The pivot point about which the scale occurs is the center of the untransformed
layoutBounds
. - Default value:
- 1.0
- Returns:
- the value of the
scaleY
property - See Also:
-
scaleYProperty
Defines the factor by which coordinates are scaled about the center of the object along the Y axis of thisNode
. This is used to stretch or shrink the node either manually or by using an animation.This scale factor is not included in
layoutBounds
by default, which makes it ideal for scaling the entire node after all effects and transforms have been taken into account.The pivot point about which the scale occurs is the center of the untransformed
layoutBounds
.- Default value:
- 1.0
- Returns:
- the scaleY for this
Node
- See Also:
-
setScaleZ
public final void setScaleZ(double value) Sets the value of thescaleZ
property.- Property description:
- Defines the factor by which coordinates are scaled about the center of the
object along the Z axis of this
Node
. This is used to stretch or shrink the node either manually or by using an animation.This scale factor is not included in
layoutBounds
by default, which makes it ideal for scaling the entire node after all effects and transforms have been taken into account.The pivot point about which the scale occurs is the center of the rectangular bounds formed by taking
boundsInLocal
and applying all the transforms in thetransforms
ObservableList.Note that this is a conditional feature. See
ConditionalFeature.SCENE3D
for more information. - Default value:
- 1.0
- Parameters:
value
- the value for thescaleZ
property- See Also:
-
getScaleZ
public final double getScaleZ()Gets the value of thescaleZ
property.- Property description:
- Defines the factor by which coordinates are scaled about the center of the
object along the Z axis of this
Node
. This is used to stretch or shrink the node either manually or by using an animation.This scale factor is not included in
layoutBounds
by default, which makes it ideal for scaling the entire node after all effects and transforms have been taken into account.The pivot point about which the scale occurs is the center of the rectangular bounds formed by taking
boundsInLocal
and applying all the transforms in thetransforms
ObservableList.Note that this is a conditional feature. See
ConditionalFeature.SCENE3D
for more information. - Default value:
- 1.0
- Returns:
- the value of the
scaleZ
property - See Also:
-
scaleZProperty
Defines the factor by which coordinates are scaled about the center of the object along the Z axis of thisNode
. This is used to stretch or shrink the node either manually or by using an animation.This scale factor is not included in
layoutBounds
by default, which makes it ideal for scaling the entire node after all effects and transforms have been taken into account.The pivot point about which the scale occurs is the center of the rectangular bounds formed by taking
boundsInLocal
and applying all the transforms in thetransforms
ObservableList.Note that this is a conditional feature. See
ConditionalFeature.SCENE3D
for more information.- Default value:
- 1.0
- Returns:
- the scaleZ for this
Node
- See Also:
-
setRotate
public final void setRotate(double value) Sets the value of therotate
property.- Property description:
- Defines the angle of rotation about the
Node
's center, measured in degrees. This is used to rotate theNode
.This rotation factor is not included in
layoutBounds
by default, which makes it ideal for rotating the entire node after all effects and transforms have been taken into account.The pivot point about which the rotation occurs is the center of the untransformed
layoutBounds
.Note that because the pivot point is computed as the center of this
Node
's layout bounds, any change to the layout bounds will cause the pivot point to change, which can move the object. For a leaf node, any change to the geometry will cause the layout bounds to change. For a group node, any change to any of its children, including a change in a child's geometry, clip, effect, position, orientation, or scale, will cause the group's layout bounds to change. If this movement of the pivot point is not desired, applications should instead use the Node'stransforms
ObservableList, and add aRotate
transform, which has a user-specifiable pivot point. - Default value:
- 0.0
- Parameters:
value
- the value for therotate
property- See Also:
-
getRotate
public final double getRotate()Gets the value of therotate
property.- Property description:
- Defines the angle of rotation about the
Node
's center, measured in degrees. This is used to rotate theNode
.This rotation factor is not included in
layoutBounds
by default, which makes it ideal for rotating the entire node after all effects and transforms have been taken into account.The pivot point about which the rotation occurs is the center of the untransformed
layoutBounds
.Note that because the pivot point is computed as the center of this
Node
's layout bounds, any change to the layout bounds will cause the pivot point to change, which can move the object. For a leaf node, any change to the geometry will cause the layout bounds to change. For a group node, any change to any of its children, including a change in a child's geometry, clip, effect, position, orientation, or scale, will cause the group's layout bounds to change. If this movement of the pivot point is not desired, applications should instead use the Node'stransforms
ObservableList, and add aRotate
transform, which has a user-specifiable pivot point. - Default value:
- 0.0
- Returns:
- the value of the
rotate
property - See Also:
-
rotateProperty
Defines the angle of rotation about theNode
's center, measured in degrees. This is used to rotate theNode
.This rotation factor is not included in
layoutBounds
by default, which makes it ideal for rotating the entire node after all effects and transforms have been taken into account.The pivot point about which the rotation occurs is the center of the untransformed
layoutBounds
.Note that because the pivot point is computed as the center of this
Node
's layout bounds, any change to the layout bounds will cause the pivot point to change, which can move the object. For a leaf node, any change to the geometry will cause the layout bounds to change. For a group node, any change to any of its children, including a change in a child's geometry, clip, effect, position, orientation, or scale, will cause the group's layout bounds to change. If this movement of the pivot point is not desired, applications should instead use the Node'stransforms
ObservableList, and add aRotate
transform, which has a user-specifiable pivot point.- Default value:
- 0.0
- Returns:
- the rotate for this
Node
- See Also:
-
setRotationAxis
Sets the value of therotationAxis
property.- Property description:
- Defines the axis of rotation of this
Node
.Note that this is a conditional feature. See
ConditionalFeature.SCENE3D
for more information. - Default value:
- Rotate.Z_AXIS
- Parameters:
value
- the value for therotationAxis
property- See Also:
-
getRotationAxis
Gets the value of therotationAxis
property.- Property description:
- Defines the axis of rotation of this
Node
.Note that this is a conditional feature. See
ConditionalFeature.SCENE3D
for more information. - Default value:
- Rotate.Z_AXIS
- Returns:
- the value of the
rotationAxis
property - See Also:
-
rotationAxisProperty
Defines the axis of rotation of thisNode
.Note that this is a conditional feature. See
ConditionalFeature.SCENE3D
for more information.- Default value:
- Rotate.Z_AXIS
- Returns:
- the rotationAxis for this
Node
- See Also:
-
localToParentTransformProperty
An affine transform that holds the computed local-to-parent transform. This is the concatenation of all transforms in this node, including all of the convenience transforms.- Returns:
- the localToParent transform for this
Node
- Since:
- JavaFX 2.2
- See Also:
-
getLocalToParentTransform
Gets the value of thelocalToParentTransform
property.- Property description:
- An affine transform that holds the computed local-to-parent transform. This is the concatenation of all transforms in this node, including all of the convenience transforms.
- Returns:
- the value of the
localToParentTransform
property - Since:
- JavaFX 2.2
- See Also:
-
localToSceneTransformProperty
An affine transform that holds the computed local-to-scene transform. This is the concatenation of all transforms in this node's parents and in this node, including all of the convenience transforms up to the root. If this node is in aSubScene
, this property represents transforms up to the subscene, not the root scene.Note that when you register a listener or a binding to this property, it needs to listen for invalidation on all its parents to the root node. This means that registering a listener on this property on many nodes may negatively affect performance of transformation changes in their common parents.
- Returns:
- the localToScene transform for this
Node
- Since:
- JavaFX 2.2
- See Also:
-
getLocalToSceneTransform
Gets the value of thelocalToSceneTransform
property.- Property description:
- An affine transform that holds the computed local-to-scene transform.
This is the concatenation of all transforms in this node's parents and
in this node, including all of the convenience transforms up to the root.
If this node is in a
SubScene
, this property represents transforms up to the subscene, not the root scene.Note that when you register a listener or a binding to this property, it needs to listen for invalidation on all its parents to the root node. This means that registering a listener on this property on many nodes may negatively affect performance of transformation changes in their common parents.
- Returns:
- the value of the
localToSceneTransform
property - Since:
- JavaFX 2.2
- See Also:
-
setNodeOrientation
Sets the value of thenodeOrientation
property.- Property description:
- Property holding NodeOrientation.
Node orientation describes the flow of visual data within a node. In the English speaking world, visual data normally flows from left-to-right. In an Arabic or Hebrew world, visual data flows from right-to-left. This is consistent with the reading order of text in both worlds. The default value is left-to-right.
- Parameters:
orientation
- the value for thenodeOrientation
property- Since:
- JavaFX 8.0
- See Also:
-
getNodeOrientation
Gets the value of thenodeOrientation
property.- Property description:
- Property holding NodeOrientation.
Node orientation describes the flow of visual data within a node. In the English speaking world, visual data normally flows from left-to-right. In an Arabic or Hebrew world, visual data flows from right-to-left. This is consistent with the reading order of text in both worlds. The default value is left-to-right.
- Returns:
- the value of the
nodeOrientation
property - Since:
- JavaFX 8.0
- See Also:
-
nodeOrientationProperty
Property holding NodeOrientation.Node orientation describes the flow of visual data within a node. In the English speaking world, visual data normally flows from left-to-right. In an Arabic or Hebrew world, visual data flows from right-to-left. This is consistent with the reading order of text in both worlds. The default value is left-to-right.
- Returns:
- NodeOrientation
- Since:
- JavaFX 8.0
- See Also:
-
getEffectiveNodeOrientation
Gets the value of theeffectiveNodeOrientation
property.- Property description:
- The effective orientation of a node resolves the inheritance of node orientation, returning either left-to-right or right-to-left.
- Returns:
- the value of the
effectiveNodeOrientation
property - Since:
- JavaFX 8.0
- See Also:
-
effectiveNodeOrientationProperty
The effective orientation of a node resolves the inheritance of node orientation, returning either left-to-right or right-to-left.- Returns:
- the node orientation for this
Node
- Since:
- JavaFX 8.0
- See Also:
-
usesMirroring
public boolean usesMirroring()Determines whether a node should be mirrored when node orientation is right-to-left.When a node is mirrored, the origin is automatically moved to the top right corner causing the node to layout children and draw from right to left using a mirroring transformation. Some nodes may wish to draw from right to left without using a transformation. These nodes will will answer
false
and implement right-to-left orientation without using the automatic transformation.- Returns:
- true if this
Node
should be mirrored - Since:
- JavaFX 8.0
-
setMouseTransparent
public final void setMouseTransparent(boolean value) Sets the value of themouseTransparent
property.- Property description:
- If
true
, this node (together with all its children) is completely transparent to mouse events. When choosing target for mouse event, nodes withmouseTransparent
set totrue
and their subtrees won't be taken into account. - Parameters:
value
- the value for themouseTransparent
property- See Also:
-
isMouseTransparent
public final boolean isMouseTransparent()Gets the value of themouseTransparent
property.- Property description:
- If
true
, this node (together with all its children) is completely transparent to mouse events. When choosing target for mouse event, nodes withmouseTransparent
set totrue
and their subtrees won't be taken into account. - Returns:
- the value of the
mouseTransparent
property - See Also:
-
mouseTransparentProperty
Iftrue
, this node (together with all its children) is completely transparent to mouse events. When choosing target for mouse event, nodes withmouseTransparent
set totrue
and their subtrees won't be taken into account.- Returns:
- is this
Node
(together with all its children) is completely transparent to mouse events. - See Also:
-
setHover
protected final void setHover(boolean value) Sets the value of thehover
property.- Property description:
- Whether or not this
Node
is being hovered over. Typically this is due to the mouse being over the node, though it could be due to a pen hovering on a graphics tablet or other form of input.Note that current implementation of hover relies on mouse enter and exit events to determine whether this Node is in the hover state; this means that this feature is currently supported only on systems that have a mouse. Future implementations may provide alternative means of supporting hover.
- Default value:
- false
- Parameters:
value
- the value for thehover
property- See Also:
-
isHover
public final boolean isHover()Gets the value of thehover
property.- Property description:
- Whether or not this
Node
is being hovered over. Typically this is due to the mouse being over the node, though it could be due to a pen hovering on a graphics tablet or other form of input.Note that current implementation of hover relies on mouse enter and exit events to determine whether this Node is in the hover state; this means that this feature is currently supported only on systems that have a mouse. Future implementations may provide alternative means of supporting hover.
- Default value:
- false
- Returns:
- the value of the
hover
property - See Also:
-
hoverProperty
Whether or not thisNode
is being hovered over. Typically this is due to the mouse being over the node, though it could be due to a pen hovering on a graphics tablet or other form of input.Note that current implementation of hover relies on mouse enter and exit events to determine whether this Node is in the hover state; this means that this feature is currently supported only on systems that have a mouse. Future implementations may provide alternative means of supporting hover.
- Default value:
- false
- Returns:
- the
hover
property - See Also:
-
setPressed
protected final void setPressed(boolean value) Sets the value of thepressed
property.- Property description:
- Whether or not the
Node
is pressed. Typically this is true when the primary mouse button is down, though subclasses may define other mouse button state or key state to cause the node to be "pressed". - Default value:
- false
- Parameters:
value
- the value for thepressed
property- See Also:
-
isPressed
public final boolean isPressed()Gets the value of thepressed
property.- Property description:
- Whether or not the
Node
is pressed. Typically this is true when the primary mouse button is down, though subclasses may define other mouse button state or key state to cause the node to be "pressed". - Default value:
- false
- Returns:
- the value of the
pressed
property - See Also:
-
pressedProperty
Whether or not theNode
is pressed. Typically this is true when the primary mouse button is down, though subclasses may define other mouse button state or key state to cause the node to be "pressed".- Default value:
- false
- Returns:
- the
pressed
property - See Also:
-
setOnContextMenuRequested
Sets the value of theonContextMenuRequested
property.- Property description:
- Defines a function to be called when a context menu
has been requested on this
Node
. - Parameters:
value
- the value for theonContextMenuRequested
property- Since:
- JavaFX 2.1
- See Also:
-
getOnContextMenuRequested
Gets the value of theonContextMenuRequested
property.- Property description:
- Defines a function to be called when a context menu
has been requested on this
Node
. - Returns:
- the value of the
onContextMenuRequested
property - Since:
- JavaFX 2.1
- See Also:
-
onContextMenuRequestedProperty
public final ObjectProperty<EventHandler<? super ContextMenuEvent>> onContextMenuRequestedProperty()Defines a function to be called when a context menu has been requested on thisNode
.- Returns:
- the event handler that is called when a context menu has been
requested on this
Node
- Since:
- JavaFX 2.1
- See Also:
-
setOnMouseClicked
Sets the value of theonMouseClicked
property.- Property description:
- Defines a function to be called when a mouse button has been clicked
(pressed and released) on this
Node
. - Parameters:
value
- the value for theonMouseClicked
property- See Also:
-
getOnMouseClicked
Gets the value of theonMouseClicked
property.- Property description:
- Defines a function to be called when a mouse button has been clicked
(pressed and released) on this
Node
. - Returns:
- the value of the
onMouseClicked
property - See Also:
-
onMouseClickedProperty
Defines a function to be called when a mouse button has been clicked (pressed and released) on thisNode
.- Returns:
- the event handler that is called when a mouse button has been
clicked (pressed and released) on this
Node
- See Also:
-
setOnMouseDragged
Sets the value of theonMouseDragged
property.- Property description:
- Defines a function to be called when a mouse button is pressed
on this
Node
and then dragged. - Parameters:
value
- the value for theonMouseDragged
property- See Also:
-
getOnMouseDragged
Gets the value of theonMouseDragged
property.- Property description:
- Defines a function to be called when a mouse button is pressed
on this
Node
and then dragged. - Returns:
- the value of the
onMouseDragged
property - See Also:
-
onMouseDraggedProperty
Defines a function to be called when a mouse button is pressed on thisNode
and then dragged.- Returns:
- the event handler that is called when a mouse button is pressed
on this
Node
and then dragged - See Also:
-
setOnMouseEntered
Sets the value of theonMouseEntered
property.- Property description:
- Defines a function to be called when the mouse enters this
Node
. - Parameters:
value
- the value for theonMouseEntered
property- See Also:
-
getOnMouseEntered
Gets the value of theonMouseEntered
property.- Property description:
- Defines a function to be called when the mouse enters this
Node
. - Returns:
- the value of the
onMouseEntered
property - See Also:
-
onMouseEnteredProperty
Defines a function to be called when the mouse enters thisNode
.- Returns:
- the event handler that is called when a mouse enters this
Node
- See Also:
-
setOnMouseExited
Sets the value of theonMouseExited
property.- Property description:
- Defines a function to be called when the mouse exits this
Node
. - Parameters:
value
- the value for theonMouseExited
property- See Also:
-
getOnMouseExited
Gets the value of theonMouseExited
property.- Property description:
- Defines a function to be called when the mouse exits this
Node
. - Returns:
- the value of the
onMouseExited
property - See Also:
-
onMouseExitedProperty
Defines a function to be called when the mouse exits thisNode
.- Returns:
- the event handler that is called when a mouse exits this
Node
- See Also:
-
setOnMouseMoved
Sets the value of theonMouseMoved
property.- Property description:
- Defines a function to be called when mouse cursor moves within
this
Node
but no buttons have been pushed. - Parameters:
value
- the value for theonMouseMoved
property- See Also:
-
getOnMouseMoved
Gets the value of theonMouseMoved
property.- Property description:
- Defines a function to be called when mouse cursor moves within
this
Node
but no buttons have been pushed. - Returns:
- the value of the
onMouseMoved
property - See Also:
-
onMouseMovedProperty
Defines a function to be called when mouse cursor moves within thisNode
but no buttons have been pushed.- Returns:
- the event handler that is called when a mouse cursor moves
within this
Node
but no buttons have been pushed - See Also:
-
setOnMousePressed
Sets the value of theonMousePressed
property.- Property description:
- Defines a function to be called when a mouse button
has been pressed on this
Node
. - Parameters:
value
- the value for theonMousePressed
property- See Also:
-
getOnMousePressed
Gets the value of theonMousePressed
property.- Property description:
- Defines a function to be called when a mouse button
has been pressed on this
Node
. - Returns:
- the value of the
onMousePressed
property - See Also:
-
onMousePressedProperty
Defines a function to be called when a mouse button has been pressed on thisNode
.- Returns:
- the event handler that is called when a mouse button has been
pressed on this
Node
- See Also:
-
setOnMouseReleased
Sets the value of theonMouseReleased
property.- Property description:
- Defines a function to be called when a mouse button
has been released on this
Node
. - Parameters:
value
- the value for theonMouseReleased
property- See Also:
-
getOnMouseReleased
Gets the value of theonMouseReleased
property.- Property description:
- Defines a function to be called when a mouse button
has been released on this
Node
. - Returns:
- the value of the
onMouseReleased
property - See Also:
-
onMouseReleasedProperty
Defines a function to be called when a mouse button has been released on thisNode
.- Returns:
- the event handler that is called when a mouse button has been
released on this
Node
- See Also:
-
setOnDragDetected
Sets the value of theonDragDetected
property.- Property description:
- Defines a function to be called when drag gesture has been detected. This is the right place to start drag and drop operation.
- Parameters:
value
- the value for theonDragDetected
property- See Also:
-
getOnDragDetected
Gets the value of theonDragDetected
property.- Property description:
- Defines a function to be called when drag gesture has been detected. This is the right place to start drag and drop operation.
- Returns:
- the value of the
onDragDetected
property - See Also:
-
onDragDetectedProperty
Defines a function to be called when drag gesture has been detected. This is the right place to start drag and drop operation.- Returns:
- the event handler that is called when drag gesture has been detected
- See Also:
-
setOnMouseDragOver
Sets the value of theonMouseDragOver
property.- Property description:
- Defines a function to be called when a full press-drag-release gesture
progresses within this
Node
. - Parameters:
value
- the value for theonMouseDragOver
property- Since:
- JavaFX 2.1
- See Also:
-
getOnMouseDragOver
Gets the value of theonMouseDragOver
property.- Property description:
- Defines a function to be called when a full press-drag-release gesture
progresses within this
Node
. - Returns:
- the value of the
onMouseDragOver
property - Since:
- JavaFX 2.1
- See Also:
-
onMouseDragOverProperty
Defines a function to be called when a full press-drag-release gesture progresses within thisNode
.- Returns:
- the event handler that is called when a full press-drag-release
gesture progresses within this
Node
- Since:
- JavaFX 2.1
- See Also:
-
setOnMouseDragReleased
Sets the value of theonMouseDragReleased
property.- Property description:
- Defines a function to be called when a full press-drag-release gesture
ends (by releasing mouse button) within this
Node
. - Parameters:
value
- the value for theonMouseDragReleased
property- Since:
- JavaFX 2.1
- See Also:
-
getOnMouseDragReleased
Gets the value of theonMouseDragReleased
property.- Property description:
- Defines a function to be called when a full press-drag-release gesture
ends (by releasing mouse button) within this
Node
. - Returns:
- the value of the
onMouseDragReleased
property - Since:
- JavaFX 2.1
- See Also:
-
onMouseDragReleasedProperty
Defines a function to be called when a full press-drag-release gesture ends (by releasing mouse button) within thisNode
.- Returns:
- the event handler that is called when a full press-drag-release
gesture ends (by releasing mouse button) within this
Node
- Since:
- JavaFX 2.1
- See Also:
-
setOnMouseDragEntered
Sets the value of theonMouseDragEntered
property.- Property description:
- Defines a function to be called when a full press-drag-release gesture
enters this
Node
. - Parameters:
value
- the value for theonMouseDragEntered
property- Since:
- JavaFX 2.1
- See Also:
-
getOnMouseDragEntered
Gets the value of theonMouseDragEntered
property.- Property description:
- Defines a function to be called when a full press-drag-release gesture
enters this
Node
. - Returns:
- the value of the
onMouseDragEntered
property - Since:
- JavaFX 2.1
- See Also:
-
onMouseDragEnteredProperty
Defines a function to be called when a full press-drag-release gesture enters thisNode
.- Returns:
- the event handler that is called when a full press-drag-release
gesture enters this
Node
- Since:
- JavaFX 2.1
- See Also:
-
setOnMouseDragExited
Sets the value of theonMouseDragExited
property.- Property description:
- Defines a function to be called when a full press-drag-release gesture
leaves this
Node
. - Parameters:
value
- the value for theonMouseDragExited
property- Since:
- JavaFX 2.1
- See Also:
-
getOnMouseDragExited
Gets the value of theonMouseDragExited
property.- Property description:
- Defines a function to be called when a full press-drag-release gesture
leaves this
Node
. - Returns:
- the value of the
onMouseDragExited
property - Since:
- JavaFX 2.1
- See Also:
-
onMouseDragExitedProperty
Defines a function to be called when a full press-drag-release gesture leaves thisNode
.- Returns:
- the event handler that is called when a full press-drag-release
gesture leaves this
Node
- Since:
- JavaFX 2.1
- See Also:
-
setOnScrollStarted
Sets the value of theonScrollStarted
property.- Property description:
- Defines a function to be called when a scrolling gesture is detected.
- Parameters:
value
- the value for theonScrollStarted
property- Since:
- JavaFX 2.2
- See Also:
-
getOnScrollStarted
Gets the value of theonScrollStarted
property.- Property description:
- Defines a function to be called when a scrolling gesture is detected.
- Returns:
- the value of the
onScrollStarted
property - Since:
- JavaFX 2.2
- See Also:
-
onScrollStartedProperty
Defines a function to be called when a scrolling gesture is detected.- Returns:
- the event handler that is called when a scrolling gesture is detected
- Since:
- JavaFX 2.2
- See Also:
-
setOnScroll
Sets the value of theonScroll
property.- Property description:
- Defines a function to be called when user performs a scrolling action.
- Parameters:
value
- the value for theonScroll
property- See Also:
-
getOnScroll
Gets the value of theonScroll
property.- Property description:
- Defines a function to be called when user performs a scrolling action.
- Returns:
- the value of the
onScroll
property - See Also:
-
onScrollProperty
Defines a function to be called when user performs a scrolling action.- Returns:
- the event handler that is called when user performs a scrolling action
- See Also:
-
setOnScrollFinished
Sets the value of theonScrollFinished
property.- Property description:
- Defines a function to be called when a scrolling gesture ends.
- Parameters:
value
- the value for theonScrollFinished
property- Since:
- JavaFX 2.2
- See Also:
-
getOnScrollFinished
Gets the value of theonScrollFinished
property.- Property description:
- Defines a function to be called when a scrolling gesture ends.
- Returns:
- the value of the
onScrollFinished
property - Since:
- JavaFX 2.2
- See Also:
-
onScrollFinishedProperty
Defines a function to be called when a scrolling gesture ends.- Returns:
- the event handler that is called when a scrolling gesture ends
- Since:
- JavaFX 2.2
- See Also:
-
setOnRotationStarted
Sets the value of theonRotationStarted
property.- Property description:
- Defines a function to be called when a rotation gesture is detected.
- Parameters:
value
- the value for theonRotationStarted
property- Since:
- JavaFX 2.2
- See Also:
-
getOnRotationStarted
Gets the value of theonRotationStarted
property.- Property description:
- Defines a function to be called when a rotation gesture is detected.
- Returns:
- the value of the
onRotationStarted
property - Since:
- JavaFX 2.2
- See Also:
-
onRotationStartedProperty
Defines a function to be called when a rotation gesture is detected.- Returns:
- the event handler that is called when a rotation gesture is detected
- Since:
- JavaFX 2.2
- See Also:
-
setOnRotate
Sets the value of theonRotate
property.- Property description:
- Defines a function to be called when user performs a rotation action.
- Parameters:
value
- the value for theonRotate
property- Since:
- JavaFX 2.2
- See Also:
-
getOnRotate
Gets the value of theonRotate
property.- Property description:
- Defines a function to be called when user performs a rotation action.
- Returns:
- the value of the
onRotate
property - Since:
- JavaFX 2.2
- See Also:
-
onRotateProperty
Defines a function to be called when user performs a rotation action.- Returns:
- the event handler that is called when user performs a rotation action
- Since:
- JavaFX 2.2
- See Also:
-
setOnRotationFinished
Sets the value of theonRotationFinished
property.- Property description:
- Defines a function to be called when a rotation gesture ends.
- Parameters:
value
- the value for theonRotationFinished
property- Since:
- JavaFX 2.2
- See Also:
-
getOnRotationFinished
Gets the value of theonRotationFinished
property.- Property description:
- Defines a function to be called when a rotation gesture ends.
- Returns:
- the value of the
onRotationFinished
property - Since:
- JavaFX 2.2
- See Also:
-
onRotationFinishedProperty
Defines a function to be called when a rotation gesture ends.- Returns:
- the event handler that is called when a rotation gesture ends
- Since:
- JavaFX 2.2
- See Also:
-
setOnZoomStarted
Sets the value of theonZoomStarted
property.- Property description:
- Defines a function to be called when a zooming gesture is detected.
- Parameters:
value
- the value for theonZoomStarted
property- Since:
- JavaFX 2.2
- See Also:
-
getOnZoomStarted
Gets the value of theonZoomStarted
property.- Property description:
- Defines a function to be called when a zooming gesture is detected.
- Returns:
- the value of the
onZoomStarted
property - Since:
- JavaFX 2.2
- See Also:
-
onZoomStartedProperty
Defines a function to be called when a zooming gesture is detected.- Returns:
- the event handler that is called when a zooming gesture is detected
- Since:
- JavaFX 2.2
- See Also:
-
setOnZoom
Sets the value of theonZoom
property.- Property description:
- Defines a function to be called when user performs a zooming action.
- Parameters:
value
- the value for theonZoom
property- Since:
- JavaFX 2.2
- See Also:
-
getOnZoom
Gets the value of theonZoom
property.- Property description:
- Defines a function to be called when user performs a zooming action.
- Returns:
- the value of the
onZoom
property - Since:
- JavaFX 2.2
- See Also:
-
onZoomProperty
Defines a function to be called when user performs a zooming action.- Returns:
- the event handler that is called when user performs a zooming action
- Since:
- JavaFX 2.2
- See Also:
-
setOnZoomFinished
Sets the value of theonZoomFinished
property.- Property description:
- Defines a function to be called when a zooming gesture ends.
- Parameters:
value
- the value for theonZoomFinished
property- Since:
- JavaFX 2.2
- See Also:
-
getOnZoomFinished
Gets the value of theonZoomFinished
property.- Property description:
- Defines a function to be called when a zooming gesture ends.
- Returns:
- the value of the
onZoomFinished
property - Since:
- JavaFX 2.2
- See Also:
-
onZoomFinishedProperty
Defines a function to be called when a zooming gesture ends.- Returns:
- the event handler that is called when a zooming gesture ends
- Since:
- JavaFX 2.2
- See Also:
-
setOnSwipeUp
Sets the value of theonSwipeUp
property.- Property description:
- Defines a function to be called when an upward swipe gesture centered over this node happens.
- Parameters:
value
- the value for theonSwipeUp
property- Since:
- JavaFX 2.2
- See Also:
-
getOnSwipeUp
Gets the value of theonSwipeUp
property.- Property description:
- Defines a function to be called when an upward swipe gesture centered over this node happens.
- Returns:
- the value of the
onSwipeUp
property - Since:
- JavaFX 2.2
- See Also:
-
onSwipeUpProperty
Defines a function to be called when an upward swipe gesture centered over this node happens.- Returns:
- the event handler that is called when an upward swipe gesture centered over this node happens
- Since:
- JavaFX 2.2
- See Also:
-
setOnSwipeDown
Sets the value of theonSwipeDown
property.- Property description:
- Defines a function to be called when a downward swipe gesture centered over this node happens.
- Parameters:
value
- the value for theonSwipeDown
property- Since:
- JavaFX 2.2
- See Also:
-
getOnSwipeDown
Gets the value of theonSwipeDown
property.- Property description:
- Defines a function to be called when a downward swipe gesture centered over this node happens.
- Returns:
- the value of the
onSwipeDown
property - Since:
- JavaFX 2.2
- See Also:
-
onSwipeDownProperty
Defines a function to be called when a downward swipe gesture centered over this node happens.- Returns:
- the event handler that is called when a downward swipe gesture centered over this node happens
- Since:
- JavaFX 2.2
- See Also:
-
setOnSwipeLeft
Sets the value of theonSwipeLeft
property.- Property description:
- Defines a function to be called when a leftward swipe gesture centered over this node happens.
- Parameters:
value
- the value for theonSwipeLeft
property- Since:
- JavaFX 2.2
- See Also:
-
getOnSwipeLeft
Gets the value of theonSwipeLeft
property.- Property description:
- Defines a function to be called when a leftward swipe gesture centered over this node happens.
- Returns:
- the value of the
onSwipeLeft
property - Since:
- JavaFX 2.2
- See Also:
-
onSwipeLeftProperty
Defines a function to be called when a leftward swipe gesture centered over this node happens.- Returns:
- the event handler that is called when a leftward swipe gesture centered over this node happens
- Since:
- JavaFX 2.2
- See Also:
-
setOnSwipeRight
Sets the value of theonSwipeRight
property.- Property description:
- Defines a function to be called when an rightward swipe gesture centered over this node happens.
- Parameters:
value
- the value for theonSwipeRight
property- Since:
- JavaFX 2.2
- See Also:
-
getOnSwipeRight
Gets the value of theonSwipeRight
property.- Property description:
- Defines a function to be called when an rightward swipe gesture centered over this node happens.
- Returns:
- the value of the
onSwipeRight
property - Since:
- JavaFX 2.2
- See Also:
-
onSwipeRightProperty
Defines a function to be called when an rightward swipe gesture centered over this node happens.- Returns:
- the event handler that is called when an rightward swipe gesture centered over this node happens
- Since:
- JavaFX 2.2
- See Also:
-
setOnTouchPressed
Sets the value of theonTouchPressed
property.- Property description:
- Defines a function to be called when a new touch point is pressed.
- Parameters:
value
- the value for theonTouchPressed
property- Since:
- JavaFX 2.2
- See Also:
-
getOnTouchPressed
Gets the value of theonTouchPressed
property.- Property description:
- Defines a function to be called when a new touch point is pressed.
- Returns:
- the value of the
onTouchPressed
property - Since:
- JavaFX 2.2
- See Also:
-
onTouchPressedProperty
Defines a function to be called when a new touch point is pressed.- Returns:
- the event handler that is called when a new touch point is pressed
- Since:
- JavaFX 2.2
- See Also:
-
setOnTouchMoved
Sets the value of theonTouchMoved
property.- Property description:
- Defines a function to be called when a touch point is moved.
- Parameters:
value
- the value for theonTouchMoved
property- Since:
- JavaFX 2.2
- See Also:
-
getOnTouchMoved
Gets the value of theonTouchMoved
property.- Property description:
- Defines a function to be called when a touch point is moved.
- Returns:
- the value of the
onTouchMoved
property - Since:
- JavaFX 2.2
- See Also:
-
onTouchMovedProperty
Defines a function to be called when a touch point is moved.- Returns:
- the event handler that is called when a touch point is moved
- Since:
- JavaFX 2.2
- See Also:
-
setOnTouchReleased
Sets the value of theonTouchReleased
property.- Property description:
- Defines a function to be called when a touch point is released.
- Parameters:
value
- the value for theonTouchReleased
property- Since:
- JavaFX 2.2
- See Also:
-
getOnTouchReleased
Gets the value of theonTouchReleased
property.- Property description:
- Defines a function to be called when a touch point is released.
- Returns:
- the value of the
onTouchReleased
property - Since:
- JavaFX 2.2
- See Also:
-
onTouchReleasedProperty
Defines a function to be called when a touch point is released.- Returns:
- the event handler that is called when a touch point is released
- Since:
- JavaFX 2.2
- See Also:
-
setOnTouchStationary
Sets the value of theonTouchStationary
property.- Property description:
- Defines a function to be called when a touch point stays pressed and still.
- Parameters:
value
- the value for theonTouchStationary
property- Since:
- JavaFX 2.2
- See Also:
-
getOnTouchStationary
Gets the value of theonTouchStationary
property.- Property description:
- Defines a function to be called when a touch point stays pressed and still.
- Returns:
- the value of the
onTouchStationary
property - Since:
- JavaFX 2.2
- See Also:
-
onTouchStationaryProperty
Defines a function to be called when a touch point stays pressed and still.- Returns:
- the event handler that is called when a touch point stays pressed and still
- Since:
- JavaFX 2.2
- See Also:
-
setOnKeyPressed
Sets the value of theonKeyPressed
property.- Property description:
- Defines a function to be called when this
Node
or its childNode
has input focus and a key has been pressed. The function is called only if the event hasn't been already consumed during its capturing or bubbling phase. - Parameters:
value
- the value for theonKeyPressed
property- See Also:
-
getOnKeyPressed
Gets the value of theonKeyPressed
property.- Property description:
- Defines a function to be called when this
Node
or its childNode
has input focus and a key has been pressed. The function is called only if the event hasn't been already consumed during its capturing or bubbling phase. - Returns:
- the value of the
onKeyPressed
property - See Also:
-
onKeyPressedProperty
Defines a function to be called when thisNode
or its childNode
has input focus and a key has been pressed. The function is called only if the event hasn't been already consumed during its capturing or bubbling phase.- Returns:
- the event handler that is called when this
Node
or its childNode
has input focus and a key has been pressed - See Also:
-
setOnKeyReleased
Sets the value of theonKeyReleased
property.- Property description:
- Defines a function to be called when this
Node
or its childNode
has input focus and a key has been released. The function is called only if the event hasn't been already consumed during its capturing or bubbling phase. - Parameters:
value
- the value for theonKeyReleased
property- See Also:
-
getOnKeyReleased
Gets the value of theonKeyReleased
property.- Property description:
- Defines a function to be called when this
Node
or its childNode
has input focus and a key has been released. The function is called only if the event hasn't been already consumed during its capturing or bubbling phase. - Returns:
- the value of the
onKeyReleased
property - See Also:
-
onKeyReleasedProperty
Defines a function to be called when thisNode
or its childNode
has input focus and a key has been released. The function is called only if the event hasn't been already consumed during its capturing or bubbling phase.- Returns:
- the event handler that is called when this
Node
or its childNode
has input focus and a key has been released - See Also:
-
setOnKeyTyped
Sets the value of theonKeyTyped
property.- Property description:
- Defines a function to be called when this
Node
or its childNode
has input focus and a key has been typed. The function is called only if the event hasn't been already consumed during its capturing or bubbling phase. - Parameters:
value
- the value for theonKeyTyped
property- See Also:
-
getOnKeyTyped
Gets the value of theonKeyTyped
property.- Property description:
- Defines a function to be called when this
Node
or its childNode
has input focus and a key has been typed. The function is called only if the event hasn't been already consumed during its capturing or bubbling phase. - Returns:
- the value of the
onKeyTyped
property - See Also:
-
onKeyTypedProperty
Defines a function to be called when thisNode
or its childNode
has input focus and a key has been typed. The function is called only if the event hasn't been already consumed during its capturing or bubbling phase.- Returns:
- the event handler that is called when this
Node
or its childNode
has input focus and a key has been typed - See Also:
-
setOnInputMethodTextChanged
Sets the value of theonInputMethodTextChanged
property.- Property description:
- Defines a function to be called when this
Node
has input focus and the input method text has changed. If this function is not defined in thisNode
, then it receives the result string of the input method composition as a series ofonKeyTyped
function calls.When the
Node
loses the input focus, the JavaFX runtime automatically commits the existing composed text if any. - Parameters:
value
- the value for theonInputMethodTextChanged
property- See Also:
-
getOnInputMethodTextChanged
Gets the value of theonInputMethodTextChanged
property.- Property description:
- Defines a function to be called when this
Node
has input focus and the input method text has changed. If this function is not defined in thisNode
, then it receives the result string of the input method composition as a series ofonKeyTyped
function calls.When the
Node
loses the input focus, the JavaFX runtime automatically commits the existing composed text if any. - Returns:
- the value of the
onInputMethodTextChanged
property - See Also:
-
onInputMethodTextChangedProperty
public final ObjectProperty<EventHandler<? super InputMethodEvent>> onInputMethodTextChangedProperty()Defines a function to be called when thisNode
has input focus and the input method text has changed. If this function is not defined in thisNode
, then it receives the result string of the input method composition as a series ofonKeyTyped
function calls.When the
Node
loses the input focus, the JavaFX runtime automatically commits the existing composed text if any.- Returns:
- the event handler that is called when this
Node
has input focus and the input method text has changed - See Also:
-
setInputMethodRequests
Sets the value of theinputMethodRequests
property.- Property description:
- Property holding InputMethodRequests.
- Parameters:
value
- the value for theinputMethodRequests
property- See Also:
-
getInputMethodRequests
Gets the value of theinputMethodRequests
property.- Property description:
- Property holding InputMethodRequests.
- Returns:
- the value of the
inputMethodRequests
property - See Also:
-
inputMethodRequestsProperty
Property holding InputMethodRequests.- Returns:
- InputMethodRequestsProperty
- See Also:
-
setFocused
protected final void setFocused(boolean value) Sets the value of thefocused
property.- Property description:
- Indicates whether this
Node
currently has the input focus. To have the input focus, a node must be theScene
's focus owner, and the scene must be in aStage
that is visible and active. SeerequestFocus()
for more information. - Default value:
- false
- Parameters:
value
- the value for thefocused
property- See Also:
-
isFocused
public final boolean isFocused()Gets the value of thefocused
property.- Property description:
- Indicates whether this
Node
currently has the input focus. To have the input focus, a node must be theScene
's focus owner, and the scene must be in aStage
that is visible and active. SeerequestFocus()
for more information. - Default value:
- false
- Returns:
- the value of the
focused
property - See Also:
-
focusedProperty
Indicates whether thisNode
currently has the input focus. To have the input focus, a node must be theScene
's focus owner, and the scene must be in aStage
that is visible and active. SeerequestFocus()
for more information.- Default value:
- false
- Returns:
- the
focused
property - See Also:
-
isFocusVisible
public final boolean isFocusVisible()Gets the value of thefocusVisible
property.- Property description:
- Indicates whether this
Node
should visibly indicate focus. This flag is set when the node acquires input focus via keyboard navigation, and it is cleared when the node loses focus or whenrequestFocus()
is called. - Default value:
- false
- Returns:
- the value of the
focusVisible
property - Since:
- 19
- See Also:
-
focusVisibleProperty
Indicates whether thisNode
should visibly indicate focus. This flag is set when the node acquires input focus via keyboard navigation, and it is cleared when the node loses focus or whenrequestFocus()
is called.- Default value:
- false
- Returns:
- the
focusVisible
property - Since:
- 19
- See Also:
-
isFocusWithin
public final boolean isFocusWithin()Gets the value of thefocusWithin
property.- Property description:
- Indicates whether this
Node
or any of its descendants currently has the input focus. - Default value:
- false
- Returns:
- the value of the
focusWithin
property - Since:
- 19
- See Also:
-
focusWithinProperty
Indicates whether thisNode
or any of its descendants currently has the input focus.- Default value:
- false
- Returns:
- the
focusWithin
property - Since:
- 19
- See Also:
-
setFocusTraversable
public final void setFocusTraversable(boolean value) Sets the value of thefocusTraversable
property.- Property description:
- Specifies whether this
Node
should be a part of focus traversal cycle. When this property istrue
focus can be moved to thisNode
and from thisNode
using regular focus traversal keys. On a desktop such keys are usuallyTAB
for moving focus forward andSHIFT+TAB
for moving focus backward. When aScene
is created, the system gives focus to aNode
whosefocusTraversable
variable is true and that is eligible to receive the focus, unless the focus had been set explicitly via a call torequestFocus()
. - Default value:
- false
- Parameters:
value
- the value for thefocusTraversable
property- See Also:
-
isFocusTraversable
public final boolean isFocusTraversable()Gets the value of thefocusTraversable
property.- Property description:
- Specifies whether this
Node
should be a part of focus traversal cycle. When this property istrue
focus can be moved to thisNode
and from thisNode
using regular focus traversal keys. On a desktop such keys are usuallyTAB
for moving focus forward andSHIFT+TAB
for moving focus backward. When aScene
is created, the system gives focus to aNode
whosefocusTraversable
variable is true and that is eligible to receive the focus, unless the focus had been set explicitly via a call torequestFocus()
. - Default value:
- false
- Returns:
- the value of the
focusTraversable
property - See Also:
-
focusTraversableProperty
Specifies whether thisNode
should be a part of focus traversal cycle. When this property istrue
focus can be moved to thisNode
and from thisNode
using regular focus traversal keys. On a desktop such keys are usuallyTAB
for moving focus forward andSHIFT+TAB
for moving focus backward. When aScene
is created, the system gives focus to aNode
whosefocusTraversable
variable is true and that is eligible to receive the focus, unless the focus had been set explicitly via a call torequestFocus()
.- Default value:
- false
- Returns:
- the
focusTraversable
property - See Also:
-
requestFocus
public void requestFocus()Requests that thisNode
get the input focus, and that thisNode
's top-level ancestor become the focused window. To be eligible to receive the focus, the node must be part of a scene, it and all of its ancestors must be visible, and it must not be disabled. If this node is eligible, this function will cause it to become thisScene
's "focus owner". Each scene has at most one focus owner node. The focus owner will not actually have the input focus, however, unless the scene belongs to aStage
that is both visible and active.This method will clear the
focusVisible
flag. -
toString
Returns a string representation for the object. -
setEventDispatcher
Sets the value of theeventDispatcher
property.- Property description:
- Specifies the event dispatcher for this node. The default event
dispatcher sends the received events to the registered event handlers and
filters. When replacing the value with a new
EventDispatcher
, the new dispatcher should forward events to the replaced dispatcher to maintain the node's default event handling behavior. - Parameters:
value
- the value for theeventDispatcher
property- See Also:
-
getEventDispatcher
Gets the value of theeventDispatcher
property.- Property description:
- Specifies the event dispatcher for this node. The default event
dispatcher sends the received events to the registered event handlers and
filters. When replacing the value with a new
EventDispatcher
, the new dispatcher should forward events to the replaced dispatcher to maintain the node's default event handling behavior. - Returns:
- the value of the
eventDispatcher
property - See Also:
-
eventDispatcherProperty
Specifies the event dispatcher for this node. The default event dispatcher sends the received events to the registered event handlers and filters. When replacing the value with a newEventDispatcher
, the new dispatcher should forward events to the replaced dispatcher to maintain the node's default event handling behavior.- Returns:
- the
eventDispatcher
property - See Also:
-
addEventHandler
public final <T extends Event> void addEventHandler(EventType<T> eventType, EventHandler<? super T> eventHandler) Registers an event handler to this node. The handler is called when the node receives anEvent
of the specified type during the bubbling phase of event delivery.- Type Parameters:
T
- the specific event class of the handler- Parameters:
eventType
- the type of the events to receive by the handlereventHandler
- the handler to register- Throws:
NullPointerException
- if the event type or handler is null
-
removeEventHandler
public final <T extends Event> void removeEventHandler(EventType<T> eventType, EventHandler<? super T> eventHandler) Unregisters a previously registered event handler from this node. One handler might have been registered for different event types, so the caller needs to specify the particular event type from which to unregister the handler.- Type Parameters:
T
- the specific event class of the handler- Parameters:
eventType
- the event type from which to unregistereventHandler
- the handler to unregister- Throws:
NullPointerException
- if the event type or handler is null
-
addEventFilter
public final <T extends Event> void addEventFilter(EventType<T> eventType, EventHandler<? super T> eventFilter) Registers an event filter to this node. The filter is called when the node receives anEvent
of the specified type during the capturing phase of event delivery.- Type Parameters:
T
- the specific event class of the filter- Parameters:
eventType
- the type of the events to receive by the filtereventFilter
- the filter to register- Throws:
NullPointerException
- if the event type or filter is null
-
removeEventFilter
public final <T extends Event> void removeEventFilter(EventType<T> eventType, EventHandler<? super T> eventFilter) Unregisters a previously registered event filter from this node. One filter might have been registered for different event types, so the caller needs to specify the particular event type from which to unregister the filter.- Type Parameters:
T
- the specific event class of the filter- Parameters:
eventType
- the event type from which to unregistereventFilter
- the filter to unregister- Throws:
NullPointerException
- if the event type or filter is null
-
setEventHandler
protected final <T extends Event> void setEventHandler(EventType<T> eventType, EventHandler<? super T> eventHandler) Sets the handler to use for this event type. There can only be one such handler specified at a time. This handler is guaranteed to be called as the last, after handlers added usingaddEventHandler(javafx.event.EventType, javafx.event.EventHandler)
. This is used for registering the user-defined onFoo event handlers.- Type Parameters:
T
- the specific event class of the handler- Parameters:
eventType
- the event type to associate with the given eventHandlereventHandler
- the handler to register, or null to unregister- Throws:
NullPointerException
- if the event type is null
-
buildEventDispatchChain
Construct an event dispatch chain for this node. The event dispatch chain contains all event dispatchers from the stage to this node.- Specified by:
buildEventDispatchChain
in interfaceEventTarget
- Parameters:
tail
- the initial chain to build from- Returns:
- the resulting event dispatch chain for this node
-
fireEvent
Fires the specified event. By default the event will travel through the hierarchy from the stage to this node. Any event filter encountered will be notified and can consume the event. If not consumed by the filters, the event handlers on this node are notified. If these don't consume the event either, the event will travel back the same path it arrived to this node. All event handlers encountered are called and can consume the event.This method must be called on the FX user thread.
- Parameters:
event
- the event to fire
-
getTypeSelector
The type of thisStyleable
that is to be used in selector matching. This is analogous to an "element" in HTML. (CSS Type Selector).- Specified by:
getTypeSelector
in interfaceStyleable
- Returns:
getClass().getName()
without the package name- Since:
- JavaFX 8.0
-
getStyleableParent
Return the parent of this Styleable, or null if there is no parent.- Specified by:
getStyleableParent
in interfaceStyleable
- Returns:
getParent()
- Since:
- JavaFX 8.0
-
getInitialFocusTraversable
Returns the initial focus traversable state of this node, for use by the JavaFX CSS engine to correctly set its initial value. This method can be overridden by subclasses in instances where focus traversable should initially be true (as the default implementation of this method is to return false).- Returns:
- the initial focus traversable state for this
Node
. - Since:
- 9
-
getInitialCursor
Returns the initial cursor state of this node, for use by the JavaFX CSS engine to correctly set its initial value. This method can be overridden by subclasses in instances where the cursor should initially be non-null (as the default implementation of this method is to return null).- Returns:
- the initial cursor state for this
Node
. - Since:
- 9
-
getClassCssMetaData
Gets theCssMetaData
associated with this class, which may include theCssMetaData
of its superclasses.- Returns:
- the
CssMetaData
- Since:
- JavaFX 8.0
-
getCssMetaData
This method should delegate togetClassCssMetaData()
so that a Node's CssMetaData can be accessed without the need for reflection.- Specified by:
getCssMetaData
in interfaceStyleable
- Returns:
- The CssMetaData associated with this node, which may include the CssMetaData of its superclasses.
- Since:
- JavaFX 8.0
-
pseudoClassStateChanged
Used to specify that a pseudo-class of this Node has changed. If the pseudo-class is used in a CSS selector that matches this Node, CSS will be reapplied. Typically, this method is called from theinvalidated
method of a property that is used as a pseudo-class. For example:private static final PseudoClass MY_PSEUDO_CLASS_STATE = PseudoClass.getPseudoClass("my-state"); BooleanProperty myPseudoClassState = new BooleanPropertyBase(false) { @Override public void invalidated() { pseudoClassStateChanged(MY_PSEUDO_CLASS_STATE, get()); } @Override public Object getBean() { return MyControl.this; } @Override public String getName() { return "myPseudoClassState"; } };
- Parameters:
pseudoClass
- the pseudo-class that has changed stateactive
- whether or not the state is active- Since:
- JavaFX 8.0
-
getPseudoClassStates
Description copied from interface:Styleable
Return the pseudo-class state of this Styleable. CSS assumes this set is read-only.- Specified by:
getPseudoClassStates
in interfaceStyleable
- Returns:
- The active pseudo-class states of this Node, wrapped in an unmodifiable ObservableSet
- Since:
- JavaFX 8.0
-
applyCss
public final void applyCss()If required, apply styles to this Node and its children, if any. This method does not normally need to be invoked directly but may be used in conjunction withParent.layout()
to size a Node before the next pulse, or if theScene
is not in aStage
.Provided that the Node's
Scene
is not null, CSS is applied to this Node regardless of whether this Node's CSS state is clean. CSS styles are applied from the top-most parent of this Node whose CSS state is other than clean, which may affect the styling of other nodes. This method is a no-op if the Node is not in a Scene. The Scene does not have to be in a Stage.This method does not invoke the
Parent.layout()
method. Typically, the caller will use the following sequence of operations.parentNode.applyCss(); parentNode.layout();
As a more complete example, the following code uses
applyCss()
andlayout()
to find the width and height of the Button before the Stage has been shown. If either the call toapplyCss()
or the call tolayout()
is commented out, the calls togetWidth()
andgetHeight()
will return zero (until some time after the Stage is shown).@Override public void start(Stage stage) throws Exception { Group root = new Group(); Scene scene = new Scene(root); Button button = new Button("Hello World"); root.getChildren().add(button); root.applyCss(); root.layout(); double width = button.getWidth(); double height = button.getHeight(); System.out.println(width + ", " + height); stage.setScene(scene); stage.show(); }
- Since:
- JavaFX 8.0
-
setAccessibleRole
Sets the value of theaccessibleRole
property.- Property description:
- The accessible role for this
Node
.The screen reader uses the role of a node to determine the attributes and actions that are supported.
- Default value:
AccessibleRole.NODE
- Parameters:
value
- the value for theaccessibleRole
property- Since:
- JavaFX 8u40
- See Also:
-
getAccessibleRole
Gets the value of theaccessibleRole
property.- Property description:
- The accessible role for this
Node
.The screen reader uses the role of a node to determine the attributes and actions that are supported.
- Default value:
AccessibleRole.NODE
- Returns:
- the value of the
accessibleRole
property - Since:
- JavaFX 8u40
- See Also:
-
accessibleRoleProperty
The accessible role for thisNode
.The screen reader uses the role of a node to determine the attributes and actions that are supported.
- Default value:
AccessibleRole.NODE
- Returns:
- the
accessibleRole
property - Since:
- JavaFX 8u40
- See Also:
-
setAccessibleRoleDescription
Sets the value of theaccessibleRoleDescription
property.- Property description:
- The role description of this
Node
.Normally, when a role is provided for a node, the screen reader speaks the role as well as the contents of the node. When this value is set, it is possible to override the default. This is useful because the set of roles is predefined. For example, it is possible to set the role of a node to be a button, but have the role description be arbitrary text.
- Default value:
- null
- Parameters:
value
- the value for theaccessibleRoleDescription
property- Since:
- JavaFX 8u40
- See Also:
-
getAccessibleRoleDescription
Gets the value of theaccessibleRoleDescription
property.- Property description:
- The role description of this
Node
.Normally, when a role is provided for a node, the screen reader speaks the role as well as the contents of the node. When this value is set, it is possible to override the default. This is useful because the set of roles is predefined. For example, it is possible to set the role of a node to be a button, but have the role description be arbitrary text.
- Default value:
- null
- Returns:
- the value of the
accessibleRoleDescription
property - Since:
- JavaFX 8u40
- See Also:
-
accessibleRoleDescriptionProperty
The role description of thisNode
.Normally, when a role is provided for a node, the screen reader speaks the role as well as the contents of the node. When this value is set, it is possible to override the default. This is useful because the set of roles is predefined. For example, it is possible to set the role of a node to be a button, but have the role description be arbitrary text.
- Default value:
- null
- Returns:
- the role description of this
Node
. - Since:
- JavaFX 8u40
- See Also:
-
setAccessibleText
Sets the value of theaccessibleText
property.- Property description:
- The accessible text for this
Node
.This property is used to set the text that the screen reader will speak. If a node normally speaks text, that text is overriden. For example, a button usually speaks using the text in the control but will no longer do this when this value is set.
- Default value:
- null
- Parameters:
value
- the value for theaccessibleText
property- Since:
- JavaFX 8u40
- See Also:
-
getAccessibleText
Gets the value of theaccessibleText
property.- Property description:
- The accessible text for this
Node
.This property is used to set the text that the screen reader will speak. If a node normally speaks text, that text is overriden. For example, a button usually speaks using the text in the control but will no longer do this when this value is set.
- Default value:
- null
- Returns:
- the value of the
accessibleText
property - Since:
- JavaFX 8u40
- See Also:
-
accessibleTextProperty
The accessible text for thisNode
.This property is used to set the text that the screen reader will speak. If a node normally speaks text, that text is overriden. For example, a button usually speaks using the text in the control but will no longer do this when this value is set.
- Default value:
- null
- Returns:
- accessible text for this
Node
. - Since:
- JavaFX 8u40
- See Also:
-
setAccessibleHelp
Sets the value of theaccessibleHelp
property.- Property description:
- The accessible help text for this
Node
.The help text provides a more detailed description of the accessible text for a node. By default, if the node has a tool tip, this text is used.
- Default value:
- null
- Parameters:
value
- the value for theaccessibleHelp
property- Since:
- JavaFX 8u40
- See Also:
-
getAccessibleHelp
Gets the value of theaccessibleHelp
property.- Property description:
- The accessible help text for this
Node
.The help text provides a more detailed description of the accessible text for a node. By default, if the node has a tool tip, this text is used.
- Default value:
- null
- Returns:
- the value of the
accessibleHelp
property - Since:
- JavaFX 8u40
- See Also:
-
accessibleHelpProperty
The accessible help text for thisNode
.The help text provides a more detailed description of the accessible text for a node. By default, if the node has a tool tip, this text is used.
- Default value:
- null
- Returns:
- the accessible help text for this
Node
. - Since:
- JavaFX 8u40
- See Also:
-
queryAccessibleAttribute
This method is called by the assistive technology to request the value for an attribute.This method is commonly overridden by subclasses to implement attributes that are required for a specific role.
If a particular attribute is not handled, the superclass implementation must be called.- Parameters:
attribute
- the requested attributeparameters
- optional list of parameters- Returns:
- the value for the requested attribute
- Since:
- JavaFX 8u40
- See Also:
-
executeAccessibleAction
This method is called by the assistive technology to request the action indicated by the argument should be executed.This method is commonly overridden by subclasses to implement action that are required for a specific role.
If a particular action is not handled, the superclass implementation must be called.- Parameters:
action
- the action to executeparameters
- optional list of parameters- Since:
- JavaFX 8u40
- See Also:
-
notifyAccessibleAttributeChanged
This method is called by the application to notify the assistive technology that the value for an attribute has changed.- Parameters:
attributes
- the attribute whose value has changed- Since:
- JavaFX 8u40
- See Also:
-