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 .
19 #ifndef INCLUDED_SC_SOURCE_FILTER_XML_XMLTABLEHEADERFOOTERCONTEXT_HXX
20 #define INCLUDED_SC_SOURCE_FILTER_XML_XMLTABLEHEADERFOOTERCONTEXT_HXX
22 #include <xmloff/xmlictxt.hxx>
23 #include <xmloff/xmlimp.hxx>
24 #include <com/sun/star/sheet/XHeaderFooterContent.hpp>
26 namespace com
{ namespace sun
{ namespace star
{
27 namespace text
{ class XTextCursor
; }
28 namespace beans
{ class XPropertySet
; }
31 class XMLTableHeaderFooterContext
: public SvXMLImportContext
33 ::com::sun::star::uno::Reference
<
34 ::com::sun::star::text::XTextCursor
> xTextCursor
;
35 ::com::sun::star::uno::Reference
<
36 ::com::sun::star::text::XTextCursor
> xOldTextCursor
;
37 ::com::sun::star::uno::Reference
<
38 ::com::sun::star::beans::XPropertySet
> xPropSet
;
39 ::com::sun::star::uno::Reference
<
40 ::com::sun::star::sheet::XHeaderFooterContent
> xHeaderFooterContent
;
43 const OUString sShareContent
;
44 const OUString sContent
;
45 const OUString sContentLeft
;
46 const OUString sEmpty
;
58 XMLTableHeaderFooterContext( SvXMLImport
& rImport
, sal_uInt16 nPrfx
,
59 const OUString
& rLName
,
60 const ::com::sun::star::uno::Reference
<
61 ::com::sun::star::xml::sax::XAttributeList
> & xAttrList
,
62 const ::com::sun::star::uno::Reference
<
63 ::com::sun::star::beans::XPropertySet
> & rPageStylePropSet
,
64 bool bFooter
, bool bLft
);
66 virtual ~XMLTableHeaderFooterContext();
68 virtual SvXMLImportContext
*CreateChildContext(
70 const OUString
& rLocalName
,
71 const ::com::sun::star::uno::Reference
< ::com::sun::star::xml::sax::XAttributeList
> & xAttrList
) SAL_OVERRIDE
;
73 virtual void EndElement() SAL_OVERRIDE
;
76 class XMLHeaderFooterRegionContext
: public SvXMLImportContext
79 ::com::sun::star::uno::Reference
<
80 ::com::sun::star::text::XTextCursor
>& xTextCursor
;
81 ::com::sun::star::uno::Reference
<
82 ::com::sun::star::text::XTextCursor
> xOldTextCursor
;
87 XMLHeaderFooterRegionContext( SvXMLImport
& rImport
, sal_uInt16 nPrfx
,
88 const OUString
& rLName
,
89 const ::com::sun::star::uno::Reference
<
90 ::com::sun::star::xml::sax::XAttributeList
> & xAttrList
,
91 com::sun::star::uno::Reference
< com::sun::star::text::XTextCursor
>& xCursor
);
93 virtual ~XMLHeaderFooterRegionContext();
95 virtual SvXMLImportContext
*CreateChildContext(
97 const OUString
& rLocalName
,
98 const ::com::sun::star::uno::Reference
< ::com::sun::star::xml::sax::XAttributeList
> & xAttrList
) SAL_OVERRIDE
;
100 virtual void EndElement() SAL_OVERRIDE
;
105 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */