fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / sc / source / filter / xml / XMLTableHeaderFooterContext.hxx
blobabcc4687cecd408332646573208bc6525205241f
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 .
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; }
29 } } }
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;
42 const OUString sOn;
43 const OUString sShareContent;
44 const OUString sContent;
45 const OUString sContentLeft;
46 const OUString sEmpty;
47 OUString sCont;
49 bool bDisplay;
50 bool bLeft;
51 bool bContainsLeft;
52 bool bContainsRight;
53 bool bContainsCenter;
55 public:
56 TYPEINFO_OVERRIDE();
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(
69 sal_uInt16 nPrefix,
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
78 private:
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;
84 public:
85 TYPEINFO_OVERRIDE();
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(
96 sal_uInt16 nPrefix,
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;
103 #endif
105 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */