OdfDocumentHandler.hxx
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2 /* libodfgen
3  * Version: MPL 2.0 / LGPLv2.1+
4  *
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/.
8  *
9  * Major Contributor(s):
10  * Copyright (C) 2004 William Lachance (wlach@interlog.com)
11  *
12  * For minor contributions see the git repository.
13  *
14  * Alternatively, the contents of this file may be used under the terms
15  * of the GNU Lesser General Public License Version 2.1 or later
16  * (LGPLv2.1+), in which case the provisions of the LGPLv2.1+ are
17  * applicable instead of those above.
18  *
19  * For further information visit http://libwpd.sourceforge.net
20  */
21 
22 /* "This product is not manufactured, approved, or supported by
23  * Corel Corporation or Corel Corporation Limited."
24  */
25 #ifndef _ODFDOCUMENTHANDLER_HXX_
26 #define _ODFDOCUMENTHANDLER_HXX_
27 #include <librevenge/librevenge.h>
28 
29 #include "libodfgen-api.hxx"
30 
36 
37 class OdfDocumentHandler;
38 
45 typedef bool (*OdfEmbeddedObject)(const librevenge::RVNGBinaryData &data, OdfDocumentHandler *pHandler, const OdfStreamType streamType);
46 
56 typedef bool (*OdfEmbeddedImage)(const librevenge::RVNGBinaryData &input, librevenge::RVNGBinaryData &output);
57 
66 {
67 public:
68  virtual ~OdfDocumentHandler() {}
69 
72  virtual void startDocument() = 0;
73 
76  virtual void endDocument() = 0;
77 
83  virtual void startElement(const char *psName, const librevenge::RVNGPropertyList &xPropList) = 0;
84 
90  virtual void endElement(const char *psName) = 0;
91 
96  virtual void characters(const librevenge::RVNGString &sCharacters) = 0;
97 };
98 #endif
99 
100 /* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
OdfDocumentHandler
XML writer.
Definition: OdfDocumentHandler.hxx:66
libodfgen-api.hxx
OdfDocumentHandler::startElement
virtual void startElement(const char *psName, const librevenge::RVNGPropertyList &xPropList)=0
Add a start tag to the XML document.
OdfStreamType
OdfStreamType
Type of ODF content a generator should produce.
Definition: OdfDocumentHandler.hxx:35
ODF_META_XML
@ ODF_META_XML
Definition: OdfDocumentHandler.hxx:35
OdfEmbeddedImage
bool(* OdfEmbeddedImage)(const librevenge::RVNGBinaryData &input, librevenge::RVNGBinaryData &output)
Handler for embedded images.
Definition: OdfDocumentHandler.hxx:56
ODF_MANIFEST_XML
@ ODF_MANIFEST_XML
Definition: OdfDocumentHandler.hxx:35
OdfDocumentHandler::~OdfDocumentHandler
virtual ~OdfDocumentHandler()
Definition: OdfDocumentHandler.hxx:68
ODF_CONTENT_XML
@ ODF_CONTENT_XML
Definition: OdfDocumentHandler.hxx:35
ODF_STYLES_XML
@ ODF_STYLES_XML
Definition: OdfDocumentHandler.hxx:35
ODF_FLAT_XML
@ ODF_FLAT_XML
Definition: OdfDocumentHandler.hxx:35
ODF_SETTINGS_XML
@ ODF_SETTINGS_XML
Definition: OdfDocumentHandler.hxx:35
OdfDocumentHandler::endDocument
virtual void endDocument()=0
End the XML document.
OdfDocumentHandler::endElement
virtual void endElement(const char *psName)=0
Add a end tag to the XML document.
OdfEmbeddedObject
bool(* OdfEmbeddedObject)(const librevenge::RVNGBinaryData &data, OdfDocumentHandler *pHandler, const OdfStreamType streamType)
Handler for embedded objects.
Definition: OdfDocumentHandler.hxx:45
OdfDocumentHandler::startDocument
virtual void startDocument()=0
Start an XML document.
ODFGENAPI
#define ODFGENAPI
Definition: libodfgen-api.hxx:36
OdfDocumentHandler::characters
virtual void characters(const librevenge::RVNGString &sCharacters)=0
Insert a textual content into the currently opened element.

Generated for libodfgen by doxygen 1.8.20