RVNGSVGPresentationGenerator.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  * Alternatively, the contents of this file may be used under the terms
10  * of the GNU Lesser General Public License Version 2.1 or later
11  * (LGPLv2.1+), in which case the provisions of the LGPLv2.1+ are
12  * applicable instead of those above.
13  */
14 
15 #ifndef RVNGSVGPRESENTATIONGENERATOR_H
16 #define RVNGSVGPRESENTATIONGENERATOR_H
17 
19 
20 #include <librevenge/librevenge.h>
22 
23 namespace librevenge
24 {
25 
26 struct RVNGSVGPresentationGeneratorImpl;
27 
29 {
30  // disable copying
33 
34 public:
37 
38  void startDocument(const RVNGPropertyList &propList);
39  void endDocument();
40 
41  void setDocumentMetaData(const RVNGPropertyList &propList);
42 
43  void defineEmbeddedFont(const RVNGPropertyList &propList);
44 
45  void startSlide(const RVNGPropertyList &propList);
46  void endSlide();
47 
48  void startMasterSlide(const RVNGPropertyList &propList);
49  void endMasterSlide();
50 
51  void setStyle(const RVNGPropertyList &propList);
52 
53  void setSlideTransition(const RVNGPropertyList &propList);
54 
55  void startLayer(const RVNGPropertyList &propList);
56  void endLayer();
57 
58  void startEmbeddedGraphics(const RVNGPropertyList &propList);
59  void endEmbeddedGraphics();
60 
61  void openGroup(const RVNGPropertyList &propList);
62  void closeGroup();
63 
64  void drawRectangle(const RVNGPropertyList &propList);
65  void drawEllipse(const RVNGPropertyList &propList);
66  void drawPolyline(const RVNGPropertyList &propList);
67  void drawPolygon(const RVNGPropertyList &propList);
68  void drawPath(const RVNGPropertyList &propList);
69  void drawGraphicObject(const RVNGPropertyList &propList);
70 
71  void drawConnector(const RVNGPropertyList &propList);
72 
73  void startTextObject(const RVNGPropertyList &propList);
74  void endTextObject();
75  void insertTab();
76  void insertSpace();
77  void insertText(const RVNGString &text);
78  void insertLineBreak();
79 
80  void insertField(const RVNGPropertyList &propList);
81 
82  void openOrderedListLevel(const RVNGPropertyList &propList);
83  void openUnorderedListLevel(const RVNGPropertyList &propList);
84  void closeOrderedListLevel();
85  void closeUnorderedListLevel();
86  void openListElement(const RVNGPropertyList &propList);
87  void closeListElement();
88 
89  void defineParagraphStyle(const RVNGPropertyList &propList);
90  void openParagraph(const RVNGPropertyList &propList);
91  void closeParagraph();
92  void defineCharacterStyle(const RVNGPropertyList &propList);
93  void openSpan(const RVNGPropertyList &propList);
94  void closeSpan();
95 
96  void openLink(const RVNGPropertyList &propList);
97  void closeLink();
98 
99  void startTableObject(const RVNGPropertyList &propList);
100  void openTableRow(const RVNGPropertyList &propList);
101  void closeTableRow();
102  void openTableCell(const RVNGPropertyList &propList);
103  void closeTableCell();
104  void insertCoveredTableCell(const RVNGPropertyList &propList);
105  void endTableObject();
106 
107  void startComment(const RVNGPropertyList &propList);
108  void endComment();
109 
110  void startNotes(const RVNGPropertyList &propList);
111  void endNotes();
112 
113  void defineChartStyle(const RVNGPropertyList &propList);
114  void openChart(const RVNGPropertyList &propList);
115  void closeChart();
116  void openChartTextObject(const RVNGPropertyList &propList);
117  void closeChartTextObject();
118  void openChartPlotArea(const RVNGPropertyList &propList);
119  void closeChartPlotArea();
120  void insertChartAxis(const RVNGPropertyList &propList);
121  void openChartSeries(const librevenge::RVNGPropertyList &propList);
122  void closeChartSeries();
123 
124  void openAnimationSequence(const RVNGPropertyList &propList);
125  void closeAnimationSequence();
126  void openAnimationGroup(const RVNGPropertyList &propList);
127  void closeAnimationGroup();
128  void openAnimationIteration(const RVNGPropertyList &propList);
129  void closeAnimationIteration();
130  void insertMotionAnimation(const RVNGPropertyList &propList);
131  void insertColorAnimation(const RVNGPropertyList &propList);
132  void insertAnimation(const RVNGPropertyList &propList);
133  void insertEffect(const RVNGPropertyList &propList);
134 
135 private:
137 };
138 
139 } // namespace libetonyek
140 
141 #endif // RVNGSVGPRESENTATIONGENERATOR_H
142 
143 /* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
librevenge::RVNGSVGPresentationGeneratorImpl::m_style
RVNGPropertyList m_style
Definition: RVNGSVGPresentationGenerator.cpp:188
librevenge::RVNGPropertyList::child
const RVNGPropertyListVector * child(const char *name) const
Definition: RVNGPropertyList.cpp:350
librevenge::RVNGSVGPresentationGenerator::m_impl
RVNGSVGPresentationGeneratorImpl * m_impl
Definition: RVNGSVGPresentationGenerator.h:136
librevenge::RVNGSVGPresentationGenerator::startNotes
void startNotes(const RVNGPropertyList &propList)
Start slide notes.
Definition: RVNGSVGPresentationGenerator.cpp:1054
librevenge::RVNGSVGPresentationGenerator::drawEllipse
void drawEllipse(const RVNGPropertyList &propList)
Definition: RVNGSVGPresentationGenerator.cpp:621
librevenge::RVNGSVGPresentationGenerator::insertText
void insertText(const RVNGString &text)
Called when a string of text should be inserted.
Definition: RVNGSVGPresentationGenerator.cpp:923
librevenge::RVNGSVGPresentationGenerator::startSlide
void startSlide(const RVNGPropertyList &propList)
Definition: RVNGSVGPresentationGenerator.cpp:252
librevenge::RVNGSVGPresentationGeneratorImpl::m_masterNameToContentMap
std::map< RVNGString, std::string > m_masterNameToContentMap
a map master name to master content
Definition: RVNGSVGPresentationGenerator.cpp:204
librevenge::RVNGSVGPresentationGenerator::startTableObject
void startTableObject(const RVNGPropertyList &propList)
Called when a table should be opened.
Definition: RVNGSVGPresentationGenerator.cpp:977
librevenge::RVNGString::append
void void append(const RVNGString &s)
Definition: RVNGString.cpp:211
librevenge::RVNGSVGPresentationGenerator::openSpan
void openSpan(const RVNGPropertyList &propList)
Called when a text span is opened.
Definition: RVNGSVGPresentationGenerator.cpp:871
librevenge::RVNGSVGPresentationGeneratorImpl::m_gradient
RVNGPropertyListVector m_gradient
Definition: RVNGSVGPresentationGenerator.cpp:187
librevenge::RVNGSVGPresentationGenerator::closeGroup
void closeGroup()
Definition: RVNGSVGPresentationGenerator.cpp:603
librevenge::RVNGSVGPresentationGenerator::endEmbeddedGraphics
void endEmbeddedGraphics()
Definition: RVNGSVGPresentationGenerator.cpp:593
librevenge::RVNGSVGPresentationGenerator::openUnorderedListLevel
void openUnorderedListLevel(const RVNGPropertyList &propList)
Called when a new unordered list level should be opened.
Definition: RVNGSVGPresentationGenerator.cpp:942
librevenge-generators-api.h
librevenge::RVNGSVGPresentationGeneratorImpl::m_arrowStartIndex
int m_arrowStartIndex
start arrow index
Definition: RVNGSVGPresentationGenerator.cpp:191
librevenge::RVNGSVGPresentationGenerator::defineCharacterStyle
void defineCharacterStyle(const RVNGPropertyList &propList)
Definition: RVNGSVGPresentationGenerator.cpp:861
librevenge::RVNGSVGPresentationGenerator::startMasterSlide
void startMasterSlide(const RVNGPropertyList &propList)
Definition: RVNGSVGPresentationGenerator.cpp:280
librevenge-stream.h
librevenge::PresentationSVG::Table::getPosition
bool getPosition(int column, int row, double &x, double &y) const
returns the position of a cellule
Definition: RVNGSVGPresentationGenerator.cpp:144
librevenge::RVNGString::empty
bool empty() const
Definition: RVNGString.cpp:252
librevenge::RVNGSVGPresentationGenerator::startEmbeddedGraphics
void startEmbeddedGraphics(const RVNGPropertyList &propList)
Definition: RVNGSVGPresentationGenerator.cpp:589
librevenge::RVNGSVGPresentationGenerator::insertMotionAnimation
void insertMotionAnimation(const RVNGPropertyList &propList)
Insert an animation that moves the target object along a specified path.
Definition: RVNGSVGPresentationGenerator.cpp:1230
RVNG_DEBUG_MSG
#define RVNG_DEBUG_MSG(M)
Definition: librevenge_internal.h:33
librevenge::RVNGPropertyList::remove
void remove(const char *name)
Definition: RVNGPropertyList.cpp:333
librevenge::RVNGSVGPresentationGenerator::closeUnorderedListLevel
void closeUnorderedListLevel()
Called when an ununordered list level should be closed.
Definition: RVNGSVGPresentationGenerator.cpp:950
librevenge::RVNGStringVector
Definition: RVNGStringVector.h:33
librevenge::RVNGSVGPresentationGenerator::openLink
void openLink(const RVNGPropertyList &propList)
Called when a link should be opened.
Definition: RVNGSVGPresentationGenerator.cpp:905
librevenge::RVNGSVGPresentationGenerator::endTextObject
void endTextObject()
End a text object.
Definition: RVNGSVGPresentationGenerator.cpp:856
librevenge::RVNGSVGPresentationGenerator::openAnimationIteration
void openAnimationIteration(const RVNGPropertyList &propList)
Definition: RVNGSVGPresentationGenerator.cpp:1222
librevenge::RVNGSVGPresentationGenerator::defineEmbeddedFont
void defineEmbeddedFont(const RVNGPropertyList &propList)
Called when an embedded font should be defined.
Definition: RVNGSVGPresentationGenerator.cpp:248
librevenge::RVNGSVGPresentationGeneratorImpl::m_patternIndex
int m_patternIndex
Definition: RVNGSVGPresentationGenerator.cpp:190
librevenge::RVNGSVGPresentationGenerator::closeChartTextObject
void closeChartTextObject()
Called when a chart text zone:legend/title/subtitle/footer should be closed.
Definition: RVNGSVGPresentationGenerator.cpp:1080
librevenge::RVNGSVGPresentationGenerator::operator=
RVNGSVGPresentationGenerator & operator=(const RVNGSVGPresentationGenerator &other)
librevenge::RVNGSVGPresentationGenerator::startLayer
void startLayer(const RVNGPropertyList &propList)
Definition: RVNGSVGPresentationGenerator.cpp:566
librevenge.h
librevenge::PresentationSVG::Table
basic class used to store table information
Definition: RVNGSVGPresentationGenerator.cpp:94
librevenge::RVNGSVGPresentationGenerator::openAnimationSequence
void openAnimationSequence(const RVNGPropertyList &propList)
Called when a set of animations should be applied one after another.
Definition: RVNGSVGPresentationGenerator.cpp:1206
librevenge::RVNGSVGPresentationGenerator::insertColorAnimation
void insertColorAnimation(const RVNGPropertyList &propList)
Insert an animation that changes color of the target object.
Definition: RVNGSVGPresentationGenerator.cpp:1234
librevenge::RVNGSVGPresentationGeneratorImpl::m_vec
RVNGStringVector & m_vec
Definition: RVNGSVGPresentationGenerator.cpp:200
librevenge::RVNGSVGPresentationGenerator::defineChartStyle
void defineChartStyle(const RVNGPropertyList &propList)
Definition: RVNGSVGPresentationGenerator.cpp:1064
librevenge::RVNGSVGPresentationGenerator::endDocument
void endDocument()
Definition: RVNGSVGPresentationGenerator.cpp:240
librevenge::RVNGSVGPresentationGenerator::endSlide
void endSlide()
Definition: RVNGSVGPresentationGenerator.cpp:273
librevenge::RVNGPropertyListVector::getStr
RVNGString getStr() const
Definition: RVNGPropertyListVector.cpp:124
librevenge::PresentationSVG::Table::m_columnsDistanceFromOrigin
std::vector< double > m_columnsDistanceFromOrigin
the distance of each begin column in inches from origin
Definition: RVNGSVGPresentationGenerator.cpp:172
librevenge::RVNGPropertyList
Definition: RVNGPropertyList.h:39
librevenge::RVNGSVGPresentationGenerator::openChart
void openChart(const RVNGPropertyList &propList)
Called when a chart should be opened.
Definition: RVNGSVGPresentationGenerator.cpp:1068
librevenge::RVNGSVGPresentationGenerator::endComment
void endComment()
End a comment.
Definition: RVNGSVGPresentationGenerator.cpp:1048
librevenge::PresentationSVG::Table::openRow
void openRow(const RVNGPropertyList &propList)
calls to open a row
Definition: RVNGSVGPresentationGenerator.cpp:124
librevenge::RVNGSVGPresentationGenerator::setStyle
void setStyle(const RVNGPropertyList &propList)
Definition: RVNGSVGPresentationGenerator.cpp:324
librevenge::RVNGSVGPresentationGenerator::closeChart
void closeChart()
Called when a chart should be closed.
Definition: RVNGSVGPresentationGenerator.cpp:1072
librevenge::RVNGSVGPresentationGenerator::openListElement
void openListElement(const RVNGPropertyList &propList)
Called when a list element should be opened.
Definition: RVNGSVGPresentationGenerator.cpp:954
librevenge::RVNGSVGPresentationGenerator::openChartTextObject
void openChartTextObject(const RVNGPropertyList &propList)
Called when a chart text zone:label/legend/title/subtitle/footer should be opened.
Definition: RVNGSVGPresentationGenerator.cpp:1076
librevenge::RVNGSVGPresentationGeneratorImpl::RVNGSVGPresentationGeneratorImpl
RVNGSVGPresentationGeneratorImpl(RVNGStringVector &m_vec)
Definition: RVNGSVGPresentationGenerator.cpp:209
librevenge::RVNGSVGPresentationGenerator::insertTab
void insertTab()
Called when a TAB character should be inserted.
Definition: RVNGSVGPresentationGenerator.cpp:913
librevenge::RVNGSVGPresentationGenerator::openOrderedListLevel
void openOrderedListLevel(const RVNGPropertyList &propList)
Called when a new ordered list level should be opened.
Definition: RVNGSVGPresentationGenerator.cpp:938
librevenge::PresentationSVG::Table::Table
Table(const RVNGPropertyList &propList)
constructor
Definition: RVNGSVGPresentationGenerator.cpp:96
librevenge::RVNGSVGPresentationGenerator::openTableCell
void openTableCell(const RVNGPropertyList &propList)
Called when a new table cell is opened.
Definition: RVNGSVGPresentationGenerator.cpp:999
librevenge::RVNGSVGPresentationGenerator::closeSpan
void closeSpan()
Called when a text span is closed.
Definition: RVNGSVGPresentationGenerator.cpp:900
librevenge::RVNGSVGPresentationGenerator
Definition: RVNGSVGPresentationGenerator.h:29
librevenge::RVNGSVGPresentationGenerator::closeAnimationIteration
void closeAnimationIteration()
Definition: RVNGSVGPresentationGenerator.cpp:1226
librevenge::RVNGSVGPresentationGeneratorImpl::writeStyle
void writeStyle(bool isClosed=true)
Definition: RVNGSVGPresentationGenerator.cpp:1105
librevenge::RVNGSVGPresentationGeneratorImpl::m_outputSink
std::ostringstream m_outputSink
Definition: RVNGSVGPresentationGenerator.cpp:199
librevenge::RVNGProperty
Definition: RVNGProperty.h:33
librevenge::RVNGSVGPresentationGeneratorImpl::m_shadowIndex
int m_shadowIndex
Definition: RVNGSVGPresentationGenerator.cpp:194
librevenge::RVNGSVGPresentationGenerator::defineParagraphStyle
void defineParagraphStyle(const RVNGPropertyList &propList)
Definition: RVNGSVGPresentationGenerator.cpp:964
librevenge_internal.h
librevenge::RVNGSVGPresentationGenerator::openAnimationGroup
void openAnimationGroup(const RVNGPropertyList &propList)
Called when a set of animations should be applied in parallel.
Definition: RVNGSVGPresentationGenerator.cpp:1214
librevenge::RVNGSVGPresentationGenerator::openChartPlotArea
void openChartPlotArea(const RVNGPropertyList &propList)
Called when a chart plot area should be opened.
Definition: RVNGSVGPresentationGenerator.cpp:1084
librevenge::RVNGSVGPresentationGeneratorImpl::drawPolySomething
void drawPolySomething(const RVNGPropertyListVector &vertices, bool isClosed)
Definition: RVNGSVGPresentationGenerator.cpp:651
librevenge::RVNGStringVector::append
void append(const RVNGString &str)
Definition: RVNGStringVector.cpp:75
librevenge::RVNGString
UTF-8 string.
Definition: RVNGString.h:34
librevenge::RVNGSVGPresentationGeneratorImpl::m_table
boost::shared_ptr< Table > m_table
the actual opened table
Definition: RVNGSVGPresentationGenerator.cpp:206
librevenge::RVNGSVGPresentationGenerator::drawPolyline
void drawPolyline(const RVNGPropertyList &propList)
Definition: RVNGSVGPresentationGenerator.cpp:637
librevenge::RVNG_POINT
@ RVNG_POINT
Definition: RVNGProperty.h:30
librevenge::PresentationSVG::Table::m_rowsDistanceFromOrigin
std::vector< double > m_rowsDistanceFromOrigin
the distance of each begin row in inches from origin
Definition: RVNGSVGPresentationGenerator.cpp:174
librevenge::RVNGSVGPresentationGenerator::insertField
void insertField(const RVNGPropertyList &propList)
Called when a field should be inserted.
Definition: RVNGSVGPresentationGenerator.cpp:933
librevenge::RVNGSVGPresentationGenerator::startTextObject
void startTextObject(const RVNGPropertyList &propList)
Start a text object.
Definition: RVNGSVGPresentationGenerator.cpp:797
librevenge-generators.h
librevenge::RVNGSVGPresentationGeneratorImpl::m_masterName
RVNGString m_masterName
the actual master name
Definition: RVNGSVGPresentationGenerator.cpp:202
librevenge::PresentationSVG::Table::m_row
int m_row
the actual row
Definition: RVNGSVGPresentationGenerator.cpp:168
librevenge::RVNGSVGPresentationGenerator::closeChartPlotArea
void closeChartPlotArea()
Called when a chart plot arre should be closed.
Definition: RVNGSVGPresentationGenerator.cpp:1088
librevenge::PresentationSVG::stringToColour
static unsigned stringToColour(const RVNGString &s)
Definition: RVNGSVGPresentationGenerator.cpp:73
librevenge::RVNGSVGPresentationGenerator::drawPath
void drawPath(const RVNGPropertyList &propList)
Definition: RVNGSVGPresentationGenerator.cpp:688
librevenge::RVNGSVGPresentationGenerator::~RVNGSVGPresentationGenerator
~RVNGSVGPresentationGenerator()
Definition: RVNGSVGPresentationGenerator.cpp:231
librevenge::RVNGSVGPresentationGeneratorImpl
Definition: RVNGSVGPresentationGenerator.cpp:182
librevenge::RVNGSVGPresentationGenerator::drawConnector
void drawConnector(const RVNGPropertyList &propList)
Draw a connector.
Definition: RVNGSVGPresentationGenerator.cpp:792
librevenge::RVNGSVGPresentationGenerator::openParagraph
void openParagraph(const RVNGPropertyList &propList)
Called when a new paragraph is opened.
Definition: RVNGSVGPresentationGenerator.cpp:968
librevenge::RVNGSVGPresentationGenerator::insertSpace
void insertSpace()
Called when an explicit space should be inserted.
Definition: RVNGSVGPresentationGenerator.cpp:918
librevenge::RVNGSVGPresentationGenerator::closeOrderedListLevel
void closeOrderedListLevel()
Called when an unordered list level should be closed.
Definition: RVNGSVGPresentationGenerator.cpp:946
librevenge::RVNGSVGPresentationGenerator::startComment
void startComment(const RVNGPropertyList &propList)
Start a comment.
Definition: RVNGSVGPresentationGenerator.cpp:1043
librevenge::RVNGSVGPresentationGeneratorImpl::m_arrowEndIndex
int m_arrowEndIndex
end arrow index
Definition: RVNGSVGPresentationGenerator.cpp:191
librevenge::RVNG_INCH
@ RVNG_INCH
Definition: RVNGProperty.h:30
librevenge::RVNGSVGPresentationGenerator::closeTableRow
void closeTableRow()
Called when the current table row is closed.
Definition: RVNGSVGPresentationGenerator.cpp:993
librevenge::RVNGSVGPresentationGenerator::closeLink
void closeLink()
Called when the current link is closed.
Definition: RVNGSVGPresentationGenerator.cpp:909
librevenge::RVNGString::escapeXML
static RVNGString escapeXML(const RVNGString &s)
Create a new string from s as escaped XML.
Definition: RVNGString.cpp:160
librevenge::RVNGSVGPresentationGeneratorImpl::m_idSpanMap
std::map< int, RVNGPropertyList > m_idSpanMap
Definition: RVNGSVGPresentationGenerator.cpp:185
librevenge::RVNGSVGPresentationGenerator::drawGraphicObject
void drawGraphicObject(const RVNGPropertyList &propList)
Called when a binary/raster object should be inserted.
Definition: RVNGSVGPresentationGenerator.cpp:748
librevenge::RVNGPropertyList::clear
void clear()
Definition: RVNGPropertyList.cpp:355
librevenge::PresentationSVG::Table::m_y
double m_y
Definition: RVNGSVGPresentationGenerator.cpp:170
librevenge::RVNG_UNIT_ERROR
@ RVNG_UNIT_ERROR
Definition: RVNGProperty.h:30
librevenge::RVNGSVGPresentationGenerator::drawPolygon
void drawPolygon(const RVNGPropertyList &propList)
Definition: RVNGSVGPresentationGenerator.cpp:644
librevenge::RVNG_PERCENT
@ RVNG_PERCENT
Definition: RVNGProperty.h:30
librevenge::RVNGSVGPresentationGenerator::insertLineBreak
void insertLineBreak()
Called when a line break should be inserted.
Definition: RVNGSVGPresentationGenerator.cpp:928
librevenge::RVNGSVGPresentationGenerator::openGroup
void openGroup(const RVNGPropertyList &propList)
Definition: RVNGSVGPresentationGenerator.cpp:597
librevenge::RVNGSVGPresentationGenerator::endLayer
void endLayer()
Definition: RVNGSVGPresentationGenerator.cpp:584
librevenge::RVNGString::cstr
const char * cstr() const
Definition: RVNGString.cpp:174
librevenge::RVNGSVGPresentationGenerator::openTableRow
void openTableRow(const RVNGPropertyList &propList)
Called when a new table row is opened.
Definition: RVNGSVGPresentationGenerator.cpp:987
librevenge::RVNGPropertyFactory::newDoubleProp
static RVNGProperty * newDoubleProp(const double val)
Definition: RVNGProperty.cpp:432
librevenge::PresentationSVG::Table::m_x
double m_x
the origin table position in inches
Definition: RVNGSVGPresentationGenerator.cpp:170
librevenge::RVNGSVGPresentationGenerator::setSlideTransition
void setSlideTransition(const RVNGPropertyList &propList)
Called when a transition should be added to the current slide.
Definition: RVNGSVGPresentationGenerator.cpp:320
librevenge::RVNGProperty::getStr
virtual RVNGString getStr() const =0
librevenge::RVNGSVGPresentationGenerator::closeChartSeries
void closeChartSeries()
Called when a serie should be closed (in a plot area)
Definition: RVNGSVGPresentationGenerator.cpp:1100
librevenge::PresentationSVG::Table::m_column
int m_column
the actual column
Definition: RVNGSVGPresentationGenerator.cpp:166
librevenge::RVNGSVGPresentationGeneratorImpl::m_gradientIndex
int m_gradientIndex
Definition: RVNGSVGPresentationGenerator.cpp:189
librevenge::PresentationSVG::getInchValue
static double getInchValue(librevenge::RVNGProperty const &prop)
Definition: RVNGSVGPresentationGenerator.cpp:35
librevenge::RVNGSVGPresentationGenerator::closeListElement
void closeListElement()
Called when a list element should be closed.
Definition: RVNGSVGPresentationGenerator.cpp:959
librevenge::RVNG_GENERIC
@ RVNG_GENERIC
Definition: RVNGProperty.h:30
librevenge::RVNGPresentationInterface
Interface for import of presentations.
Definition: RVNGPresentationInterface.h:27
librevenge::RVNGSVGPresentationGenerator::endMasterSlide
void endMasterSlide()
Definition: RVNGSVGPresentationGenerator.cpp:299
librevenge::RVNGPropertyListVector
Definition: RVNGPropertyListVector.h:35
librevenge::RVNGSVGPresentationGenerator::endNotes
void endNotes()
End slide notes.
Definition: RVNGSVGPresentationGenerator.cpp:1059
librevenge::RVNGSVGPresentationGenerator::insertAnimation
void insertAnimation(const RVNGPropertyList &propList)
Insert a generic animation.
Definition: RVNGSVGPresentationGenerator.cpp:1238
librevenge::RVNGSVGPresentationGenerator::RVNGSVGPresentationGenerator
RVNGSVGPresentationGenerator(const RVNGSVGPresentationGenerator &other)
librevenge::RVNGSVGPresentationGenerator::drawRectangle
void drawRectangle(const RVNGPropertyList &propList)
Definition: RVNGSVGPresentationGenerator.cpp:608
librevenge
Definition: RVNGBinaryData.cpp:39
librevenge::DrawingSVG::Table
basic class used to store table information
Definition: RVNGSVGDrawingGenerator.cpp:100
librevenge::RVNGSVGPresentationGeneratorImpl::m_layerId
int m_layerId
layerId used if svg:id is not defined when calling startLayer
Definition: RVNGSVGPresentationGenerator.cpp:193
librevenge::RVNGProperty::getUnit
virtual RVNGUnit getUnit() const =0
returns the property unit when possible.
librevenge::RVNGSVGPresentationGenerator::insertEffect
void insertEffect(const RVNGPropertyList &propList)
Set one-time animation effect on the target object.
Definition: RVNGSVGPresentationGenerator.cpp:1242
librevenge::RVNGSVGPresentationGenerator::closeAnimationGroup
void closeAnimationGroup()
Definition: RVNGSVGPresentationGenerator.cpp:1218
librevenge::RVNGString::sprintf
void sprintf(const char *format,...) REVENGE_ATTRIBUTE_PRINTF(2
Definition: RVNGString.cpp:179
librevenge::RVNGSVGPresentationGenerator::insertCoveredTableCell
void insertCoveredTableCell(const RVNGPropertyList &propList)
Called when a covered (spanned by another cell in the table) table cell is opened.
Definition: RVNGSVGPresentationGenerator.cpp:1027
librevenge::RVNGString::clear
void clear()
Definition: RVNGString.cpp:237
librevenge::RVNGSVGPresentationGenerator::closeTableCell
void closeTableCell()
Called when the current table cell is closed.
Definition: RVNGSVGPresentationGenerator.cpp:1021
librevenge::RVNGSVGPresentationGenerator::setDocumentMetaData
void setDocumentMetaData(const RVNGPropertyList &propList)
Called when all document metadata should be set.
Definition: RVNGSVGPresentationGenerator.cpp:244
librevenge::RVNGSVGPresentationGenerator::closeAnimationSequence
void closeAnimationSequence()
Definition: RVNGSVGPresentationGenerator.cpp:1210
librevenge::RVNGSVGPresentationGenerator::openChartSeries
void openChartSeries(const librevenge::RVNGPropertyList &propList)
Called when a serie should be opened (in a plot area)
Definition: RVNGSVGPresentationGenerator.cpp:1096
librevenge::PresentationSVG::Table::closeRow
void closeRow()
call to close a row
Definition: RVNGSVGPresentationGenerator.cpp:139
REVENGE_GENERATORS_API
#define REVENGE_GENERATORS_API
Definition: librevenge-generators-api.h:34
librevenge::RVNGSVGPresentationGenerator::startDocument
void startDocument(const RVNGPropertyList &propList)
Definition: RVNGSVGPresentationGenerator.cpp:236
librevenge::RVNG_TWIP
@ RVNG_TWIP
Definition: RVNGProperty.h:30
librevenge::RVNGPropertyListVector::count
unsigned long count() const
Definition: RVNGPropertyListVector.cpp:146
librevenge::RVNGString::appendEscapedXML
void appendEscapedXML(const RVNGString &s)
Append the content of s as escaped XML.
Definition: RVNGString.cpp:227
librevenge::RVNGSVGPresentationGenerator::endTableObject
void endTableObject()
Called when the current table is closed.
Definition: RVNGSVGPresentationGenerator.cpp:1033
librevenge::RVNGPropertyListVector::getDouble
double getDouble() const
Definition: RVNGPropertyListVector.cpp:114
librevenge::RVNGProperty::getDouble
virtual double getDouble() const =0
librevenge::PresentationSVG::doubleToString
static std::string doubleToString(const double value)
Definition: RVNGSVGPresentationGenerator.cpp:65
librevenge::RVNGSVGPresentationGenerator::insertChartAxis
void insertChartAxis(const RVNGPropertyList &propList)
Called when a axis should be add in a plot area.
Definition: RVNGSVGPresentationGenerator.cpp:1092
librevenge::RVNGSVGPresentationGenerator::closeParagraph
void closeParagraph()
Called when a paragraph is closed.
Definition: RVNGSVGPresentationGenerator.cpp:972

Generated for librevenge by doxygen 1.8.18