bump product version to 5.0.4.1
[LibreOffice.git] / xmloff / inc / XMLLineNumberingImportContext.hxx
blob3dd9aee2b97295ff77222ff679849dc491dd468c
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 INCLUDED_XMLOFF_INC_XMLLINENUMBERINGIMPORTCONTEXT_HXX
21 #define INCLUDED_XMLOFF_INC_XMLLINENUMBERINGIMPORTCONTEXT_HXX
23 #include <xmloff/xmlstyle.hxx>
24 #include <rtl/ustring.hxx>
25 #include <com/sun/star/uno/Reference.h>
27 namespace com { namespace sun { namespace star {
28 namespace xml { namespace sax { class XAttributeList; } }
29 } } }
32 enum LineNumberingToken
34 XML_TOK_LINENUMBERING_STYLE_NAME,
35 XML_TOK_LINENUMBERING_NUMBER_LINES,
36 XML_TOK_LINENUMBERING_COUNT_EMPTY_LINES,
37 XML_TOK_LINENUMBERING_COUNT_IN_TEXT_BOXES,
38 XML_TOK_LINENUMBERING_RESTART_NUMBERING,
39 XML_TOK_LINENUMBERING_OFFSET,
40 XML_TOK_LINENUMBERING_NUM_FORMAT,
41 XML_TOK_LINENUMBERING_NUM_LETTER_SYNC,
42 XML_TOK_LINENUMBERING_NUMBER_POSITION,
43 XML_TOK_LINENUMBERING_INCREMENT
44 // XML_TOK_LINENUMBERING_LINENUMBERING_CONFIGURATION,
45 // XML_TOK_LINENUMBERING_INCREMENT,
46 // XML_TOK_LINENUMBERING_LINENUMBERING_SEPARATOR,
50 /** import <text:linenumbering-configuration> elements */
51 class XMLLineNumberingImportContext : public SvXMLStyleContext
53 const OUString sCharStyleName;
54 const OUString sCountEmptyLines;
55 const OUString sCountLinesInFrames;
56 const OUString sDistance;
57 const OUString sInterval;
58 const OUString sSeparatorText;
59 const OUString sNumberPosition;
60 const OUString sNumberingType;
61 const OUString sIsOn;
62 const OUString sRestartAtEachPage;
63 const OUString sSeparatorInterval;
65 OUString sStyleName;
66 OUString sNumFormat;
67 OUString sNumLetterSync;
68 OUString sSeparator;
69 sal_Int32 nOffset;
70 sal_Int16 nNumberPosition;
71 sal_Int16 nIncrement;
72 sal_Int16 nSeparatorIncrement;
73 bool bNumberLines;
74 bool bCountEmptyLines;
75 bool bCountInFloatingFrames;
76 bool bRestartNumbering;
78 public:
80 TYPEINFO_OVERRIDE();
82 XMLLineNumberingImportContext(
83 SvXMLImport& rImport,
84 sal_uInt16 nPrfx,
85 const OUString& rLocalName,
86 const ::com::sun::star::uno::Reference<
87 ::com::sun::star::xml::sax::XAttributeList> & xAttrList);
89 virtual ~XMLLineNumberingImportContext();
91 // to be used by child context: set separator info
92 void SetSeparatorText(const OUString& sText);
93 void SetSeparatorIncrement(sal_Int16 nIncr);
95 protected:
97 virtual void StartElement(
98 const ::com::sun::star::uno::Reference<
99 ::com::sun::star::xml::sax::XAttributeList> & xAttrList) SAL_OVERRIDE;
101 void ProcessAttribute(
102 enum LineNumberingToken eToken,
103 const OUString& sValue);
105 virtual void CreateAndInsert(bool bOverwrite) SAL_OVERRIDE;
107 virtual SvXMLImportContext *CreateChildContext(
108 sal_uInt16 nPrefix,
109 const OUString& rLocalName,
110 const ::com::sun::star::uno::Reference<
111 ::com::sun::star::xml::sax::XAttributeList> & xAttrList ) SAL_OVERRIDE;
113 void ProcessAttribute(
114 const OUString& sLocalName,
115 const OUString& sValue);
118 #endif
120 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */