You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by ke...@locus.apache.org on 2000/08/14 03:37:10 UTC

cvs commit: xml-fop/src/org/apache/fop/svg SVGStringList.java A.java SVGElementMapping.java SVGPropertyListMapping.java Switch.java

keiron      00/08/13 18:37:10

  Modified:    src/org/apache/fop/svg A.java SVGElementMapping.java
                        SVGPropertyListMapping.java Switch.java
  Added:       src/org/apache/fop/svg SVGStringList.java
  Log:
  support for switch and new namespace
  
  Revision  Changes    Path
  1.2       +23 -3     xml-fop/src/org/apache/fop/svg/A.java
  
  Index: A.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/svg/A.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- A.java	2000/07/11 05:09:27	1.1
  +++ A.java	2000/08/14 01:37:09	1.2
  @@ -1,4 +1,4 @@
  -/*-- $Id: A.java,v 1.1 2000/07/11 05:09:27 keiron Exp $ -- 
  +/*-- $Id: A.java,v 1.2 2000/08/14 01:37:09 keiron Exp $ -- 
   
    ============================================================================
                      The Apache Software License, Version 1.1
  @@ -63,7 +63,7 @@
    * class representing svg:a pseudo flow object.
    *
    */
  -public class A extends FObj {
  +public class A extends FObj implements GraphicsCreator {
   
   	/**
   	 * inner class for making A objects.
  @@ -104,6 +104,26 @@
   		this.name = "svg:a";
   	}
   
  +	public GraphicImpl createGraphic()
  +	{
  +		String rf = this.properties.get("xlink:href").getString();
  +		SVGAElementImpl graphic;
  +		graphic = new SVGAElementImpl();
  +//		graphic.setTarget(new SVGAnimatedStringImpl(rf));
  +
  +		int numChildren = this.children.size();
  +		for (int i = 0; i < numChildren; i++) {
  +			FONode child = (FONode) children.elementAt(i);
  +			if(child instanceof GraphicsCreator) {
  +				GraphicImpl impl = ((GraphicsCreator)child).createGraphic();
  +				graphic.appendChild((GraphicElement)impl);
  +			} else if(child instanceof Defs) {
  +			}
  +		}
  +
  +		return graphic;
  +	}
  +
   	/**
   	 * layout this formatting object.
   	 *
  @@ -116,7 +136,7 @@
   		/* if the area this is being put into is an SVGArea */
   		if (area instanceof SVGArea) {
   			/* add a line to the SVGArea */
  -//			((SVGArea) area).addGraphic(new AGraphic(x1, y1, x2, y2));
  +			((SVGArea) area).addGraphic(createGraphic());
   		} else {
   			/* otherwise generate a warning */
   			System.err.println("WARNING: svg:a outside svg:svg");
  
  
  
  1.8       +4 -4      xml-fop/src/org/apache/fop/svg/SVGElementMapping.java
  
  Index: SVGElementMapping.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/svg/SVGElementMapping.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- SVGElementMapping.java	2000/07/18 05:37:10	1.7
  +++ SVGElementMapping.java	2000/08/14 01:37:10	1.8
  @@ -1,4 +1,4 @@
  -/*-- $Id: SVGElementMapping.java,v 1.7 2000/07/18 05:37:10 keiron Exp $ -- 
  +/*-- $Id: SVGElementMapping.java,v 1.8 2000/08/14 01:37:10 keiron Exp $ -- 
   
    ============================================================================
                      The Apache Software License, Version 1.1
  @@ -56,7 +56,7 @@
   public class SVGElementMapping implements ElementMapping {
   
   	public void addToBuilder(FOTreeBuilder builder) {
  -		String uri = "http://www.w3.org/TR/2000/WD-SVG-20000629/DTD/svg-20000629.dtd";
  +		String uri = "http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.dtd";
   		builder.addMapping(uri, "svg", SVG.maker());
   		builder.addMapping(uri, "rect", Rect.maker());
   		builder.addMapping(uri, "line", Line.maker());
  @@ -83,13 +83,13 @@
   		builder.addMapping(uri, "linearGradient", LinearGradient.maker());
   		builder.addMapping(uri, "radialGradient", RadialGradient.maker());
   		builder.addMapping(uri, "stop", Stop.maker());
  +		builder.addMapping(uri, "a", A.maker());
  +		builder.addMapping(uri, "switch", Switch.maker());
   
   // elements below will not work
  -		builder.addMapping(uri, "a", A.maker());
   		builder.addMapping(uri, "pattern", Pattern.maker());
   
   		builder.addMapping(uri, "marker", Marker.maker());
  -		builder.addMapping(uri, "switch", Switch.maker());
   		builder.addMapping(uri, "animate", Animate.maker());
   		builder.addMapping(uri, "altGlyph", AltGlyph.maker());
   		builder.addMapping(uri, "font", Font.maker());
  
  
  
  1.4       +6 -3      xml-fop/src/org/apache/fop/svg/SVGPropertyListMapping.java
  
  Index: SVGPropertyListMapping.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/svg/SVGPropertyListMapping.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- SVGPropertyListMapping.java	2000/08/09 06:38:41	1.3
  +++ SVGPropertyListMapping.java	2000/08/14 01:37:10	1.4
  @@ -1,4 +1,4 @@
  -/*-- $Id: SVGPropertyListMapping.java,v 1.3 2000/08/09 06:38:41 keiron Exp $ -- 
  +/*-- $Id: SVGPropertyListMapping.java,v 1.4 2000/08/14 01:37:10 keiron Exp $ -- 
   
    ============================================================================
                      The Apache Software License, Version 1.1
  @@ -60,7 +60,7 @@
   
       public void addToBuilder(FOTreeBuilder builder) {
   
  -	String uri = "http://www.w3.org/TR/2000/WD-SVG-20000629/DTD/svg-20000629.dtd";
  +	String uri = "http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.dtd";
   	Hashtable propertyTable = new Hashtable();
   		propertyTable.put("height",SVGLengthProperty.maker());
   		propertyTable.put("width",SVGLengthProperty.maker());
  @@ -98,9 +98,12 @@
   	propertyTable.put("font-style",FontStyle.maker());
   	propertyTable.put("font-weight",FontWeight.maker());
   	propertyTable.put("font-size",FontSize.maker());
  -//		propertyTable.put("id", SVGStringProperty.maker());
  +		propertyTable.put("requiredFeatures", RequiredFeatures.maker());
  +		propertyTable.put("requiredExtensions", RequiredExtensions.maker());
  +		propertyTable.put("systemLanguage", SystemLanguage.maker());
   
   	propertyTable.put("id",Id.maker());			// attribute for objects
  +	propertyTable.put("class",ElementClass.maker()); // class for styling
   
   	builder.addPropertyList(uri, propertyTable);
   	propertyTable = new Hashtable();
  
  
  
  1.2       +65 -6     xml-fop/src/org/apache/fop/svg/Switch.java
  
  Index: Switch.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/svg/Switch.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Switch.java	2000/07/11 05:09:40	1.1
  +++ Switch.java	2000/08/14 01:37:10	1.2
  @@ -1,4 +1,4 @@
  -/*-- $Id: Switch.java,v 1.1 2000/07/11 05:09:40 keiron Exp $ -- 
  +/*-- $Id: Switch.java,v 1.2 2000/08/14 01:37:10 keiron Exp $ -- 
   
    ============================================================================
                      The Apache Software License, Version 1.1
  @@ -59,10 +59,13 @@
   
   import org.apache.fop.dom.svg.*;
   import org.apache.fop.dom.svg.SVGArea;
  +
  +import org.w3c.dom.svg.*;
  +
   /**
    *
    */
  -public class Switch extends FObj {
  +public class Switch extends FObj implements GraphicsCreator {
   
   	/**
   	 * inner class for making Line objects.
  @@ -103,6 +106,65 @@
   		this.name = "svg:switch";
   	}
   
  +	public GraphicImpl createGraphic()
  +	{
  +		/*
  +		 * There are two options
  +		 * 1) add all children and select the correct one when rendering
  +		 * 2) select the correct one now and return it rather than a switch element
  +		 * Since renderers may have different ideas, leave it up to the renderer
  +		 * to select the correct one.
  +		 */
  +		String rf = this.properties.get("requiredFeatures").getString();
  +		String re = this.properties.get("requiredExtensions").getString();
  +		String sl = this.properties.get("systemLanguage").getString();
  +		SVGList strlist;
  +		GraphicElement graphic;
  +		graphic = new SVGSwitchElementImpl();
  +		if(!rf.equals("notpresent")) {
  +    		strlist = new SVGStringList(rf);
  +			graphic.setRequiredFeatures(strlist);
  +    	}
  +		if(!re.equals("notpresent")) {
  +			strlist = new SVGStringList(re);
  +			graphic.setRequiredExtensions(strlist);
  +		}
  +		if(!sl.equals("notpresent")) {
  +			strlist = new SVGStringList(sl);
  +			graphic.setSystemLanguage(strlist);
  +		}
  +
  +		int numChildren = this.children.size();
  +		for (int i = 0; i < numChildren; i++) {
  +			FONode child = (FONode) children.elementAt(i);
  +			if(child instanceof GraphicsCreator) {
  +				GraphicImpl impl = ((GraphicsCreator)child).createGraphic();
  +				if(impl instanceof SVGTests) {
  +					SVGTests testable = (SVGTests)impl;
  +					rf = child.getProperty("requiredFeatures").getString();
  +					re = child.getProperty("requiredExtensions").getString();
  +					sl = child.getProperty("systemLanguage").getString();
  +					if(!rf.equals("notpresent")) {
  +						strlist = new SVGStringList(rf);
  +						testable.setRequiredFeatures(strlist);
  +					}
  +					if(!re.equals("notpresent")) {
  +						strlist = new SVGStringList(re);
  +						testable.setRequiredExtensions(strlist);
  +					}
  +					if(!sl.equals("notpresent")) {
  +						strlist = new SVGStringList(sl);
  +						testable.setSystemLanguage(strlist);
  +					}
  +					graphic.appendChild((GraphicElement)impl);
  +				}
  +			} else if(child instanceof Defs) {
  +			}
  +		}
  +
  +		return graphic;
  +	}
  +
   	/**
   	 * layout this formatting object.
   	 *
  @@ -113,13 +175,10 @@
   	public Status layout(Area area) throws FOPException {
   
   		/* retrieve properties */
  -		String sr = this.properties.get("system-required").getString();
  -		String sl = this.properties.get("system-language").getString();
  -		
   		/* if the area this is being put into is an SVGArea */
   		if (area instanceof SVGArea) {
   			/* add a line to the SVGArea */
  -			((SVGArea) area).addGraphic(new SVGSwitchElementImpl(sr, sl));
  +			((SVGArea) area).addGraphic(createGraphic());
   		} else {
   			/* otherwise generate a warning */
   			System.err.println("WARNING: svg:switch outside svg:svg");
  
  
  
  1.1                  xml-fop/src/org/apache/fop/svg/SVGStringList.java
  
  Index: SVGStringList.java
  ===================================================================
  /*-- $Id: SVGStringList.java,v 1.1 2000/08/14 01:37:10 keiron Exp $ -- 
  
   ============================================================================
                     The Apache Software License, Version 1.1
   ============================================================================
   
      Copyright (C) 1999 The Apache Software Foundation. All rights reserved.
   
   Redistribution and use in source and binary forms, with or without modifica-
   tion, are permitted provided that the following conditions are met:
   
   1. Redistributions of  source code must  retain the above copyright  notice,
      this list of conditions and the following disclaimer.
   
   2. Redistributions in binary form must reproduce the above copyright notice,
      this list of conditions and the following disclaimer in the documentation
      and/or other materials provided with the distribution.
   
   3. The end-user documentation included with the redistribution, if any, must
      include  the following  acknowledgment:  "This product includes  software
      developed  by the  Apache Software Foundation  (http://www.apache.org/)."
      Alternately, this  acknowledgment may  appear in the software itself,  if
      and wherever such third-party acknowledgments normally appear.
   
   4. The names "FOP" and  "Apache Software Foundation"  must not be used to
      endorse  or promote  products derived  from this  software without  prior
      written permission. For written permission, please contact
      apache@apache.org.
   
   5. Products  derived from this software may not  be called "Apache", nor may
      "Apache" appear  in their name,  without prior written permission  of the
      Apache Software Foundation.
   
   THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
   INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
   FITNESS  FOR A PARTICULAR  PURPOSE ARE  DISCLAIMED.  IN NO  EVENT SHALL  THE
   APACHE SOFTWARE  FOUNDATION  OR ITS CONTRIBUTORS  BE LIABLE FOR  ANY DIRECT,
   INDIRECT, INCIDENTAL, SPECIAL,  EXEMPLARY, OR CONSEQUENTIAL  DAMAGES (INCLU-
   DING, BUT NOT LIMITED TO, PROCUREMENT  OF SUBSTITUTE GOODS OR SERVICES; LOSS
   OF USE, DATA, OR  PROFITS; OR BUSINESS  INTERRUPTION)  HOWEVER CAUSED AND ON
   ANY  THEORY OF LIABILITY,  WHETHER  IN CONTRACT,  STRICT LIABILITY,  OR TORT
   (INCLUDING  NEGLIGENCE OR  OTHERWISE) ARISING IN  ANY WAY OUT OF THE  USE OF
   THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   
   This software  consists of voluntary contributions made  by many individuals
   on  behalf of the Apache Software  Foundation and was  originally created by
   James Tauber <jt...@jtauber.com>. For more  information on the Apache 
   Software Foundation, please see <http://www.apache.org/>.
   
   */
  
  package org.apache.fop.svg;
  
  import org.apache.fop.dom.svg.*;
  
  import java.util.*;
  
  /**
   *
   */
  class SVGStringList extends SVGListImpl {
  	public SVGStringList(String str)
  	{
  		parseString(str);
  	}
  
  	void parseString(String str)
  	{
  		StringTokenizer st = new StringTokenizer(str, ", \n\r\t:;");
  		while(st.hasMoreTokens()) {
  			String item = st.nextToken();
  			appendItem(item);
  		}
  	}
  
  	public Object createItem()
  	{
  		return new String();
  	}
  
  }