1*63bba73cSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*63bba73cSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*63bba73cSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*63bba73cSAndrew Rist  * distributed with this work for additional information
6*63bba73cSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*63bba73cSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*63bba73cSAndrew Rist  * "License"); you may not use this file except in compliance
9*63bba73cSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*63bba73cSAndrew Rist  *
11*63bba73cSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*63bba73cSAndrew Rist  *
13*63bba73cSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*63bba73cSAndrew Rist  * software distributed under the License is distributed on an
15*63bba73cSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*63bba73cSAndrew Rist  * KIND, either express or implied.  See the License for the
17*63bba73cSAndrew Rist  * specific language governing permissions and limitations
18*63bba73cSAndrew Rist  * under the License.
19*63bba73cSAndrew Rist  *
20*63bba73cSAndrew Rist  *************************************************************/
21*63bba73cSAndrew Rist 
22*63bba73cSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_xmloff.hxx"
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #ifndef _XMLOFF_XMLSHAPEPROPERTYSETCONTEXT_HXX_
28cdf0e10cSrcweir #include "XMLShapePropertySetContext.hxx"
29cdf0e10cSrcweir #endif
30cdf0e10cSrcweir #include <xmloff/xmlimp.hxx>
31cdf0e10cSrcweir #include <xmloff/xmlnumi.hxx>
32cdf0e10cSrcweir #include "xmltabi.hxx"
33cdf0e10cSrcweir #include <xmloff/txtprmap.hxx>
34cdf0e10cSrcweir 
35cdf0e10cSrcweir #include "sdpropls.hxx"
36cdf0e10cSrcweir 
37cdf0e10cSrcweir using ::rtl::OUString;
38cdf0e10cSrcweir using ::rtl::OUStringBuffer;
39cdf0e10cSrcweir 
40cdf0e10cSrcweir using namespace ::com::sun::star;
41cdf0e10cSrcweir using namespace ::com::sun::star::uno;
42cdf0e10cSrcweir 
43cdf0e10cSrcweir //////////////////////////////////////////////////////////////////////////////
44cdf0e10cSrcweir 
45cdf0e10cSrcweir TYPEINIT1( XMLShapePropertySetContext, SvXMLPropertySetContext );
46cdf0e10cSrcweir 
XMLShapePropertySetContext(SvXMLImport & rImport,sal_uInt16 nPrfx,const OUString & rLName,const Reference<xml::sax::XAttributeList> & xAttrList,sal_uInt32 nFam,::std::vector<XMLPropertyState> & rProps,const UniReference<SvXMLImportPropertyMapper> & rMap)47cdf0e10cSrcweir XMLShapePropertySetContext::XMLShapePropertySetContext(
48cdf0e10cSrcweir 				 SvXMLImport& rImport, sal_uInt16 nPrfx,
49cdf0e10cSrcweir 				 const OUString& rLName,
50cdf0e10cSrcweir 				 const Reference< xml::sax::XAttributeList > & xAttrList,
51cdf0e10cSrcweir 				 sal_uInt32 nFam,
52cdf0e10cSrcweir 				 ::std::vector< XMLPropertyState > &rProps,
53cdf0e10cSrcweir 				 const UniReference < SvXMLImportPropertyMapper > &rMap ) :
54cdf0e10cSrcweir 	SvXMLPropertySetContext( rImport, nPrfx, rLName, xAttrList, nFam,
55cdf0e10cSrcweir 							 rProps, rMap ),
56cdf0e10cSrcweir 	mnBulletIndex(-1)
57cdf0e10cSrcweir {
58cdf0e10cSrcweir }
59cdf0e10cSrcweir 
~XMLShapePropertySetContext()60cdf0e10cSrcweir XMLShapePropertySetContext::~XMLShapePropertySetContext()
61cdf0e10cSrcweir {
62cdf0e10cSrcweir }
63cdf0e10cSrcweir 
EndElement()64cdf0e10cSrcweir void XMLShapePropertySetContext::EndElement()
65cdf0e10cSrcweir {
66cdf0e10cSrcweir 	Reference< container::XIndexReplace > xNumRule;
67cdf0e10cSrcweir 	if( mxBulletStyle.Is() )
68cdf0e10cSrcweir 	{
69cdf0e10cSrcweir 		SvxXMLListStyleContext* pBulletStyle = (SvxXMLListStyleContext*)&mxBulletStyle;
70cdf0e10cSrcweir 		xNumRule = pBulletStyle->CreateNumRule( GetImport().GetModel() );
71cdf0e10cSrcweir 		if( xNumRule.is() )
72cdf0e10cSrcweir 			pBulletStyle->FillUnoNumRule(xNumRule, NULL /* const SvI18NMap * ??? */ );
73cdf0e10cSrcweir 	}
74cdf0e10cSrcweir 
75cdf0e10cSrcweir 	Any aAny;
76cdf0e10cSrcweir 	aAny <<= xNumRule;
77cdf0e10cSrcweir 
78cdf0e10cSrcweir 	XMLPropertyState aPropState( mnBulletIndex, aAny );
79cdf0e10cSrcweir 	mrProperties.push_back( aPropState );
80cdf0e10cSrcweir 
81cdf0e10cSrcweir 	SvXMLPropertySetContext::EndElement();
82cdf0e10cSrcweir }
83cdf0e10cSrcweir 
CreateChildContext(sal_uInt16 nPrefix,const OUString & rLocalName,const Reference<xml::sax::XAttributeList> & xAttrList,::std::vector<XMLPropertyState> & rProperties,const XMLPropertyState & rProp)84cdf0e10cSrcweir SvXMLImportContext *XMLShapePropertySetContext::CreateChildContext(
85cdf0e10cSrcweir 				   sal_uInt16 nPrefix,
86cdf0e10cSrcweir 				   const OUString& rLocalName,
87cdf0e10cSrcweir 				   const Reference< xml::sax::XAttributeList > & xAttrList,
88cdf0e10cSrcweir 				   ::std::vector< XMLPropertyState > &rProperties,
89cdf0e10cSrcweir 				   const XMLPropertyState& rProp )
90cdf0e10cSrcweir {
91cdf0e10cSrcweir 	SvXMLImportContext *pContext = 0;
92cdf0e10cSrcweir 
93cdf0e10cSrcweir 	switch( mxMapper->getPropertySetMapper()->GetEntryContextId( rProp.mnIndex ) )
94cdf0e10cSrcweir 	{
95cdf0e10cSrcweir 	case CTF_NUMBERINGRULES:
96cdf0e10cSrcweir 		mnBulletIndex = rProp.mnIndex;
97cdf0e10cSrcweir 		mxBulletStyle = pContext = new SvxXMLListStyleContext( GetImport(), nPrefix, rLocalName, xAttrList );
98cdf0e10cSrcweir 		break;
99cdf0e10cSrcweir 	case CTF_TABSTOP:
100cdf0e10cSrcweir 		pContext = new SvxXMLTabStopImportContext( GetImport(), nPrefix,
101cdf0e10cSrcweir 												   rLocalName, rProp,
102cdf0e10cSrcweir 												   rProperties );
103cdf0e10cSrcweir 		break;
104cdf0e10cSrcweir 	}
105cdf0e10cSrcweir 
106cdf0e10cSrcweir 	if( !pContext )
107cdf0e10cSrcweir 		pContext = SvXMLPropertySetContext::CreateChildContext( nPrefix, rLocalName,
108cdf0e10cSrcweir 															xAttrList,
109cdf0e10cSrcweir 															rProperties, rProp );
110cdf0e10cSrcweir 
111cdf0e10cSrcweir 	return pContext;
112cdf0e10cSrcweir }
113