Version 6.4.0.3, tag libreoffice-6.4.0.3
[LibreOffice.git] / xmloff / inc / DomBuilderContext.hxx
blob0df0f6de135df422b9cb53fd0db471c0f7c5dc00
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_DOMBUILDERCONTEXT_HXX
21 #define INCLUDED_XMLOFF_INC_DOMBUILDERCONTEXT_HXX
23 #include <xmloff/xmlictxt.hxx>
26 // forward declarations
29 namespace com { namespace sun { namespace star {
30 namespace xml { namespace dom {
31 class XNode;
32 class XDocument;
33 } }
34 namespace xml { namespace sax {
35 class XAttributeList;
36 } }
37 } } }
38 class SvXMLImport;
39 class SvXMLImportContext;
41 /**
42 * DomBuilderContext creates a DOM tree suitable for in-memory processing of
43 * XML data from a sequence of SAX events */
44 class DomBuilderContext : public SvXMLImportContext
46 css::uno::Reference<css::xml::dom::XNode> mxNode;
48 public:
50 /** default constructor: create new DOM tree */
51 DomBuilderContext( SvXMLImport& rImport,
52 sal_uInt16 nPrefix,
53 const OUString& rLocalName );
55 /** constructor: create DOM subtree under the given node */
56 DomBuilderContext( SvXMLImport& rImport,
57 sal_uInt16 nPrefix,
58 const OUString& rLocalName,
59 css::uno::Reference<css::xml::dom::XNode> const & );
61 virtual ~DomBuilderContext() override;
64 // access to the DOM tree
67 /** access the DOM tree */
68 css::uno::Reference<css::xml::dom::XDocument> getTree();
71 // implement SvXMLImportContext methods:
74 virtual SvXMLImportContextRef CreateChildContext(
75 sal_uInt16 nPrefix,
76 const OUString& rLocalName,
77 const css::uno::Reference<css::xml::sax::XAttributeList >& xAttrList ) override;
79 virtual void StartElement(
80 const css::uno::Reference<css::xml::sax::XAttributeList>& xAttrList ) override;
82 virtual void EndElement() override;
84 virtual void Characters( const OUString& rChars ) override;
87 #endif
89 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */