Package | Description |
---|---|
javafx.scene |
Provides the core set of base
classes for the JavaFX Scene Graph API.
|
javafx.scene.control |
The JavaFX User Interface Controls (UI Controls or just Controls) are
specialized Nodes in the JavaFX Scenegraph especially suited for reuse in
many different application contexts.
|
Modifier and Type | Class and Description |
---|---|
class |
ImageCursor
A custom image representation of the mouse cursor.
|
Modifier and Type | Field and Description |
---|---|
static Cursor |
Cursor.CLOSED_HAND
A cursor with a hand that is closed, often used when
"grabbing", for example, when panning.
|
static Cursor |
Cursor.CROSSHAIR
The crosshair cursor type.
|
static Cursor |
Cursor.DEFAULT
The default cursor type (gets set if no cursor is defined).
|
static Cursor |
Cursor.DISAPPEAR
The disappear cursor type.
|
static Cursor |
Cursor.E_RESIZE
The east-resize cursor type.
|
static Cursor |
Cursor.H_RESIZE
The horizontal cursor type.
|
static Cursor |
Cursor.HAND
The hand cursor type, resembling a pointing hand, often
used to indicate that something can be clicked, such as
a hyperlink.
|
static Cursor |
Cursor.MOVE
The move cursor type.
|
static Cursor |
Cursor.N_RESIZE
The north-resize cursor type.
|
static Cursor |
Cursor.NE_RESIZE
The north-east-resize cursor type.
|
static Cursor |
Cursor.NONE
The none cursor type.
|
static Cursor |
Cursor.NW_RESIZE
The north-west-resize cursor type.
|
static Cursor |
Cursor.OPEN_HAND
A cursor with a hand which is open
|
static Cursor |
Cursor.S_RESIZE
The south-resize cursor type.
|
static Cursor |
Cursor.SE_RESIZE
The south-east-resize cursor type.
|
static Cursor |
Cursor.SW_RESIZE
The south-west-resize cursor type.
|
static Cursor |
Cursor.TEXT
The text cursor type.
|
static Cursor |
Cursor.V_RESIZE
The vertical cursor type.
|
static Cursor |
Cursor.W_RESIZE
The west-resize cursor type.
|
static Cursor |
Cursor.WAIT
The wait cursor type.
|
Modifier and Type | Method and Description |
---|---|
static Cursor |
Cursor.cursor(String identifier)
Returns a cursor for the specified identifier.
|
Cursor |
Node.getCursor()
Gets the value of the property cursor.
|
Cursor |
Scene.getCursor()
Gets the value of the property cursor.
|
protected Cursor |
Node.impl_cssGetCursorInitialValue()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<Cursor> |
Node.cursorProperty()
Defines the mouse cursor for this
Node and subnodes. |
ObjectProperty<Cursor> |
Scene.cursorProperty()
Defines the mouse cursor for this
Scene . |
Modifier and Type | Method and Description |
---|---|
void |
Node.setCursor(Cursor value)
Sets the value of the property cursor.
|
void |
Scene.setCursor(Cursor value)
Sets the value of the property cursor.
|
Modifier and Type | Method and Description |
---|---|
protected Cursor |
Hyperlink.impl_cssGetCursorInitialValue()
Deprecated.
|
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 2008, 2017, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.