MacWrtParser Class Reference

the main class to read a MacWrite file More...

#include <MacWrtParser.hxx>

Inheritance diagram for MacWrtParser:
MWAWTextParser MWAWParser

Public Member Functions

 MacWrtParser (MWAWInputStreamPtr input, MWAWRSRCParserPtr rsrcParser, MWAWHeader *header)
 constructor More...
 
virtual ~MacWrtParser ()
 destructor More...
 
bool checkHeader (MWAWHeader *header, bool strict=false)
 checks if the document header is correct (or not) More...
 
void parse (librevenge::RVNGTextInterface *documentInterface)
 virtual function used to parse the input More...
 

Protected Member Functions

void init ()
 inits all internal variables More...
 
void createDocument (librevenge::RVNGTextInterface *documentInterface)
 creates the listener which will be associated to the document More...
 
bool sendWindow (int zone)
 send a zone ( 0: MAIN ZONE, 1 : HEADER, 2 : FOOTER ) More...
 
bool createZones ()
 finds the different objects zones More...
 
bool createZonesV3 ()
 finds the different objects zones (version <= 3) More...
 
bool readPrintInfo ()
 read the print info zone More...
 
bool readWindowsInfo (int wh)
 read the windows zone More...
 
bool readLinesHeight (MWAWEntry const &entry, std::vector< int > &firstParagLine, std::vector< int > &linesHeight)
 read the line height More...
 
bool readInformationsV3 (int numInfo, std::vector< MacWrtParserInternal::Information > &informations)
 read the information ( version <= 3) More...
 
bool readInformations (MWAWEntry const &entry, std::vector< MacWrtParserInternal::Information > &informations)
 read the information More...
 
bool readParagraph (MacWrtParserInternal::Information const &info)
 read a paragraph More...
 
bool readGraphic (MacWrtParserInternal::Information const &info)
 read a graphics More...
 
bool readText (MacWrtParserInternal::Information const &info, std::vector< int > const &lineHeight)
 read a text zone More...
 
bool readPageBreak (MacWrtParserInternal::Information const &info)
 read a page break zone ( version <= 3) More...
 
bool checkFreeList ()
 check the free list More...
 
void newPage (int number)
 adds a new page More...
 
- Protected Member Functions inherited from MWAWTextParser
 MWAWTextParser (MWAWInputStreamPtr input, MWAWRSRCParserPtr rsrcParser, MWAWHeader *header)
 constructor (protected) More...
 
 MWAWTextParser (MWAWParserStatePtr state)
 constructor using a state More...
 
- Protected Member Functions inherited from MWAWParser
 MWAWParser (MWAWParserState::Type type, MWAWInputStreamPtr input, MWAWRSRCParserPtr rsrcParser, MWAWHeader *header)
 constructor (protected) More...
 
 MWAWParser (MWAWParserStatePtr state)
 constructor using a state More...
 
void setVersion (int vers)
 sets the document's version More...
 
void setGraphicListener (MWAWGraphicListenerPtr &listener)
 sets the graphic listener More...
 
void resetGraphicListener ()
 resets the listener More...
 
void setPresentationListener (MWAWPresentationListenerPtr &listener)
 sets the presentation listener More...
 
void resetPresentationListener ()
 resets the listener More...
 
void setSpreadsheetListener (MWAWSpreadsheetListenerPtr &listener)
 sets the spreadsheet listener More...
 
void resetSpreadsheetListener ()
 resets the listener More...
 
void setTextListener (MWAWTextListenerPtr &listener)
 sets the text listener More...
 
void resetTextListener ()
 resets the listener More...
 
void setFontConverter (MWAWFontConverterPtr fontConverter)
 sets the font convertor More...
 
void setAsciiName (char const *name)
 Debugging: change the default ascii file. More...
 
std::string const & asciiName () const
 return the ascii file name More...
 

Static Protected Member Functions

static bool isMagicPic (librevenge::RVNGBinaryData const &dt)
 test if a graphic is empty. More...
 

Protected Attributes

shared_ptr
< MacWrtParserInternal::State
m_state
 the state More...
 

Friends

class MacWrtParserInternal::SubDocument
 

Detailed Description

the main class to read a MacWrite file

Constructor & Destructor Documentation

MacWrtParser::MacWrtParser ( MWAWInputStreamPtr  input,
MWAWRSRCParserPtr  rsrcParser,
MWAWHeader header 
)

constructor

MacWrtParser::~MacWrtParser ( )
virtual

destructor

Member Function Documentation

bool MacWrtParser::checkFreeList ( )
protected

check the free list

Referenced by createZones().

bool MacWrtParser::checkHeader ( MWAWHeader header,
bool  strict = false 
)
virtual

checks if the document header is correct (or not)

Implements MWAWParser.

Referenced by parse().

void MacWrtParser::createDocument ( librevenge::RVNGTextInterface *  documentInterface)
protected

creates the listener which will be associated to the document

Referenced by parse().

bool MacWrtParser::createZones ( )
protected

finds the different objects zones

Referenced by parse().

bool MacWrtParser::createZonesV3 ( )
protected

finds the different objects zones (version <= 3)

Referenced by parse().

void MacWrtParser::init ( )
protected

inits all internal variables

Referenced by MacWrtParser().

bool MacWrtParser::isMagicPic ( librevenge::RVNGBinaryData const &  dt)
staticprotected

test if a graphic is empty.

In v5, some empty graphic are added before a page break, so it better to remove them

Referenced by readGraphic().

void MacWrtParser::newPage ( int  number)
protected

adds a new page

Referenced by sendWindow().

void MacWrtParser::parse ( librevenge::RVNGTextInterface *  documentInterface)
virtual

virtual function used to parse the input

Implements MWAWTextParser.

bool MacWrtParser::readGraphic ( MacWrtParserInternal::Information const &  info)
protected

read a graphics

Referenced by sendWindow().

bool MacWrtParser::readInformations ( MWAWEntry const &  entry,
std::vector< MacWrtParserInternal::Information > &  informations 
)
protected

read the information

Referenced by readWindowsInfo().

bool MacWrtParser::readInformationsV3 ( int  numInfo,
std::vector< MacWrtParserInternal::Information > &  informations 
)
protected

read the information ( version <= 3)

Referenced by createZonesV3().

bool MacWrtParser::readLinesHeight ( MWAWEntry const &  entry,
std::vector< int > &  firstParagLine,
std::vector< int > &  linesHeight 
)
protected

read the line height

Referenced by readText(), and readWindowsInfo().

bool MacWrtParser::readPageBreak ( MacWrtParserInternal::Information const &  info)
protected

read a page break zone ( version <= 3)

Referenced by sendWindow().

bool MacWrtParser::readParagraph ( MacWrtParserInternal::Information const &  info)
protected

read a paragraph

Referenced by sendWindow().

bool MacWrtParser::readPrintInfo ( )
protected

read the print info zone

Referenced by checkHeader(), createZones(), and createZonesV3().

bool MacWrtParser::readText ( MacWrtParserInternal::Information const &  info,
std::vector< int > const &  lineHeight 
)
protected

read a text zone

Referenced by sendWindow().

bool MacWrtParser::readWindowsInfo ( int  wh)
protected

read the windows zone

Referenced by checkHeader(), createZones(), and createZonesV3().

bool MacWrtParser::sendWindow ( int  zone)
protected

send a zone ( 0: MAIN ZONE, 1 : HEADER, 2 : FOOTER )

Referenced by createDocument(), parse(), and MacWrtParserInternal::SubDocument::parse().

Friends And Related Function Documentation

friend class MacWrtParserInternal::SubDocument
friend

Member Data Documentation


The documentation for this class was generated from the following files:

Generated on Tue Mar 1 2016 23:42:54 for libmwaw by doxygen 1.8.4