summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkitfox2010-09-05 01:58:32 +0200
committerkitfox2010-09-05 01:58:32 +0200
commit76bdf367a3d6c4db94d1b4d7f59a5e3128f99c0b (patch)
tree9e70c76c873ea96de7ed303dfcf51807a89deac1
parentAdded new iteration methods for SVG element children. (diff)
downloadsvg-salamander-core-76bdf367a3d6c4db94d1b4d7f59a5e3128f99c0b.tar.gz
svg-salamander-core-76bdf367a3d6c4db94d1b4d7f59a5e3128f99c0b.tar.xz
svg-salamander-core-76bdf367a3d6c4db94d1b4d7f59a5e3128f99c0b.zip
Adding <hkern> to source.
git-svn-id: https://svn.java.net/svn/svgsalamander~svn/trunk/svg-core@81 7dc7fa77-23fb-e6ad-8e2e-c86bd48ed22b
-rw-r--r--src/main/java/com/kitfox/svg/Hkern.java65
-rw-r--r--src/main/java/com/kitfox/svg/SVGLoader.java1
-rw-r--r--src/main/java/com/kitfox/svg/TransformableElement.java7
3 files changed, 69 insertions, 4 deletions
diff --git a/src/main/java/com/kitfox/svg/Hkern.java b/src/main/java/com/kitfox/svg/Hkern.java
new file mode 100644
index 0000000..82acf02
--- /dev/null
+++ b/src/main/java/com/kitfox/svg/Hkern.java
@@ -0,0 +1,65 @@
+/*
+ * Font.java
+ *
+ *
+ * The Salamander Project - 2D and 3D graphics libraries in Java
+ * Copyright (C) 2004 Mark McKay
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ * Mark McKay can be contacted at mark@kitfox.com. Salamander and other
+ * projects can be found at http://www.kitfox.com
+ *
+ * Created on February 20, 2004, 10:00 PM
+ */
+
+package com.kitfox.svg;
+
+import com.kitfox.svg.xml.StyleAttribute;
+
+/**
+ *
+ * @author kitfox
+ */
+public class Hkern extends SVGElement
+{
+ String u1;
+ String u2;
+ int k;
+
+
+ protected void build() throws SVGException
+ {
+ super.build();
+
+ StyleAttribute sty = new StyleAttribute();
+
+
+ //Read glyph spacing info
+ if (getPres(sty.setName("u1"))) u1 = sty.getStringValue();
+
+ if (getPres(sty.setName("u2"))) u2 = sty.getStringValue();
+
+ if (getPres(sty.setName("k"))) k = sty.getIntValue();
+ }
+
+ public boolean updateTime(double curTime) throws SVGException
+ {
+ //Fonts can't change
+ return false;
+ }
+
+
+}
diff --git a/src/main/java/com/kitfox/svg/SVGLoader.java b/src/main/java/com/kitfox/svg/SVGLoader.java
index 4b12339..9ba8527 100644
--- a/src/main/java/com/kitfox/svg/SVGLoader.java
+++ b/src/main/java/com/kitfox/svg/SVGLoader.java
@@ -91,6 +91,7 @@ public class SVGLoader extends DefaultHandler
nodeClasses.put("font-face", FontFace.class);
nodeClasses.put("g", Group.class);
nodeClasses.put("glyph", Glyph.class);
+ nodeClasses.put("hkern", Hkern.class);
nodeClasses.put("image", ImageSVG.class);
nodeClasses.put("line", Line.class);
nodeClasses.put("lineargradient", LinearGradient.class);
diff --git a/src/main/java/com/kitfox/svg/TransformableElement.java b/src/main/java/com/kitfox/svg/TransformableElement.java
index cde6340..b9a4375 100644
--- a/src/main/java/com/kitfox/svg/TransformableElement.java
+++ b/src/main/java/com/kitfox/svg/TransformableElement.java
@@ -28,11 +28,10 @@
package com.kitfox.svg;
import com.kitfox.svg.xml.StyleAttribute;
-import com.kitfox.svg.xml.*;
-import org.xml.sax.*;
+import java.awt.Shape;
+import java.awt.geom.AffineTransform;
+import java.awt.geom.Rectangle2D;
-import java.awt.geom.*;
-import java.awt.*;
/**
* Maintains bounding box for this element