Breeze: Add Save All & Save a Copy icons
[LibreOffice.git] / include / xmloff / XMLEventExport.hxx
blobd37cb6717399448e13494784c24874ec1a123cd3
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_XMLEVENTEXPORT_HXX
21 #define INCLUDED_XMLOFF_XMLEVENTEXPORT_HXX
23 #include <sal/config.h>
24 #include <xmloff/dllapi.h>
25 #include <sal/types.h>
26 #include <rtl/ustring.hxx>
27 #include <xmloff/xmlevent.hxx>
29 #include <map>
30 #include <memory>
32 class SvXMLExport;
33 namespace com::sun::star {
34 namespace document { class XEventsSupplier; }
35 namespace container { class XNameReplace; }
36 namespace container { class XNameAccess; }
37 namespace beans { struct PropertyValue; }
40 namespace com::sun::star::uno { template <class interface_type> class Reference; }
41 namespace com::sun::star::uno { template <typename > class Sequence; }
43 typedef ::std::map< OUString, std::unique_ptr<XMLEventExportHandler> > HandlerMap;
44 typedef ::std::map< OUString, XMLEventName > NameMap;
46 /**
47 * Export instances of EventsSupplier services. To use this class you
48 * must fulfill two conditions:
50 * 1) provide a translation from the API event names to XML event
51 * names
52 * 2) Register XMLEventExportHandler instances for all script types
53 * that you would like to export.
55 * The Export()-Methods all have a bUseWhitespace parameter that
56 * causes the exported elements to be surrounded by whitespace, which
57 * in turn causes the elements to be indented properly. By default,
58 * whitespace is used, but it may not be called for in all cases (e.g
59 * events attached to hyperlink within a paragraph.)
61 class XMLOFF_DLLPUBLIC XMLEventExport
63 SvXMLExport& rExport;
65 HandlerMap aHandlerMap;
66 NameMap aNameTranslationMap;
68 bool bExtNamespace;
70 public:
71 XMLEventExport(SvXMLExport& rExport);
72 ~XMLEventExport();
74 XMLEventExport& operator=( XMLEventExport const & ) = delete; // MSVC2017 workaround
75 XMLEventExport( XMLEventExport const & ) = delete; // MSVC2017 workaround
77 /// register an EventExportHandler for a particular script type
78 ///
79 /// The handlers will be deleted when the object is destroyed, hence
80 /// no pointers to a handler registered with AddHandler() should be
81 /// held by anyone.
82 void AddHandler( const OUString& rName,
83 std::unique_ptr<XMLEventExportHandler> pHandler );
85 /// register additional event names
86 void AddTranslationTable( const XMLEventNameTranslation* pTransTable );
88 /// export the events (calls EventExport::Export(Reference<XNameAccess>) )
89 void Export( css::uno::Reference<css::document::XEventsSupplier> const & xAccess,
90 bool bUseWhitespace = true);
92 /// export the events (calls EventExport::Export(Reference<XNameAccess>) )
93 void Export( css::uno::Reference<css::container::XNameReplace> const & xAccess,
94 bool bUseWhitespace = true);
96 /// export the events (writes <office:events> element)
97 void Export( css::uno::Reference<css::container::XNameAccess> const & xAccess,
98 bool bUseWhitespace = true);
100 /// export the events, but write <officeooo:events> element
101 /// (for new file format additions)
102 void ExportExt( css::uno::Reference<css::container::XNameAccess> const & xAccess);
104 /// export a single event (writes <office:events> element)
105 void ExportSingleEvent(
106 css::uno::Sequence<css::beans::PropertyValue>& rEventValues,
107 const OUString& rApiEventName,
108 bool bUseWhitespace = true );
110 private:
112 /// export one event (start container-element if necessary)
113 SAL_DLLPRIVATE void ExportEvent(
114 css::uno::Sequence<css::beans::PropertyValue>& rEventValues,
115 const XMLEventName& rXmlEventName,
116 bool bUseWhitespace,
117 bool& rExported);
119 /// export the start element
120 SAL_DLLPRIVATE void StartElement(bool bUseWhitespace);
122 /// export the end element
123 SAL_DLLPRIVATE void EndElement(bool bUseWhitespace);
126 #endif
128 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */