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 .
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::sun::star
{
28 namespace xml::sax
{ class XAttributeList
; }
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 final
: public SvXMLStyleContext
55 OUString sNumLetterSync
;
58 sal_Int16 nNumberPosition
;
60 sal_Int16 nSeparatorIncrement
;
62 bool bCountEmptyLines
;
63 bool bCountInFloatingFrames
;
64 bool bRestartNumbering
;
68 XMLLineNumberingImportContext(SvXMLImport
& rImport
);
70 virtual ~XMLLineNumberingImportContext() override
;
72 // to be used by child context: set separator info
73 void SetSeparatorText(const OUString
& sText
);
74 void SetSeparatorIncrement(sal_Int16 nIncr
);
78 virtual void SetAttribute( sal_uInt16 nPrefixKey
,
79 const OUString
& rLocalName
,
80 const OUString
& rValue
) override
;
82 virtual void CreateAndInsert(bool bOverwrite
) override
;
84 virtual css::uno::Reference
< css::xml::sax::XFastContextHandler
> SAL_CALL
createFastChildContext(
85 sal_Int32 nElement
, const css::uno::Reference
< css::xml::sax::XFastAttributeList
>& AttrList
) override
;
90 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */