bump product version to 4.1.6.2
[LibreOffice.git] / xmloff / inc / XMLLineNumberingImportContext.hxx
blobae3e6dd170160fe1269ce9342fd658bc86018cfd
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 _XMLOFF_XMLLINENUMBERINGIMPORTCONTEXT_HXX_
21 #define _XMLOFF_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 sal_Bool bNumberLines;
74 sal_Bool bCountEmptyLines;
75 sal_Bool bCountInFloatingFrames;
76 sal_Bool bRestartNumbering;
78 public:
80 TYPEINFO();
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 ~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);
101 void ProcessAttribute(
102 enum LineNumberingToken eToken,
103 OUString sValue);
105 virtual void CreateAndInsert(sal_Bool bOverwrite);
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 );
113 void ProcessAttribute(
114 const OUString sLocalName,
115 const OUString sValue);
118 #endif
120 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */