PowerPoint7Parser.hxx
Go to the documentation of this file.
1 /* -*- Mode: C++; c-default-style: "k&r"; indent-tabs-mode: nil; tab-width: 2; c-basic-offset: 2 -*- */
2 
3 /* libmwaw
4 * Version: MPL 2.0 / LGPLv2+
5 *
6 * The contents of this file are subject to the Mozilla Public License Version
7 * 2.0 (the "License"); you may not use this file except in compliance with
8 * the License or as specified alternatively below. You may obtain a copy of
9 * the License at http://www.mozilla.org/MPL/
10 *
11 * Software distributed under the License is distributed on an "AS IS" basis,
12 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 * for the specific language governing rights and limitations under the
14 * License.
15 *
16 * Major Contributor(s):
17 * Copyright (C) 2002 William Lachance (wrlach@gmail.com)
18 * Copyright (C) 2002,2004 Marc Maurer (uwog@uwog.net)
19 * Copyright (C) 2004-2006 Fridrich Strba (fridrich.strba@bluewin.ch)
20 * Copyright (C) 2006, 2007 Andrew Ziem
21 * Copyright (C) 2011, 2012 Alonso Laurent (alonso@loria.fr)
22 *
23 *
24 * All Rights Reserved.
25 *
26 * For minor contributions see the git repository.
27 *
28 * Alternatively, the contents of this file may be used under the terms of
29 * the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
30 * in which case the provisions of the LGPLv2+ are applicable
31 * instead of those above.
32 */
33 
34 #ifndef POWER_POINT7_PARSER
35 # define POWER_POINT7_PARSER
36 
37 #include <map>
38 #include <set>
39 #include <vector>
40 
41 #include "MWAWDebug.hxx"
42 #include "MWAWInputStream.hxx"
43 
44 #include "MWAWParser.hxx"
45 
47 {
48 struct State;
49 }
50 
51 namespace PowerPoint7Struct
52 {
53 struct SlideId;
54 }
55 
56 class PowerPoint7Graph;
57 class PowerPoint7Text;
58 
62 {
63  friend class PowerPoint7Graph;
64  friend class PowerPoint7Text;
65 public:
69  virtual ~PowerPoint7Parser();
70 
72  bool checkHeader(MWAWHeader *header, bool strict=false);
73 
74  // the main parse function
75  void parse(librevenge::RVNGPresentationInterface *documentInterface);
76 
77 protected:
79  void createDocument(librevenge::RVNGPresentationInterface *documentInterface);
80 
82  bool createZones();
84  void sendSlides();
85 
86  //
87  // send data
88  //
89 
90  // interface with the text parser
91 
93  bool getColor(int cId, MWAWColor &col) const;
95  bool sendText(int textId);
96 
97  //
98  // low level
99  //
100 
102  bool readDocRoot();
104  bool readMainSub10(long endPos);
106  bool readDocument(long endPos);
108  bool readDocAtom(int level, long endPos);
110  bool readSlideInformation(int level, long endPos);
112  bool readSlides(int level, long endPos, bool master);
114  bool readSlideAtom(int level, long endPos,
117  bool readNotes(int level, long endPos);
119  bool readNoteAtom(int level, long endPos, PowerPoint7Struct::SlideId &sId);
121  bool readEnvironment(int level, long endPos);
123  bool readColorScheme(int level, long endPos, std::vector<MWAWColor> &colors);
125  bool readZone1015(int level, long endPos);
127  bool readSlideShowInfo(int level, long endPos);
129  bool readSlideViewInfo(int level, long endPos);
131  bool readGuideAtom(int level, long endPos);
133  bool readViewInfoAtom(int level, long endPos);
135  bool readSlideViewInfoAtom(int level, long endPos);
137  bool readVbaInfo(int level, long endPos);
139  bool readVbaInfoAtom(int level, long endPos);
141  bool readSSDocInfoAtom(int level, long endPos);
143  bool readSummary(int level, long endPos);
145  bool readZone1028(int level, long endPos);
147  bool readZone1028Atom(int level, long endPos);
149  bool readOutlineViewInfo(int level, long endPos);
151  bool readSorterViewInfo(int level, long endPos);
152 
154  bool readContainerList(int level, long endPos);
156  bool readContainerAtom(int level, long endPos, int &N);
158  bool readIdentifier(int level, long endPos, int &id, std::string const &wh);
160  bool readBookmarkCollection(int level, long endPos);
162  bool readSoundCollection(int level, long endPos);
164  bool readBookmarkSeedAtom(int level, long endPos);
166  bool readZone2026(int level, long endPos);
168  bool readColorList(int level, long endPos, std::vector<MWAWColor> &colors);
169 
171  bool readZone3000(int level, long endPos);
173  bool readZone3012(int level, long endPos);
175  bool readZone3012Atom(int level, long endPos);
176 
178  bool readTextCharsAtom(int level, long endPos);
180  bool readStyleTextPropAtom(int level, long endPos, int &textId);
182  bool readOutlineTextProps9Atom(int level, long endPos,
183  int &pId, PowerPoint7Struct::SlideId &sId);
185  bool readOutlineTextPropsHeader9Atom(int level, long endPos);
187  bool readString(int level, long endPos, std::string &string, int &zId, std::string const &what="");
189  bool readSlideIdentifier(int level, long endPos, PowerPoint7Struct::SlideId &sId);
191  bool readZone4039(int level, long endPos);
193  bool readKinsoku(int level, long endPos);
195  bool readHandout(int level, long endPos);
197  bool readZone4042(int level, long endPos);
199  bool readKinsokuAtom(int level, long endPos);
201  bool readZone1028Data(int level, long endPos);
203  bool readSlideIdentifierContainer(int level, long endPos, PowerPoint7Struct::SlideId &sId);
205  bool readHeaderFooters(int level, long endPos);
207  bool readHeaderFooterAtom(int level, long endPos);
209  bool readZone4072(int level, long endPos);
210 
212  bool readZone(int level, long endPos);
214  bool readZoneNoData(int level, long endPos, std::string const &name, std::string const &wh="");
215 
219  void checkForUnparsedZones();
220 protected:
221  //
222  // data
223  //
225  shared_ptr<PowerPoint7ParserInternal::State> m_state;
226 };
227 #endif
228 // vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
PowerPoint7Parser::readZone1028Data
bool readZone1028Data(int level, long endPos)
try to read the zone 4052: child of Zone1028
Definition: PowerPoint7Parser.cxx:2457
PowerPoint7Parser::readSSDocInfoAtom
bool readSSDocInfoAtom(int level, long endPos)
try to read the slide show doc info atom 1025: child of Document
Definition: PowerPoint7Parser.cxx:1258
PowerPoint7Parser::sendSlides
void sendSlides()
try to send all slides
Definition: PowerPoint7Parser.cxx:2803
PowerPoint7Struct::Zone::getName
std::string getName() const
returns a basic name
Definition: PowerPoint7Struct.hxx:116
MWAWParser::getFontConverter
MWAWFontConverterPtr & getFontConverter()
returns the font converter
Definition: MWAWParser.hxx:150
MWAWPresentationListenerPtr
shared_ptr< MWAWPresentationListener > MWAWPresentationListenerPtr
a smart pointer of MWAWPresentationListener
Definition: libmwaw_internal.hxx:511
PowerPoint7ParserInternal::SlideInfo::m_box
MWAWBox2i m_box
the bdbox
Definition: PowerPoint7Parser.cxx:69
PowerPoint7ParserInternal::State::popColorList
void popColorList()
pop a slide id
Definition: PowerPoint7Parser.cxx:134
PowerPoint7Parser::readSoundCollection
bool readSoundCollection(int level, long endPos)
try to read the sound collection zone 2020
Definition: PowerPoint7Parser.cxx:1710
PowerPoint7ParserInternal::State::m_slideList
std::vector< PowerPoint7Struct::SlideId > m_slideList
the list of slides
Definition: PowerPoint7Parser.cxx:155
PowerPoint7ParserInternal::State::m_slideIdStack
std::stack< PowerPoint7Struct::SlideId > m_slideIdStack
a stack of slide id
Definition: PowerPoint7Parser.cxx:163
PowerPoint7Struct::SlideId::m_inNotes
bool m_inNotes
a flag to know if the content is in the notes part
Definition: PowerPoint7Struct.hxx:102
MWAW_DEBUG_MSG
#define MWAW_DEBUG_MSG(M)
Definition: libmwaw_internal.hxx:127
PowerPoint7Parser::readSorterViewInfo
bool readSorterViewInfo(int level, long endPos)
try to read the sorter view info zone 1032
Definition: PowerPoint7Parser.cxx:1460
libmwaw::DebugFile::addDelimiter
void addDelimiter(long pos, char c)
adds a not breaking delimiter in position pos
Definition: MWAWDebug.cxx:73
PowerPoint7Parser::readKinsokuAtom
bool readKinsokuAtom(int level, long endPos)
try to read the Kinsoku atom zone 4050
Definition: PowerPoint7Parser.cxx:2429
PowerPoint7ParserInternal::State::m_masterSlideIdToNameMap
std::map< PowerPoint7Struct::SlideId, librevenge::RVNGString > m_masterSlideIdToNameMap
the master slide
Definition: PowerPoint7Parser.cxx:157
PowerPoint7Parser::readSlideIdentifier
bool readSlideIdentifier(int level, long endPos, PowerPoint7Struct::SlideId &sId)
try to read a slide identifier zone 4032
Definition: PowerPoint7Parser.cxx:2244
PowerPoint7Parser::readZone4072
bool readZone4072(int level, long endPos)
try to read the zone 4072: child of Zone3008
Definition: PowerPoint7Parser.cxx:2629
PowerPoint7ParserInternal::State::m_textParser
shared_ptr< PowerPoint7Text > m_textParser
the text parser
Definition: PowerPoint7Parser.cxx:151
PowerPoint7Parser::readMainSub10
bool readMainSub10(long endPos)
try to read the main sub zone: the zone 10: child of Root
Definition: PowerPoint7Parser.cxx:365
PowerPoint7Parser::readBookmarkCollection
bool readBookmarkCollection(int level, long endPos)
try to read the bookmark collection zone 2019
Definition: PowerPoint7Parser.cxx:1658
PowerPoint7Parser::readNotes
bool readNotes(int level, long endPos)
try to read the notes zone 1008
Definition: PowerPoint7Parser.cxx:728
PowerPoint7Parser::readDocAtom
bool readDocAtom(int level, long endPos)
try to read the document atom's zone 1001: child of Document
Definition: PowerPoint7Parser.cxx:464
PowerPoint7ParserInternal
Internal: the structures of a PowerPoint7Parser.
Definition: PowerPoint7Parser.cxx:61
PowerPoint7Struct::SlideId::m_isMaster
bool m_isMaster
a flag to know if this is a master slide or a normal slide
Definition: PowerPoint7Struct.hxx:100
libmwaw::DebugFile::open
bool open(std::string const &filename)
opens/creates a file to store a result
Definition: MWAWDebug.cxx:46
PowerPoint7Text.hxx
PowerPoint7Struct::Zone::m_type
int m_type
the type
Definition: PowerPoint7Struct.hxx:131
PowerPoint7Parser::createDocument
void createDocument(librevenge::RVNGPresentationInterface *documentInterface)
creates the listener which will be associated to the document
Definition: PowerPoint7Parser.cxx:234
MWAWFontConverter.hxx
MWAWColor
the class to store a color
Definition: libmwaw_internal.hxx:182
PowerPoint7Parser::readHeaderFooterAtom
bool readHeaderFooterAtom(int level, long endPos)
try to read the header footer atom zone: 4058
Definition: PowerPoint7Parser.cxx:2591
PowerPoint7Struct::SlideId
a slide id
Definition: PowerPoint7Struct.hxx:50
PowerPoint7Parser::checkHeader
bool checkHeader(MWAWHeader *header, bool strict=false)
checks if the document header is correct (or not)
Definition: PowerPoint7Parser.cxx:2843
MWAWParser::version
int version() const
returns the works version
Definition: MWAWParser.hxx:108
PowerPoint7Parser::readContainerList
bool readContainerList(int level, long endPos)
try to read the container list zone 2000: child of Document
Definition: PowerPoint7Parser.cxx:1504
PowerPoint7Parser::readHandout
bool readHandout(int level, long endPos)
try to read the handout zone 4041
Definition: PowerPoint7Parser.cxx:2360
MWAWPrinter.hxx
PowerPoint7ParserInternal::SlideInfo::m_hasBackground
bool m_hasBackground
a flag to know if the slide has some background or no background
Definition: PowerPoint7Parser.cxx:73
PowerPoint7Parser::readZone1015
bool readZone1015(int level, long endPos)
try to read the zone 1015: child of Slides
Definition: PowerPoint7Parser.cxx:949
PowerPoint7Parser::readDocRoot
bool readDocRoot()
try to read the main zone: the zone 3
Definition: PowerPoint7Parser.cxx:317
PowerPoint7Parser::readOutlineTextProps9Atom
bool readOutlineTextProps9Atom(int level, long endPos, int &pId, PowerPoint7Struct::SlideId &sId)
try to read the outline text props9 atom zone 4009
Definition: PowerPoint7Parser.cxx:2124
libmwaw::DebugFile::addNote
void addNote(char const *note)
adds a note in the file, in actual position
Definition: MWAWDebug.cxx:59
PowerPoint7Struct::SlideId::m_inHandout
bool m_inHandout
a flag to know if the content is in the handout part
Definition: PowerPoint7Struct.hxx:104
PowerPoint7ParserInternal::State::m_fontFamily
std::string m_fontFamily
the basic pc font family if known
Definition: PowerPoint7Parser.cxx:145
PowerPoint7Parser::m_state
shared_ptr< PowerPoint7ParserInternal::State > m_state
the state
Definition: PowerPoint7Parser.hxx:225
MWAWParser::ascii
libmwaw::DebugFile & ascii()
a DebugFile used to write what we recognize when we parse the document
Definition: MWAWParser.hxx:195
PowerPoint7ParserInternal::State::m_pageDimension
MWAWVec2i m_pageDimension
the page dimension
Definition: PowerPoint7Parser.cxx:147
PowerPoint7Parser::readZone1028
bool readZone1028(int level, long endPos)
try to read the zone 1028: child of Environment
Definition: PowerPoint7Parser.cxx:1335
PowerPoint7Parser::readSlideViewInfoAtom
bool readSlideViewInfoAtom(int level, long endPos)
try to read the slide view info zone 1022
Definition: PowerPoint7Parser.cxx:1145
MWAWParser::resetPresentationListener
void resetPresentationListener()
resets the listener
Definition: MWAWParser.cxx:129
MWAWPresentationListener.hxx
MWAWParser::asciiName
std::string const & asciiName() const
return the ascii file name
Definition: MWAWParser.hxx:232
PowerPoint7Parser::~PowerPoint7Parser
virtual ~PowerPoint7Parser()
destructor
Definition: PowerPoint7Parser.cxx:181
MWAWPageSpan::setFormLength
void setFormLength(const double formLength)
set the total page length
Definition: MWAWPageSpan.hxx:172
MWAWPageSpan::setMasterPageName
void setMasterPageName(librevenge::RVNGString const &name)
set the page master name
Definition: MWAWPageSpan.hxx:237
PowerPoint7Parser::readZone
bool readZone(int level, long endPos)
try to read a zone
Definition: PowerPoint7Parser.cxx:2707
MWAWDocument::MWAW_T_POWERPOINT
@ MWAW_T_POWERPOINT
PowerPoint: v1-v4 and pc v2-v4,95.
Definition: MWAWDocument.hxx:195
PowerPoint7Parser::readVbaInfoAtom
bool readVbaInfoAtom(int level, long endPos)
try to read the vba info zone 1024
Definition: PowerPoint7Parser.cxx:1225
PowerPoint7Struct::SlideId::isValid
bool isValid() const
returns true if the id is valid
Definition: PowerPoint7Struct.hxx:59
PowerPoint7Parser::readOutlineViewInfo
bool readOutlineViewInfo(int level, long endPos)
try to read the outline view info zone 1031
Definition: PowerPoint7Parser.cxx:1416
MWAWDocument::MWAW_K_PRESENTATION
@ MWAW_K_PRESENTATION
presentation graphic
Definition: MWAWDocument.hxx:85
PowerPoint7Parser
the main class to read a Microsoft PowerPoint 95 files (Windows)
Definition: PowerPoint7Parser.hxx:62
libmwaw::DebugFile::reset
void reset()
writes the current file and reset to zero
Definition: MWAWDebug.hxx:85
PowerPoint7Struct::Zone
a zone header of a PowerPoint7Parser
Definition: PowerPoint7Struct.hxx:107
PowerPoint7Parser::readSlides
bool readSlides(int level, long endPos, bool master)
try to read the slides zone 1006(slides) or 1016(master)
Definition: PowerPoint7Parser.cxx:590
PowerPoint7ParserInternal::SlideInfo::SlideInfo
SlideInfo()
constructor
Definition: PowerPoint7Parser.cxx:65
MWAWParser::setAsciiName
void setAsciiName(char const *name)
Debugging: change the default ascii file.
Definition: MWAWParser.hxx:227
MWAWParagraph.hxx
PowerPoint7Parser::readSlideInformation
bool readSlideInformation(int level, long endPos)
try to read the slide information 1005: dimension, has background, ...
Definition: PowerPoint7Parser.cxx:521
PowerPoint7ParserInternal::State::addSlide
void addSlide(PowerPoint7Struct::SlideId const &sId, PowerPoint7Struct::SlideId const &mId)
add a slide
Definition: PowerPoint7Parser.cxx:94
PowerPoint7Graph
the main class to read the graphic part of a PowerPoint 95 file
Definition: PowerPoint7Graph.hxx:74
PowerPoint7Parser::parseTextContent
bool parseTextContent(MWAWInputStreamPtr input)
try to read the "Text_Content" stream
Definition: PowerPoint7Parser.cxx:2766
MWAWVec2::y
T y() const
second element
Definition: libmwaw_internal.hxx:620
MWAWPageSpan::setFormWidth
void setFormWidth(const double formWidth)
set the total page width
Definition: MWAWPageSpan.hxx:177
MWAWPosition.hxx
PowerPoint7Text
the main class to read the text part of a PowerPoint 95 file
Definition: PowerPoint7Text.hxx:68
MWAWVec2::x
T x() const
first element
Definition: libmwaw_internal.hxx:615
MWAWPresentationParser
virtual class which defines the ancestor of all presentation zone parser
Definition: MWAWParser.hxx:266
PowerPoint7Parser.hxx
PowerPoint7ParserInternal::State::m_idToMasterIdMap
std::map< PowerPoint7Struct::SlideId, PowerPoint7Struct::SlideId > m_idToMasterIdMap
the slideId to masterId slide
Definition: PowerPoint7Parser.cxx:159
PowerPoint7Parser::readDocument
bool readDocument(long endPos)
try to read the document's zone 1000: child of Root
Definition: PowerPoint7Parser.cxx:399
MWAWParser::setVersion
void setVersion(int vers)
sets the document's version
Definition: MWAWParser.hxx:206
PowerPoint7Parser::readVbaInfo
bool readVbaInfo(int level, long endPos)
try to read the vba info zone 1023
Definition: PowerPoint7Parser.cxx:1175
MWAWListener::PageBreak
@ PageBreak
Definition: MWAWListener.hxx:58
PowerPoint7ParserInternal::State::State
State()
constructor
Definition: PowerPoint7Parser.cxx:79
MWAWVec2< int >
PowerPoint7ParserInternal::SlideInfo::m_displayMaster
bool m_displayMaster
a flag to know if we need to display the master slide graphic
Definition: PowerPoint7Parser.cxx:71
PowerPoint7Graph.hxx
MWAWGraphicShape.hxx
libmwaw::ParseException
Definition: libmwaw_internal.hxx:142
MWAWDebug.hxx
MWAWHeader
a function used by MWAWDocument to store the version of document
Definition: MWAWHeader.hxx:57
MWAWParser::getPageSpan
MWAWPageSpan const & getPageSpan() const
returns the actual page dimension
Definition: MWAWParser.hxx:160
PowerPoint7Parser::readColorList
bool readColorList(int level, long endPos, std::vector< MWAWColor > &colors)
try to read the color list zone 2031
Definition: PowerPoint7Parser.cxx:1826
PowerPoint7Parser::readGuideAtom
bool readGuideAtom(int level, long endPos)
try to read the guide atom zone 1019
Definition: PowerPoint7Parser.cxx:1072
PowerPoint7Parser::readSlideViewInfo
bool readSlideViewInfo(int level, long endPos)
try to read the slide view info zone 1018
Definition: PowerPoint7Parser.cxx:1022
PowerPoint7Struct::Zone::read
bool read(MWAWInputStreamPtr stream, long endPos=-1)
try to read a zone header
Definition: PowerPoint7Struct.cxx:38
MWAWParser::getPresentationListener
MWAWPresentationListenerPtr & getPresentationListener()
returns the presentation listener
Definition: MWAWParser.hxx:135
PowerPoint7ParserInternal::State
Internal: the state of a PowerPoint7Parser.
Definition: PowerPoint7Parser.cxx:77
PowerPoint7ParserInternal::SlideInfo
Internal: the basic information about a slide/notes/... zone in a PowerPoint7Parser.
Definition: PowerPoint7Parser.cxx:63
PowerPoint7Struct.hxx
PowerPoint7Parser::getColor
bool getColor(int cId, MWAWColor &col) const
returns the color corresponding to an id
Definition: PowerPoint7Parser.cxx:190
PowerPoint7Parser::readZone2026
bool readZone2026(int level, long endPos)
try to read the zone 2026: child of SlideViewInfo
Definition: PowerPoint7Parser.cxx:1782
MWAWParser::getParserState
MWAWParserStatePtr getParserState()
returns the parser state
Definition: MWAWParser.hxx:113
PowerPoint7ParserInternal::State::m_oleParser
shared_ptr< PowerPoint3OLE > m_oleParser
the ole parser
Definition: PowerPoint7Parser.cxx:153
MWAWHeader.hxx
MWAWInputStreamPtr
shared_ptr< MWAWInputStream > MWAWInputStreamPtr
a smart pointer of MWAWInputStream
Definition: libmwaw_internal.hxx:503
MWAWBox2i
MWAWBox2< int > MWAWBox2i
MWAWBox2 of int.
Definition: libmwaw_internal.hxx:1132
PowerPoint7Parser::readKinsoku
bool readKinsoku(int level, long endPos)
try to read the Kinsoku zone 4040
Definition: PowerPoint7Parser.cxx:2275
PowerPoint7Parser::readSlideAtom
bool readSlideAtom(int level, long endPos, PowerPoint7Struct::SlideId &sId, PowerPoint7Struct::SlideId &mId)
try to read the slide zone 1007
Definition: PowerPoint7Parser.cxx:689
MWAWGraphicStyle.hxx
PowerPoint7ParserInternal::State::popSlideId
void popSlideId()
pop a slide id
Definition: PowerPoint7Parser.cxx:117
MWAWParser::getInput
MWAWInputStreamPtr & getInput()
returns the actual input
Definition: MWAWParser.hxx:123
PowerPoint7Parser::readSummary
bool readSummary(int level, long endPos)
try to read the summary zone 1026: child of Document
Definition: PowerPoint7Parser.cxx:1291
PowerPoint7ParserInternal::State::m_graphParser
shared_ptr< PowerPoint7Graph > m_graphParser
the graph parser
Definition: PowerPoint7Parser.cxx:149
MWAWPresentationListener
This class contains code needed to write a presention document.
Definition: MWAWPresentationListener.hxx:60
PowerPoint7Parser::readZone3000
bool readZone3000(int level, long endPos)
try to read the zone 3000: child of Handout/Notes/Slides/Zone3001
Definition: PowerPoint7Parser.cxx:1872
PowerPoint7Parser::readZoneNoData
bool readZoneNoData(int level, long endPos, std::string const &name, std::string const &wh="")
try to read a zone with no data
Definition: PowerPoint7Parser.cxx:2679
PowerPoint7Parser::readEnvironment
bool readEnvironment(int level, long endPos)
try to read the environment zone 1010
Definition: PowerPoint7Parser.cxx:835
PowerPoint7ParserInternal::State::pushColorList
void pushColorList(std::vector< MWAWColor > const &colorList)
push a new slide id
Definition: PowerPoint7Parser.cxx:128
PowerPoint7Parser::createZones
bool createZones()
finds the different zones
Definition: PowerPoint7Parser.cxx:275
PowerPoint7Parser::readStyleTextPropAtom
bool readStyleTextPropAtom(int level, long endPos, int &textId)
try to read the style text prop atom zone 4001
Definition: PowerPoint7Parser.cxx:2067
PowerPoint7Parser::readZone4039
bool readZone4039(int level, long endPos)
try to read the zone 4039: child of Zone4072
Definition: PowerPoint7Parser.cxx:2325
libmwaw::DebugFile::addPos
void addPos(long pos)
adds a new position in the file
Definition: MWAWDebug.cxx:53
libmwaw::DebugFile::setStream
void setStream(MWAWInputStreamPtr ip)
resets the input
Definition: MWAWDebug.hxx:73
PowerPoint7Parser::readViewInfoAtom
bool readViewInfoAtom(int level, long endPos)
try to read the view info zone 1021
Definition: PowerPoint7Parser.cxx:1103
PowerPoint7ParserInternal::State::m_idToSlideInfoMap
std::map< PowerPoint7Struct::SlideId, SlideInfo > m_idToSlideInfoMap
the slideId to information slide
Definition: PowerPoint7Parser.cxx:161
PowerPoint3OLE.hxx
PowerPoint7Struct::Zone::m_values
int m_values[6]
some value
Definition: PowerPoint7Struct.hxx:135
MWAWRSRCParserPtr
shared_ptr< MWAWRSRCParser > MWAWRSRCParserPtr
a smart pointer of MWAWRSRCParser
Definition: libmwaw_internal.hxx:513
PowerPoint7Parser::readZone1028Atom
bool readZone1028Atom(int level, long endPos)
try to read the zone 1029
Definition: PowerPoint7Parser.cxx:1382
PowerPoint3OLE
the main class to read the ole stream in a Microsoft PowerPoint v4 files (MacOs and Windows)
Definition: PowerPoint3OLE.hxx:51
PowerPoint7Parser::readBookmarkSeedAtom
bool readBookmarkSeedAtom(int level, long endPos)
try to read the bookmark seed atom zone 2025
Definition: PowerPoint7Parser.cxx:1751
PowerPoint7Parser::parse
void parse(librevenge::RVNGPresentationInterface *documentInterface)
virtual function used to parse the input
Definition: PowerPoint7Parser.cxx:204
PowerPoint7ParserInternal::State::m_colorListStack
std::stack< std::vector< MWAWColor > > m_colorListStack
a stack of color list
Definition: PowerPoint7Parser.cxx:165
PowerPoint7Parser::readZone4042
bool readZone4042(int level, long endPos)
try to read the zone 4042: child of FontCollection
PowerPoint7ParserInternal::State::pushSlideId
void pushSlideId(PowerPoint7Struct::SlideId const &id)
push a new slide id
Definition: PowerPoint7Parser.cxx:111
libmwaw::DebugFile
an interface used to insert comment in a binary file, written in ascii form (if debug_with_files is n...
Definition: MWAWDebug.hxx:66
PowerPoint7Parser::readNoteAtom
bool readNoteAtom(int level, long endPos, PowerPoint7Struct::SlideId &sId)
try to read the note atom zone 1009
Definition: PowerPoint7Parser.cxx:804
PowerPoint7Parser::readZone3012
bool readZone3012(int level, long endPos)
try to read the zone 3012: child of Environment
Definition: PowerPoint7Parser.cxx:1931
MWAWInputStream.hxx
PowerPoint7Parser::readString
bool readString(int level, long endPos, std::string &string, int &zId, std::string const &what="")
try to read the string zone 4026
Definition: PowerPoint7Parser.cxx:2219
MWAWHeader::reset
void reset(MWAWDocument::Type type, int vers, Kind kind=MWAWDocument::MWAW_K_TEXT)
resets the data
Definition: MWAWHeader.hxx:82
MWAWFont.hxx
PowerPoint7Parser::checkForUnparsedZones
void checkForUnparsedZones()
check for unparsed zone
Definition: PowerPoint7Parser.cxx:2758
MWAWBox2< int >
PowerPoint7Parser::PowerPoint7Parser
PowerPoint7Parser(MWAWInputStreamPtr input, MWAWRSRCParserPtr rsrcParser, MWAWHeader *header)
constructor
Definition: PowerPoint7Parser.cxx:173
PowerPoint7Parser::readSlideShowInfo
bool readSlideShowInfo(int level, long endPos)
try to read the slide show info zone 1017
Definition: PowerPoint7Parser.cxx:989
PowerPoint7Parser::readContainerAtom
bool readContainerAtom(int level, long endPos, int &N)
try to read the container atom zone 2001
Definition: PowerPoint7Parser.cxx:1600
PowerPoint7Parser::readOutlineTextPropsHeader9Atom
bool readOutlineTextPropsHeader9Atom(int level, long endPos)
try to read the outline text props header9 atom zone 4015
Definition: PowerPoint7Parser.cxx:2188
PowerPoint7Parser::readSlideIdentifierContainer
bool readSlideIdentifierContainer(int level, long endPos, PowerPoint7Struct::SlideId &sId)
try to read a container of a slide identifier 4054
Definition: PowerPoint7Parser.cxx:2497
PowerPoint7Parser::PowerPoint7Text
friend class PowerPoint7Text
Definition: PowerPoint7Parser.hxx:64
PowerPoint7Parser::PowerPoint7Graph
friend class PowerPoint7Graph
Definition: PowerPoint7Parser.hxx:63
PowerPoint7Parser::readZone3012Atom
bool readZone3012Atom(int level, long endPos)
try to read the zone 3013: child of Zone3012
Definition: PowerPoint7Parser.cxx:1987
PowerPoint7Parser::readIdentifier
bool readIdentifier(int level, long endPos, int &id, std::string const &wh)
try to read an identifier zone 2017
Definition: PowerPoint7Parser.cxx:1630
PowerPoint7Parser::readTextCharsAtom
bool readTextCharsAtom(int level, long endPos)
try to read the text chars atom zone 4000
Definition: PowerPoint7Parser.cxx:2017
MWAWParser::setPresentationListener
void setPresentationListener(MWAWPresentationListenerPtr &listener)
sets the presentation listener
Definition: MWAWParser.cxx:124
MWAWVec2i
MWAWVec2< int > MWAWVec2i
MWAWVec2 of int.
Definition: libmwaw_internal.hxx:781
libmwaw::DebugStream
std::stringstream DebugStream
a basic stream (if debug_with_files is not defined, does nothing)
Definition: MWAWDebug.hxx:61
PowerPoint7Struct
namespace used to define basic struct of a Microsoft PowerPoint 95 files (Windows)
Definition: PowerPoint7Graph.hxx:62
MWAWParser.hxx
PowerPoint7Struct::Zone::m_dataSize
long m_dataSize
the data size
Definition: PowerPoint7Struct.hxx:133
PowerPoint7Parser::sendText
bool sendText(int textId)
try to send the text content
Definition: PowerPoint7Parser.cxx:185
PowerPoint7Parser::readHeaderFooters
bool readHeaderFooters(int level, long endPos)
try to read the header footer zone: 4057
Definition: PowerPoint7Parser.cxx:2541
MWAWPageSpan
A class which defines the page properties.
Definition: MWAWPageSpan.hxx:96
PowerPoint7Parser::readColorScheme
bool readColorScheme(int level, long endPos, std::vector< MWAWColor > &colors)
try to read the color scheme 1012
Definition: PowerPoint7Parser.cxx:905

Generated on Wed Jun 17 2020 06:30:12 for libmwaw by doxygen 1.8.18