xref: /AOO41X/main/xmloff/inc/XMLTextHeaderFooterContext.hxx (revision ecfe53c5d1886e1e0d215b0d140d05282ab1c477)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 #ifndef _XMLOFF_TEXTHEADERFOOTERCONTEXT_HXX_
24 #define _XMLOFF_TEXTHEADERFOOTERCONTEXT_HXX_
25 
26 
27 #ifndef _XMLOFF_XMLICTXT_HXX_
28 #include <xmloff/xmlictxt.hxx>
29 #endif
30 
31 namespace com { namespace sun { namespace star {
32     namespace text { class XTextCursor; }
33     namespace beans { class XPropertySet; }
34 } } }
35 
36 class XMLTextHeaderFooterContext: public SvXMLImportContext
37 {
38     ::com::sun::star::uno::Reference <
39         ::com::sun::star::text::XTextCursor > xOldTextCursor;
40     ::com::sun::star::uno::Reference <
41         ::com::sun::star::beans::XPropertySet > xPropSet;
42 
43     const ::rtl::OUString sOn;
44     const ::rtl::OUString sShareContent;
45     const ::rtl::OUString sText;
46     const ::rtl::OUString sTextLeft;
47 
48     sal_Bool    bInsertContent : 1;
49     sal_Bool    bLeft : 1;
50 
51 public:
52     TYPEINFO();
53 
54     XMLTextHeaderFooterContext( SvXMLImport& rImport, sal_uInt16 nPrfx,
55             const ::rtl::OUString& rLName,
56             const ::com::sun::star::uno::Reference<
57                     ::com::sun::star::xml::sax::XAttributeList > & xAttrList,
58             const ::com::sun::star::uno::Reference <
59                     ::com::sun::star::beans::XPropertySet > & rPageStylePropSet,
60                sal_Bool bFooter, sal_Bool bLft );
61 
62     virtual ~XMLTextHeaderFooterContext();
63 
64     virtual SvXMLImportContext *CreateChildContext(
65             sal_uInt16 nPrefix,
66             const ::rtl::OUString& rLocalName,
67             const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList > & xAttrList );
68 
69     virtual void EndElement();
70 };
71 
72 
73 #endif
74