tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / xmloff / source / style / xmlprcon.cxx
blob023a7f5b6b01560013de4bb3b496ca5e0116e51d
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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>
21 #include <utility>
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;
31 SvXMLPropertySetContext::SvXMLPropertySetContext(
32 SvXMLImport& rImp, sal_Int32 /*nElement*/,
33 const uno::Reference< xml::sax::XFastAttributeList >& xAttrList,
34 sal_uInt32 nFam,
35 std::vector< XMLPropertyState > &rProps,
36 rtl::Reference < SvXMLImportPropertyMapper > xMap,
37 sal_Int32 nSIdx, sal_Int32 nEIdx )
38 : SvXMLImportContext( rImp )
39 , mnStartIdx( nSIdx )
40 , mnEndIdx( nEIdx )
41 , mnFamily( nFam )
42 , mrProperties( rProps )
43 , mxMapper(std::move( xMap ))
45 mxMapper->importXML( mrProperties, xAttrList,
46 GetImport().GetMM100UnitConverter(),
47 GetImport().GetNamespaceMap(), mnFamily,
48 mnStartIdx, mnEndIdx );
51 SvXMLPropertySetContext::~SvXMLPropertySetContext()
55 css::uno::Reference< css::xml::sax::XFastContextHandler > SvXMLPropertySetContext::createFastChildContext(
56 sal_Int32 nElement,
57 const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList)
59 rtl::Reference< XMLPropertySetMapper > aSetMapper(
60 mxMapper->getPropertySetMapper() );
61 sal_Int32 nEntryIndex = aSetMapper->GetEntryIndex( nElement, 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 createFastChildContext( nElement, xAttrList, mrProperties, aProp );
70 XMLOFF_WARN_UNKNOWN_ELEMENT("xmloff", nElement);
71 return nullptr;
74 /** This method is called from this instance implementation of
75 CreateChildContext if the element matches an entry in the
76 SvXMLImportItemMapper with the mid flag MID_FLAG_ELEMENT
78 css::uno::Reference< css::xml::sax::XFastContextHandler > SvXMLPropertySetContext::createFastChildContext(
79 sal_Int32 nElement,
80 const css::uno::Reference< css::xml::sax::XFastAttributeList >& /*xAttrList*/,
81 ::std::vector< XMLPropertyState > &/*rProperties*/,
82 const XMLPropertyState& /*rProp*/ )
84 XMLOFF_WARN_UNKNOWN_ELEMENT("xmloff", nElement);
85 return nullptr;
89 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */