diff options
author | Karen Lease <klease@apache.org> | 2002-02-17 21:59:30 +0000 |
---|---|---|
committer | Karen Lease <klease@apache.org> | 2002-02-17 21:59:30 +0000 |
commit | 545eeaa223795068ebb93b89adf13d29fff4bf95 (patch) | |
tree | 225975dd7ef18ede6135faa44fe410518b284eec /src/org/apache/fop/area/BodyRegion.java | |
parent | 83a92e7596b4fd0e6a2a57e6c970b9ddcaf135d6 (diff) | |
download | xmlgraphics-fop-545eeaa223795068ebb93b89adf13d29fff4bf95.tar.gz xmlgraphics-fop-545eeaa223795068ebb93b89adf13d29fff4bf95.zip |
Initial implementation of CTM (coordinate transformation matrix) to handle reference-orienation and writing-mode issues
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194642 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org/apache/fop/area/BodyRegion.java')
-rw-r--r-- | src/org/apache/fop/area/BodyRegion.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/org/apache/fop/area/BodyRegion.java b/src/org/apache/fop/area/BodyRegion.java index 78693d71f..f6f292683 100644 --- a/src/org/apache/fop/area/BodyRegion.java +++ b/src/org/apache/fop/area/BodyRegion.java @@ -13,6 +13,8 @@ public class BodyRegion extends RegionReference { BeforeFloat beforeFloat; MainReference mainReference; Footnote footnote; + private int columnGap; + private int columnCount; /** Maximum block progression dimension. Note: min=opt=max */ private MinOptMax maxBPD; @@ -24,6 +26,16 @@ public class BodyRegion extends RegionReference { super(BODY); } + // Number of columns when not spanning + public void setColumnCount(int colCount) { + this.columnCount = colCount; + } + + // A length (mpoints) + public void setColumnGap(int colGap) { + this.columnGap = colGap; + } + public void setParent(Area area) { super.setParent(area); // Only if not scrolling or overflow !!! |