diff options
Diffstat (limited to 'src/org/apache/fop/render/PrintRenderer.java')
-rw-r--r-- | src/org/apache/fop/render/PrintRenderer.java | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/src/org/apache/fop/render/PrintRenderer.java b/src/org/apache/fop/render/PrintRenderer.java index 3a6e355b4..02fe86307 100644 --- a/src/org/apache/fop/render/PrintRenderer.java +++ b/src/org/apache/fop/render/PrintRenderer.java @@ -177,58 +177,6 @@ public abstract class PrintRenderer extends AbstractRenderer { addRect(x, y, w, h, fill, fill); } - /** - * render area container - * - * @param area the area container to render - */ - public void renderAreaContainer(AreaContainer area) { - - int saveY = this.currentYPosition; - int saveX = this.currentAreaContainerXPosition; - - if (area.getPosition() == Position.ABSOLUTE) { - // XPosition and YPosition give the content rectangle position - this.currentYPosition = area.getYPosition(); - this.currentAreaContainerXPosition = area.getXPosition(); - } else if (area.getPosition() == Position.RELATIVE) { - this.currentYPosition -= area.getYPosition(); - this.currentAreaContainerXPosition += area.getXPosition(); - } else if (area.getPosition() == Position.STATIC) { - this.currentYPosition -= area.getPaddingTop() - + area.getBorderTopWidth(); - /* - * this.currentAreaContainerXPosition += - * area.getPaddingLeft() + area.getBorderLeftWidth(); - */ - } - - this.currentXPosition = this.currentAreaContainerXPosition; - doFrame(area); - - Enumeration e = area.getChildren().elements(); - while (e.hasMoreElements()) { - Box b = (Box)e.nextElement(); - b.render(this); - } - // Restore previous origin - this.currentYPosition = saveY; - this.currentAreaContainerXPosition = saveX; - if (area.getPosition() == Position.STATIC) { - this.currentYPosition -= area.getHeight(); - } - - /** - * ** - * if (area.getPosition() != Position.STATIC) { - * this.currentYPosition = saveY; - * this.currentAreaContainerXPosition = saveX; - * } else - * this.currentYPosition -= area.getHeight(); - * ** - */ - } - public void renderBodyAreaContainer(BodyAreaContainer area) { int saveY = this.currentYPosition; int saveX = this.currentAreaContainerXPosition; @@ -342,28 +290,6 @@ public abstract class PrintRenderer extends AbstractRenderer { new PDFColor(bp.getBorderColor(BorderAndPadding.BOTTOM))); } - - /** - * render block area - * - * @param area the block area to render - * - public void renderBlockArea(BlockArea area) { - // KLease: Temporary test to fix block positioning - // Offset ypos by padding and border widths - this.currentYPosition -= (area.getPaddingTop() - + area.getBorderTopWidth()); - doFrame(area); - Enumeration e = area.getChildren().elements(); - while (e.hasMoreElements()) { - Box b = (Box)e.nextElement(); - b.render(this); - } - this.currentYPosition -= (area.getPaddingBottom() - + area.getBorderBottomWidth()); - } -*/ - /** * render display space * |