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_XMLMETAE_HXX
21 #define INCLUDED_XMLOFF_XMLMETAE_HXX
23 #include <sal/config.h>
24 #include <xmloff/dllapi.h>
25 #include <sal/types.h>
27 #include <cppuhelper/implbase.hxx>
28 #include <xmloff/xmltoken.hxx>
32 #include <com/sun/star/beans/StringPair.hpp>
33 #include <com/sun/star/util/DateTime.hpp>
34 #include <com/sun/star/xml/sax/XDocumentHandler.hpp>
35 #include <com/sun/star/document/XDocumentProperties.hpp>
40 /** export meta data from an XDocumentProperties instance.
43 This class will start the export at the office:meta element,
44 not at the root element. This means that when <method>Export</method>
45 is called here, the document root element must already be written, but
46 office:meta must <em>not</em> be written.
49 class XMLOFF_DLLPUBLIC SvXMLMetaExport
: public cppu::WeakImplHelper
<
50 css::xml::sax::XDocumentHandler
>
53 SvXMLExport
& mrExport
;
54 css::uno::Reference
< css::document::XDocumentProperties
> mxDocProps
;
55 /// counts levels of the xml document. necessary for special handling.
57 /// preserved namespaces. necessary because we do not write the root node.
58 std::vector
< css::beans::StringPair
> m_preservedNSs
;
60 SAL_DLLPRIVATE
void SimpleStringElement(
61 const OUString
& rText
, sal_uInt16 nNamespace
,
62 enum ::xmloff::token::XMLTokenEnum eElementName
);
63 SAL_DLLPRIVATE
void SimpleDateTimeElement(
64 const css::util::DateTime
& rDate
, sal_uInt16 nNamespace
,
65 enum ::xmloff::token::XMLTokenEnum eElementName
);
67 /// currently unused; for exporting via the XDocumentProperties interface
68 SAL_DLLPRIVATE
void MExport_();
71 SvXMLMetaExport( SvXMLExport
& i_rExport
,
72 const css::uno::Reference
< css::document::XDocumentProperties
>& i_rDocProps
);
74 virtual ~SvXMLMetaExport() override
;
76 /// export via XSAXWriter interface, with fallback to _MExport
79 static OUString
GetISODateTimeString(
80 const css::util::DateTime
& rDateTime
);
82 // css::xml::sax::XDocumentHandler:
83 virtual void SAL_CALL
startDocument() override
;
84 virtual void SAL_CALL
endDocument() override
;
85 virtual void SAL_CALL
startElement(const OUString
& i_rName
,
86 const css::uno::Reference
<
87 css::xml::sax::XAttributeList
> & i_xAttribs
) override
;
88 virtual void SAL_CALL
endElement(const OUString
& i_rName
) override
;
89 virtual void SAL_CALL
characters(const OUString
& i_rChars
) override
;
90 virtual void SAL_CALL
ignorableWhitespace(
91 const OUString
& i_rWhitespaces
) override
;
92 virtual void SAL_CALL
processingInstruction(
93 const OUString
& i_rTarget
, const OUString
& i_rData
) override
;
94 virtual void SAL_CALL
setDocumentLocator(
95 const css::uno::Reference
<
96 css::xml::sax::XLocator
> & i_xLocator
) override
;
100 #endif // INCLUDED_XMLOFF_XMLMETAE_HXX
102 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */