Class Cursor
java.lang.Object
javafx.scene.Cursor
- Direct Known Subclasses:
ImageCursor
A class to encapsulate the bitmap representation of the mouse cursor.
- Since:
- JavaFX 2.0
-
Field Summary
Modifier and TypeFieldDescriptionstatic final Cursor
A cursor with a hand that is closed, often used when "grabbing", for example, when panning.static final Cursor
The crosshair cursor type.static final Cursor
The default cursor type (gets set if no cursor is defined).static final Cursor
The disappear cursor type.static final Cursor
The east-resize cursor type.static final Cursor
The horizontal cursor type.static final Cursor
The hand cursor type, resembling a pointing hand, often used to indicate that something can be clicked, such as a hyperlink.static final Cursor
The move cursor type.static final Cursor
The north-resize cursor type.static final Cursor
The north-east-resize cursor type.static final Cursor
The none cursor type.static final Cursor
The north-west-resize cursor type.static final Cursor
A cursor with a hand which is openstatic final Cursor
The south-resize cursor type.static final Cursor
The south-east-resize cursor type.static final Cursor
The south-west-resize cursor type.static final Cursor
The text cursor type.static final Cursor
The vertical cursor type.static final Cursor
The west-resize cursor type.static final Cursor
The wait cursor type. -
Method Summary
-
Field Details
-
DEFAULT
The default cursor type (gets set if no cursor is defined). -
CROSSHAIR
The crosshair cursor type. -
TEXT
The text cursor type. -
WAIT
The wait cursor type. -
SW_RESIZE
The south-west-resize cursor type. -
SE_RESIZE
The south-east-resize cursor type. -
NW_RESIZE
The north-west-resize cursor type. -
NE_RESIZE
The north-east-resize cursor type. -
N_RESIZE
The north-resize cursor type. -
S_RESIZE
The south-resize cursor type. -
W_RESIZE
The west-resize cursor type. -
E_RESIZE
The east-resize cursor type. -
OPEN_HAND
A cursor with a hand which is open -
CLOSED_HAND
A cursor with a hand that is closed, often used when "grabbing", for example, when panning. -
HAND
The hand cursor type, resembling a pointing hand, often used to indicate that something can be clicked, such as a hyperlink. -
MOVE
The move cursor type. -
DISAPPEAR
The disappear cursor type. This is often used when dragging something, such that when the user releases the mouse, the item will disappear. On Mac, this is used when dragging items off a toolbar or in other such situations. -
H_RESIZE
The horizontal cursor type. -
V_RESIZE
The vertical cursor type. -
NONE
The none cursor type. On platforms that don't support custom cursors, this will be the same asDEFAULT
.
-
-
Method Details
-
toString
-
cursor
Returns a cursor for the specified identifier. The identifier can be either a name of some standard cursor or a valid URL string. If the identifier names a standard cursor the corresponding cursor is returned. In the case of a URL string, the method returns a newImageCursor
created for that URL.- Parameters:
identifier
- the cursor identifier- Returns:
- the cursor for the identifier
- Throws:
IllegalArgumentException
- if the cursor identifier is not a valid URL string nor any standard cursor name
-