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
23 #include <xmloff/xmlictxt.hxx>
24 #include <xmloff/xmlimp.hxx>
25 #include <com/sun/star/sheet/XHeaderFooterContent.hpp>
27 namespace com
{ namespace sun
{ namespace star
{
28 namespace text
{ class XTextCursor
; }
29 namespace beans
{ class XPropertySet
; }
32 class XMLTableHeaderFooterContext
: public SvXMLImportContext
34 ::com::sun::star::uno::Reference
<
35 ::com::sun::star::text::XTextCursor
> xTextCursor
;
36 ::com::sun::star::uno::Reference
<
37 ::com::sun::star::text::XTextCursor
> xOldTextCursor
;
38 ::com::sun::star::uno::Reference
<
39 ::com::sun::star::beans::XPropertySet
> xPropSet
;
40 ::com::sun::star::uno::Reference
<
41 ::com::sun::star::sheet::XHeaderFooterContent
> xHeaderFooterContent
;
44 const OUString sShareContent
;
45 const OUString sContent
;
46 const OUString sContentLeft
;
47 const OUString sEmpty
;
59 XMLTableHeaderFooterContext( SvXMLImport
& rImport
, sal_uInt16 nPrfx
,
60 const OUString
& rLName
,
61 const ::com::sun::star::uno::Reference
<
62 ::com::sun::star::xml::sax::XAttributeList
> & xAttrList
,
63 const ::com::sun::star::uno::Reference
<
64 ::com::sun::star::beans::XPropertySet
> & rPageStylePropSet
,
65 bool bFooter
, bool bLft
);
67 virtual ~XMLTableHeaderFooterContext();
69 virtual SvXMLImportContext
*CreateChildContext(
71 const OUString
& rLocalName
,
72 const ::com::sun::star::uno::Reference
< ::com::sun::star::xml::sax::XAttributeList
> & xAttrList
) SAL_OVERRIDE
;
74 virtual void EndElement() SAL_OVERRIDE
;
77 class XMLHeaderFooterRegionContext
: public SvXMLImportContext
80 ::com::sun::star::uno::Reference
<
81 ::com::sun::star::text::XTextCursor
>& xTextCursor
;
82 ::com::sun::star::uno::Reference
<
83 ::com::sun::star::text::XTextCursor
> xOldTextCursor
;
88 XMLHeaderFooterRegionContext( SvXMLImport
& rImport
, sal_uInt16 nPrfx
,
89 const OUString
& rLName
,
90 const ::com::sun::star::uno::Reference
<
91 ::com::sun::star::xml::sax::XAttributeList
> & xAttrList
,
92 com::sun::star::uno::Reference
< com::sun::star::text::XTextCursor
>& xCursor
);
94 virtual ~XMLHeaderFooterRegionContext();
96 virtual SvXMLImportContext
*CreateChildContext(
98 const OUString
& rLocalName
,
99 const ::com::sun::star::uno::Reference
< ::com::sun::star::xml::sax::XAttributeList
> & xAttrList
) SAL_OVERRIDE
;
101 virtual void EndElement() SAL_OVERRIDE
;
107 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */