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 <sal/log.hxx>
22 #include <xmloff/xmlprcon.hxx>
23 #include <xmloff/xmlimp.hxx>
24 #include <xmloff/xmltypes.hxx>
25 #include <xmloff/maptype.hxx>
26 #include <xmloff/xmlimppr.hxx>
27 #include <xmloff/xmlprmap.hxx>
29 using namespace ::com::sun::star
;
30 using namespace ::std
;
32 SvXMLPropertySetContext::SvXMLPropertySetContext(
33 SvXMLImport
& rImp
, sal_Int32
/*nElement*/,
34 const uno::Reference
< xml::sax::XFastAttributeList
>& xAttrList
,
36 vector
< XMLPropertyState
> &rProps
,
37 rtl::Reference
< SvXMLImportPropertyMapper
> xMap
,
38 sal_Int32 nSIdx
, sal_Int32 nEIdx
)
39 : SvXMLImportContext( rImp
)
43 , mrProperties( rProps
)
44 , mxMapper(std::move( xMap
))
46 mxMapper
->importXML( mrProperties
, xAttrList
,
47 GetImport().GetMM100UnitConverter(),
48 GetImport().GetNamespaceMap(), mnFamily
,
49 mnStartIdx
, mnEndIdx
);
52 SvXMLPropertySetContext::~SvXMLPropertySetContext()
56 css::uno::Reference
< css::xml::sax::XFastContextHandler
> SvXMLPropertySetContext::createFastChildContext(
58 const css::uno::Reference
< css::xml::sax::XFastAttributeList
>& xAttrList
)
60 rtl::Reference
< XMLPropertySetMapper
> aSetMapper(
61 mxMapper
->getPropertySetMapper() );
62 sal_Int32 nEntryIndex
= aSetMapper
->GetEntryIndex( nElement
, mnFamily
, mnStartIdx
);
64 if( ( nEntryIndex
!= -1 ) && (-1 == mnEndIdx
|| nEntryIndex
< mnEndIdx
) &&
65 ( 0 != ( aSetMapper
->GetEntryFlags( nEntryIndex
)
66 & MID_FLAG_ELEMENT_ITEM_IMPORT
) ) )
68 XMLPropertyState
aProp( nEntryIndex
);
69 return createFastChildContext( nElement
, xAttrList
, mrProperties
, aProp
);
71 XMLOFF_WARN_UNKNOWN_ELEMENT("xmloff", nElement
);
75 /** This method is called from this instance implementation of
76 CreateChildContext if the element matches an entry in the
77 SvXMLImportItemMapper with the mid flag MID_FLAG_ELEMENT
79 css::uno::Reference
< css::xml::sax::XFastContextHandler
> SvXMLPropertySetContext::createFastChildContext(
81 const css::uno::Reference
< css::xml::sax::XFastAttributeList
>& /*xAttrList*/,
82 ::std::vector
< XMLPropertyState
> &/*rProperties*/,
83 const XMLPropertyState
& /*rProp*/ )
85 XMLOFF_WARN_UNKNOWN_ELEMENT("xmloff", nElement
);
90 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */