1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <xmloff/xmlprcon.hxx>
21 #include <xmloff/xmlimp.hxx>
22 #include <xmloff/xmltypes.hxx>
23 #include <xmloff/maptype.hxx>
25 using namespace ::com::sun::star
;
26 using namespace ::std
;
28 SvXMLPropertySetContext::SvXMLPropertySetContext(
29 SvXMLImport
& rImp
, sal_uInt16 nPrfx
,
30 const OUString
& rLName
,
31 const uno::Reference
< xml::sax::XAttributeList
>& xAttrList
,
33 vector
< XMLPropertyState
> &rProps
,
34 const rtl::Reference
< SvXMLImportPropertyMapper
> &rMap
,
35 sal_Int32 nSIdx
, sal_Int32 nEIdx
)
36 : SvXMLImportContext( rImp
, nPrfx
, rLName
)
40 , mrProperties( rProps
)
43 mxMapper
->importXML( mrProperties
, xAttrList
,
44 GetImport().GetMM100UnitConverter(),
45 GetImport().GetNamespaceMap(), mnFamily
,
46 mnStartIdx
, mnEndIdx
);
49 SvXMLPropertySetContext::~SvXMLPropertySetContext()
53 SvXMLImportContext
*SvXMLPropertySetContext::CreateChildContext(
55 const OUString
& rLocalName
,
56 const uno::Reference
< xml::sax::XAttributeList
>& xAttrList
)
58 rtl::Reference
< XMLPropertySetMapper
> aSetMapper(
59 mxMapper
->getPropertySetMapper() );
60 sal_Int32 nEntryIndex
= aSetMapper
->GetEntryIndex( nPrefix
, rLocalName
,
61 mnFamily
, mnStartIdx
);
63 if( ( nEntryIndex
!= -1 ) && (-1 == mnEndIdx
|| nEntryIndex
< mnEndIdx
) &&
64 ( 0 != ( aSetMapper
->GetEntryFlags( nEntryIndex
)
65 & MID_FLAG_ELEMENT_ITEM_IMPORT
) ) )
67 XMLPropertyState
aProp( nEntryIndex
);
68 return CreateChildContext( nPrefix
, rLocalName
, xAttrList
,
69 mrProperties
, aProp
);
73 return new SvXMLImportContext( GetImport(), nPrefix
, rLocalName
);
77 /** This method is called from this instance implementation of
78 CreateChildContext if the element matches an entry in the
79 SvXMLImportItemMapper with the mid flag MID_FLAG_ELEMENT
81 SvXMLImportContext
*SvXMLPropertySetContext::CreateChildContext(
83 const OUString
& rLocalName
,
84 const uno::Reference
< xml::sax::XAttributeList
>&,
85 ::std::vector
< XMLPropertyState
> &,
86 const XMLPropertyState
& )
88 return new SvXMLImportContext( GetImport(), nPrefix
, rLocalName
);
92 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */