diff options
author | Keiron Liddle <keiron@apache.org> | 2001-08-06 09:12:59 +0000 |
---|---|---|
committer | Keiron Liddle <keiron@apache.org> | 2001-08-06 09:12:59 +0000 |
commit | c928a8eadc5d7e48771fd91f56abfdb889fe2f61 (patch) | |
tree | 7d8e86ef766807e49de04591ccce869ace9ef52e /src/org/apache/fop/fo/flow/BidiOverride.java | |
parent | 87849d314529a8d87a310bc4120f72446c5cc17a (diff) | |
download | xmlgraphics-fop-c928a8eadc5d7e48771fd91f56abfdb889fe2f61.tar.gz xmlgraphics-fop-c928a8eadc5d7e48771fd91f56abfdb889fe2f61.zip |
gets all properties specified on each element
adds "Unknown" element for unknown elements or other namespaces
need to get a consistent and easy way to use the property values
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194394 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org/apache/fop/fo/flow/BidiOverride.java')
-rw-r--r-- | src/org/apache/fop/fo/flow/BidiOverride.java | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/org/apache/fop/fo/flow/BidiOverride.java b/src/org/apache/fop/fo/flow/BidiOverride.java index c6d7a1ba3..ea1566cc7 100644 --- a/src/org/apache/fop/fo/flow/BidiOverride.java +++ b/src/org/apache/fop/fo/flow/BidiOverride.java @@ -9,6 +9,7 @@ package org.apache.fop.fo.flow; // FOP import org.apache.fop.fo.*; +import org.apache.fop.layout.*; import org.apache.fop.messaging.MessageHandler; import org.apache.fop.fo.flow.*; import org.apache.fop.fo.properties.*; @@ -37,4 +38,29 @@ public class BidiOverride extends ToBeImplementedElement { this.name = "fo:bidi-override"; } + public Status layout(Area area) throws FOPException { + + // Common Aural Properties + AuralProps mAurProps = propMgr.getAuralProps(); + + // Common Font Properties + //this.fontState = propMgr.getFontState(area.getFontInfo()); + + // Common Margin Properties-Inline + RelativePositionProps mProps = propMgr.getRelativePositionProps(); + + // this.properties.get("color"); + // this.properties.get("direction"); + // this.properties.get("id"); + // this.properties.get("letter-spacing"); + // this.properties.get("line-height"); + // this.properties.get("line-height-shift-adjustment"); + // this.properties.get("score-spaces"); + // this.properties.get("text-shadow"); + // this.properties.get("text-transform"); + // this.properties.get("unicode-bidi"); + // this.properties.get("word-spacing"); + + return super.layout(area); + } } |