RVNGSVGDrawingGenerator.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2 /* librevenge
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  * Copyright (C) 2005 Fridrich Strba (fridrich.strba@bluewin.ch)
12  *
13  * For minor contributions see the git repository.
14  *
15  * Alternatively, the contents of this file may be used under the terms
16  * of the GNU Lesser General Public License Version 2.1 or later
17  * (LGPLv2.1+), in which case the provisions of the LGPLv2.1+ are
18  * applicable instead of those above.
19  */
20 
21 #ifndef RVNGSVGDRAWINGGENERATOR_H
22 #define RVNGSVGDRAWINGGENERATOR_H
23 
24 #include "librevenge-api.h"
25 
26 #include "RVNGDrawingInterface.h"
27 #include "RVNGStringVector.h"
28 
29 namespace librevenge
30 {
31 
32 struct RVNGSVGDrawingGeneratorPrivate;
33 
35 {
36 public:
39 
40  void startDocument(const RVNGPropertyList &propList);
41  void endDocument();
42  void setDocumentMetaData(const RVNGPropertyList &propList);
43  void defineEmbeddedFont(const RVNGPropertyList &propList);
44  void startPage(const RVNGPropertyList &propList);
45  void endPage();
46  void startMasterPage(const RVNGPropertyList &propList);
47  void endMasterPage();
48  void startLayer(const RVNGPropertyList &propList);
49  void endLayer();
50  void startEmbeddedGraphics(const RVNGPropertyList &propList);
51  void endEmbeddedGraphics();
52 
53  void openGroup(const RVNGPropertyList &propList);
54  void closeGroup();
55 
56  void setStyle(const RVNGPropertyList &propList);
57 
58  void drawRectangle(const RVNGPropertyList &propList);
59  void drawEllipse(const RVNGPropertyList &propList);
60  void drawPolyline(const RVNGPropertyList &propList);
61  void drawPolygon(const RVNGPropertyList &propList);
62  void drawPath(const RVNGPropertyList &propList);
63  void drawGraphicObject(const RVNGPropertyList &propList);
64  void drawConnector(const RVNGPropertyList &propList);
65  void startTextObject(const RVNGPropertyList &propList);
66  void endTextObject();
67 
68  void startTableObject(const RVNGPropertyList &propList);
69  void openTableRow(const RVNGPropertyList &propList);
70  void closeTableRow();
71  void openTableCell(const RVNGPropertyList &propList);
72  void closeTableCell();
73  void insertCoveredTableCell(const RVNGPropertyList &propList);
74  void endTableObject();
75 
76  void openOrderedListLevel(const RVNGPropertyList &propList);
77  void closeOrderedListLevel();
78 
79  void openUnorderedListLevel(const RVNGPropertyList &propList);
80  void closeUnorderedListLevel();
81  void openListElement(const RVNGPropertyList &propList);
82  void closeListElement();
83 
84  void defineParagraphStyle(const RVNGPropertyList &propList);
85  void openParagraph(const RVNGPropertyList &propList);
86  void closeParagraph();
87 
88  void defineCharacterStyle(const RVNGPropertyList &propList);
89  void openSpan(const RVNGPropertyList &propList);
90  void closeSpan();
91 
92  void openLink(const RVNGPropertyList &propList);
93  void closeLink();
94 
95  void insertTab();
96  void insertSpace();
97  void insertText(const RVNGString &text);
98  void insertLineBreak();
99  void insertField(const RVNGPropertyList &propList);
100 
101 private:
105 };
106 
107 }
108 
109 #endif // RVNGSVGDRAWINGGENERATOR_H
110 
111 /* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
librevenge::RVNGPropertyList::child
const RVNGPropertyListVector * child(const char *name) const
Definition: RVNGPropertyList.cpp:350
librevenge::RVNGSVGDrawingGenerator::setStyle
void setStyle(const RVNGPropertyList &propList)
Definition: RVNGSVGDrawingGenerator.cpp:803
librevenge::RVNGSVGDrawingGenerator::openTableRow
void openTableRow(const RVNGPropertyList &propList)
Called when a new table row is opened.
Definition: RVNGSVGDrawingGenerator.cpp:1117
librevenge::RVNGSVGDrawingGenerator::drawConnector
void drawConnector(const RVNGPropertyList &propList)
Draw a connector.
Definition: RVNGSVGDrawingGenerator.cpp:955
librevenge::RVNGSVGDrawingGenerator::endTableObject
void endTableObject()
Called when the current table is closed.
Definition: RVNGSVGDrawingGenerator.cpp:1163
librevenge::RVNGSVGDrawingGenerator::RVNGSVGDrawingGenerator
RVNGSVGDrawingGenerator(const RVNGSVGDrawingGenerator &)
librevenge::RVNGSVGDrawingGenerator::closeSpan
void closeSpan()
Called when a text span is closed.
Definition: RVNGSVGDrawingGenerator.cpp:1077
librevenge::RVNGString::append
void void append(const RVNGString &s)
Definition: RVNGString.cpp:211
librevenge::RVNGSVGDrawingGeneratorPrivate
Definition: RVNGSVGDrawingGenerator.cpp:188
librevenge::RVNGSVGDrawingGenerator::drawPolygon
void drawPolygon(const RVNGPropertyList &propList)
Definition: RVNGSVGDrawingGenerator.cpp:844
librevenge::RVNGSVGDrawingGeneratorPrivate::m_gradient
RVNGPropertyListVector m_gradient
Definition: RVNGSVGDrawingGenerator.cpp:203
librevenge-api.h
librevenge::RVNGSVGDrawingGenerator::drawGraphicObject
void drawGraphicObject(const RVNGPropertyList &propList)
Called when a binary/raster object should be inserted.
Definition: RVNGSVGDrawingGenerator.cpp:911
librevenge::RVNGSVGDrawingGenerator::operator=
RVNGSVGDrawingGenerator & operator=(const RVNGSVGDrawingGenerator &)
librevenge::RVNGString::empty
bool empty() const
Definition: RVNGString.cpp:252
librevenge::RVNGSVGDrawingGenerator::insertSpace
void insertSpace()
Called when an explicit space should be inserted.
Definition: RVNGSVGDrawingGenerator.cpp:1095
librevenge::RVNGSVGDrawingGenerator::endDocument
void endDocument()
Definition: RVNGSVGDrawingGenerator.cpp:689
librevenge::RVNGSVGDrawingGeneratorPrivate::m_vec
RVNGStringVector & m_vec
Definition: RVNGSVGDrawingGenerator.cpp:218
RVNG_DEBUG_MSG
#define RVNG_DEBUG_MSG(M)
Definition: librevenge_internal.h:33
librevenge::RVNGSVGDrawingGenerator::~RVNGSVGDrawingGenerator
~RVNGSVGDrawingGenerator()
Definition: RVNGSVGDrawingGenerator.cpp:683
librevenge::RVNGPropertyList::remove
void remove(const char *name)
Definition: RVNGPropertyList.cpp:333
librevenge::RVNGStringVector
Definition: RVNGStringVector.h:33
librevenge::DrawingSVG::Table::m_y
double m_y
Definition: RVNGSVGDrawingGenerator.cpp:176
librevenge::RVNGSVGDrawingGenerator::defineEmbeddedFont
void defineEmbeddedFont(const RVNGPropertyList &propList)
Called when an embedded font should be defined.
Definition: RVNGSVGDrawingGenerator.cpp:691
librevenge::RVNGSVGDrawingGeneratorPrivate::setStyle
void setStyle(const RVNGPropertyList &propList)
Definition: RVNGSVGDrawingGenerator.cpp:285
librevenge::RVNGSVGDrawingGenerator::drawRectangle
void drawRectangle(const RVNGPropertyList &propList)
Definition: RVNGSVGDrawingGenerator.cpp:808
librevenge::RVNGSVGDrawingGenerator::openUnorderedListLevel
void openUnorderedListLevel(const RVNGPropertyList &propList)
Called when a new unordered list level should be opened.
Definition: RVNGSVGDrawingGenerator.cpp:1028
librevenge::RVNGSVGDrawingGenerator::closeGroup
void closeGroup()
Definition: RVNGSVGDrawingGenerator.cpp:798
librevenge::RVNGSVGDrawingGenerator::closeTableRow
void closeTableRow()
Called when the current table row is closed.
Definition: RVNGSVGDrawingGenerator.cpp:1123
librevenge::RVNGSVGDrawingGenerator::openListElement
void openListElement(const RVNGPropertyList &propList)
Called when a list element should be opened.
Definition: RVNGSVGDrawingGenerator.cpp:1031
librevenge::RVNGSVGDrawingGenerator::openTableCell
void openTableCell(const RVNGPropertyList &propList)
Called when a new table cell is opened.
Definition: RVNGSVGDrawingGenerator.cpp:1129
librevenge::RVNGSVGDrawingGenerator::RVNGSVGDrawingGenerator
RVNGSVGDrawingGenerator(RVNGStringVector &vec, const RVNGString &nmspace)
Definition: RVNGSVGDrawingGenerator.cpp:678
librevenge::RVNGSVGDrawingGenerator::openLink
void openLink(const RVNGPropertyList &propList)
Called when a link should be opened.
Definition: RVNGSVGDrawingGenerator.cpp:1082
librevenge::DrawingSVG::Table::m_x
double m_x
the origin table position in inches
Definition: RVNGSVGDrawingGenerator.cpp:176
librevenge::RVNGSVGDrawingGenerator::closeUnorderedListLevel
void closeUnorderedListLevel()
Called when an ununordered list level should be closed.
Definition: RVNGSVGDrawingGenerator.cpp:1029
librevenge::RVNGSVGDrawingGeneratorPrivate::m_layerId
int m_layerId
layerId used if svg:id is not defined when calling startLayer
Definition: RVNGSVGDrawingGenerator.cpp:212
librevenge::RVNGSVGDrawingGenerator
Definition: RVNGSVGDrawingGenerator.h:35
librevenge::RVNGSVGDrawingGeneratorPrivate::m_masterName
RVNGString m_masterName
the actual master name
Definition: RVNGSVGDrawingGenerator.cpp:220
librevenge::RVNGSVGDrawingGeneratorPrivate::m_shadowIndex
int m_shadowIndex
Definition: RVNGSVGDrawingGenerator.cpp:205
librevenge::RVNGSVGDrawingGeneratorPrivate::getNamespaceAndDelim
std::string const & getNamespaceAndDelim() const
return the namespace and the delimiter
Definition: RVNGSVGDrawingGenerator.cpp:196
librevenge::DrawingSVG::Table::openRow
void openRow(const RVNGPropertyList &propList)
calls to open a row
Definition: RVNGSVGDrawingGenerator.cpp:130
librevenge::RVNGSVGDrawingGeneratorPrivate::m_idSpanMap
std::map< int, RVNGPropertyList > m_idSpanMap
Definition: RVNGSVGDrawingGenerator.cpp:201
librevenge::DrawingSVG::stringToColour
static unsigned stringToColour(const RVNGString &s)
Definition: RVNGSVGDrawingGenerator.cpp:79
librevenge::RVNGPropertyList
Definition: RVNGPropertyList.h:39
librevenge::RVNGSVGDrawingGenerator::closeTableCell
void closeTableCell()
Called when the current table cell is closed.
Definition: RVNGSVGDrawingGenerator.cpp:1151
librevenge::DrawingSVG::Table::getPosition
bool getPosition(int column, int row, double &x, double &y) const
returns the position of a cellule
Definition: RVNGSVGDrawingGenerator.cpp:150
librevenge::DrawingSVG::Table::m_columnsDistanceFromOrigin
std::vector< double > m_columnsDistanceFromOrigin
the distance of each begin column in inches from origin
Definition: RVNGSVGDrawingGenerator.cpp:178
librevenge::RVNGSVGDrawingGenerator::openGroup
void openGroup(const RVNGPropertyList &propList)
Definition: RVNGSVGDrawingGenerator.cpp:789
librevenge::RVNGSVGDrawingGenerator::startDocument
void startDocument(const RVNGPropertyList &propList)
Definition: RVNGSVGDrawingGenerator.cpp:688
librevenge::RVNGSVGDrawingGenerator::setDocumentMetaData
void setDocumentMetaData(const RVNGPropertyList &propList)
Called when all document metadata should be set.
Definition: RVNGSVGDrawingGenerator.cpp:690
librevenge::RVNGProperty
Definition: RVNGProperty.h:33
librevenge::RVNGSVGDrawingGeneratorPrivate::m_nmSpaceAndDelim
std::string m_nmSpaceAndDelim
a prefix used to define the svg namespace with delimiter
Definition: RVNGSVGDrawingGenerator.cpp:216
librevenge::RVNGSVGDrawingGenerator::endMasterPage
void endMasterPage()
Definition: RVNGSVGDrawingGenerator.cpp:742
librevenge::RVNGSVGDrawingGeneratorPrivate::m_table
boost::shared_ptr< Table > m_table
the actual opened table
Definition: RVNGSVGDrawingGenerator.cpp:224
librevenge_internal.h
librevenge::DrawingSVG::doubleToString
static std::string doubleToString(const double value)
Definition: RVNGSVGDrawingGenerator.cpp:71
RVNGDrawingInterface.h
librevenge::RVNGSVGDrawingGenerator::closeListElement
void closeListElement()
Called when a list element should be closed.
Definition: RVNGSVGDrawingGenerator.cpp:1032
librevenge::RVNGStringVector::append
void append(const RVNGString &str)
Definition: RVNGStringVector.cpp:75
librevenge::RVNGString
UTF-8 string.
Definition: RVNGString.h:34
librevenge::RVNGSVGDrawingGeneratorPrivate::m_nmSpace
std::string m_nmSpace
a prefix used to define the svg namespace
Definition: RVNGSVGDrawingGenerator.cpp:214
librevenge::RVNG_POINT
@ RVNG_POINT
Definition: RVNGProperty.h:30
librevenge::RVNGSVGDrawingGenerator::drawPolyline
void drawPolyline(const RVNGPropertyList &propList)
Definition: RVNGSVGDrawingGenerator.cpp:837
librevenge::RVNGSVGDrawingGeneratorPrivate::m_gradientIndex
int m_gradientIndex
Definition: RVNGSVGDrawingGenerator.cpp:205
librevenge-generators.h
librevenge::RVNGSVGDrawingGeneratorPrivate::m_masterNameToContentMap
std::map< RVNGString, std::string > m_masterNameToContentMap
a map master name to master content
Definition: RVNGSVGDrawingGenerator.cpp:222
librevenge::DrawingSVG::getInchValue
static double getInchValue(librevenge::RVNGProperty const &prop)
Definition: RVNGSVGDrawingGenerator.cpp:41
librevenge::RVNGSVGDrawingGenerator::startMasterPage
void startMasterPage(const RVNGPropertyList &propList)
Definition: RVNGSVGDrawingGenerator.cpp:723
librevenge::RVNGSVGDrawingGenerator::endLayer
void endLayer()
Definition: RVNGSVGDrawingGenerator.cpp:781
librevenge::RVNGSVGDrawingGenerator::closeParagraph
void closeParagraph()
Called when a paragraph is closed.
Definition: RVNGSVGDrawingGenerator.cpp:1036
librevenge::RVNGSVGDrawingGenerator::startEmbeddedGraphics
void startEmbeddedGraphics(const RVNGPropertyList &propList)
Definition: RVNGSVGDrawingGenerator.cpp:786
librevenge::RVNGSVGDrawingGenerator::startLayer
void startLayer(const RVNGPropertyList &propList)
Definition: RVNGSVGDrawingGenerator.cpp:763
librevenge::RVNGSVGDrawingGenerator::insertLineBreak
void insertLineBreak()
Called when a line break should be inserted.
Definition: RVNGSVGDrawingGenerator.cpp:1100
librevenge::RVNGSVGDrawingGenerator::drawEllipse
void drawEllipse(const RVNGPropertyList &propList)
Definition: RVNGSVGDrawingGenerator.cpp:821
librevenge::RVNGSVGDrawingGenerator::startTableObject
void startTableObject(const RVNGPropertyList &propList)
Called when a table should be opened.
Definition: RVNGSVGDrawingGenerator.cpp:1107
librevenge::RVNG_INCH
@ RVNG_INCH
Definition: RVNGProperty.h:30
librevenge::RVNGString::escapeXML
static RVNGString escapeXML(const RVNGString &s)
Create a new string from s as escaped XML.
Definition: RVNGString.cpp:160
librevenge::RVNGPropertyList::clear
void clear()
Definition: RVNGPropertyList.cpp:355
librevenge::RVNGSVGDrawingGenerator::drawPath
void drawPath(const RVNGPropertyList &propList)
Definition: RVNGSVGDrawingGenerator.cpp:851
librevenge::RVNG_UNIT_ERROR
@ RVNG_UNIT_ERROR
Definition: RVNGProperty.h:30
librevenge::RVNGSVGDrawingGeneratorPrivate::m_groupId
int m_groupId
groupId used if svg:id is not defined when calling openGroup
Definition: RVNGSVGDrawingGenerator.cpp:210
librevenge::RVNG_PERCENT
@ RVNG_PERCENT
Definition: RVNGProperty.h:30
librevenge::RVNGSVGDrawingGenerator::startTextObject
void startTextObject(const RVNGPropertyList &propList)
Definition: RVNGSVGDrawingGenerator.cpp:960
librevenge::RVNGSVGDrawingGenerator::insertCoveredTableCell
void insertCoveredTableCell(const RVNGPropertyList &propList)
Called when a covered (spanned by another cell in the table) table cell is opened.
Definition: RVNGSVGDrawingGenerator.cpp:1157
librevenge::RVNGSVGDrawingGenerator::closeLink
void closeLink()
Called when the current link is closed.
Definition: RVNGSVGDrawingGenerator.cpp:1083
librevenge::RVNGString::cstr
const char * cstr() const
Definition: RVNGString.cpp:174
librevenge::RVNGPropertyFactory::newDoubleProp
static RVNGProperty * newDoubleProp(const double val)
Definition: RVNGProperty.cpp:432
librevenge::RVNGSVGDrawingGeneratorPrivate::m_arrowEndIndex
int m_arrowEndIndex
end arrow index
Definition: RVNGSVGDrawingGenerator.cpp:208
librevenge::RVNGProperty::getStr
virtual RVNGString getStr() const =0
librevenge::DrawingSVG::Table::closeRow
void closeRow()
call to close a row
Definition: RVNGSVGDrawingGenerator.cpp:145
RVNGStringVector.h
librevenge::RVNGSVGDrawingGeneratorPrivate::m_arrowStartIndex
int m_arrowStartIndex
start arrow index
Definition: RVNGSVGDrawingGenerator.cpp:208
librevenge::RVNGSVGDrawingGeneratorPrivate::m_patternIndex
int m_patternIndex
index uses when fill=bitmap
Definition: RVNGSVGDrawingGenerator.cpp:207
librevenge::DrawingSVG::Table::Table
Table(const RVNGPropertyList &propList)
constructor
Definition: RVNGSVGDrawingGenerator.cpp:102
librevenge::RVNGSVGDrawingGeneratorPrivate::drawPolySomething
void drawPolySomething(const RVNGPropertyListVector &vertices, bool isClosed)
Definition: RVNGSVGDrawingGenerator.cpp:248
librevenge::RVNGSVGDrawingGenerator::defineParagraphStyle
void defineParagraphStyle(const RVNGPropertyList &propList)
Definition: RVNGSVGDrawingGenerator.cpp:1034
librevenge::RVNGSVGDrawingGenerator::defineCharacterStyle
void defineCharacterStyle(const RVNGPropertyList &propList)
Definition: RVNGSVGDrawingGenerator.cpp:1038
librevenge::RVNGDrawingInterface
Definition: RVNGDrawingInterface.h:32
librevenge::RVNG_GENERIC
@ RVNG_GENERIC
Definition: RVNGProperty.h:30
librevenge::RVNGSVGDrawingGenerator::endEmbeddedGraphics
void endEmbeddedGraphics()
Definition: RVNGSVGDrawingGenerator.cpp:787
librevenge::RVNGSVGDrawingGenerator::m_pImpl
RVNGSVGDrawingGeneratorPrivate * m_pImpl
Definition: RVNGSVGDrawingGenerator.h:104
librevenge::RVNGPropertyListVector
Definition: RVNGPropertyListVector.h:35
librevenge::RVNGSVGDrawingGenerator::openSpan
void openSpan(const RVNGPropertyList &propList)
Called when a text span is opened.
Definition: RVNGSVGDrawingGenerator.cpp:1048
librevenge
Definition: RVNGBinaryData.cpp:39
librevenge::RVNGSVGDrawingGenerator::insertText
void insertText(const RVNGString &text)
Called when a string of text should be inserted.
Definition: RVNGSVGDrawingGenerator.cpp:1085
librevenge::DrawingSVG::Table
basic class used to store table information
Definition: RVNGSVGDrawingGenerator.cpp:100
librevenge::RVNGProperty::getUnit
virtual RVNGUnit getUnit() const =0
returns the property unit when possible.
librevenge::RVNGString::sprintf
void sprintf(const char *format,...) REVENGE_ATTRIBUTE_PRINTF(2
Definition: RVNGString.cpp:179
librevenge::RVNGSVGDrawingGenerator::endTextObject
void endTextObject()
Definition: RVNGSVGDrawingGenerator.cpp:1020
librevenge::RVNGString::clear
void clear()
Definition: RVNGString.cpp:237
librevenge::RVNGSVGDrawingGeneratorPrivate::RVNGSVGDrawingGeneratorPrivate
RVNGSVGDrawingGeneratorPrivate(RVNGStringVector &vec, const RVNGString &nmSpace)
Definition: RVNGSVGDrawingGenerator.cpp:227
librevenge::RVNGSVGDrawingGenerator::insertTab
void insertTab()
Called when a TAB character should be inserted.
Definition: RVNGSVGDrawingGenerator.cpp:1090
librevenge::RVNGSVGDrawingGeneratorPrivate::m_outputSink
std::ostringstream m_outputSink
Definition: RVNGSVGDrawingGenerator.cpp:217
librevenge::DrawingSVG::Table::m_column
int m_column
the actual column
Definition: RVNGSVGDrawingGenerator.cpp:172
librevenge::RVNGSVGDrawingGenerator::startPage
void startPage(const RVNGPropertyList &propList)
Definition: RVNGSVGDrawingGenerator.cpp:693
librevenge::RVNGSVGDrawingGeneratorPrivate::writeStyle
void writeStyle(bool isClosed=true)
Definition: RVNGSVGDrawingGenerator.cpp:573
librevenge::RVNGSVGDrawingGenerator::openParagraph
void openParagraph(const RVNGPropertyList &propList)
Called when a new paragraph is opened.
Definition: RVNGSVGDrawingGenerator.cpp:1035
librevenge::DrawingSVG::Table::m_rowsDistanceFromOrigin
std::vector< double > m_rowsDistanceFromOrigin
the distance of each begin row in inches from origin
Definition: RVNGSVGDrawingGenerator.cpp:180
librevenge::RVNG_TWIP
@ RVNG_TWIP
Definition: RVNGProperty.h:30
librevenge::RVNGSVGDrawingGenerator::closeOrderedListLevel
void closeOrderedListLevel()
Called when an unordered list level should be closed.
Definition: RVNGSVGDrawingGenerator.cpp:1026
librevenge::RVNGPropertyListVector::count
unsigned long count() const
Definition: RVNGPropertyListVector.cpp:146
librevenge::RVNGSVGDrawingGenerator::insertField
void insertField(const RVNGPropertyList &propList)
Called when a field should be inserted.
Definition: RVNGSVGDrawingGenerator.cpp:1105
librevenge::RVNGSVGDrawingGenerator::endPage
void endPage()
Definition: RVNGSVGDrawingGenerator.cpp:716
REVENGE_API
#define REVENGE_API
Definition: librevenge-api.h:34
librevenge::RVNGString::appendEscapedXML
void appendEscapedXML(const RVNGString &s)
Append the content of s as escaped XML.
Definition: RVNGString.cpp:227
librevenge::DrawingSVG::Table::m_row
int m_row
the actual row
Definition: RVNGSVGDrawingGenerator.cpp:174
librevenge::RVNGSVGDrawingGenerator::openOrderedListLevel
void openOrderedListLevel(const RVNGPropertyList &propList)
Called when a new ordered list level should be opened.
Definition: RVNGSVGDrawingGenerator.cpp:1025
librevenge::RVNGProperty::getDouble
virtual double getDouble() const =0
librevenge::RVNGSVGDrawingGeneratorPrivate::m_style
RVNGPropertyList m_style
Definition: RVNGSVGDrawingGenerator.cpp:204
librevenge::RVNGString::len
int len() const
Return the number of UTF-8 characters.
Definition: RVNGString.cpp:242

Generated for librevenge by doxygen 1.8.18