All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javafx.scene.shape.Polyline Maven / Gradle / Ivy

/*
 * Copyright (c) 2010, 2013, 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 javafx.collections.ListChangeListener.Change;
import javafx.collections.ObservableList;
import javafx.scene.paint.Color;

import com.sun.javafx.collections.TrackableObservableList;
import javafx.css.CssMetaData;
import com.sun.javafx.css.converters.PaintConverter;
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.PGNode;
import com.sun.javafx.sg.PGPolyline;
import com.sun.javafx.sg.PGShape.Mode;
import com.sun.javafx.tk.Toolkit;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import javafx.beans.value.WritableValue;
import javafx.css.StyleableProperty;
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 PGNode impl_createPGNode() { return Toolkit.getToolkit().createPGPolyline(); } PGPolyline getPGPolyline() { return (PGPolyline)impl_getPGNode(); } /** * @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 == Mode.EMPTY || getPoints().size() <= 1) { return bounds.makeEmpty(); } if (getPoints().size() == 2) { if (impl_mode == 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_updatePG() { super.impl_updatePG(); 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(); } getPGPolyline().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(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy