diff options
author | Jeremias Maerki <jeremias@apache.org> | 2008-08-15 15:31:55 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2008-08-15 15:31:55 +0000 |
commit | bacc153b5daf6baacb9f1b3b65d8a5ffe7ecc5d1 (patch) | |
tree | 07031919fee6b9c74a42ef5de3fc97d6fb2195d0 /src/sandbox | |
parent | 6418e71d293be2a7f458ecef5bb85561e4ba2ad0 (diff) | |
download | xmlgraphics-fop-bacc153b5daf6baacb9f1b3b65d8a5ffe7ecc5d1.tar.gz xmlgraphics-fop-bacc153b5daf6baacb9f1b3b65d8a5ffe7ecc5d1.zip |
Had to introduce "clip-rect" to handle clipping on background images, leader etc. A full viewport is probably too heavy-weight here. This is to be considered temporary pending verification with SVG and PCL implementations.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_AreaTreeNewDesign@686253 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/sandbox')
-rw-r--r-- | src/sandbox/org/apache/fop/render/svg/AbstractSVGPainter.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/sandbox/org/apache/fop/render/svg/AbstractSVGPainter.java b/src/sandbox/org/apache/fop/render/svg/AbstractSVGPainter.java index e32b9f937..80fcde0df 100644 --- a/src/sandbox/org/apache/fop/render/svg/AbstractSVGPainter.java +++ b/src/sandbox/org/apache/fop/render/svg/AbstractSVGPainter.java @@ -279,6 +279,11 @@ public abstract class AbstractSVGPainter extends AbstractXMLWritingIFPainter } /** {@inheritDoc} */ + public void clipRect(Rectangle rect) throws IFException { + //TODO Implement me!!! + } + + /** {@inheritDoc} */ public void drawRect(Rectangle rect, Paint fill, Color stroke) throws IFException { if (fill == null && stroke == null) { return; |