RVNGDummyPresentationGenerator.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 RVNGDUMMYPRESENTATIONGENERATOR_H
16 #define RVNGDUMMYPRESENTATIONGENERATOR_H
17 
19 
20 #include <librevenge/librevenge.h>
21 
22 namespace librevenge
23 {
24 
26 {
27  // disable copying
30 
31 public:
34 
35  void startDocument(const RVNGPropertyList &propList);
36  void endDocument();
37  void setDocumentMetaData(const RVNGPropertyList &propList);
38  void defineEmbeddedFont(const RVNGPropertyList &propList);
39  void startSlide(const RVNGPropertyList &propList);
40  void endSlide();
41  void startMasterSlide(const RVNGPropertyList &propList);
42  void endMasterSlide();
43  void setSlideTransition(const RVNGPropertyList &propList);
44  void startLayer(const RVNGPropertyList &propList);
45  void endLayer();
46  void startEmbeddedGraphics(const RVNGPropertyList &propList);
47  void endEmbeddedGraphics();
48  void openGroup(const RVNGPropertyList &propList);
49  void closeGroup();
50 
51  void setStyle(const RVNGPropertyList &propList);
52 
53  void drawRectangle(const RVNGPropertyList &propList);
54  void drawEllipse(const RVNGPropertyList &propList);
55  void drawPolyline(const RVNGPropertyList &propList);
56  void drawPolygon(const RVNGPropertyList &propList);
57  void drawPath(const RVNGPropertyList &propList);
58  void drawGraphicObject(const RVNGPropertyList &propList);
59  void drawConnector(const RVNGPropertyList &propList);
60 
61  void startTextObject(const RVNGPropertyList &propList);
62  void endTextObject();
63  void defineParagraphStyle(const RVNGPropertyList &propList);
64  void openParagraph(const RVNGPropertyList &propList);
65  void closeParagraph();
66  void defineCharacterStyle(const RVNGPropertyList &propList);
67  void openSpan(const RVNGPropertyList &propList);
68  void closeSpan();
69 
70  void openLink(const RVNGPropertyList &propList);
71  void closeLink();
72 
73  void insertTab();
74  void insertSpace();
75  void insertText(const RVNGString &str);
76  void insertLineBreak();
77 
78  void insertField(const RVNGPropertyList &propList);
79 
80  void openOrderedListLevel(const RVNGPropertyList &propList);
81  void openUnorderedListLevel(const RVNGPropertyList &propList);
82  void closeOrderedListLevel();
83  void closeUnorderedListLevel();
84  void openListElement(const RVNGPropertyList &propList);
85  void closeListElement();
86 
87  void startTableObject(const RVNGPropertyList &propList);
88  void openTableRow(const RVNGPropertyList &propList);
89  void closeTableRow();
90  void openTableCell(const RVNGPropertyList &propList);
91  void closeTableCell();
92  void insertCoveredTableCell(const RVNGPropertyList &propList);
93  void endTableObject();
94 
95  void startComment(const RVNGPropertyList &propList);
96  void endComment();
97 
98  void startNotes(const RVNGPropertyList &propList);
99  void endNotes();
100 
101  void defineChartStyle(const RVNGPropertyList &propList);
102  void openChart(const RVNGPropertyList &propList);
103  void closeChart();
104  void openChartTextObject(const RVNGPropertyList &propList);
105  void closeChartTextObject();
106  void openChartPlotArea(const RVNGPropertyList &propList);
107  void closeChartPlotArea();
108  void insertChartAxis(const RVNGPropertyList &propList);
109  void openChartSeries(const librevenge::RVNGPropertyList &propList);
110  void closeChartSeries();
111 
112  void openAnimationSequence(const RVNGPropertyList &propList);
113  void closeAnimationSequence();
114  void openAnimationGroup(const RVNGPropertyList &propList);
115  void closeAnimationGroup();
116  void openAnimationIteration(const RVNGPropertyList &propList);
117  void closeAnimationIteration();
118  void insertMotionAnimation(const RVNGPropertyList &propList);
119  void insertColorAnimation(const RVNGPropertyList &propList);
120  void insertAnimation(const RVNGPropertyList &propList);
121  void insertEffect(const RVNGPropertyList &propList);
122 };
123 
124 }
125 
126 #endif // RVNGDUMMYPRESENTATIONGENERATOR_H
127 
128 /* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
librevenge::RVNGDummyPresentationGenerator::openTableCell
void openTableCell(const RVNGPropertyList &propList)
Called when a new table cell is opened.
Definition: RVNGDummyPresentationGenerator.cpp:216
librevenge::RVNGDummyPresentationGenerator::setDocumentMetaData
void setDocumentMetaData(const RVNGPropertyList &propList)
Called when all document metadata should be set.
Definition: RVNGDummyPresentationGenerator.cpp:36
librevenge::RVNGDummyPresentationGenerator::endEmbeddedGraphics
void endEmbeddedGraphics()
Definition: RVNGDummyPresentationGenerator.cpp:76
librevenge::RVNGDummyPresentationGenerator::closeChartTextObject
void closeChartTextObject()
Called when a chart text zone:legend/title/subtitle/footer should be closed.
Definition: RVNGDummyPresentationGenerator.cpp:264
librevenge::RVNGDummyPresentationGenerator::RVNGDummyPresentationGenerator
RVNGDummyPresentationGenerator(const RVNGDummyPresentationGenerator &other)
librevenge::RVNGDummyPresentationGenerator::startLayer
void startLayer(const RVNGPropertyList &propList)
Definition: RVNGDummyPresentationGenerator.cpp:64
librevenge::RVNGDummyPresentationGenerator::insertText
void insertText(const RVNGString &str)
Called when a string of text should be inserted.
Definition: RVNGDummyPresentationGenerator.cpp:160
librevenge::RVNGDummyPresentationGenerator::closeOrderedListLevel
void closeOrderedListLevel()
Called when an unordered list level should be closed.
Definition: RVNGDummyPresentationGenerator.cpp:188
librevenge::RVNGDummyPresentationGenerator::startDocument
void startDocument(const RVNGPropertyList &propList)
Definition: RVNGDummyPresentationGenerator.cpp:28
librevenge::RVNGDummyPresentationGenerator::endTextObject
void endTextObject()
End a text object.
Definition: RVNGDummyPresentationGenerator.cpp:124
librevenge::RVNGDummyPresentationGenerator::endSlide
void endSlide()
Definition: RVNGDummyPresentationGenerator.cpp:48
librevenge::RVNGDummyPresentationGenerator::drawEllipse
void drawEllipse(const RVNGPropertyList &propList)
Definition: RVNGDummyPresentationGenerator.cpp:96
librevenge::RVNGDummyPresentationGenerator::openTableRow
void openTableRow(const RVNGPropertyList &propList)
Called when a new table row is opened.
Definition: RVNGDummyPresentationGenerator.cpp:208
librevenge::RVNGDummyPresentationGenerator::defineChartStyle
void defineChartStyle(const RVNGPropertyList &propList)
Definition: RVNGDummyPresentationGenerator.cpp:248
librevenge::RVNGDummyPresentationGenerator::endComment
void endComment()
End a comment.
Definition: RVNGDummyPresentationGenerator.cpp:236
librevenge::RVNGDummyPresentationGenerator::insertField
void insertField(const RVNGPropertyList &propList)
Called when a field should be inserted.
Definition: RVNGDummyPresentationGenerator.cpp:176
librevenge-generators-api.h
librevenge::RVNGDummyPresentationGenerator::openParagraph
void openParagraph(const RVNGPropertyList &propList)
Called when a new paragraph is opened.
Definition: RVNGDummyPresentationGenerator.cpp:132
librevenge::RVNGDummyPresentationGenerator::openOrderedListLevel
void openOrderedListLevel(const RVNGPropertyList &propList)
Called when a new ordered list level should be opened.
Definition: RVNGDummyPresentationGenerator.cpp:180
librevenge::RVNGDummyPresentationGenerator::openUnorderedListLevel
void openUnorderedListLevel(const RVNGPropertyList &propList)
Called when a new unordered list level should be opened.
Definition: RVNGDummyPresentationGenerator.cpp:184
librevenge::RVNGDummyPresentationGenerator::insertCoveredTableCell
void insertCoveredTableCell(const RVNGPropertyList &propList)
Called when a covered (spanned by another cell in the table) table cell is opened.
Definition: RVNGDummyPresentationGenerator.cpp:224
librevenge::RVNGDummyPresentationGenerator::startTextObject
void startTextObject(const RVNGPropertyList &propList)
Start a text object.
Definition: RVNGDummyPresentationGenerator.cpp:120
librevenge::RVNGDummyPresentationGenerator::startNotes
void startNotes(const RVNGPropertyList &propList)
Start slide notes.
Definition: RVNGDummyPresentationGenerator.cpp:240
librevenge::RVNGDummyPresentationGenerator::RVNGDummyPresentationGenerator
RVNGDummyPresentationGenerator()
Definition: RVNGDummyPresentationGenerator.cpp:20
librevenge::RVNGDummyPresentationGenerator::insertColorAnimation
void insertColorAnimation(const RVNGPropertyList &propList)
Insert an animation that changes color of the target object.
Definition: RVNGDummyPresentationGenerator.cpp:316
librevenge.h
librevenge::RVNGDummyPresentationGenerator::setSlideTransition
void setSlideTransition(const RVNGPropertyList &propList)
Called when a transition should be added to the current slide.
Definition: RVNGDummyPresentationGenerator.cpp:60
librevenge::RVNGDummyPresentationGenerator::openAnimationIteration
void openAnimationIteration(const RVNGPropertyList &propList)
Definition: RVNGDummyPresentationGenerator.cpp:304
librevenge::RVNGDummyPresentationGenerator::endLayer
void endLayer()
Definition: RVNGDummyPresentationGenerator.cpp:68
librevenge::RVNGDummyPresentationGenerator::openAnimationSequence
void openAnimationSequence(const RVNGPropertyList &propList)
Called when a set of animations should be applied one after another.
Definition: RVNGDummyPresentationGenerator.cpp:288
librevenge::RVNGDummyPresentationGenerator::openChart
void openChart(const RVNGPropertyList &propList)
Called when a chart should be opened.
Definition: RVNGDummyPresentationGenerator.cpp:252
librevenge::RVNGDummyPresentationGenerator::openChartPlotArea
void openChartPlotArea(const RVNGPropertyList &propList)
Called when a chart plot area should be opened.
Definition: RVNGDummyPresentationGenerator.cpp:268
librevenge::RVNGDummyPresentationGenerator::defineParagraphStyle
void defineParagraphStyle(const RVNGPropertyList &propList)
Definition: RVNGDummyPresentationGenerator.cpp:128
librevenge::RVNGDummyPresentationGenerator::insertLineBreak
void insertLineBreak()
Called when a line break should be inserted.
Definition: RVNGDummyPresentationGenerator.cpp:172
librevenge::RVNGDummyPresentationGenerator::closeAnimationSequence
void closeAnimationSequence()
Definition: RVNGDummyPresentationGenerator.cpp:292
librevenge::RVNGDummyPresentationGenerator::insertChartAxis
void insertChartAxis(const RVNGPropertyList &propList)
Called when a axis should be add in a plot area.
Definition: RVNGDummyPresentationGenerator.cpp:276
librevenge::RVNGDummyPresentationGenerator::insertMotionAnimation
void insertMotionAnimation(const RVNGPropertyList &propList)
Insert an animation that moves the target object along a specified path.
Definition: RVNGDummyPresentationGenerator.cpp:312
librevenge::RVNGDummyPresentationGenerator::closeChart
void closeChart()
Called when a chart should be closed.
Definition: RVNGDummyPresentationGenerator.cpp:256
librevenge::RVNGPropertyList
Definition: RVNGPropertyList.h:39
librevenge::RVNGDummyPresentationGenerator::defineCharacterStyle
void defineCharacterStyle(const RVNGPropertyList &propList)
Definition: RVNGDummyPresentationGenerator.cpp:140
librevenge::RVNGDummyPresentationGenerator::endNotes
void endNotes()
End slide notes.
Definition: RVNGDummyPresentationGenerator.cpp:244
librevenge::RVNGDummyPresentationGenerator::openLink
void openLink(const RVNGPropertyList &propList)
Called when a link should be opened.
Definition: RVNGDummyPresentationGenerator.cpp:152
librevenge::RVNGDummyPresentationGenerator::openGroup
void openGroup(const RVNGPropertyList &propList)
Definition: RVNGDummyPresentationGenerator.cpp:80
RVNGDummyPresentationGenerator.h
librevenge::RVNGDummyPresentationGenerator::openSpan
void openSpan(const RVNGPropertyList &propList)
Called when a text span is opened.
Definition: RVNGDummyPresentationGenerator.cpp:144
librevenge::RVNGDummyPresentationGenerator::closeGroup
void closeGroup()
Definition: RVNGDummyPresentationGenerator.cpp:84
librevenge::RVNGDummyPresentationGenerator::closeTableRow
void closeTableRow()
Called when the current table row is closed.
Definition: RVNGDummyPresentationGenerator.cpp:212
librevenge::RVNGDummyPresentationGenerator::endTableObject
void endTableObject()
Called when the current table is closed.
Definition: RVNGDummyPresentationGenerator.cpp:228
librevenge::RVNGDummyPresentationGenerator::closeAnimationGroup
void closeAnimationGroup()
Definition: RVNGDummyPresentationGenerator.cpp:300
librevenge::RVNGDummyPresentationGenerator::closeUnorderedListLevel
void closeUnorderedListLevel()
Called when an ununordered list level should be closed.
Definition: RVNGDummyPresentationGenerator.cpp:192
librevenge::RVNGDummyPresentationGenerator::openChartTextObject
void openChartTextObject(const RVNGPropertyList &propList)
Called when a chart text zone:label/legend/title/subtitle/footer should be opened.
Definition: RVNGDummyPresentationGenerator.cpp:260
librevenge::RVNGDummyPresentationGenerator::operator=
RVNGDummyPresentationGenerator & operator=(const RVNGDummyPresentationGenerator &other)
librevenge::RVNGString
UTF-8 string.
Definition: RVNGString.h:34
librevenge::RVNGDummyPresentationGenerator::drawConnector
void drawConnector(const RVNGPropertyList &propList)
Draw a connector.
Definition: RVNGDummyPresentationGenerator.cpp:116
librevenge::RVNGDummyPresentationGenerator
Definition: RVNGDummyPresentationGenerator.h:26
librevenge::RVNGDummyPresentationGenerator::startTableObject
void startTableObject(const RVNGPropertyList &propList)
Called when a table should be opened.
Definition: RVNGDummyPresentationGenerator.cpp:204
librevenge::RVNGDummyPresentationGenerator::insertSpace
void insertSpace()
Called when an explicit space should be inserted.
Definition: RVNGDummyPresentationGenerator.cpp:168
librevenge::RVNGDummyPresentationGenerator::insertTab
void insertTab()
Called when a TAB character should be inserted.
Definition: RVNGDummyPresentationGenerator.cpp:164
librevenge::RVNGDummyPresentationGenerator::startSlide
void startSlide(const RVNGPropertyList &propList)
Definition: RVNGDummyPresentationGenerator.cpp:44
librevenge::RVNGDummyPresentationGenerator::insertAnimation
void insertAnimation(const RVNGPropertyList &propList)
Insert a generic animation.
Definition: RVNGDummyPresentationGenerator.cpp:320
librevenge::RVNGDummyPresentationGenerator::endDocument
void endDocument()
Definition: RVNGDummyPresentationGenerator.cpp:32
librevenge::RVNGDummyPresentationGenerator::closeTableCell
void closeTableCell()
Called when the current table cell is closed.
Definition: RVNGDummyPresentationGenerator.cpp:220
librevenge::RVNGDummyPresentationGenerator::drawPolyline
void drawPolyline(const RVNGPropertyList &propList)
Definition: RVNGDummyPresentationGenerator.cpp:100
librevenge::RVNGDummyPresentationGenerator::drawGraphicObject
void drawGraphicObject(const RVNGPropertyList &propList)
Called when a binary/raster object should be inserted.
Definition: RVNGDummyPresentationGenerator.cpp:112
librevenge::RVNGDummyPresentationGenerator::startMasterSlide
void startMasterSlide(const RVNGPropertyList &propList)
Definition: RVNGDummyPresentationGenerator.cpp:52
librevenge::RVNGDummyPresentationGenerator::insertEffect
void insertEffect(const RVNGPropertyList &propList)
Set one-time animation effect on the target object.
Definition: RVNGDummyPresentationGenerator.cpp:324
librevenge::RVNGDummyPresentationGenerator::drawRectangle
void drawRectangle(const RVNGPropertyList &propList)
Definition: RVNGDummyPresentationGenerator.cpp:92
librevenge::RVNGDummyPresentationGenerator::openChartSeries
void openChartSeries(const librevenge::RVNGPropertyList &propList)
Called when a serie should be opened (in a plot area)
Definition: RVNGDummyPresentationGenerator.cpp:280
librevenge::RVNGDummyPresentationGenerator::endMasterSlide
void endMasterSlide()
Definition: RVNGDummyPresentationGenerator.cpp:56
librevenge::RVNGDummyPresentationGenerator::~RVNGDummyPresentationGenerator
~RVNGDummyPresentationGenerator()
Definition: RVNGDummyPresentationGenerator.cpp:24
librevenge::RVNGDummyPresentationGenerator::closeParagraph
void closeParagraph()
Called when a paragraph is closed.
Definition: RVNGDummyPresentationGenerator.cpp:136
librevenge::RVNGDummyPresentationGenerator::closeSpan
void closeSpan()
Called when a text span is closed.
Definition: RVNGDummyPresentationGenerator.cpp:148
librevenge::RVNGDummyPresentationGenerator::startEmbeddedGraphics
void startEmbeddedGraphics(const RVNGPropertyList &propList)
Definition: RVNGDummyPresentationGenerator.cpp:72
librevenge::RVNGDummyPresentationGenerator::startComment
void startComment(const RVNGPropertyList &propList)
Start a comment.
Definition: RVNGDummyPresentationGenerator.cpp:232
librevenge::RVNGDummyPresentationGenerator::drawPolygon
void drawPolygon(const RVNGPropertyList &propList)
Definition: RVNGDummyPresentationGenerator.cpp:104
librevenge::RVNGDummyPresentationGenerator::closeListElement
void closeListElement()
Called when a list element should be closed.
Definition: RVNGDummyPresentationGenerator.cpp:200
librevenge::RVNGPresentationInterface
Interface for import of presentations.
Definition: RVNGPresentationInterface.h:27
librevenge::RVNGDummyPresentationGenerator::closeChartSeries
void closeChartSeries()
Called when a serie should be closed (in a plot area)
Definition: RVNGDummyPresentationGenerator.cpp:284
librevenge::RVNGDummyPresentationGenerator::closeLink
void closeLink()
Called when the current link is closed.
Definition: RVNGDummyPresentationGenerator.cpp:156
librevenge::RVNGDummyPresentationGenerator::openAnimationGroup
void openAnimationGroup(const RVNGPropertyList &propList)
Called when a set of animations should be applied in parallel.
Definition: RVNGDummyPresentationGenerator.cpp:296
librevenge
Definition: RVNGBinaryData.cpp:40
librevenge::RVNGDummyPresentationGenerator::drawPath
void drawPath(const RVNGPropertyList &propList)
Definition: RVNGDummyPresentationGenerator.cpp:108
librevenge::RVNGDummyPresentationGenerator::closeChartPlotArea
void closeChartPlotArea()
Called when a chart plot arre should be closed.
Definition: RVNGDummyPresentationGenerator.cpp:272
librevenge::RVNGDummyPresentationGenerator::openListElement
void openListElement(const RVNGPropertyList &propList)
Called when a list element should be opened.
Definition: RVNGDummyPresentationGenerator.cpp:196
librevenge::RVNGDummyPresentationGenerator::setStyle
void setStyle(const RVNGPropertyList &propList)
Definition: RVNGDummyPresentationGenerator.cpp:88
REVENGE_GENERATORS_API
#define REVENGE_GENERATORS_API
Definition: librevenge-generators-api.h:34
librevenge::RVNGDummyPresentationGenerator::defineEmbeddedFont
void defineEmbeddedFont(const RVNGPropertyList &propList)
Called when an embedded font should be defined.
Definition: RVNGDummyPresentationGenerator.cpp:40
librevenge::RVNGDummyPresentationGenerator::closeAnimationIteration
void closeAnimationIteration()
Definition: RVNGDummyPresentationGenerator.cpp:308

Generated for librevenge by doxygen 1.8.20