summaryrefslogtreecommitdiff
path: root/sdext/source
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-08-14 16:11:57 +0000
committerKurt Zenker <kz@openoffice.org>2008-08-14 16:11:57 +0000
commit969aac0edf437ec0cad0baadfde46188c4822161 (patch)
tree1d2e4bf3f1f30353d4e62475339837d5581eea57 /sdext/source
parent6529660ef9dd4ae60be50b3ae72480c3cdcb9fa1 (diff)
INTEGRATION: CWS pdf25 (1.1.2); FILE ADDED
2008/08/05 09:59:17 akhva 1.1.2.2: #i90061 2008/07/24 12:32:59 akhva 1.1.2.1: #90061
Diffstat (limited to 'sdext/source')
-rw-r--r--sdext/source/pdfimport/tree/genericelements.cxx493
-rw-r--r--sdext/source/pdfimport/tree/imagecontainer.cxx157
-rw-r--r--sdext/source/pdfimport/tree/pdfiprocessor.cxx996
3 files changed, 1646 insertions, 0 deletions
diff --git a/sdext/source/pdfimport/tree/genericelements.cxx b/sdext/source/pdfimport/tree/genericelements.cxx
new file mode 100644
index 000000000000..00fc2cd9636d
--- /dev/null
+++ b/sdext/source/pdfimport/tree/genericelements.cxx
@@ -0,0 +1,493 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2008 by Sun Microsystems, Inc.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: genericelements.cxx,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+// MARKER(update_precomp.py): autogen include statement, do not remove
+#include "precompiled_sdext.hxx"
+
+#include "xmlemitter.hxx"
+#include "genericelements.hxx"
+#include "pdfiprocessor.hxx"
+#include "pdfihelper.hxx"
+#include "style.hxx"
+
+
+#include <basegfx/polygon/b2dpolypolygontools.hxx>
+#include <basegfx/range/b2drange.hxx>
+
+namespace pdfi
+{
+
+ElementFactory::~ElementFactory()
+{
+}
+
+Element::~Element()
+{
+ while( !Children.empty() )
+ {
+ Element* pCurr( Children.front() );
+ delete pCurr;
+ Children.pop_front();
+ }
+}
+
+void Element::applyToChildren( ElementTreeVisitor& rVisitor )
+{
+ for( std::list< Element* >::iterator it = Children.begin(); it != Children.end(); ++it )
+ (*it)->visitedBy( rVisitor, it );
+}
+
+void Element::setParent( std::list<Element*>::iterator& el, Element* pNewParent )
+{
+ if( pNewParent )
+ {
+ pNewParent->Children.splice( pNewParent->Children.end(), (*el)->Parent->Children, el );
+ (*el)->Parent = pNewParent;
+ }
+}
+
+void Element::updateGeometryWith( const Element* pMergeFrom )
+{
+ if( w == 0 && h == 0 )
+ {
+ x = pMergeFrom->x;
+ y = pMergeFrom->y;
+ w = pMergeFrom->w;
+ h = pMergeFrom->h;
+ }
+ else
+ {
+ if( pMergeFrom->x < x )
+ {
+ w += x - pMergeFrom->x;
+ x = pMergeFrom->x;
+ }
+ if( pMergeFrom->x+pMergeFrom->w > x+w )
+ w = pMergeFrom->w+pMergeFrom->x - x;
+ if( pMergeFrom->y < y )
+ {
+ h += y - pMergeFrom->y;
+ y = pMergeFrom->y;
+ }
+ if( pMergeFrom->y+pMergeFrom->h > y+h )
+ h = pMergeFrom->h+pMergeFrom->y - y;
+ }
+}
+
+
+#if OSL_DEBUG_LEVEL > 1
+#include <typeinfo>
+void Element::emitStructure( int nLevel)
+{
+ OSL_TRACE( "%*s<%s %p> (%.1f,%.1f)+(%.1fx%.1f)\n",
+ nLevel, "", typeid( *this ).name(), this,
+ x, y, w, h );
+ for( std::list< Element* >::iterator it = Children.begin(); it != Children.end(); ++it )
+ (*it)->emitStructure(nLevel+1 );
+ OSL_TRACE( "%*s</%s>\n", nLevel, "", typeid( *this ).name() );
+}
+#endif
+
+void ListElement::visitedBy( ElementTreeVisitor& visitor, const std::list< Element* >::const_iterator& )
+{
+ // this is only an inner node
+ applyToChildren(visitor);
+}
+
+void HyperlinkElement::visitedBy( ElementTreeVisitor& rVisitor,
+ const std::list< Element* >::const_iterator& rParentIt )
+{
+ rVisitor.visit(*this,rParentIt);
+}
+
+void TextElement::visitedBy( ElementTreeVisitor& rVisitor,
+ const std::list< Element* >::const_iterator& rParentIt )
+{
+ rVisitor.visit(*this,rParentIt);
+}
+
+void FrameElement::visitedBy( ElementTreeVisitor& rVisitor,
+ const std::list< Element* >::const_iterator& rParentIt )
+{
+ rVisitor.visit(*this,rParentIt);
+}
+
+void ImageElement::visitedBy( ElementTreeVisitor& rVisitor,
+ const std::list< Element* >::const_iterator& rParentIt)
+{
+ rVisitor.visit( *this, rParentIt);
+}
+
+PolyPolyElement::PolyPolyElement( Element* pParent,
+ sal_Int32 nGCId,
+ const basegfx::B2DPolyPolygon& rPolyPoly,
+ sal_Int8 nAction )
+ : DrawElement( pParent, nGCId ),
+ PolyPoly( rPolyPoly ),
+ Action( nAction )
+{
+}
+
+void PolyPolyElement::updateGeometry()
+{
+ basegfx::B2DRange aRange;
+ if( PolyPoly.areControlPointsUsed() )
+ aRange = basegfx::tools::getRange( basegfx::tools::adaptiveSubdivideByAngle( PolyPoly ) );
+ else
+ aRange = basegfx::tools::getRange( PolyPoly );
+ x = aRange.getMinX();
+ y = aRange.getMinY();
+ w = aRange.getWidth();
+ h = aRange.getHeight();
+}
+
+void PolyPolyElement::visitedBy( ElementTreeVisitor& rVisitor,
+ const std::list< Element* >::const_iterator& rParentIt)
+{
+ rVisitor.visit( *this, rParentIt);
+}
+
+#if OSL_DEBUG_LEVEL > 1
+void PolyPolyElement::emitStructure( int nLevel)
+{
+ OSL_TRACE( "%*s<%s %p>\n", nLevel, "", typeid( *this ).name(), this );
+ OSL_TRACE( "path=" );
+ int nPoly = PolyPoly.count();
+ for( int i = 0; i < nPoly; i++ )
+ {
+ basegfx::B2DPolygon aPoly = PolyPoly.getB2DPolygon( i );
+ int nPoints = aPoly.count();
+ for( int n = 0; n < nPoints; n++ )
+ {
+ basegfx::B2DPoint aPoint = aPoly.getB2DPoint( n );
+ OSL_TRACE( " (%g,%g)", aPoint.getX(), aPoint.getY() );
+ }
+ OSL_TRACE( "\n" );
+ }
+ for( std::list< Element* >::iterator it = Children.begin(); it != Children.end(); ++it )
+ (*it)->emitStructure( nLevel+1 );
+ OSL_TRACE( "%*s</%s>\n", nLevel, "", typeid( *this ).name() );
+}
+#endif
+
+void ParagraphElement::visitedBy( ElementTreeVisitor& rVisitor,
+ const std::list< Element* >::const_iterator& rParentIt )
+{
+ rVisitor.visit(*this,rParentIt);
+}
+
+bool ParagraphElement::isSingleLined( PDFIProcessor& rProc ) const
+{
+ std::list< Element* >::const_iterator it = Children.begin();
+ TextElement* pText = NULL, *pLastText = NULL;
+ while( it != Children.end() )
+ {
+ // a paragraph containing subparagraphs cannot be single lined
+ if( dynamic_cast< ParagraphElement* >(*it) != NULL )
+ return false;
+
+ pText = dynamic_cast< TextElement* >(*it);
+ if( pText )
+ {
+ const FontAttributes& rFont = rProc.getFont( pText->FontId );
+ if( pText->h > rFont.size*1.5 )
+ return false;
+ if( pLastText )
+ {
+ if( pText->y > pLastText->y+pLastText->h ||
+ pLastText->y > pText->y+pText->h )
+ return false;
+ }
+ else
+ pLastText = pText;
+ }
+ ++it;
+ }
+
+ // a paragraph without a single text is not considered single lined
+ return pLastText != NULL;
+}
+
+double ParagraphElement::getLineHeight( PDFIProcessor& rProc ) const
+{
+ double line_h = 0;
+ for( std::list< Element* >::const_iterator it = Children.begin(); it != Children.end(); ++it )
+ {
+ ParagraphElement* pPara = dynamic_cast< ParagraphElement* >(*it);
+ TextElement* pText = NULL;
+ if( pPara )
+ {
+ double lh = pPara->getLineHeight( rProc );
+ if( lh > line_h )
+ line_h = lh;
+ }
+ else if( (pText = dynamic_cast< TextElement* >( *it )) != NULL )
+ {
+ const FontAttributes& rFont = rProc.getFont( pText->FontId );
+ double lh = pText->h;
+ if( pText->h > rFont.size*1.5 )
+ lh = rFont.size;
+ if( lh > line_h )
+ line_h = lh;
+ }
+ }
+ return line_h;
+}
+
+TextElement* ParagraphElement::getFirstTextChild() const
+{
+ TextElement* pText = NULL;
+ for( std::list< Element* >::const_iterator it = Children.begin();
+ it != Children.end() && ! pText; ++it )
+ {
+ pText = dynamic_cast<TextElement*>(*it);
+ }
+ return pText;
+}
+
+PageElement::~PageElement()
+{
+ if( HeaderElement )
+ delete HeaderElement;
+ if( FooterElement )
+ delete FooterElement;
+}
+
+void PageElement::visitedBy( ElementTreeVisitor& rVisitor,
+ const std::list< Element* >::const_iterator& rParentIt )
+{
+ rVisitor.visit(*this, rParentIt);
+}
+
+void PageElement::updateParagraphGeometry( Element* pEle )
+{
+ // update geometry of children
+ for( std::list< Element* >::iterator it = pEle->Children.begin();
+ it != pEle->Children.end(); ++it )
+ {
+ updateParagraphGeometry( *it );
+ }
+ // if this is a paragraph itself, then update according to children geometry
+ if( dynamic_cast<ParagraphElement*>(pEle) )
+ {
+ for( std::list< Element* >::iterator it = pEle->Children.begin();
+ it != pEle->Children.end(); ++it )
+ {
+ Element* pChild = NULL;
+ TextElement* pText = dynamic_cast<TextElement*>(*it);
+ if( pText )
+ pChild = pText;
+ else
+ {
+ ParagraphElement* pPara = dynamic_cast<ParagraphElement*>(*it);
+ if( pPara )
+ pChild = pPara;
+ }
+ if( pChild )
+ pEle->updateGeometryWith( pChild );
+ }
+ }
+}
+
+bool PageElement::resolveHyperlink( std::list<Element*>::iterator link_it, std::list<Element*>& rElements )
+{
+ HyperlinkElement* pLink = dynamic_cast<HyperlinkElement*>(*link_it);
+ if( ! pLink ) // sanity check
+ return false;
+
+ for( std::list<Element*>::iterator it = rElements.begin(); it != rElements.end(); ++it )
+ {
+ if( (*it)->x >= pLink->x && (*it)->x + (*it)->w <= pLink->x + pLink->w &&
+ (*it)->y >= pLink->y && (*it)->y + (*it)->h <= pLink->y + pLink->h )
+ {
+ TextElement* pText = dynamic_cast<TextElement*>(*it);
+ if( pText )
+ {
+ if( pLink->Children.empty() )
+ {
+ // insert the hyperlink before the frame
+ rElements.splice( it, Hyperlinks.Children, link_it );
+ pLink->Parent = (*it)->Parent;
+ }
+ // move text element into hyperlink
+ std::list<Element*>::iterator next = it;
+ ++next;
+ Element::setParent( it, pLink );
+ it = next;
+ --it;
+ continue;
+ }
+ // a link can contain multiple text elements or a single frame
+ if( ! pLink->Children.empty() )
+ continue;
+ if( dynamic_cast<ParagraphElement*>(*it) )
+ {
+ if( resolveHyperlink( link_it, (*it)->Children ) )
+ break;
+ continue;
+ }
+ FrameElement* pFrame = dynamic_cast<FrameElement*>(*it);
+ if( pFrame )
+ {
+ // insert the hyperlink before the frame
+ rElements.splice( it, Hyperlinks.Children, link_it );
+ pLink->Parent = (*it)->Parent;
+ // move frame into hyperlink
+ Element::setParent( it, pLink );
+ break;
+ }
+ }
+ }
+ return ! pLink->Children.empty();
+}
+
+void PageElement::resolveHyperlinks()
+{
+ while( ! Hyperlinks.Children.empty() )
+ {
+ if( ! resolveHyperlink( Hyperlinks.Children.begin(), Children ) )
+ {
+ delete Hyperlinks.Children.front();
+ Hyperlinks.Children.pop_front();
+ }
+ }
+}
+
+void PageElement::resolveFontStyles( PDFIProcessor& rProc )
+{
+ resolveUnderlines(rProc);
+}
+
+void PageElement::resolveUnderlines( PDFIProcessor& rProc )
+{
+ // FIXME: currently the algorithm used is quadratic
+ // this could be solved by some sorting beforehand
+
+ std::list< Element* >::iterator poly_it = Children.begin();
+ while( poly_it != Children.end() )
+ {
+ PolyPolyElement* pPoly = dynamic_cast< PolyPolyElement* >(*poly_it);
+ if( ! pPoly || ! pPoly->Children.empty() )
+ {
+ ++poly_it;
+ continue;
+ }
+ /* check for: no filling
+ * only two points (FIXME: handle small rectangles, too)
+ * y coordinates of points are equal
+ */
+ if( pPoly->Action != PATH_STROKE )
+ {
+ ++poly_it;
+ continue;
+ }
+ if( pPoly->PolyPoly.count() != 1 )
+ {
+ ++poly_it;
+ continue;
+ }
+
+ bool bRemovePoly = false;
+ basegfx::B2DPolygon aPoly = pPoly->PolyPoly.getB2DPolygon(0);
+ if( aPoly.count() != 2 ||
+ aPoly.getB2DPoint(0).getY() != aPoly.getB2DPoint(1).getY() )
+ {
+ ++poly_it;
+ continue;
+ }
+ double l_x = aPoly.getB2DPoint(0).getX();
+ double r_x = aPoly.getB2DPoint(1).getX();
+ double u_y;
+ if( r_x < l_x )
+ {
+ u_y = r_x; r_x = l_x; l_x = u_y;
+ }
+ u_y = aPoly.getB2DPoint(0).getY();
+ for( std::list< Element*>::iterator it = Children.begin();
+ it != Children.end(); ++it )
+ {
+ Element* pEle = *it;
+ if( pEle->y <= u_y && pEle->y + pEle->h*1.1 >= u_y )
+ {
+ // first: is the element underlined completely ?
+ if( pEle->x + pEle->w*0.1 >= l_x &&
+ pEle->x + pEle->w*0.9 <= r_x )
+ {
+ TextElement* pText = dynamic_cast< TextElement* >(pEle);
+ if( pText )
+ {
+ const GraphicsContext& rTextGC = rProc.getGraphicsContext( pText->GCId );
+ if( ! rTextGC.isRotatedOrSkewed() )
+ {
+ bRemovePoly = true;
+ // retrieve ID for modified font
+ FontAttributes aAttr = rProc.getFont( pText->FontId );
+ aAttr.isUnderline = true;
+ pText->FontId = rProc.getFontId( aAttr );
+ }
+ }
+ else if( dynamic_cast< HyperlinkElement* >(pEle) )
+ bRemovePoly = true;
+ }
+ // second: hyperlinks may be larger than their underline
+ // since they are just arbitrary rectangles in the action definition
+ else if( dynamic_cast< HyperlinkElement* >(pEle) != NULL &&
+ l_x >= pEle->x && r_x <= pEle->x+pEle->w )
+ {
+ bRemovePoly = true;
+ }
+ }
+ }
+ if( bRemovePoly )
+ {
+ std::list< Element* >::iterator next_it = poly_it;
+ ++next_it;
+ Children.erase( poly_it );
+ delete pPoly;
+ poly_it = next_it;
+ }
+ else
+ ++poly_it;
+ }
+}
+
+DocumentElement::~DocumentElement()
+{
+}
+
+void DocumentElement::visitedBy( ElementTreeVisitor& rVisitor,
+ const std::list< Element* >::const_iterator& rParentIt)
+{
+ rVisitor.visit(*this, rParentIt);
+}
+
+
+}
diff --git a/sdext/source/pdfimport/tree/imagecontainer.cxx b/sdext/source/pdfimport/tree/imagecontainer.cxx
new file mode 100644
index 000000000000..25433839c6b9
--- /dev/null
+++ b/sdext/source/pdfimport/tree/imagecontainer.cxx
@@ -0,0 +1,157 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2008 by Sun Microsystems, Inc.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: imagecontainer.cxx,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+// MARKER(update_precomp.py): autogen include statement, do not remove
+#include "precompiled_sdext.hxx"
+
+#include "imagecontainer.hxx"
+#include "genericelements.hxx"
+#include "xmlemitter.hxx"
+
+#include <rtl/ustrbuf.hxx>
+#include <osl/file.h>
+#include <rtl/crc.h>
+
+#include <com/sun/star/graphic/XGraphicProvider.hpp>
+#include <com/sun/star/beans/PropertyValue.hpp>
+
+#include <cppuhelper/implbase1.hxx>
+#include <comphelper/stl_types.hxx>
+
+#include <boost/bind.hpp>
+
+using namespace com::sun::star;
+
+namespace pdfi
+{
+
+namespace
+{
+
+static const sal_Char aBase64EncodeTable[] =
+ { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M',
+ 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z',
+ 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm',
+ 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',
+ '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/' };
+
+rtl::OUString encodeBase64( const sal_Int8* i_pBuffer, const sal_uInt32 i_nBufferLength )
+{
+ rtl::OUStringBuffer aBuf( (i_nBufferLength+1) * 4 / 3 );
+ const sal_Int32 nRemain(i_nBufferLength%3);
+ const sal_Int32 nFullTripleLength( i_nBufferLength - (i_nBufferLength%3));
+ sal_Int32 nBufPos( 0 );
+ for( sal_Int32 i = 0; i < nFullTripleLength; i += 3, nBufPos += 4 )
+ {
+ const sal_Int32 nBinary = (((sal_uInt8)i_pBuffer[i + 0]) << 16) +
+ (((sal_uInt8)i_pBuffer[i + 1]) << 8) +
+ ((sal_uInt8)i_pBuffer[i + 2]);
+
+ aBuf.appendAscii("====");
+
+ sal_uInt8 nIndex (static_cast<sal_uInt8>((nBinary & 0xFC0000) >> 18));
+ aBuf.setCharAt(nBufPos, aBase64EncodeTable [nIndex]);
+
+ nIndex = static_cast<sal_uInt8>((nBinary & 0x3F000) >> 12);
+ aBuf.setCharAt(nBufPos+1, aBase64EncodeTable [nIndex]);
+
+ nIndex = static_cast<sal_uInt8>((nBinary & 0xFC0) >> 6);
+ aBuf.setCharAt(nBufPos+2, aBase64EncodeTable [nIndex]);
+
+ nIndex = static_cast<sal_uInt8>((nBinary & 0x3F));
+ aBuf.setCharAt(nBufPos+3, aBase64EncodeTable [nIndex]);
+ }
+ if( nRemain > 0 )
+ {
+ aBuf.appendAscii("====");
+ sal_Int32 nBinary( 0 );
+ const sal_Int32 nStart(i_nBufferLength-nRemain);
+ switch(nRemain)
+ {
+ case 1: nBinary = ((sal_uInt8)i_pBuffer[nStart + 0]) << 16;
+ break;
+ case 2: nBinary = (((sal_uInt8)i_pBuffer[nStart + 0]) << 16) +
+ (((sal_uInt8)i_pBuffer[nStart + 1]) << 8);
+ break;
+ }
+ sal_uInt8 nIndex (static_cast<sal_uInt8>((nBinary & 0xFC0000) >> 18));
+ aBuf.setCharAt(nBufPos, aBase64EncodeTable [nIndex]);
+
+ nIndex = static_cast<sal_uInt8>((nBinary & 0x3F000) >> 12);
+ aBuf.setCharAt(nBufPos+1, aBase64EncodeTable [nIndex]);
+
+ if( nRemain == 2 )
+ {
+ nIndex = static_cast<sal_uInt8>((nBinary & 0xFC0) >> 6);
+ aBuf.setCharAt(nBufPos+2, aBase64EncodeTable [nIndex]);
+ }
+ }
+
+ return aBuf.makeStringAndClear();
+}
+
+} // namespace
+
+ImageContainer::ImageContainer() :
+ m_aImages()
+{}
+
+ImageId ImageContainer::addImage( const uno::Sequence<beans::PropertyValue>& xBitmap )
+{
+ m_aImages.push_back( xBitmap );
+ return m_aImages.size()-1;
+}
+
+void ImageContainer::writeBase64EncodedStream( ImageId nId, EmitContext& rContext )
+{
+ OSL_ASSERT( nId >= 0 && nId < ImageId( m_aImages.size()) );
+
+ const uno::Sequence<beans::PropertyValue>& rEntry( m_aImages[nId] );
+
+ // find "InputSequence" property
+ const beans::PropertyValue* pAry(rEntry.getConstArray());
+ const sal_Int32 nLen(rEntry.getLength());
+ const beans::PropertyValue* pValue(
+ std::find_if(pAry,pAry+nLen,
+ boost::bind(comphelper::TPropertyValueEqualFunctor(),
+ _1,
+ rtl::OUString::createFromAscii("InputSequence"))));
+ OSL_ENSURE( pValue != pAry+nLen,
+ "InputSequence not found" );
+
+ uno::Sequence<sal_Int8> aData;
+ if( !(pValue->Value >>= aData) )
+ OSL_ENSURE(false,"Wrong data type");
+
+ rContext.rEmitter.write( encodeBase64( aData.getConstArray(), aData.getLength() ));
+}
+
+}
diff --git a/sdext/source/pdfimport/tree/pdfiprocessor.cxx b/sdext/source/pdfimport/tree/pdfiprocessor.cxx
new file mode 100644
index 000000000000..16a1d9c87492
--- /dev/null
+++ b/sdext/source/pdfimport/tree/pdfiprocessor.cxx
@@ -0,0 +1,996 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2008 by Sun Microsystems, Inc.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: pdfiprocessor.cxx,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+// MARKER(update_precomp.py): autogen include statement, do not remove
+#include "precompiled_sdext.hxx"
+
+#include "pdfiprocessor.hxx"
+#include "xmlemitter.hxx"
+#include "pdfihelper.hxx"
+#include "imagecontainer.hxx"
+#include "genericelements.hxx"
+#include "style.hxx"
+#include "treevisiting.hxx"
+
+#include <rtl/string.hxx>
+#include <rtl/strbuf.hxx>
+
+#include <comphelper/sequence.hxx>
+#include <basegfx/polygon/b2dpolypolygontools.hxx>
+#include <basegfx/polygon/b2dpolygonclipper.hxx>
+#include <basegfx/polygon/b2dpolygontools.hxx>
+#include <basegfx/tools/canvastools.hxx>
+#include <basegfx/matrix/b2dhommatrix.hxx>
+#include <basegfx/range/b2irange.hxx>
+#include <basegfx/range/b2drectangle.hxx>
+
+#include <com/sun/star/rendering/XVolatileBitmap.hpp>
+#include <com/sun/star/geometry/RealSize2D.hpp>
+#include <com/sun/star/geometry/RealPoint2D.hpp>
+#include <com/sun/star/geometry/RealRectangle2D.hpp>
+
+
+using namespace com::sun::star;
+
+
+namespace pdfi
+{
+
+ PDFIProcessor::PDFIProcessor( const uno::Reference< task::XStatusIndicator >& xStat ) :
+ fYPrevTextPosition(-10000.0),
+ fPrevTextHeight(0.0),
+ fXPrevTextPosition(0.0),
+ fPrevTextWidth(0.0),
+ m_pElFactory( new ElementFactory() ),
+ m_pDocument( m_pElFactory->createDocumentElement() ),
+ m_pCurPage(0),
+ m_pCurElement(0),
+ m_nNextFontId( 1 ),
+ m_aIdToFont(),
+ m_aFontToId(),
+ m_aGCStack(),
+ m_nNextGCId( 1 ),
+ m_aIdToGC(),
+ m_aGCToId(),
+ m_aImages(),
+ m_eTextDirection( LrTb ),
+ m_nPages(0),
+ m_nNextZOrder( 1 ),
+ m_fWordSpace(0.0),
+ m_bIsWhiteSpaceInLine( false ),
+ m_xStatusIndicator( xStat ),
+ m_bHaveTextOnDocLevel(false)
+{
+ FontAttributes aDefFont;
+ aDefFont.familyName = USTR("Helvetica");
+ aDefFont.isBold = false;
+ aDefFont.isItalic = false;
+ aDefFont.size = 10*PDFI_OUTDEV_RESOLUTION/72;
+ m_aIdToFont[ 0 ] = aDefFont;
+ m_aFontToId[ aDefFont ] = 0;
+
+ GraphicsContext aDefGC;
+ m_aGCStack.push_back( aDefGC );
+ m_aIdToGC[ 0 ] = aDefGC;
+ m_aGCToId[ aDefGC ] = 0;
+}
+
+void PDFIProcessor::enableToplevelText()
+{
+ m_bHaveTextOnDocLevel = true;
+}
+
+void PDFIProcessor::setPageNum( sal_Int32 nPages )
+{
+ m_nPages = nPages;
+}
+
+
+void PDFIProcessor::pushState()
+{
+ m_aGCStack.push_back( m_aGCStack.back() );
+}
+
+void PDFIProcessor::popState()
+{
+ m_aGCStack.pop_back();
+}
+
+void PDFIProcessor::setFlatness( double value )
+{
+ getCurrentContext().Flatness = value;
+}
+
+void PDFIProcessor::setTransformation( const geometry::AffineMatrix2D& rMatrix )
+{
+ basegfx::unotools::homMatrixFromAffineMatrix(
+ getCurrentContext().Transformation,
+ rMatrix );
+}
+
+void PDFIProcessor::setLineDash( const uno::Sequence<double>& dashes,
+ double /*start*/ )
+{
+ // TODO(F2): factor in start offset
+ GraphicsContext& rContext( getCurrentContext() );
+ comphelper::sequenceToContainer(rContext.DashArray,dashes);
+}
+
+void PDFIProcessor::setLineJoin(sal_Int8 nJoin)
+{
+ getCurrentContext().LineJoin = nJoin;
+}
+
+void PDFIProcessor::setLineCap(sal_Int8 nCap)
+{
+ getCurrentContext().LineCap = nCap;
+}
+
+void PDFIProcessor::setMiterLimit(double)
+{
+ OSL_TRACE("PDFIProcessor::setMiterLimit(): not supported by ODF");
+}
+
+void PDFIProcessor::setLineWidth(double nWidth)
+{
+ getCurrentContext().LineWidth = nWidth;
+}
+
+void PDFIProcessor::setFillColor( const rendering::ARGBColor& rColor )
+{
+ getCurrentContext().FillColor = rColor;
+}
+
+void PDFIProcessor::setStrokeColor( const rendering::ARGBColor& rColor )
+{
+ getCurrentContext().LineColor = rColor;
+}
+
+void PDFIProcessor::setBlendMode(sal_Int8)
+{
+ OSL_TRACE("PDFIProcessor::setBlendMode(): not supported by ODF");
+}
+
+void PDFIProcessor::setFont( const FontAttributes& rFont )
+{
+ GraphicsContext& rGC=getCurrentContext();
+ FontToIdMap::const_iterator it = m_aFontToId.find( rFont );
+ if( it != m_aFontToId.end() )
+ rGC.FontId = it->second;
+ else
+ {
+ m_aFontToId[ rFont ] = m_nNextFontId;
+ m_aIdToFont[ m_nNextFontId ] = rFont;
+ rGC.FontId = m_nNextFontId;
+ m_nNextFontId++;
+ }
+}
+
+sal_Int32 PDFIProcessor::getFontId( const FontAttributes& rAttr ) const
+{
+ const sal_Int32 nCurFont = getCurrentContext().FontId;
+ const_cast<PDFIProcessor*>(this)->setFont( rAttr );
+ const sal_Int32 nFont = getCurrentContext().FontId;
+ const_cast<PDFIProcessor*>(this)->getCurrentContext().FontId = nCurFont;
+
+ return nFont;
+}
+void PDFIProcessor::setWordSpace( double fWordSpace)
+{
+ m_fWordSpace=fWordSpace;
+}
+
+// line diagnose block - start
+void PDFIProcessor::processGlyphLine()
+{
+ if( m_GlyphsList.size()<1 )
+ return;
+
+ double fPreAvarageSpaceValue= 0.0;
+ double fAvarageDiffCharSpaceValue= 0.0;
+ double fMinPreSpaceValue= 0.0;
+ double fMaxPreSpaceValue= 0.0;
+ double fNullSpaceBreakerAvaregeSpaceValue = 0.0;
+
+ unsigned int nSpaceCount( 0 );
+ unsigned int nDiffSpaceCount( 0 );
+ unsigned int nNullSpaceBreakerCount=0;
+ bool preSpaceNull(true);
+
+ for ( unsigned int i=0; i<m_GlyphsList.size()-1; i++ ) // i=1 cose the first Glypth dont have prevGlyphSpace value
+ {
+ if( m_GlyphsList[i].getPrevGlypthsSpace()>0.0 )
+ {
+ if( fMinPreSpaceValue>m_GlyphsList[i].getPrevGlypthsSpace() )
+ fMinPreSpaceValue=m_GlyphsList[i].getPrevGlypthsSpace();
+
+ if( fMaxPreSpaceValue<m_GlyphsList[i].getPrevGlypthsSpace() )
+ fMaxPreSpaceValue=m_GlyphsList[i].getPrevGlypthsSpace();
+
+ fPreAvarageSpaceValue+= m_GlyphsList[i].getPrevGlypthsSpace();
+ nSpaceCount++;
+ }
+ }
+
+ if( nSpaceCount!=0 )
+ fPreAvarageSpaceValue= fPreAvarageSpaceValue/( nSpaceCount );
+
+ for ( unsigned int i=0; i<m_GlyphsList.size()-1; i++ ) // i=1 cose the first Glypth dont have prevGlyphSpace value
+ {
+ if ( m_GlyphsList[i].getPrevGlypthsSpace()==0.0 )
+ {
+ if (
+ ( m_GlyphsList[i+1].getPrevGlypthsSpace()>0.0)&&
+ ( fPreAvarageSpaceValue>m_GlyphsList[i+1].getPrevGlypthsSpace())
+ )
+ {
+ fNullSpaceBreakerAvaregeSpaceValue+=m_GlyphsList[i+1].getPrevGlypthsSpace();
+ nNullSpaceBreakerCount++;
+ }
+ }
+ }
+
+ if( ( fNullSpaceBreakerAvaregeSpaceValue!= 0.0 )&&
+ ( fNullSpaceBreakerAvaregeSpaceValue < fPreAvarageSpaceValue )
+ )
+ {
+ fPreAvarageSpaceValue = fNullSpaceBreakerAvaregeSpaceValue;
+ }
+
+ for ( unsigned int i=0; i<m_GlyphsList.size()-1; i++ ) // i=1 cose the first Glypth dont have prevGlyphSpace value
+ {
+ if ( ( m_GlyphsList[i].getPrevGlypthsSpace()>0.0 )
+ )
+ {
+ if (
+ ( m_GlyphsList[i].getPrevGlypthsSpace() <= fPreAvarageSpaceValue )&&
+ ( m_GlyphsList[i+1].getPrevGlypthsSpace()<= fPreAvarageSpaceValue )
+ )
+ {
+ double temp= m_GlyphsList[i].getPrevGlypthsSpace()-m_GlyphsList[i+1].getPrevGlypthsSpace();
+
+ if(temp!=0.0)
+ {
+ if( temp< 0.0)
+ temp= temp* -1.0;
+
+ fAvarageDiffCharSpaceValue+=temp;
+ nDiffSpaceCount++;
+ }
+ }
+ }
+
+ }
+
+ if (
+ ( nNullSpaceBreakerCount>0 )
+ )
+ {
+ fNullSpaceBreakerAvaregeSpaceValue=fNullSpaceBreakerAvaregeSpaceValue/nNullSpaceBreakerCount;
+ }
+
+ if (
+ ( nDiffSpaceCount>0 )&&(fAvarageDiffCharSpaceValue>0)
+ )
+ {
+ fAvarageDiffCharSpaceValue= fAvarageDiffCharSpaceValue/ nDiffSpaceCount;
+ }
+
+ ParagraphElement* pPara= NULL ;
+ FrameElement* pFrame= NULL ;
+
+ if(m_GlyphsList.size()>0)
+ {
+ pFrame = m_pElFactory->createFrameElement( m_GlyphsList[0].getCurElement(), getGCId( getTransformGlyphContex( m_GlyphsList[0])) );
+ pFrame->ZOrder = m_nNextZOrder++;
+ pPara = m_pElFactory->createParagraphElement( pFrame );
+
+
+
+ processGlyph( 0,
+ m_GlyphsList[0],
+ pPara,
+ pFrame,
+ m_bIsWhiteSpaceInLine );
+
+
+ }
+
+
+ preSpaceNull=false;
+
+ for ( unsigned int i=1; i<m_GlyphsList.size()-1; i++ )
+ {
+ double fPrevDiffCharSpace= m_GlyphsList[i].getPrevGlypthsSpace()-m_GlyphsList[i-1].getPrevGlypthsSpace();
+ double fPostDiffCharSpace= m_GlyphsList[i].getPrevGlypthsSpace()-m_GlyphsList[i+1].getPrevGlypthsSpace();
+
+
+ if(
+ preSpaceNull && (m_GlyphsList[i].getPrevGlypthsSpace()!= 0.0)
+ )
+ {
+ preSpaceNull=false;
+ if( fNullSpaceBreakerAvaregeSpaceValue > m_GlyphsList[i].getPrevGlypthsSpace() )
+
+ {
+ processGlyph( 0,
+ m_GlyphsList[i],
+ pPara,
+ pFrame,
+ m_bIsWhiteSpaceInLine );
+
+ }
+ else
+ {
+ processGlyph( 1,
+ m_GlyphsList[i],
+ pPara,
+ pFrame,
+ m_bIsWhiteSpaceInLine );
+
+ }
+
+ }
+ else
+ {
+ if (
+ ( m_GlyphsList[i].getPrevGlypthsSpace()<= fPreAvarageSpaceValue )&&
+ ( fPrevDiffCharSpace<=fAvarageDiffCharSpaceValue )&&
+ ( fPostDiffCharSpace<=fAvarageDiffCharSpaceValue ) ||
+ ( m_GlyphsList[i].getPrevGlypthsSpace() == 0.0 )
+ )
+ {
+ preSpaceNull=true;
+
+ processGlyph( 0,
+ m_GlyphsList[i],
+ pPara,
+ pFrame,
+ m_bIsWhiteSpaceInLine );
+
+ }
+ else
+ {
+ processGlyph( 1,
+ m_GlyphsList[i],
+ pPara,
+ pFrame,
+ m_bIsWhiteSpaceInLine );
+
+ }
+
+ }
+
+ }
+
+ if(m_GlyphsList.size()>1)
+ processGlyph( 0,
+ m_GlyphsList[m_GlyphsList.size()-1],
+ pPara,
+ pFrame,
+ m_bIsWhiteSpaceInLine );
+
+ m_GlyphsList.clear();
+}
+
+void PDFIProcessor::processGlyph( double fPreAvarageSpaceValue,
+ CharGlyph& aGlyph,
+ ParagraphElement* pPara,
+ FrameElement* pFrame,
+ bool bIsWhiteSpaceInLine
+ )
+{
+ if( !bIsWhiteSpaceInLine )
+ {
+ bool flag=( 0 < fPreAvarageSpaceValue );
+
+ drawCharGlyphs( aGlyph.getGlyph(),
+ aGlyph.getRect(),
+ aGlyph.getFontMatrix(),
+ aGlyph.getGC(),
+ aGlyph.getCurElement(),
+ pPara,
+ pFrame,
+ flag);
+ }
+ else
+ {
+ drawCharGlyphs( aGlyph.getGlyph(),
+ aGlyph.getRect(),
+ aGlyph.getFontMatrix(),
+ aGlyph.getGC(),
+ aGlyph.getCurElement(),
+ pPara,
+ pFrame,
+ false );
+ }
+}
+
+void PDFIProcessor::drawGlyphLine( const rtl::OUString& rGlyphs,
+ const geometry::RealRectangle2D& rRect,
+ const geometry::Matrix2D& rFontMatrix )
+{
+ double isFirstLine= fYPrevTextPosition+ fXPrevTextPosition+ fPrevTextHeight+ fPrevTextWidth ;
+
+ if(
+ ( ( ( fYPrevTextPosition!= rRect.Y1 ) ) ||
+ ( ( fXPrevTextPosition > rRect.X2 ) ) ||
+ ( ( fXPrevTextPosition+fPrevTextWidth*1.3)<rRect.X1 )
+ ) && ( isFirstLine> 0.0 )
+ )
+ {
+ processGlyphLine();
+
+ }
+
+ CharGlyph aGlyph;
+
+ aGlyph.setGlyph ( rGlyphs );
+ aGlyph.setRect ( rRect );
+ aGlyph.setFontMatrix ( rFontMatrix );
+ aGlyph.setGraphicsContext ( getCurrentContext() );
+ getGCId(getCurrentContext());
+ aGlyph.setCurElement( m_pCurElement );
+
+ aGlyph.setYPrevGlyphPosition( fYPrevTextPosition );
+ aGlyph.setXPrevGlyphPosition( fXPrevTextPosition );
+ aGlyph.setPrevGlyphHeight ( fPrevTextHeight );
+ aGlyph.setPrevGlyphWidth ( fPrevTextWidth );
+
+ m_GlyphsList.push_back( aGlyph );
+
+ fYPrevTextPosition = rRect.Y1;
+ fXPrevTextPosition = rRect.X2;
+ fPrevTextHeight = rRect.Y2-rRect.Y1;
+ fPrevTextWidth = rRect.X2-rRect.X1;
+
+ if( !m_bIsWhiteSpaceInLine )
+ {
+ rtl::OUString tempWhiteSpaceStr( 32 );
+ m_bIsWhiteSpaceInLine=rGlyphs.equals( tempWhiteSpaceStr );
+ }
+
+}
+
+GraphicsContext& PDFIProcessor::getTransformGlyphContex( CharGlyph& rGlyph )
+{
+ geometry::RealRectangle2D rRect = rGlyph.getRect();
+ geometry::Matrix2D rFontMatrix = rGlyph.getFontMatrix();
+
+ rtl::OUString tempStr( 32 );
+ geometry::RealRectangle2D aRect(rRect);
+
+ basegfx::B2DHomMatrix aFontMatrix;
+ basegfx::unotools::homMatrixFromMatrix(
+ aFontMatrix,
+ rFontMatrix );
+
+ FontAttributes aFontAttrs = m_aIdToFont[ rGlyph.getGC().FontId ];
+
+ // add transformation to GC
+ basegfx::B2DHomMatrix aFontTransform;
+ aFontTransform.translate( -rRect.X1, -rRect.Y1 );
+ aFontTransform *= aFontMatrix;
+ aFontTransform.translate( rRect.X1, rRect.Y1 );
+
+
+ rGlyph.getGC().Transformation = rGlyph.getGC().Transformation * aFontTransform;
+ getGCId(rGlyph.getGC());
+
+ return rGlyph.getGC();
+}
+void PDFIProcessor::drawCharGlyphs( rtl::OUString& rGlyphs,
+ geometry::RealRectangle2D& rRect,
+ geometry::Matrix2D& ,
+ GraphicsContext aGC,
+ Element* ,
+ ParagraphElement* pPara,
+ FrameElement* pFrame,
+ bool bSpaceFlag )
+{
+
+
+ rtl::OUString tempStr( 32 );
+ geometry::RealRectangle2D aRect(rRect);
+
+ ::basegfx::B2DRange aRect2;
+ calcTransformedRectBounds( aRect2,
+ ::basegfx::unotools::b2DRectangleFromRealRectangle2D(aRect),
+ aGC.Transformation );
+ // check whether there was a previous draw frame
+
+ TextElement* pText = m_pElFactory->createTextElement( pPara,
+ getGCId(aGC),
+ aGC.FontId );
+ if( bSpaceFlag )
+ pText->Text.append( tempStr );
+
+ pText->Text.append( rGlyphs );
+
+ pText->x = aRect2.getMinX() ;
+ pText->y = aRect2.getMinY() ;
+ pText->w = 0.0; // ToDO P2: 1.1 is a hack for solving of size auto-grow problem
+ pText->h = aRect2.getHeight(); // ToDO P2: 1.1 is a hack for solving of size auto-grow problem
+
+ pPara->updateGeometryWith( pText );
+
+ if( pFrame )
+ pFrame->updateGeometryWith( pPara );
+
+}
+void PDFIProcessor::drawGlyphs( const rtl::OUString& rGlyphs,
+ const geometry::RealRectangle2D& rRect,
+ const geometry::Matrix2D& rFontMatrix )
+{
+ drawGlyphLine( rGlyphs, rRect, rFontMatrix );
+}
+
+void PDFIProcessor::endText()
+{
+ TextElement* pText = dynamic_cast<TextElement*>(m_pCurElement);
+ if( pText )
+ m_pCurElement = pText->Parent;
+}
+
+void PDFIProcessor::setupImage(ImageId nImage)
+{
+ const GraphicsContext& rGC( getCurrentContext() );
+
+ // transform unit rect, to determine view box
+ basegfx::B2DPoint aOrigin(0,0);
+ aOrigin *= rGC.Transformation;
+
+ basegfx::B2DVector aSize(1,1);
+ aSize *= rGC.Transformation;
+
+ // TODO(F3): Handle clip
+ const sal_Int32 nGCId = getGCId(rGC);
+ FrameElement* pFrame = m_pElFactory->createFrameElement( m_pCurElement, nGCId );
+ ImageElement* pImageElement = m_pElFactory->createImageElement( pFrame, nGCId, nImage );
+ pFrame->x = pImageElement->x = aOrigin.getX();
+ pFrame->y = pImageElement->y = aOrigin.getY();
+ pFrame->w = pImageElement->w = aSize.getX();
+ pFrame->h = pImageElement->h = aSize.getY();
+ pFrame->ZOrder = m_nNextZOrder++;
+}
+
+void PDFIProcessor::drawMask(const uno::Sequence<beans::PropertyValue>& xBitmap,
+ bool /*bInvert*/ )
+{
+ // TODO(F3): Handle mask and inversion
+ setupImage( m_aImages.addImage(xBitmap) );
+}
+
+void PDFIProcessor::drawImage(const uno::Sequence<beans::PropertyValue>& xBitmap )
+{
+ setupImage( m_aImages.addImage(xBitmap) );
+}
+
+void PDFIProcessor::drawColorMaskedImage(const uno::Sequence<beans::PropertyValue>& xBitmap,
+ const uno::Sequence<uno::Any>& /*xMaskColors*/ )
+{
+ // TODO(F3): Handle mask colors
+ setupImage( m_aImages.addImage(xBitmap) );
+}
+
+void PDFIProcessor::drawMaskedImage(const uno::Sequence<beans::PropertyValue>& xBitmap,
+ const uno::Sequence<beans::PropertyValue>& /*xMask*/,
+ bool /*bInvertMask*/)
+{
+ // TODO(F3): Handle mask and inversion
+ setupImage( m_aImages.addImage(xBitmap) );
+}
+
+void PDFIProcessor::drawAlphaMaskedImage(const uno::Sequence<beans::PropertyValue>& xBitmap,
+ const uno::Sequence<beans::PropertyValue>& /*xMask*/)
+{
+ // TODO(F3): Handle mask
+
+ setupImage( m_aImages.addImage(xBitmap) );
+
+}
+
+void PDFIProcessor::strokePath( const uno::Reference< rendering::XPolyPolygon2D >& rPath )
+{
+ basegfx::B2DPolyPolygon aPoly=basegfx::unotools::b2DPolyPolygonFromXPolyPolygon2D(rPath);
+ aPoly.transform(getCurrentContext().Transformation);
+
+ PolyPolyElement* pPoly = m_pElFactory->createPolyPolyElement(
+ m_pCurElement,
+ getGCId(getCurrentContext()),
+ aPoly,
+ PATH_STROKE );
+ pPoly->updateGeometry();
+ pPoly->ZOrder = m_nNextZOrder++;
+}
+
+void PDFIProcessor::fillPath( const uno::Reference< rendering::XPolyPolygon2D >& rPath )
+{
+ basegfx::B2DPolyPolygon aPoly=basegfx::unotools::b2DPolyPolygonFromXPolyPolygon2D(rPath);
+ aPoly.transform(getCurrentContext().Transformation);
+
+ PolyPolyElement* pPoly = m_pElFactory->createPolyPolyElement(
+ m_pCurElement,
+ getGCId(getCurrentContext()),
+ aPoly,
+ PATH_FILL );
+ pPoly->updateGeometry();
+ pPoly->ZOrder = m_nNextZOrder++;
+}
+
+void PDFIProcessor::eoFillPath( const uno::Reference< rendering::XPolyPolygon2D >& rPath )
+{
+ basegfx::B2DPolyPolygon aPoly=basegfx::unotools::b2DPolyPolygonFromXPolyPolygon2D(rPath);
+ aPoly.transform(getCurrentContext().Transformation);
+
+ PolyPolyElement* pPoly = m_pElFactory->createPolyPolyElement(
+ m_pCurElement,
+ getGCId(getCurrentContext()),
+ aPoly,
+ PATH_EOFILL );
+ pPoly->updateGeometry();
+ pPoly->ZOrder = m_nNextZOrder++;
+}
+
+void PDFIProcessor::intersectClip(const uno::Reference< rendering::XPolyPolygon2D >& rPath)
+{
+ // TODO(F3): interpret fill mode
+ basegfx::B2DPolyPolygon aNewClip = basegfx::unotools::b2DPolyPolygonFromXPolyPolygon2D(rPath);
+ aNewClip.transform(getCurrentContext().Transformation);
+ basegfx::B2DPolyPolygon aCurClip = getCurrentContext().Clip;
+
+ if( aCurClip.count() )
+ aNewClip = basegfx::tools::clipPolyPolygonOnPolyPolygon( aCurClip, aNewClip, false );
+
+ getCurrentContext().Clip = aNewClip;
+}
+
+void PDFIProcessor::intersectEoClip(const uno::Reference< rendering::XPolyPolygon2D >& rPath)
+{
+ // TODO(F3): interpret fill mode
+ basegfx::B2DPolyPolygon aNewClip = basegfx::unotools::b2DPolyPolygonFromXPolyPolygon2D(rPath);
+ aNewClip.transform(getCurrentContext().Transformation);
+ basegfx::B2DPolyPolygon aCurClip = getCurrentContext().Clip;
+
+ if( aCurClip.count() )
+ aNewClip = basegfx::tools::clipPolyPolygonOnPolyPolygon( aCurClip, aNewClip, false );
+
+ getCurrentContext().Clip = aNewClip;
+}
+
+void PDFIProcessor::hyperLink( const geometry::RealRectangle2D& rBounds,
+ const ::rtl::OUString& rURI )
+{
+ if( rURI.getLength() )
+ {
+ HyperlinkElement* pLink = m_pElFactory->createHyperlinkElement(
+ &m_pCurPage->Hyperlinks,
+ rURI );
+ pLink->x = rBounds.X1;
+ pLink->y = rBounds.Y1;
+ pLink->w = rBounds.X2-rBounds.X1;
+ pLink->h = rBounds.Y2-rBounds.Y1;
+ }
+}
+
+const FontAttributes& PDFIProcessor::getFont( sal_Int32 nFontId ) const
+{
+ IdToFontMap::const_iterator it = m_aIdToFont.find( nFontId );
+ if( it == m_aIdToFont.end() )
+ it = m_aIdToFont.find( 0 );
+ return it->second;
+}
+
+sal_Int32 PDFIProcessor::getGCId( const GraphicsContext& rGC )
+{
+ sal_Int32 nGCId = 0;
+ GCToIdMap::const_iterator it = m_aGCToId.find( rGC );
+ if( it != m_aGCToId.end() )
+ nGCId = it->second;
+ else
+ {
+ m_aGCToId[ rGC ] = m_nNextGCId;
+ m_aIdToGC[ m_nNextGCId ] = rGC;
+ nGCId = m_nNextGCId;
+ m_nNextGCId++;
+ }
+
+ return nGCId;
+}
+
+const GraphicsContext& PDFIProcessor::getGraphicsContext( sal_Int32 nGCId ) const
+{
+ IdToGCMap::const_iterator it = m_aIdToGC.find( nGCId );
+ if( it == m_aIdToGC.end() )
+ it = m_aIdToGC.find( 0 );
+ return it->second;
+}
+
+void PDFIProcessor::endPage()
+{
+ processGlyphLine(); // draw last line
+ if( m_xStatusIndicator.is()
+ && m_pCurPage
+ && m_pCurPage->PageNumber == m_nPages
+ )
+ m_xStatusIndicator->end();
+}
+
+void PDFIProcessor::startPage( const geometry::RealSize2D& rSize )
+{
+ // initial clip is to page bounds
+ getCurrentContext().Clip = basegfx::B2DPolyPolygon(
+ basegfx::tools::createPolygonFromRect(
+ basegfx::B2DRange( 0, 0, rSize.Width, rSize.Height )));
+
+ sal_Int32 nNextPageNr = m_pCurPage ? m_pCurPage->PageNumber+1 : 1;
+ if( m_xStatusIndicator.is() )
+ {
+ if( nNextPageNr == 1 )
+ startIndicator( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( " " ) ) );
+ m_xStatusIndicator->setValue( nNextPageNr );
+ }
+ m_pCurPage = m_pElFactory->createPageElement(m_pDocument.get(), nNextPageNr);
+ m_pCurElement = m_pCurPage;
+ m_pCurPage->w = rSize.Width;
+ m_pCurPage->h = rSize.Height;
+ m_nNextZOrder = 1;
+
+
+}
+
+void PDFIProcessor::emit( XmlEmitter& rEmitter,
+ const TreeVisitorFactory& rVisitorFactory )
+{
+#if OSL_DEBUG_LEVEL > 1
+ m_pDocument->emitStructure( 0 );
+#endif
+
+ ElementTreeVisitorSharedPtr optimizingVisitor(
+ rVisitorFactory.createOptimizingVisitor(*this));
+ // FIXME: localization
+ startIndicator( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( " " ) ) );
+ m_pDocument->visitedBy( *optimizingVisitor, std::list<Element*>::iterator());
+
+#if OSL_DEBUG_LEVEL > 1
+ m_pDocument->emitStructure( 0 );
+#endif
+
+ // get styles
+ StyleContainer aStyles;
+ ElementTreeVisitorSharedPtr finalizingVisitor(
+ rVisitorFactory.createStyleCollectingVisitor(aStyles,*this));
+ // FIXME: localization
+
+ m_pDocument->visitedBy( *finalizingVisitor, std::list<Element*>::iterator() );
+
+ EmitContext aContext( rEmitter, aStyles, m_aImages, *this, m_xStatusIndicator );
+ ElementTreeVisitorSharedPtr aEmittingVisitor(
+ rVisitorFactory.createEmittingVisitor(aContext));
+
+ PropertyMap aProps;
+ // document prolog
+ #define OASIS_STR "urn:oasis:names:tc:opendocument:xmlns:"
+ aProps[ USTR( "xmlns:office" ) ] = USTR( OASIS_STR "office:1.0" );
+ aProps[ USTR( "xmlns:style" ) ] = USTR( OASIS_STR "style:1.0" );
+ aProps[ USTR( "xmlns:text" ) ] = USTR( OASIS_STR "text:1.0" );
+ aProps[ USTR( "xmlns:svg" ) ] = USTR( OASIS_STR "svg-compatible:1.0" );
+ aProps[ USTR( "xmlns:table" ) ] = USTR( OASIS_STR "table:1.0" );
+ aProps[ USTR( "xmlns:draw" ) ] = USTR( OASIS_STR "drawing:1.0" );
+ aProps[ USTR( "xmlns:fo" ) ] = USTR( OASIS_STR "xsl-fo-compatible:1.0" );
+ aProps[ USTR( "xmlns:xlink" )] = USTR( "http://www.w3.org/1999/xlink" );
+ aProps[ USTR( "xmlns:dc" )] = USTR( "http://purl.org/dc/elements/1.1/" );
+ aProps[ USTR( "xmlns:number" )] = USTR( OASIS_STR "datastyle:1.0" );
+ aProps[ USTR( "xmlns:presentation" )] = USTR( OASIS_STR "presentation:1.0" );
+ aProps[ USTR( "xmlns:math" )] = USTR( "http://www.w3.org/1998/Math/MathML" );
+ aProps[ USTR( "xmlns:form" )] = USTR( OASIS_STR "form:1.0" );
+ aProps[ USTR( "xmlns:script" )] = USTR( OASIS_STR "script:1.0" );
+ aProps[ USTR( "xmlns:dom" )] = USTR( "http://www.w3.org/2001/xml-events" );
+ aProps[ USTR( "xmlns:xforms" )] = USTR( "http://www.w3.org/2002/xforms" );
+ aProps[ USTR( "xmlns:xsd" )] = USTR( "http://www.w3.org/2001/XMLSchema" );
+ aProps[ USTR( "xmlns:xsi" )] = USTR( "http://www.w3.org/2001/XMLSchema-instance" );
+ aProps[ USTR( "office:version" ) ] = USTR( "1.0" );
+ aProps[ USTR( "office:version" ) ] = USTR( "1.0" );
+
+ aContext.rEmitter.beginTag( "office:document", aProps );
+
+ // emit style list
+ aStyles.emit( aContext, *aEmittingVisitor );
+
+ m_pDocument->visitedBy( *aEmittingVisitor, std::list<Element*>::iterator() );
+ aContext.rEmitter.endTag( "office:document" );
+ endIndicator();
+}
+
+void PDFIProcessor::startIndicator( const rtl::OUString& rText, sal_Int32 nElements )
+{
+ if( nElements == -1 )
+ nElements = m_nPages;
+ if( m_xStatusIndicator.is() )
+ {
+ sal_Int32 nUnicodes = rText.getLength();
+ rtl::OUStringBuffer aStr( nUnicodes*2 );
+ const sal_Unicode* pText = rText.getStr();
+ for( int i = 0; i < nUnicodes; i++ )
+ {
+ if( nUnicodes-i > 1&&
+ pText[i] == '%' &&
+ pText[i+1] == 'd'
+ )
+ {
+ aStr.append( nElements );
+ i++;
+ }
+ else
+ aStr.append( pText[i] );
+ }
+ m_xStatusIndicator->start( aStr.makeStringAndClear(), nElements );
+ }
+}
+
+void PDFIProcessor::endIndicator()
+{
+ if( m_xStatusIndicator.is() )
+ m_xStatusIndicator->end();
+}
+
+void PDFIProcessor::sortDocument( bool bDeep )
+{
+ for( std::list< Element* >::iterator it = m_pDocument->Children.begin();
+ it != m_pDocument->Children.end(); ++it )
+ {
+ if( dynamic_cast<PageElement*>(*it) != NULL )
+ sortElements( *it, bDeep );
+ }
+}
+
+static bool lr_tb_sort( Element* pLeft, Element* pRight )
+{
+ // first: top-bottom sorting
+
+ // Note: allow for 10% overlap on text lines since text lines are usually
+ // of the same order as font height whereas the real paint area
+ // of text is usually smaller
+ double fudge_factor = 1.0;
+ if( dynamic_cast< TextElement* >(pLeft) || dynamic_cast< TextElement* >(pRight) )
+ fudge_factor = 0.9;
+
+ // if left's lower boundary is above right's upper boundary
+ // then left is smaller
+ if( pLeft->y+pLeft->h*fudge_factor < pRight->y )
+ return true;
+ // if right's lower boundary is above left's upper boundary
+ // then left is definitely not smaller
+ if( pRight->y+pRight->h*fudge_factor < pLeft->y )
+ return false;
+
+ // by now we have established that left and right are inside
+ // a "line", that is they have vertical overlap
+ // second: left-right sorting
+ // if left's right boundary is left to right's left boundary
+ // then left is smaller
+ if( pLeft->x+pLeft->w < pRight->x )
+ return true;
+ // if right's right boundary is left to left's left boundary
+ // then left is definitely not smaller
+ if( pRight->x+pRight->w < pLeft->x )
+ return false;
+
+ // here we have established vertical and horizontal overlap
+ // so sort left first, top second
+ if( pLeft->x < pRight->x )
+ return true;
+ if( pRight->x < pLeft->x )
+ return false;
+ if( pLeft->y < pRight->y )
+ return true;
+
+ return false;
+}
+
+void PDFIProcessor::sortElements( Element* pEle, bool bDeep )
+{
+ if( pEle->Children.empty() )
+ return;
+
+ if( bDeep )
+ {
+ for( std::list< Element* >::iterator it = pEle->Children.begin();
+ it != pEle->Children.end(); ++it )
+ {
+ sortElements( *it, bDeep );
+ }
+ }
+ // HACK: the stable sort member on std::list that takes a
+ // strict weak ordering requires member templates - which we
+ // do not have on all compilers. so we need to use std::stable_sort
+ // here - which does need random access iterators which the
+ // list iterators are not.
+ // so we need to copy the Element* to an array, stable sort that and
+ // copy them back.
+ std::vector<Element*> aChildren;
+ while( ! pEle->Children.empty() )
+ {
+ aChildren.push_back( pEle->Children.front() );
+ pEle->Children.pop_front();
+ }
+ switch( m_eTextDirection )
+ {
+ case LrTb:
+ default:
+ std::stable_sort( aChildren.begin(), aChildren.end(), lr_tb_sort );
+ break;
+ }
+ int nChildren = aChildren.size();
+ for( int i = 0; i < nChildren; i++ )
+ pEle->Children.push_back( aChildren[i] );
+}
+
+
+::basegfx::B2DRange& PDFIProcessor::calcTransformedRectBounds( ::basegfx::B2DRange& outRect,
+ const ::basegfx::B2DRange& inRect,
+ const ::basegfx::B2DHomMatrix& transformation )
+ {
+ outRect.reset();
+
+ if( inRect.isEmpty() )
+ return outRect;
+
+ // transform all four extremal points of the rectangle,
+ // take bounding rect of those.
+
+ // transform left-top point
+ outRect.expand( transformation * inRect.getMinimum() );
+
+ // transform bottom-right point
+ outRect.expand( transformation * inRect.getMaximum() );
+
+ ::basegfx::B2DPoint aPoint;
+
+ // transform top-right point
+ aPoint.setX( inRect.getMaxX() );
+ aPoint.setY( inRect.getMinY() );
+
+ aPoint *= transformation;
+ outRect.expand( aPoint );
+
+ // transform bottom-left point
+ aPoint.setX( inRect.getMinX() );
+ aPoint.setY( inRect.getMaxY() );
+
+ aPoint *= transformation;
+ outRect.expand( aPoint );
+
+ // over and out.
+ return outRect;
+ }
+
+}