~ubuntu-branches/ubuntu/trusty/libodfgen/trusty-proposed

« back to all changes in this revision

Viewing changes to inc/libodfgen/OdgGenerator.hxx

  • Committer: Package Import Robot
  • Author(s): Rene Engelhard
  • Date: 2013-05-22 15:17:31 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130522151731-0ihrnt8y3sob5e1g
Tags: 0.0.2-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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) 2006 Ariya Hidayat (ariya@kde.org)
 
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 __ODGGENERATOR_HXX__
 
26
#define __ODGGENERATOR_HXX__
 
27
 
 
28
#include <libwpd/libwpd.h>
 
29
#include <libwpg/libwpg.h>
 
30
 
 
31
#include "OdfDocumentHandler.hxx"
 
32
 
 
33
class OdgGeneratorPrivate;
 
34
 
 
35
class OdgGenerator : public libwpg::WPGPaintInterface
 
36
{
 
37
public:
 
38
        OdgGenerator(OdfDocumentHandler *pHandler, const OdfStreamType streamType);
 
39
        ~OdgGenerator();
 
40
 
 
41
        void startGraphics(const ::WPXPropertyList &propList);
 
42
        void endGraphics();
 
43
        void startLayer(const ::WPXPropertyList &propList);
 
44
        void endLayer();
 
45
        void startEmbeddedGraphics(const ::WPXPropertyList &propList);
 
46
        void endEmbeddedGraphics();
 
47
 
 
48
        void setStyle(const ::WPXPropertyList &propList, const ::WPXPropertyListVector &gradient);
 
49
 
 
50
        void drawRectangle(const ::WPXPropertyList &propList);
 
51
        void drawEllipse(const ::WPXPropertyList &propList);
 
52
        void drawPolyline(const ::WPXPropertyListVector &vertices);
 
53
        void drawPolygon(const ::WPXPropertyListVector &vertices);
 
54
        void drawPath(const ::WPXPropertyListVector &path);
 
55
        void drawGraphicObject(const ::WPXPropertyList &propList, const ::WPXBinaryData &binaryData);
 
56
 
 
57
        void startTextObject(const ::WPXPropertyList &propList, const ::WPXPropertyListVector &path);
 
58
        void endTextObject();
 
59
        void startTextLine(const ::WPXPropertyList &propList);
 
60
        void endTextLine();
 
61
        void startTextSpan(const ::WPXPropertyList &propList);
 
62
        void endTextSpan();
 
63
        void insertText(const ::WPXString &str);
 
64
 
 
65
private:
 
66
        OdgGenerator(OdgGenerator const &);
 
67
        OdgGenerator &operator=(OdgGenerator const &);
 
68
 
 
69
        OdgGeneratorPrivate *mpImpl;
 
70
};
 
71
 
 
72
#endif // __ODGGENERATOR_HXX__
 
73
 
 
74
/* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */