bump product version to 4.1.6.2
[LibreOffice.git] / include / xmloff / xmlprcon.hxx
blob3ed1af78e736e4eb8567ec310dd215e966afdead
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 _XMLOFF_XMLPROPERTYSETCONTEXT_HXX
21 #define _XMLOFF_XMLPROPERTYSETCONTEXT_HXX
23 #include <xmloff/xmlictxt.hxx>
24 #include <xmloff/xmlimppr.hxx>
25 #include <xmloff/xmlprmap.hxx>
26 #include <xmloff/uniref.hxx>
29 class SvXMLImportPropertyMapper;
31 class XMLOFF_DLLPUBLIC SvXMLPropertySetContext : public SvXMLImportContext
33 protected:
34 sal_Int32 mnStartIdx;
35 sal_Int32 mnEndIdx;
36 sal_uInt32 mnFamily;
37 ::std::vector< XMLPropertyState > &mrProperties;
38 UniReference < SvXMLImportPropertyMapper > mxMapper;
40 public:
42 SvXMLPropertySetContext(
43 SvXMLImport& rImport, sal_uInt16 nPrfx,
44 const OUString& rLName,
45 const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList,
46 sal_uInt32 nFamily,
47 ::std::vector< XMLPropertyState > &rProps,
48 const UniReference < SvXMLImportPropertyMapper > &rMap,
49 sal_Int32 nStartIdx = -1, sal_Int32 nEndIdx = -1 );
51 virtual ~SvXMLPropertySetContext();
53 virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix,
54 const OUString& rLocalName,
55 const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
57 // This method is called from this instance implementation of
58 // CreateChildContext if the element matches an entry in the
59 // SvXMLImportItemMapper with the mid flag MID_FLAG_ELEMENT_ITEM_IMPORT
60 virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix,
61 const OUString& rLocalName,
62 const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList,
63 ::std::vector< XMLPropertyState > &rProperties,
64 const XMLPropertyState& rProp );
68 #endif // _XMLOFF_XMLPROPERTYSETCONTEXT_HXX
70 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */