Package | Description |
---|---|
com.sun.javafx.css.converters | |
com.sun.javafx.scene.control.skin | |
javafx.animation |
Provides the set of classes for ease of use transition based animations.
|
javafx.scene.layout |
Provides classes to support user interface layout.
|
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 | Field and Description |
---|---|
private static java.util.Map<ParsedValue<java.lang.String,Shape>,Shape> |
ShapeConverter.cache |
private static java.util.Map<ParsedValue<java.lang.String,Shape>,Shape> |
ShapeConverter.cache |
Modifier and Type | Method and Description |
---|---|
Shape |
ShapeConverter.convert(ParsedValue<java.lang.String,Shape> value,
Font font) |
Modifier and Type | Method and Description |
---|---|
static StyleConverter<java.lang.String,Shape> |
ShapeConverter.getInstance() |
Modifier and Type | Method and Description |
---|---|
Shape |
ShapeConverter.convert(ParsedValue<java.lang.String,Shape> value,
Font font) |
Modifier and Type | Class and Description |
---|---|
class |
LabeledText
LabeledText allows the Text to be styled by the CSS properties of Labeled
that are meant to style the textual component of the Labeled.
|
Modifier and Type | Field and Description |
---|---|
private java.util.List<Shape> |
TextInputControlSkin.imattrs |
Modifier and Type | Field and Description |
---|---|
private Shape |
FillTransition.cachedShape |
private Shape |
StrokeTransition.cachedShape |
private static Shape |
PathTransition.DEFAULT_PATH |
private static Shape |
FillTransition.DEFAULT_SHAPE |
private static Shape |
StrokeTransition.DEFAULT_SHAPE |
private Shape |
PathTransitionBuilder.path
Deprecated.
|
private Shape |
StrokeTransitionBuilder.shape
Deprecated.
|
private Shape |
FillTransitionBuilder.shape
Deprecated.
|
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<Shape> |
PathTransition.path
The shape on which outline the node should be animated.
|
private ObjectProperty<Shape> |
FillTransition.shape
The target shape of this
FillTransition . |
private ObjectProperty<Shape> |
StrokeTransition.shape
The target shape of this
StrokeTransition . |
Modifier and Type | Method and Description |
---|---|
Shape |
PathTransition.getPath() |
Shape |
FillTransition.getShape() |
Shape |
StrokeTransition.getShape() |
private Shape |
FillTransition.getTargetShape() |
private Shape |
StrokeTransition.getTargetShape() |
Modifier and Type | Method and Description |
---|---|
ObjectProperty<Shape> |
PathTransition.pathProperty() |
ObjectProperty<Shape> |
FillTransition.shapeProperty() |
ObjectProperty<Shape> |
StrokeTransition.shapeProperty() |
Modifier and Type | Method and Description |
---|---|
PathTransitionBuilder |
PathTransitionBuilder.path(Shape x)
Deprecated.
Set the value of the
path property for the instance constructed by this builder. |
void |
PathTransition.setPath(Shape value) |
void |
FillTransition.setShape(Shape value) |
void |
StrokeTransition.setShape(Shape value) |
StrokeTransitionBuilder |
StrokeTransitionBuilder.shape(Shape x)
Deprecated.
Set the value of the
shape property for the instance constructed by this builder. |
FillTransitionBuilder |
FillTransitionBuilder.shape(Shape x)
Deprecated.
Set the value of the
shape property for the instance constructed by this builder. |
Constructor and Description |
---|
FillTransition(Duration duration,
Shape shape)
The constructor of
FillTransition |
FillTransition(Duration duration,
Shape shape,
Color fromValue,
Color toValue)
The constructor of
FillTransition |
PathTransition(Duration duration,
Shape path)
The constructor of
PathTransition . |
PathTransition(Duration duration,
Shape path,
Node node)
The constructor of
PathTransition . |
StrokeTransition(Duration duration,
Shape shape)
The constructor of
StrokeTransition |
StrokeTransition(Duration duration,
Shape shape,
Color fromValue,
Color toValue)
The constructor of
StrokeTransition |
Modifier and Type | Field and Description |
---|---|
private Shape |
Region._shape |
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<Shape> |
Region.shape
When specified, the
shape will cause the region to be
rendered as the specified shape rather than as a rounded rectangle. |
private static CssMetaData<Region,Shape> |
Region.StyleableProperties.SHAPE |
Modifier and Type | Method and Description |
---|---|
Shape |
Region.getShape() |
Modifier and Type | Method and Description |
---|---|
CssMetaData<Region,Shape> |
Region.ShapeProperty.getCssMetaData() |
ObjectProperty<Shape> |
Region.shapeProperty() |
Modifier and Type | Method and Description |
---|---|
void |
Region.setShape(Shape value) |
Modifier and Type | Class and Description |
---|---|
class |
Arc
The
Arc class represents a 2D arc object, defined by a center point,
start angle (in degrees), angular extent (length of the arc in degrees),
and an arc type (ArcType.OPEN , ArcType.CHORD ,
or ArcType.ROUND ). |
class |
Circle
The
Circle class creates a new circle
with the specified radius and center location measured in pixels
Example usage. |
class |
CubicCurve
The
CubiCurve class defines a cubic Bézier parametric curve segment
in (x,y) coordinate space. |
class |
Ellipse
The
Ellipse class creates a new ellipse
with the specified size and location in pixels |
class |
Line
This Line represents a line segment in
(x,y)
coordinate space. |
class |
Path
The
Path class represents a simple shape
and provides facilities required for basic construction
and management of a geometric path. |
class |
Polygon
Creates a polygon, defined by an array of x,y coordinates.
|
class |
Polyline
Creates a polyline, defined by the array of the segment points.
|
class |
QuadCurve
The
Quadcurve class defines a quadratic Bézier parametric curve
segment in (x,y) coordinate space. |
class |
Rectangle
The
Rectangle class defines a rectangle
with the specified size and location. |
class |
SVGPath
The
SVGPath class represents a simple shape that is constructed by
parsing SVG path data from a String. |
Modifier and Type | Field and Description |
---|---|
private static CssMetaData<Shape,Paint> |
Shape.StyleableProperties.FILL |
private static CssMetaData<Shape,java.lang.Boolean> |
Shape.StyleableProperties.SMOOTH |
private static CssMetaData<Shape,Paint> |
Shape.StyleableProperties.STROKE |
private static CssMetaData<Shape,java.lang.Number[]> |
Shape.StyleableProperties.STROKE_DASH_ARRAY |
private static CssMetaData<Shape,java.lang.Number> |
Shape.StyleableProperties.STROKE_DASH_OFFSET |
private static CssMetaData<Shape,StrokeLineCap> |
Shape.StyleableProperties.STROKE_LINE_CAP |
private static CssMetaData<Shape,StrokeLineJoin> |
Shape.StyleableProperties.STROKE_LINE_JOIN |
private static CssMetaData<Shape,java.lang.Number> |
Shape.StyleableProperties.STROKE_MITER_LIMIT |
private static CssMetaData<Shape,StrokeType> |
Shape.StyleableProperties.STROKE_TYPE |
private static CssMetaData<Shape,java.lang.Number> |
Shape.StyleableProperties.STROKE_WIDTH |
Modifier and Type | Method and Description |
---|---|
static Shape |
Shape.intersect(Shape shape1,
Shape shape2)
Returns a new
Shape which is created as an intersection of the
specified input shapes. |
static Shape |
Shape.subtract(Shape shape1,
Shape shape2)
Returns a new
Shape which is created by subtracting the specified
second shape from the first shape. |
static Shape |
Shape.union(Shape shape1,
Shape shape2)
Returns a new
Shape which is created as a union of the specified
input shapes. |
Modifier and Type | Method and Description |
---|---|
void |
ShapeBuilder.applyTo(Shape x)
Deprecated.
|
static Shape |
Shape.intersect(Shape shape1,
Shape shape2)
Returns a new
Shape which is created as an intersection of the
specified input shapes. |
static Shape |
Shape.subtract(Shape shape1,
Shape shape2)
Returns a new
Shape which is created by subtracting the specified
second shape from the first shape. |
static Shape |
Shape.union(Shape shape1,
Shape shape2)
Returns a new
Shape which is created as a union of the specified
input shapes. |
Modifier and Type | Method and Description |
---|---|
private void |
Shape.StrokeAttributes.invalidated(CssMetaData<Shape,?> propertyCssKey) |
Modifier and Type | Class and Description |
---|---|
class |
Text
The
Text class defines a node that displays a text. |