xref: /AOO41X/main/xmloff/source/text/XMLTextShapeImportHelper.cxx (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
29*cdf0e10cSrcweir #include "precompiled_xmloff.hxx"
30*cdf0e10cSrcweir #include <com/sun/star/text/XTextContent.hpp>
31*cdf0e10cSrcweir #ifndef _COM_SUN_STAR_TEXT_TEXTCONTENTANCHORTYPE_HPP
32*cdf0e10cSrcweir #include <com/sun/star/text/TextContentAnchorType.hpp>
33*cdf0e10cSrcweir #endif
34*cdf0e10cSrcweir 
35*cdf0e10cSrcweir #ifndef _XMLOFF_XMLTIMP_HXX_
36*cdf0e10cSrcweir #include <xmloff/xmlimp.hxx>
37*cdf0e10cSrcweir #endif
38*cdf0e10cSrcweir #include <xmloff/txtimp.hxx>
39*cdf0e10cSrcweir #include <xmloff/xmluconv.hxx>
40*cdf0e10cSrcweir #include <xmloff/nmspmap.hxx>
41*cdf0e10cSrcweir #include "XMLAnchorTypePropHdl.hxx"
42*cdf0e10cSrcweir #include <com/sun/star/drawing/XDrawPageSupplier.hpp>
43*cdf0e10cSrcweir #include <com/sun/star/drawing/XShapes.hpp>
44*cdf0e10cSrcweir #include "xmloff/XMLTextShapeImportHelper.hxx"
45*cdf0e10cSrcweir 
46*cdf0e10cSrcweir using ::rtl::OUString;
47*cdf0e10cSrcweir using ::rtl::OUStringBuffer;
48*cdf0e10cSrcweir 
49*cdf0e10cSrcweir using namespace ::com::sun::star::uno;
50*cdf0e10cSrcweir using namespace ::com::sun::star::frame;
51*cdf0e10cSrcweir using namespace ::com::sun::star::drawing;
52*cdf0e10cSrcweir using namespace ::com::sun::star::beans;
53*cdf0e10cSrcweir using namespace ::com::sun::star::text;
54*cdf0e10cSrcweir using namespace ::com::sun::star::container;
55*cdf0e10cSrcweir using namespace ::com::sun::star::xml::sax;
56*cdf0e10cSrcweir 
57*cdf0e10cSrcweir XMLTextShapeImportHelper::XMLTextShapeImportHelper(
58*cdf0e10cSrcweir 		SvXMLImport& rImp ) :
59*cdf0e10cSrcweir 	XMLShapeImportHelper( rImp, rImp.GetModel(),
60*cdf0e10cSrcweir 						  XMLTextImportHelper::CreateShapeExtPropMapper(rImp) ),
61*cdf0e10cSrcweir 	rImport( rImp ),
62*cdf0e10cSrcweir 	sAnchorType(RTL_CONSTASCII_USTRINGPARAM("AnchorType")),
63*cdf0e10cSrcweir 	sAnchorPageNo(RTL_CONSTASCII_USTRINGPARAM("AnchorPageNo")),
64*cdf0e10cSrcweir 	sVertOrientPosition(RTL_CONSTASCII_USTRINGPARAM("VertOrientPosition"))
65*cdf0e10cSrcweir {
66*cdf0e10cSrcweir 	Reference < XDrawPageSupplier > xDPS( rImp.GetModel(), UNO_QUERY );
67*cdf0e10cSrcweir 	if( xDPS.is() )
68*cdf0e10cSrcweir 	{
69*cdf0e10cSrcweir 	 	Reference < XShapes > xShapes( xDPS->getDrawPage(), UNO_QUERY );
70*cdf0e10cSrcweir 		pushGroupForSorting( xShapes );
71*cdf0e10cSrcweir 	}
72*cdf0e10cSrcweir 
73*cdf0e10cSrcweir }
74*cdf0e10cSrcweir 
75*cdf0e10cSrcweir XMLTextShapeImportHelper::~XMLTextShapeImportHelper()
76*cdf0e10cSrcweir {
77*cdf0e10cSrcweir 	popGroupAndSort();
78*cdf0e10cSrcweir }
79*cdf0e10cSrcweir 
80*cdf0e10cSrcweir void XMLTextShapeImportHelper::addShape(
81*cdf0e10cSrcweir 	Reference< XShape >& rShape,
82*cdf0e10cSrcweir 	const Reference< XAttributeList >& xAttrList,
83*cdf0e10cSrcweir 	Reference< XShapes >& rShapes )
84*cdf0e10cSrcweir {
85*cdf0e10cSrcweir 	if( rShapes.is() )
86*cdf0e10cSrcweir 	{
87*cdf0e10cSrcweir 		// It's a group shape or 3DScene , so we have to call the base class method.
88*cdf0e10cSrcweir 		XMLShapeImportHelper::addShape( rShape, xAttrList, rShapes );
89*cdf0e10cSrcweir 		return;
90*cdf0e10cSrcweir 	}
91*cdf0e10cSrcweir 
92*cdf0e10cSrcweir 	TextContentAnchorType eAnchorType = TextContentAnchorType_AT_PARAGRAPH;
93*cdf0e10cSrcweir 	sal_Int16	nPage = 0;
94*cdf0e10cSrcweir 	sal_Int32	nY = 0;
95*cdf0e10cSrcweir 
96*cdf0e10cSrcweir 	UniReference < XMLTextImportHelper > xTxtImport =
97*cdf0e10cSrcweir 		rImport.GetTextImport();
98*cdf0e10cSrcweir 	const SvXMLTokenMap& rTokenMap =
99*cdf0e10cSrcweir 		xTxtImport->GetTextFrameAttrTokenMap();
100*cdf0e10cSrcweir 
101*cdf0e10cSrcweir 	sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
102*cdf0e10cSrcweir 	for( sal_Int16 i=0; i < nAttrCount; i++ )
103*cdf0e10cSrcweir 	{
104*cdf0e10cSrcweir 		const OUString& rAttrName = xAttrList->getNameByIndex( i );
105*cdf0e10cSrcweir 		const OUString& rValue = xAttrList->getValueByIndex( i );
106*cdf0e10cSrcweir 
107*cdf0e10cSrcweir 		OUString aLocalName;
108*cdf0e10cSrcweir 		sal_uInt16 nPrefix =
109*cdf0e10cSrcweir 			rImport.GetNamespaceMap().GetKeyByAttrName( rAttrName,
110*cdf0e10cSrcweir 															&aLocalName );
111*cdf0e10cSrcweir 		switch( rTokenMap.Get( nPrefix, aLocalName ) )
112*cdf0e10cSrcweir 		{
113*cdf0e10cSrcweir 		case XML_TOK_TEXT_FRAME_ANCHOR_TYPE:
114*cdf0e10cSrcweir 			{
115*cdf0e10cSrcweir 				TextContentAnchorType eNew;
116*cdf0e10cSrcweir                 // OD 2004-06-01 #i26791# - allow all anchor types
117*cdf0e10cSrcweir                 if ( XMLAnchorTypePropHdl::convert( rValue, eNew ) )
118*cdf0e10cSrcweir                 {
119*cdf0e10cSrcweir 					eAnchorType = eNew;
120*cdf0e10cSrcweir                 }
121*cdf0e10cSrcweir 			}
122*cdf0e10cSrcweir 			break;
123*cdf0e10cSrcweir 		case XML_TOK_TEXT_FRAME_ANCHOR_PAGE_NUMBER:
124*cdf0e10cSrcweir 			{
125*cdf0e10cSrcweir 				sal_Int32 nTmp;
126*cdf0e10cSrcweir 			   	if( rImport.GetMM100UnitConverter().
127*cdf0e10cSrcweir 								convertNumber( nTmp, rValue, 1, SHRT_MAX ) )
128*cdf0e10cSrcweir 					nPage = (sal_Int16)nTmp;
129*cdf0e10cSrcweir 			}
130*cdf0e10cSrcweir 			break;
131*cdf0e10cSrcweir 		case XML_TOK_TEXT_FRAME_Y:
132*cdf0e10cSrcweir 			rImport.GetMM100UnitConverter().convertMeasure( nY, rValue );
133*cdf0e10cSrcweir 			break;
134*cdf0e10cSrcweir 		}
135*cdf0e10cSrcweir 	}
136*cdf0e10cSrcweir 
137*cdf0e10cSrcweir 	Reference < XPropertySet > xPropSet( rShape, UNO_QUERY );
138*cdf0e10cSrcweir 	Any aAny;
139*cdf0e10cSrcweir 
140*cdf0e10cSrcweir 	// anchor type
141*cdf0e10cSrcweir 	aAny <<= eAnchorType;
142*cdf0e10cSrcweir 	xPropSet->setPropertyValue( sAnchorType, aAny );
143*cdf0e10cSrcweir 
144*cdf0e10cSrcweir 	Reference < XTextContent > xTxtCntnt( rShape, UNO_QUERY );
145*cdf0e10cSrcweir 	xTxtImport->InsertTextContent( xTxtCntnt );
146*cdf0e10cSrcweir 
147*cdf0e10cSrcweir 	// page number (must be set after the frame is inserted, because it
148*cdf0e10cSrcweir 	// will be overwritten then inserting the frame.
149*cdf0e10cSrcweir 	switch( eAnchorType )
150*cdf0e10cSrcweir 	{
151*cdf0e10cSrcweir 	case TextContentAnchorType_AT_PAGE:
152*cdf0e10cSrcweir 		// only set positive page numbers
153*cdf0e10cSrcweir 		if ( nPage > 0 )
154*cdf0e10cSrcweir 		{
155*cdf0e10cSrcweir 			aAny <<= nPage;
156*cdf0e10cSrcweir 			xPropSet->setPropertyValue( sAnchorPageNo, aAny );
157*cdf0e10cSrcweir 		}
158*cdf0e10cSrcweir 		break;
159*cdf0e10cSrcweir 	case TextContentAnchorType_AS_CHARACTER:
160*cdf0e10cSrcweir 		aAny <<= nY;
161*cdf0e10cSrcweir 		xPropSet->setPropertyValue( sVertOrientPosition, aAny );
162*cdf0e10cSrcweir 		break;
163*cdf0e10cSrcweir 	default:
164*cdf0e10cSrcweir 		break;
165*cdf0e10cSrcweir 	}
166*cdf0e10cSrcweir }
167