/*
* Copyright (c) 2010, 2015, 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.util.Logging;
import com.sun.javafx.geom.Path2D;
import com.sun.javafx.scene.DirtyBits;
import com.sun.javafx.sg.prism.NGNode;
import com.sun.javafx.sg.prism.NGSVGPath;
import com.sun.javafx.tk.Toolkit;
import javafx.beans.property.ObjectProperty;
import javafx.beans.property.ObjectPropertyBase;
import javafx.beans.property.StringProperty;
import javafx.beans.property.StringPropertyBase;
import javafx.scene.paint.Paint;
/**
* The {@code SVGPath} class represents a simple shape that is constructed by
* parsing SVG path data from a String.
*
import javafx.scene.shape.*;
SVGPath svg = new SVGPath();
svg.setContent("M40,60 C42,48 44,30 25,32");
* @since JavaFX 2.0
*/
public class SVGPath extends Shape {
/**
* Defines the filling rule constant for determining the interior of the path.
* The value must be one of the following constants:
* {@code FillRile.EVEN_ODD} or {@code FillRule.NON_ZERO}.
* The default value is {@code FillRule.NON_ZERO}.
*
* @defaultValue FillRule.NON_ZERO
*/
private ObjectProperty fillRule;
private Path2D path2d;
public final void setFillRule(FillRule value) {
if (fillRule != null || value != FillRule.NON_ZERO) {
fillRuleProperty().set(value);
}
}
public final FillRule getFillRule() {
return fillRule == null ? FillRule.NON_ZERO : fillRule.get();
}
public final ObjectProperty fillRuleProperty() {
if (fillRule == null) {
fillRule = new ObjectPropertyBase(FillRule.NON_ZERO) {
@Override
public void invalidated() {
impl_markDirty(DirtyBits.SHAPE_FILLRULE);
impl_geomChanged();
}
@Override
public Object getBean() {
return SVGPath.this;
}
@Override
public String getName() {
return "fillRule";
}
};
}
return fillRule;
}
/**
* Defines the SVG Path encoded string as specified at:
* http://www.w3.org/TR/SVG/paths.html.
*
* @defaultValue empty string
*/
private StringProperty content;
public final void setContent(String value) {
contentProperty().set(value);
}
public final String getContent() {
return content == null ? "" : content.get();
}
public final StringProperty contentProperty() {
if (content == null) {
content = new StringPropertyBase("") {
@Override
public void invalidated() {
impl_markDirty(DirtyBits.NODE_CONTENTS);
impl_geomChanged();
path2d = null;
}
@Override
public Object getBean() {
return SVGPath.this;
}
@Override
public String getName() {
return "content";
}
};
}
return content;
}
private Object svgPathObject;
/**
* @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
protected NGNode impl_createPeer() {
return new NGSVGPath();
}
/**
* @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() {
if (path2d == null) {
path2d = createSVGPath2D();
} else {
path2d.setWindingRule(getFillRule() == FillRule.NON_ZERO ?
Path2D.WIND_NON_ZERO : Path2D.WIND_EVEN_ODD);
}
return path2d;
}
/**
* @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 void impl_updatePeer() {
super.impl_updatePeer();
if (impl_isDirty(DirtyBits.SHAPE_FILLRULE) ||
impl_isDirty(DirtyBits.NODE_CONTENTS))
{
final NGSVGPath peer = impl_getPeer();
if (peer.acceptsPath2dOnUpdate()) {
if (svgPathObject == null) {
svgPathObject = new Path2D();
}
Path2D tempPathObject = (Path2D) svgPathObject;
tempPathObject.setTo(impl_configShape());
} else {
svgPathObject = createSVGPathObject();
}
peer.setContent(svgPathObject);
}
}
/**
* Returns a string representation of this {@code SVGPath} object.
* @return a string representation of this {@code SVGPath} object.
*/
@Override
public String toString() {
final StringBuilder sb = new StringBuilder("SVGPath[");
String id = getId();
if (id != null) {
sb.append("id=").append(id).append(", ");
}
sb.append("content=\"").append(getContent()).append("\"");
sb.append(", fill=").append(getFill());
sb.append(", fillRule=").append(getFillRule());
Paint stroke = getStroke();
if (stroke != null) {
sb.append(", stroke=").append(stroke);
sb.append(", strokeWidth=").append(getStrokeWidth());
}
return sb.append("]").toString();
}
private Path2D createSVGPath2D() {
try {
return Toolkit.getToolkit().createSVGPath2D(this);
} catch (final RuntimeException e) {
Logging.getJavaFXLogger().warning(
"Failed to configure svg path \"{0}\": {1}",
getContent(), e.getMessage());
return Toolkit.getToolkit().createSVGPath2D(new SVGPath());
}
}
private Object createSVGPathObject() {
try {
return Toolkit.getToolkit().createSVGPathObject(this);
} catch (final RuntimeException e) {
Logging.getJavaFXLogger().warning(
"Failed to configure svg path \"{0}\": {1}",
getContent(), e.getMessage());
return Toolkit.getToolkit().createSVGPathObject(new SVGPath());
}
}
}