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
22
23namespace librevenge
24{
25
27
29{
30 // disable copying
33
34public:
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);
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);
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);
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);
126 void openAnimationGroup(const RVNGPropertyList &propList);
127 void closeAnimationGroup();
128 void openAnimationIteration(const RVNGPropertyList &propList);
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
135private:
137};
138
139} // namespace libetonyek
140
141#endif // RVNGSVGPRESENTATIONGENERATOR_H
142
143/* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
Interface for import of presentations.
Definition RVNGPresentationInterface.h:27
Definition RVNGPropertyList.h:39
void startSlide(const RVNGPropertyList &propList)
Definition RVNGSVGPresentationGenerator.cpp:252
void startDocument(const RVNGPropertyList &propList)
Definition RVNGSVGPresentationGenerator.cpp:236
void closeLink()
Called when the current link is closed.
Definition RVNGSVGPresentationGenerator.cpp:909
void insertField(const RVNGPropertyList &propList)
Called when a field should be inserted.
Definition RVNGSVGPresentationGenerator.cpp:933
void closeAnimationSequence()
Definition RVNGSVGPresentationGenerator.cpp:1210
void closeAnimationIteration()
Definition RVNGSVGPresentationGenerator.cpp:1226
void startMasterSlide(const RVNGPropertyList &propList)
Definition RVNGSVGPresentationGenerator.cpp:280
void defineParagraphStyle(const RVNGPropertyList &propList)
Definition RVNGSVGPresentationGenerator.cpp:964
void defineEmbeddedFont(const RVNGPropertyList &propList)
Called when an embedded font should be defined.
Definition RVNGSVGPresentationGenerator.cpp:248
void startTextObject(const RVNGPropertyList &propList)
Start a text object.
Definition RVNGSVGPresentationGenerator.cpp:797
void openLink(const RVNGPropertyList &propList)
Called when a link should be opened.
Definition RVNGSVGPresentationGenerator.cpp:905
void openChartTextObject(const RVNGPropertyList &propList)
Called when a chart text zone:label/legend/title/subtitle/footer should be opened.
Definition RVNGSVGPresentationGenerator.cpp:1076
void endSlide()
Definition RVNGSVGPresentationGenerator.cpp:273
void closeGroup()
Definition RVNGSVGPresentationGenerator.cpp:603
void insertColorAnimation(const RVNGPropertyList &propList)
Insert an animation that changes color of the target object.
Definition RVNGSVGPresentationGenerator.cpp:1234
void openChartPlotArea(const RVNGPropertyList &propList)
Called when a chart plot area should be opened.
Definition RVNGSVGPresentationGenerator.cpp:1084
void endTableObject()
Called when the current table is closed.
Definition RVNGSVGPresentationGenerator.cpp:1033
void openParagraph(const RVNGPropertyList &propList)
Called when a new paragraph is opened.
Definition RVNGSVGPresentationGenerator.cpp:968
void defineChartStyle(const RVNGPropertyList &propList)
Definition RVNGSVGPresentationGenerator.cpp:1064
RVNGSVGPresentationGenerator & operator=(const RVNGSVGPresentationGenerator &other)
void closeChartTextObject()
Called when a chart text zone:legend/title/subtitle/footer should be closed.
Definition RVNGSVGPresentationGenerator.cpp:1080
void closeParagraph()
Called when a paragraph is closed.
Definition RVNGSVGPresentationGenerator.cpp:972
void closeChartSeries()
Called when a serie should be closed (in a plot area)
Definition RVNGSVGPresentationGenerator.cpp:1100
void openTableCell(const RVNGPropertyList &propList)
Called when a new table cell is opened.
Definition RVNGSVGPresentationGenerator.cpp:999
void endComment()
End a comment.
Definition RVNGSVGPresentationGenerator.cpp:1048
void drawGraphicObject(const RVNGPropertyList &propList)
Called when a binary/raster object should be inserted.
Definition RVNGSVGPresentationGenerator.cpp:748
void drawPolyline(const RVNGPropertyList &propList)
Definition RVNGSVGPresentationGenerator.cpp:637
void closeOrderedListLevel()
Called when an unordered list level should be closed.
Definition RVNGSVGPresentationGenerator.cpp:946
void startNotes(const RVNGPropertyList &propList)
Start slide notes.
Definition RVNGSVGPresentationGenerator.cpp:1054
void drawPath(const RVNGPropertyList &propList)
Definition RVNGSVGPresentationGenerator.cpp:688
void startLayer(const RVNGPropertyList &propList)
Definition RVNGSVGPresentationGenerator.cpp:566
void closeSpan()
Called when a text span is closed.
Definition RVNGSVGPresentationGenerator.cpp:900
void closeListElement()
Called when a list element should be closed.
Definition RVNGSVGPresentationGenerator.cpp:959
void insertCoveredTableCell(const RVNGPropertyList &propList)
Called when a covered (spanned by another cell in the table) table cell is opened.
Definition RVNGSVGPresentationGenerator.cpp:1027
void closeAnimationGroup()
Definition RVNGSVGPresentationGenerator.cpp:1218
void insertSpace()
Called when an explicit space should be inserted.
Definition RVNGSVGPresentationGenerator.cpp:918
void setStyle(const RVNGPropertyList &propList)
Definition RVNGSVGPresentationGenerator.cpp:324
void closeChartPlotArea()
Called when a chart plot arre should be closed.
Definition RVNGSVGPresentationGenerator.cpp:1088
void setSlideTransition(const RVNGPropertyList &propList)
Called when a transition should be added to the current slide.
Definition RVNGSVGPresentationGenerator.cpp:320
void endNotes()
End slide notes.
Definition RVNGSVGPresentationGenerator.cpp:1059
void startEmbeddedGraphics(const RVNGPropertyList &propList)
Definition RVNGSVGPresentationGenerator.cpp:589
void openAnimationIteration(const RVNGPropertyList &propList)
Definition RVNGSVGPresentationGenerator.cpp:1222
void openTableRow(const RVNGPropertyList &propList)
Called when a new table row is opened.
Definition RVNGSVGPresentationGenerator.cpp:987
void insertChartAxis(const RVNGPropertyList &propList)
Called when a axis should be add in a plot area.
Definition RVNGSVGPresentationGenerator.cpp:1092
void endLayer()
Definition RVNGSVGPresentationGenerator.cpp:584
void insertLineBreak()
Called when a line break should be inserted.
Definition RVNGSVGPresentationGenerator.cpp:928
void closeChart()
Called when a chart should be closed.
Definition RVNGSVGPresentationGenerator.cpp:1072
void endEmbeddedGraphics()
Definition RVNGSVGPresentationGenerator.cpp:593
void endTextObject()
End a text object.
Definition RVNGSVGPresentationGenerator.cpp:856
void openSpan(const RVNGPropertyList &propList)
Called when a text span is opened.
Definition RVNGSVGPresentationGenerator.cpp:871
void drawRectangle(const RVNGPropertyList &propList)
Definition RVNGSVGPresentationGenerator.cpp:608
void insertText(const RVNGString &text)
Called when a string of text should be inserted.
Definition RVNGSVGPresentationGenerator.cpp:923
void drawPolygon(const RVNGPropertyList &propList)
Definition RVNGSVGPresentationGenerator.cpp:644
void drawEllipse(const RVNGPropertyList &propList)
Definition RVNGSVGPresentationGenerator.cpp:621
void drawConnector(const RVNGPropertyList &propList)
Draw a connector.
Definition RVNGSVGPresentationGenerator.cpp:792
void openChart(const RVNGPropertyList &propList)
Called when a chart should be opened.
Definition RVNGSVGPresentationGenerator.cpp:1068
void closeUnorderedListLevel()
Called when an ununordered list level should be closed.
Definition RVNGSVGPresentationGenerator.cpp:950
void openGroup(const RVNGPropertyList &propList)
Definition RVNGSVGPresentationGenerator.cpp:597
void openChartSeries(const librevenge::RVNGPropertyList &propList)
Called when a serie should be opened (in a plot area)
Definition RVNGSVGPresentationGenerator.cpp:1096
RVNGSVGPresentationGeneratorImpl * m_impl
Definition RVNGSVGPresentationGenerator.h:136
void startTableObject(const RVNGPropertyList &propList)
Called when a table should be opened.
Definition RVNGSVGPresentationGenerator.cpp:977
void endMasterSlide()
Definition RVNGSVGPresentationGenerator.cpp:299
void openOrderedListLevel(const RVNGPropertyList &propList)
Called when a new ordered list level should be opened.
Definition RVNGSVGPresentationGenerator.cpp:938
void openAnimationSequence(const RVNGPropertyList &propList)
Called when a set of animations should be applied one after another.
Definition RVNGSVGPresentationGenerator.cpp:1206
void startComment(const RVNGPropertyList &propList)
Start a comment.
Definition RVNGSVGPresentationGenerator.cpp:1043
void endDocument()
Definition RVNGSVGPresentationGenerator.cpp:240
void insertTab()
Called when a TAB character should be inserted.
Definition RVNGSVGPresentationGenerator.cpp:913
void openListElement(const RVNGPropertyList &propList)
Called when a list element should be opened.
Definition RVNGSVGPresentationGenerator.cpp:954
void closeTableRow()
Called when the current table row is closed.
Definition RVNGSVGPresentationGenerator.cpp:993
void insertAnimation(const RVNGPropertyList &propList)
Insert a generic animation.
Definition RVNGSVGPresentationGenerator.cpp:1238
void insertEffect(const RVNGPropertyList &propList)
Set one-time animation effect on the target object.
Definition RVNGSVGPresentationGenerator.cpp:1242
void openUnorderedListLevel(const RVNGPropertyList &propList)
Called when a new unordered list level should be opened.
Definition RVNGSVGPresentationGenerator.cpp:942
void setDocumentMetaData(const RVNGPropertyList &propList)
Called when all document metadata should be set.
Definition RVNGSVGPresentationGenerator.cpp:244
void defineCharacterStyle(const RVNGPropertyList &propList)
Definition RVNGSVGPresentationGenerator.cpp:861
void insertMotionAnimation(const RVNGPropertyList &propList)
Insert an animation that moves the target object along a specified path.
Definition RVNGSVGPresentationGenerator.cpp:1230
void openAnimationGroup(const RVNGPropertyList &propList)
Called when a set of animations should be applied in parallel.
Definition RVNGSVGPresentationGenerator.cpp:1214
RVNGSVGPresentationGenerator(const RVNGSVGPresentationGenerator &other)
void closeTableCell()
Called when the current table cell is closed.
Definition RVNGSVGPresentationGenerator.cpp:1021
Definition RVNGStringVector.h:33
UTF-8 string.
Definition RVNGString.h:34
#define REVENGE_GENERATORS_API
Definition librevenge-generators-api.h:34
Definition RVNGBinaryData.cpp:39
Definition RVNGSVGPresentationGenerator.cpp:182

Generated for librevenge by doxygen 1.13.2