Package | Description |
---|---|
com.sun.javafx.scene.control.skin | |
com.sun.javafx.scene.shape | |
com.sun.javafx.scene.text | |
com.sun.javafx.text | |
com.sun.javafx.tk | |
com.sun.javafx.tk.quantum | |
javafx.scene.shape |
Provides the set of 2D classes for defining and performing operations on
objects related to two-dimensional geometry.
|
javafx.scene.text |
Provides the set of classes for fonts and renderable Text Node.
|
Modifier and Type | Method and Description |
---|---|
protected abstract PathElement[] |
TextInputControlSkin.getRangeShape(int start,
int end) |
protected PathElement[] |
TextFieldSkin.getRangeShape(int start,
int end) |
protected PathElement[] |
TextAreaSkin.getRangeShape(int start,
int end) |
protected abstract PathElement[] |
TextInputControlSkin.getUnderlineShape(int start,
int end) |
protected PathElement[] |
TextFieldSkin.getUnderlineShape(int start,
int end) |
protected PathElement[] |
TextAreaSkin.getUnderlineShape(int start,
int end) |
Modifier and Type | Method and Description |
---|---|
static Path2D |
PathUtils.configShape(java.util.Collection<PathElement> pathElements,
boolean evenOddFillRule) |
Modifier and Type | Method and Description |
---|---|
PathElement[] |
TextLayout.getCaretShape(int offset,
boolean isLeading,
float x,
float y) |
PathElement[] |
TextLayout.getRange(int start,
int end,
int type,
float x,
float y) |
Modifier and Type | Method and Description |
---|---|
PathElement[] |
PrismTextLayout.getCaretShape(int offset,
boolean isLeading,
float x,
float y) |
PathElement[] |
PrismTextLayout.getRange(int start,
int end,
int type,
float x,
float y) |
Modifier and Type | Method and Description |
---|---|
PathElement[] |
DummyToolkit.convertShapeToFXPath(java.lang.Object shape) |
abstract PathElement[] |
Toolkit.convertShapeToFXPath(java.lang.Object shape) |
Modifier and Type | Method and Description |
---|---|
PathElement[] |
QuantumToolkit.convertShapeToFXPath(java.lang.Object shape) |
Modifier and Type | Class and Description |
---|---|
class |
ArcTo
A path element that forms an arc from the previous coordinates
to the specified x and y coordinates using the specified radius.
|
class |
ClosePath
A path element which closes the current path.
|
class |
CubicCurveTo
Creates a curved path element, defined by three new points,
by drawing a Cubic Bézier curve that intersects both the current coordinates
and the specified coordinates
(x,y) , using the
specified points (controlX1,controlY1) and (controlX2,controlY2)
as Bézier control points. |
class |
HLineTo
Creates a horizontal line path element from the current point to x.
|
class |
LineTo
Creates a line path element by drawing a straight line
from the current coordinate to the new coordinates.
|
class |
MoveTo
Creates an addition to the path by moving to the specified
coordinates.
|
class |
QuadCurveTo
Creates a curved path element, defined by two new points,
by drawing a Quadratic Bézier curve that intersects both the current coordinates
and the specified coordinates
(x, y) ,
using the specified point (controlX, controlY)
as a Bézier control point. |
class |
VLineTo
Creates a vertical line path element from the current point to y.
|
Modifier and Type | Field and Description |
---|---|
private java.util.Collection<? extends PathElement> |
PathBuilder.elements
Deprecated.
|
private ObservableList<PathElement> |
Path.elements
Defines the array of path elements of this path.
|
Modifier and Type | Method and Description |
---|---|
ObservableList<PathElement> |
Path.getElements()
Gets observable list of path elements of this path.
|
Modifier and Type | Method and Description |
---|---|
void |
PathElementBuilder.applyTo(PathElement x)
Deprecated.
|
B |
PathBuilder.elements(PathElement... x)
Deprecated.
Add the given items to the List of items in the
elements property for the instance constructed by this builder. |
Modifier and Type | Method and Description |
---|---|
B |
PathBuilder.elements(java.util.Collection<? extends PathElement> x)
Deprecated.
Add the given items to the List of items in the
elements property for the instance constructed by this builder. |
Constructor and Description |
---|
Path(PathElement... elements)
Creates a new instance of Path
|
Constructor and Description |
---|
Path(java.util.Collection<? extends PathElement> elements)
Creates new instance of Path
|
Modifier and Type | Field and Description |
---|---|
private static PathElement[] |
Text.EMPTY_PATH_ELEMENT_ARRAY |
Modifier and Type | Method and Description |
---|---|
PathElement[] |
Text.getImpl_caretShape()
Deprecated.
This is an internal API that is not intended
for use and will be removed in the next version
|
PathElement[] |
Text.getImpl_selectionShape()
Deprecated.
This is an internal API that is not intended
for use and will be removed in the next version
|
private PathElement[] |
Text.getRange(int start,
int end,
int type) |
PathElement[] |
Text.impl_getRangeShape(int start,
int end)
Deprecated.
This is an internal API that is not intended
for use and will be removed in the next version
|
PathElement[] |
Text.impl_getUnderlineShape(int start,
int end)
Deprecated.
This is an internal API that is not intended
for use and will be removed in the next version
|