/usr/include/libodfgen-0.1/libodfgen/OdfDocumentHandler.hxx is in libodfgen-dev 0.1.6-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
/* libodfgen
* Version: MPL 2.0 / LGPLv2.1+
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Major Contributor(s):
* Copyright (C) 2004 William Lachance (wlach@interlog.com)
*
* For minor contributions see the git repository.
*
* Alternatively, the contents of this file may be used under the terms
* of the GNU Lesser General Public License Version 2.1 or later
* (LGPLv2.1+), in which case the provisions of the LGPLv2.1+ are
* applicable instead of those above.
*
* For further information visit http://libwpd.sourceforge.net
*/
/* "This product is not manufactured, approved, or supported by
* Corel Corporation or Corel Corporation Limited."
*/
#ifndef _ODFDOCUMENTHANDLER_HXX_
#define _ODFDOCUMENTHANDLER_HXX_
#include <librevenge/librevenge.h>
#include "libodfgen-api.hxx"
/** Type of ODF content a generator should produce.
*
* @sa OdgGenerator, OdpGenerator, OdtGenerator
*/
enum OdfStreamType { ODF_FLAT_XML, ODF_CONTENT_XML, ODF_STYLES_XML, ODF_SETTINGS_XML, ODF_META_XML, ODF_MANIFEST_XML };
class OdfDocumentHandler;
/** Handler for embedded objects.
*
* @param[in] data the object's data
* @param[in] pHandler the current OdfDocumentHandler
* @param[in] streamType type of the object
*/
typedef bool (*OdfEmbeddedObject)(const librevenge::RVNGBinaryData &data, OdfDocumentHandler *pHandler, const OdfStreamType streamType);
/** Handler for embedded images.
*
* This is also (mis)used for embedded fonts, to avoid API change. In
* this case the output format must be TTF.
*
* @param[in] input the image's data
* @param[in] output the same image in format suitable for the used
* OdfDocumentHandler.
*/
typedef bool (*OdfEmbeddedImage)(const librevenge::RVNGBinaryData &input, librevenge::RVNGBinaryData &output);
/** XML writer.
*
* This interface is used by the document generators to create a valid
* XML document. It is up to the implementation if the document will be
* saved to a file, printed to the standard output, saved to a file
* inside a package, or whatever else.
*/
class ODFGENAPI OdfDocumentHandler
{
public:
virtual ~OdfDocumentHandler() {}
/** Start an XML document.
*/
virtual void startDocument() = 0;
/** End the XML document.
*/
virtual void endDocument() = 0;
/** Add a start tag to the XML document.
*
* @param[in] psName name of the element
* @param[in] xPropList list of attributes
*/
virtual void startElement(const char *psName, const librevenge::RVNGPropertyList &xPropList) = 0;
/** Add a end tag to the XML document.
*
* @param[in] psName name of the element. It must match the
* name of the innermost currently opened element.
*/
virtual void endElement(const char *psName) = 0;
/** Insert a textual content into the currently opened element.
*
* @param[in] sCharacters the content
*/
virtual void characters(const librevenge::RVNGString &sCharacters) = 0;
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
|