Branch libreoffice-5-0-4
[LibreOffice.git] / include / xmloff / xmlprcon.hxx
blob1856d237a7671ed9ed6a4099328efcd336e002bc
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 #ifndef INCLUDED_XMLOFF_XMLPRCON_HXX
21 #define INCLUDED_XMLOFF_XMLPRCON_HXX
23 #include <xmloff/xmlictxt.hxx>
24 #include <xmloff/xmlimppr.hxx>
25 #include <xmloff/xmlprmap.hxx>
28 class SvXMLImportPropertyMapper;
30 class XMLOFF_DLLPUBLIC SvXMLPropertySetContext : public SvXMLImportContext
32 protected:
33 sal_Int32 mnStartIdx;
34 sal_Int32 mnEndIdx;
35 sal_uInt32 mnFamily;
36 ::std::vector< XMLPropertyState > &mrProperties;
37 rtl::Reference < SvXMLImportPropertyMapper > mxMapper;
39 public:
41 SvXMLPropertySetContext(
42 SvXMLImport& rImport, sal_uInt16 nPrfx,
43 const OUString& rLName,
44 const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList,
45 sal_uInt32 nFamily,
46 ::std::vector< XMLPropertyState > &rProps,
47 const rtl::Reference < SvXMLImportPropertyMapper > &rMap,
48 sal_Int32 nStartIdx = -1, sal_Int32 nEndIdx = -1 );
50 virtual ~SvXMLPropertySetContext();
52 virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix,
53 const OUString& rLocalName,
54 const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList ) SAL_OVERRIDE;
56 // This method is called from this instance implementation of
57 // CreateChildContext if the element matches an entry in the
58 // SvXMLImportItemMapper with the mid flag MID_FLAG_ELEMENT_ITEM_IMPORT
59 virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix,
60 const OUString& rLocalName,
61 const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList,
62 ::std::vector< XMLPropertyState > &rProperties,
63 const XMLPropertyState& rProp );
67 #endif // INCLUDED_XMLOFF_XMLPRCON_HXX
69 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */