]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Remove offset of X and Y position by border and padding
authorKaren Lease <klease@apache.org>
Wed, 11 Apr 2001 21:44:35 +0000 (21:44 +0000)
committerKaren Lease <klease@apache.org>
Wed, 11 Apr 2001 21:44:35 +0000 (21:44 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194205 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/layout/AreaContainer.java

index 79822f7d2e8197c3e1227a4e373737b21f5d12bb..3f0dede76aed909c5b48e51b5ef5b0a32dd8a2b1 100644 (file)
@@ -71,6 +71,7 @@ public class AreaContainer extends Area {
         this.xPosition = xPosition;
         this.yPosition = yPosition;
         this.position = position;
+       //setIsReferenceArea(true); // Should always be true!
     }
 
     public void render(Renderer renderer) {
@@ -82,7 +83,8 @@ public class AreaContainer extends Area {
     }
 
     public int getXPosition() {
-        return xPosition + getPaddingLeft() + getBorderLeftWidth();
+        //return xPosition + getPaddingLeft() + getBorderLeftWidth();
+        return xPosition ;
     }
 
     public void setXPosition(int value) {
@@ -90,7 +92,8 @@ public class AreaContainer extends Area {
     }
 
     public int getYPosition() {
-        return yPosition + getPaddingTop() + getBorderTopWidth();
+        //return yPosition + getPaddingTop() + getBorderTopWidth();
+        return yPosition ;
     }
 
     public int getCurrentYPosition() {
@@ -100,4 +103,8 @@ public class AreaContainer extends Area {
     public void setYPosition(int value) {
         yPosition = value;
     }
+
+    public void shiftYPosition(int value) {
+        yPosition += value;
+    }
 }