/*

   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

 */
package org.apache.batik.bridge;

import java.awt.Shape;
import java.awt.geom.GeneralPath;

import org.apache.batik.anim.dom.AnimatedLiveAttributeValue;
import org.apache.batik.anim.dom.SVGOMAnimatedPoints;
import org.apache.batik.anim.dom.SVGOMPolygonElement;
import org.apache.batik.css.engine.SVGCSSEngine;
import org.apache.batik.dom.svg.LiveAttributeException;
import org.apache.batik.gvt.ShapeNode;
import org.apache.batik.parser.AWTPolygonProducer;

import org.w3c.dom.Element;
import org.w3c.dom.svg.SVGPoint;
import org.w3c.dom.svg.SVGPointList;

Bridge class for the <polygon> element.
Author:Thierry Kormann
Version:$Id: SVGPolygonElementBridge.java 1805408 2017-08-18 12:21:52Z ssteiner $
/** * Bridge class for the &lt;polygon&gt; element. * * @author <a href="mailto:tkormann@apache.org">Thierry Kormann</a> * @version $Id: SVGPolygonElementBridge.java 1805408 2017-08-18 12:21:52Z ssteiner $ */
public class SVGPolygonElementBridge extends SVGDecoratedShapeElementBridge {
default shape for the update of 'points' when the value is the empty string.
/** * default shape for the update of 'points' when * the value is the empty string. */
protected static final Shape DEFAULT_SHAPE = new GeneralPath();
Constructs a new bridge for the <polygon> element.
/** * Constructs a new bridge for the &lt;polygon&gt; element. */
public SVGPolygonElementBridge() {}
Returns 'polygon'.
/** * Returns 'polygon'. */
public String getLocalName() { return SVG_POLYGON_TAG; }
Returns a new instance of this bridge.
/** * Returns a new instance of this bridge. */
public Bridge getInstance() { return new SVGPolygonElementBridge(); }
Constructs a polygon according to the specified parameters.
Params:
  • ctx – the bridge context to use
  • e – the element that describes a rect element
  • shapeNode – the shape node to initialize
/** * Constructs a polygon according to the specified parameters. * * @param ctx the bridge context to use * @param e the element that describes a rect element * @param shapeNode the shape node to initialize */
protected void buildShape(BridgeContext ctx, Element e, ShapeNode shapeNode) { SVGOMPolygonElement pe = (SVGOMPolygonElement) e; try { SVGOMAnimatedPoints _points = pe.getSVGOMAnimatedPoints(); _points.check(); SVGPointList pl = _points.getAnimatedPoints(); int size = pl.getNumberOfItems(); if (size == 0) { shapeNode.setShape(DEFAULT_SHAPE); } else { AWTPolygonProducer app = new AWTPolygonProducer(); app.setWindingRule(CSSUtilities.convertFillRule(e)); app.startPoints(); for (int i = 0; i < size; i++) { SVGPoint p = pl.getItem(i); app.point(p.getX(), p.getY()); } app.endPoints(); shapeNode.setShape(app.getShape()); } } catch (LiveAttributeException ex) { throw new BridgeException(ctx, ex); } } // BridgeUpdateHandler implementation //////////////////////////////////
Invoked when the animated value of an animatable attribute has changed.
/** * Invoked when the animated value of an animatable attribute has changed. */
public void handleAnimatedAttributeChanged (AnimatedLiveAttributeValue alav) { if (alav.getNamespaceURI() == null) { String ln = alav.getLocalName(); if (ln.equals(SVG_POINTS_ATTRIBUTE)) { buildShape(ctx, e, (ShapeNode)node); handleGeometryChanged(); return; } } super.handleAnimatedAttributeChanged(alav); } protected void handleCSSPropertyChanged(int property) { switch(property) { case SVGCSSEngine.FILL_RULE_INDEX: buildShape(ctx, e, (ShapeNode) node); handleGeometryChanged(); break; default: super.handleCSSPropertyChanged(property); } } }