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_SOURCE_TRANSFORM_PERSATTRLISTTCONTEXT_HXX
21 #define INCLUDED_XMLOFF_SOURCE_TRANSFORM_PERSATTRLISTTCONTEXT_HXX
23 #include <xmloff/xmltoken.hxx>
24 #include "TransformerContext.hxx"
27 class XMLPersAttrListTContext
: public XMLTransformerContext
30 css::uno::Reference
< css::xml::sax::XAttributeList
> m_xAttrList
;
31 OUString m_aElemQName
;
32 sal_uInt16
const m_nActionMap
;
36 void SetExportQName( const OUString
& r
) { m_aElemQName
= r
; }
39 // A contexts constructor does anything that is required if an element
40 // starts. Namespace processing has been done already.
41 // Note that virtual methods cannot be used inside constructors. Use
42 // StartElement instead if this is required.
43 XMLPersAttrListTContext( XMLTransformerBase
& rTransformer
,
44 const OUString
& rQName
);
46 // attr list persistence + attribute processing
47 XMLPersAttrListTContext( XMLTransformerBase
& rTransformer
,
48 const OUString
& rQName
,
49 sal_uInt16 nActionMap
);
51 // attr list persistence + renaming
52 XMLPersAttrListTContext( XMLTransformerBase
& rTransformer
,
53 const OUString
& rQName
,
55 ::xmloff::token::XMLTokenEnum eToken
);
57 // attr list persistence + renaming + attribute processing
58 XMLPersAttrListTContext( XMLTransformerBase
& rTransformer
,
59 const OUString
& rQName
,
61 ::xmloff::token::XMLTokenEnum eToken
,
62 sal_uInt16 nActionMap
);
64 // Create a children element context. By default, the import's
65 // CreateContext method is called to create a new default context.
66 virtual rtl::Reference
<XMLTransformerContext
> CreateChildContext( sal_uInt16 nPrefix
,
67 const OUString
& rLocalName
,
68 const OUString
& rQName
,
69 const css::uno::Reference
< css::xml::sax::XAttributeList
>& xAttrList
) override
;
71 // StartElement is called after a context has been constructed and
72 // before an elements context is parsed. It may be used for actions that
73 // require virtual methods. The default is to do nothing.
74 virtual void StartElement( const css::uno::Reference
< css::xml::sax::XAttributeList
>& xAttrList
) override
;
76 // EndElement is called before a context will be destructed, but
77 // after an elements context has been parsed. It may be used for actions
78 // that require virtual methods. The default is to do nothing.
79 virtual void EndElement() override
;
81 // This method is called for all characters that are contained in the
83 virtual void Characters( const OUString
& rChars
) override
;
85 virtual bool IsPersistent() const override
;
86 virtual void Export() override
;
87 virtual void ExportContent() override
;
89 const OUString
& GetExportQName() const { return m_aElemQName
; }
91 void AddAttribute( sal_uInt16 nAPrefix
,
92 ::xmloff::token::XMLTokenEnum eAToken
,
93 ::xmloff::token::XMLTokenEnum eVToken
);
95 void AddAttribute( sal_uInt16 nAPrefix
,
96 ::xmloff::token::XMLTokenEnum eAToken
,
97 const OUString
& rValue
);
99 const css::uno::Reference
< css::xml::sax::XAttributeList
>&
100 GetAttrList() const { return m_xAttrList
; }
104 #endif // INCLUDED_XMLOFF_SOURCE_TRANSFORM_PERSATTRLISTTCONTEXT_HXX
106 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */