/*
* Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
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.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.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
*/
public class Polyline extends Shape {
private final Path2D shape = new Path2D();
{
// 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.
*/
public Polyline() {
}
/**
* 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
*/
private final ObservableList points = new TrackableObservableList() {
@Override
protected void onChanged(Change c) {
impl_markDirty(DirtyBits.NODE_GEOMETRY);
impl_geomChanged();
}
};
/**
* Gets the coordinates of the {@code PolyLine} segments.
* @return An observable list of points constituting segments of this
* {@code PolyLine}
*/
public final ObservableList getPoints() { return points; }
/**
* @treatAsPrivate implementation detail
* @deprecated This is an internal API that is not intended for use and will be removed in the next version
*/
@Deprecated
protected NGNode impl_createPeer() {
return new NGPolyline();
}
/**
* @treatAsPrivate implementation detail
* @deprecated This is an internal API that is not intended for use and will be removed in the next version
*/
@Deprecated
public BaseBounds impl_computeGeomBounds(BaseBounds bounds, BaseTransform tx) {
if (impl_mode == NGShape.Mode.EMPTY || getPoints().size() <= 1) {
return bounds.makeEmpty();
}
if (getPoints().size() == 2) {
if (impl_mode == 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, impl_configShape());
}
}
/**
* @treatAsPrivate implementation detail
* @deprecated This is an internal API that is not intended for use and will be removed in the next version
*/
@Deprecated
@Override
public Path2D impl_configShape() {
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;
}
/**
* @treatAsPrivate implementation detail
* @deprecated This is an internal API that is not intended for use and will be removed in the next version
*/
@Deprecated
public void impl_updatePeer() {
super.impl_updatePeer();
if (impl_isDirty(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 = impl_getPeer();
peer.updatePolyline(points_array);
}
}
/***************************************************************************
* *
* 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.
* @treatAsPrivate Implementation detail
* @deprecated This is an internal API that is not intended for use and will be removed in the next version
*/
@Deprecated
protected Paint impl_cssGetFillInitialValue() {
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.
* @treatAsPrivate Implementation detail
* @deprecated This is an internal API that is not intended for use and will be removed in the next version
*/
@Deprecated
protected Paint impl_cssGetStrokeInitialValue() {
return Color.BLACK;
}
/**
* 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();
}
}