/*
* Copyright (c) 2010, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package javafx.scene.shape;
import com.sun.javafx.collections.TrackableObservableList;
import com.sun.javafx.geom.BaseBounds;
import com.sun.javafx.geom.Path2D;
import com.sun.javafx.geom.transform.BaseTransform;
import com.sun.javafx.scene.DirtyBits;
import com.sun.javafx.scene.NodeHelper;
import com.sun.javafx.scene.shape.PolylineHelper;
import com.sun.javafx.scene.shape.ShapeHelper;
import com.sun.javafx.sg.prism.NGNode;
import com.sun.javafx.sg.prism.NGPolyline;
import com.sun.javafx.sg.prism.NGShape;
import javafx.collections.ListChangeListener.Change;
import javafx.collections.ObservableList;
import javafx.css.StyleableProperty;
import javafx.scene.Node;
import javafx.scene.paint.Color;
import javafx.scene.paint.Paint;
Creates a polyline, defined by the array of the segment points. The Polyline
class is similar to the Polygon class, except that it is not automatically
closed.
import javafx.scene.shape.*;
Polyline polyline = new Polyline();
polyline.getPoints().addAll(new Double[]{
0.0, 0.0,
20.0, 10.0,
10.0, 20.0 });
Since: JavaFX 2.0
/**
* Creates a polyline, defined by the array of the segment points. The Polyline
* class is similar to the Polygon class, except that it is not automatically
* closed.
*
<PRE>
import javafx.scene.shape.*;
Polyline polyline = new Polyline();
polyline.getPoints().addAll(new Double[]{
0.0, 0.0,
20.0, 10.0,
10.0, 20.0 });
</PRE>
* @since JavaFX 2.0
*/
public class Polyline extends Shape {
static {
PolylineHelper.setPolylineAccessor(new PolylineHelper.PolylineAccessor() {
@Override
public NGNode doCreatePeer(Node node) {
return ((Polyline) node).doCreatePeer();
}
@Override
public void doUpdatePeer(Node node) {
((Polyline) node).doUpdatePeer();
}
@Override
public BaseBounds doComputeGeomBounds(Node node,
BaseBounds bounds, BaseTransform tx) {
return ((Polyline) node).doComputeGeomBounds(bounds, tx);
}
@Override
public Paint doCssGetFillInitialValue(Shape shape) {
return ((Polyline) shape).doCssGetFillInitialValue();
}
@Override
public Paint doCssGetStrokeInitialValue(Shape shape) {
return ((Polyline) shape).doCssGetStrokeInitialValue();
}
@Override
public com.sun.javafx.geom.Shape doConfigShape(Shape shape) {
return ((Polyline) shape).doConfigShape();
}
});
}
private final Path2D shape = new Path2D();
{
// To initialize the class helper at the begining each constructor of this class
PolylineHelper.initHelper(this);
// overriding default values for fill and stroke
// Set through CSS property so that it appears to be a UA style rather
// that a USER style so that fill and stroke can still be set from CSS.
((StyleableProperty)fillProperty()).applyStyle(null, null);
((StyleableProperty)strokeProperty()).applyStyle(null, Color.BLACK);
}
Creates an empty instance of Polyline.
/**
* Creates an empty instance of Polyline.
*/
public Polyline() {
}
Creates a new instance of Polyline.
Params: - points – the coordinates of the polyline segments
/**
* Creates a new instance of Polyline.
* @param points the coordinates of the polyline segments
*/
public Polyline(double... points) {
if (points != null) {
for (double p : points) {
this.getPoints().add(p);
}
}
}
Defines the coordinates of the polyline segments.
@defaultValue empty
/**
* Defines the coordinates of the polyline segments.
*
* @defaultValue empty
*/
private final ObservableList<Double> points = new TrackableObservableList<Double>() {
@Override
protected void onChanged(Change<Double> c) {
NodeHelper.markDirty(Polyline.this, DirtyBits.NODE_GEOMETRY);
NodeHelper.geomChanged(Polyline.this);
}
};
Gets the coordinates of the PolyLine
segments. Returns: An observable list of points constituting segments of this PolyLine
/**
* Gets the coordinates of the {@code PolyLine} segments.
* @return An observable list of points constituting segments of this
* {@code PolyLine}
*/
public final ObservableList<Double> getPoints() { return points; }
/*
* Note: This method MUST only be called via its accessor method.
*/
private NGNode doCreatePeer() {
return new NGPolyline();
}
/*
* Note: This method MUST only be called via its accessor method.
*/
private BaseBounds doComputeGeomBounds(BaseBounds bounds, BaseTransform tx) {
if (getMode() == NGShape.Mode.EMPTY || getPoints().size() <= 1) {
return bounds.makeEmpty();
}
if (getPoints().size() == 2) {
if (getMode() == NGShape.Mode.FILL || getStrokeType() == StrokeType.INSIDE) {
return bounds.makeEmpty();
}
double upad = getStrokeWidth();
if (getStrokeType() == StrokeType.CENTERED) {
upad /= 2.0f;
}
return computeBounds(bounds, tx, upad, 0.5f,
getPoints().get(0), getPoints().get(1), 0.0f, 0.0f);
} else {
return computeShapeBounds(bounds, tx, ShapeHelper.configShape(this));
}
}
/*
* Note: This method MUST only be called via its accessor method.
*/
private Path2D doConfigShape() {
double p1 = getPoints().get(0);
double p2 = getPoints().get(1);
shape.reset();
shape.moveTo((float)p1, (float)p2);
final int numValidPoints = getPoints().size() & ~1;
for (int i = 2; i < numValidPoints; i += 2) {
p1 = getPoints().get(i); p2 = getPoints().get(i+1);
shape.lineTo((float)p1, (float)p2);
}
return shape;
}
/*
* Note: This method MUST only be called via its accessor method.
*/
private void doUpdatePeer() {
if (NodeHelper.isDirty(this, DirtyBits.NODE_GEOMETRY)) {
final int numValidPoints = getPoints().size() & ~1;
float points_array[] = new float[numValidPoints];
for (int i = 0; i < numValidPoints; i++) {
points_array[i] = (float)getPoints().get(i).doubleValue();
}
final NGPolyline peer = NodeHelper.getPeer(this);
peer.updatePolyline(points_array);
}
}
*
Stylesheet Handling *
*
/***************************************************************************
* *
* Stylesheet Handling *
* *
**************************************************************************/
/*
* Some sub-class of Shape, such as {@link Line}, override the
* default value for the {@link Shape#fill} property. This allows
* CSS to get the correct initial value.
*
* Note: This method MUST only be called via its accessor method.
*/
private Paint doCssGetFillInitialValue() {
return null;
}
/*
* Some sub-class of Shape, such as {@link Line}, override the
* default value for the {@link Shape#stroke} property. This allows
* CSS to get the correct initial value.
*
* Note: This method MUST only be called via its accessor method.
*/
private Paint doCssGetStrokeInitialValue() {
return Color.BLACK;
}
Returns a string representation of this Polyline
object. Returns: a string representation of this Polyline
object.
/**
* Returns a string representation of this {@code Polyline} object.
* @return a string representation of this {@code Polyline} object.
*/
@Override
public String toString() {
final StringBuilder sb = new StringBuilder("Polyline[");
String id = getId();
if (id != null) {
sb.append("id=").append(id).append(", ");
}
sb.append("points=").append(getPoints());
sb.append(", fill=").append(getFill());
Paint stroke = getStroke();
if (stroke != null) {
sb.append(", stroke=").append(stroke);
sb.append(", strokeWidth=").append(getStrokeWidth());
}
return sb.append("]").toString();
}
}