blob: 54bc05a589f0fe964db9d22b31b4335494b85f78 [file]
/*
Copyright 2001-2003,2006 The Apache Software Foundation
Licensed 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.Rectangle2D;
import java.awt.geom.RoundRectangle2D;
import org.apache.batik.dom.svg.AnimatedLiveAttributeValue;
import org.apache.batik.dom.svg.LiveAttributeException;
import org.apache.batik.dom.svg.SVGOMRectElement;
import org.apache.batik.gvt.ShapeNode;
import org.apache.batik.gvt.ShapePainter;
import org.w3c.dom.Element;
/**
* Bridge class for the <rect> element.
*
* @author <a href="mailto:tkormann@apache.org">Thierry Kormann</a>
* @version $Id$
*/
public class SVGRectElementBridge extends SVGShapeElementBridge {
/**
* Constructs a new bridge for the &lt;rect> element.
*/
public SVGRectElementBridge() {}
/**
* Returns 'rect'.
*/
public String getLocalName() {
return SVG_RECT_TAG;
}
/**
* Returns a new instance of this bridge.
*/
public Bridge getInstance() {
return new SVGRectElementBridge();
}
/**
* Constructs a rectangle 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) {
try {
SVGOMRectElement re = (SVGOMRectElement) e;
// 'x' attribute - default is 0
float x = re.getX().getAnimVal().getValue();
// 'y' attribute - default is 0
float y = re.getY().getAnimVal().getValue();
// 'width' attribute - required
float w = re.getWidth().getAnimVal().getValue();
// 'height' attribute - required
float h = re.getHeight().getAnimVal().getValue();
// 'rx' attribute - default is 0
float rx = re.getRx().getAnimVal().getValue();
if (rx > w / 2) {
rx = w / 2;
}
// 'ry' attribute - default is ry
float ry = re.getRy().getAnimVal().getValue();
if (ry > h / 2) {
ry = h / 2;
}
Shape shape;
if (rx == 0 || ry == 0) {
shape = new Rectangle2D.Float(x, y, w, h);
} else {
shape = new RoundRectangle2D.Float(x, y, w, h, rx*2, ry*2);
}
shapeNode.setShape(shape);
} catch (LiveAttributeException ex) {
throw new BridgeException
(ctx, ex.getElement(),
ex.isMissing() ? ERR_ATTRIBUTE_MISSING
: ERR_ATTRIBUTE_VALUE_MALFORMED,
new Object[] { ex.getAttributeName(), ex.getValue() });
}
}
// BridgeUpdateHandler implementation //////////////////////////////////
/**
* 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_X_ATTRIBUTE)
|| ln.equals(SVG_Y_ATTRIBUTE)
|| ln.equals(SVG_WIDTH_ATTRIBUTE)
|| ln.equals(SVG_HEIGHT_ATTRIBUTE)
|| ln.equals(SVG_RX_ATTRIBUTE)
|| ln.equals(SVG_RY_ATTRIBUTE)) {
buildShape(ctx, e, (ShapeNode)node);
handleGeometryChanged();
return;
}
}
super.handleAnimatedAttributeChanged(alav);
}
protected ShapePainter createShapePainter(BridgeContext ctx,
Element e,
ShapeNode shapeNode) {
Shape shape = shapeNode.getShape();
Rectangle2D r2d = shape.getBounds2D();
if ((r2d.getWidth() == 0) || (r2d.getHeight() == 0))
return null;
return super.createShapePainter(ctx, e, shapeNode);
}
}