the main class to read a MacWrite file More...
#include <MWParser.hxx>
Public Member Functions | |
MWParser (MWAWInputStreamPtr input, MWAWRSRCParserPtr rsrcParser, MWAWHeader *header) | |
constructor | |
virtual | ~MWParser () |
destructor | |
bool | checkHeader (MWAWHeader *header, bool strict=false) |
checks if the document header is correct (or not) | |
void | parse (WPXDocumentInterface *documentInterface) |
virtual function used to parse the input | |
Protected Member Functions | |
void | init () |
inits all internal variables | |
void | setListener (MWAWContentListenerPtr listen) |
sets the listener in this class and in the helper classes | |
void | createDocument (WPXDocumentInterface *documentInterface) |
creates the listener which will be associated to the document | |
bool | sendWindow (int zone) |
send a zone ( 0: MAIN ZONE, 1 : HEADER, 2 : FOOTER ) | |
bool | createZones () |
finds the different objects zones | |
bool | createZonesV3 () |
finds the different objects zones (version <= 3) | |
bool | readPrintInfo () |
read the print info zone | |
bool | readWindowsInfo (int wh) |
read the windows zone | |
bool | readLinesHeight (MWAWEntry const &entry, std::vector< int > &firstParagLine, std::vector< int > &linesHeight) |
read the line height | |
bool | readInformationsV3 (int numInfo, std::vector< MWParserInternal::Information > &informations) |
read the information ( version <= 3) | |
bool | readInformations (MWAWEntry const &entry, std::vector< MWParserInternal::Information > &informations) |
read the information | |
bool | readParagraph (MWParserInternal::Information const &info) |
read a paragraph | |
bool | readGraphic (MWParserInternal::Information const &info) |
read a graphics | |
bool | readText (MWParserInternal::Information const &info, std::vector< int > const &lineHeight) |
read a text zone | |
bool | readPageBreak (MWParserInternal::Information const &info) |
read a page break zone ( version <= 3) | |
bool | checkFreeList () |
check the free list | |
void | newPage (int number) |
adds a new page | |
Static Protected Member Functions | |
static bool | isMagicPic (WPXBinaryData const &dt) |
test if a graphic is empty. | |
Protected Attributes | |
shared_ptr < MWParserInternal::State > | m_state |
the state | |
Friends | |
class | MWParserInternal::SubDocument |
the main class to read a MacWrite file
MWParser::MWParser | ( | MWAWInputStreamPtr | input, |
MWAWRSRCParserPtr | rsrcParser, | ||
MWAWHeader * | header | ||
) |
constructor
MWParser::~MWParser | ( | ) | [virtual] |
destructor
bool MWParser::checkFreeList | ( | ) | [protected] |
check the free list
Referenced by createZones().
bool MWParser::checkHeader | ( | MWAWHeader * | header, |
bool | strict = false |
||
) | [virtual] |
void MWParser::createDocument | ( | WPXDocumentInterface * | documentInterface | ) | [protected] |
creates the listener which will be associated to the document
Referenced by parse().
bool MWParser::createZones | ( | ) | [protected] |
finds the different objects zones
Referenced by parse().
bool MWParser::createZonesV3 | ( | ) | [protected] |
finds the different objects zones (version <= 3)
Referenced by parse().
void MWParser::init | ( | ) | [protected] |
inits all internal variables
Referenced by MWParser().
bool MWParser::isMagicPic | ( | WPXBinaryData const & | dt | ) | [static, protected] |
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 MWParser::newPage | ( | int | number | ) | [protected] |
adds a new page
Referenced by sendWindow().
void MWParser::parse | ( | WPXDocumentInterface * | documentInterface | ) | [virtual] |
virtual function used to parse the input
Implements MWAWParser.
bool MWParser::readGraphic | ( | MWParserInternal::Information const & | info | ) | [protected] |
read a graphics
Referenced by sendWindow().
bool MWParser::readInformations | ( | MWAWEntry const & | entry, |
std::vector< MWParserInternal::Information > & | informations | ||
) | [protected] |
read the information
Referenced by readWindowsInfo().
bool MWParser::readInformationsV3 | ( | int | numInfo, |
std::vector< MWParserInternal::Information > & | informations | ||
) | [protected] |
read the information ( version <= 3)
Referenced by createZonesV3().
bool MWParser::readLinesHeight | ( | MWAWEntry const & | entry, |
std::vector< int > & | firstParagLine, | ||
std::vector< int > & | linesHeight | ||
) | [protected] |
read the line height
Referenced by readText(), and readWindowsInfo().
bool MWParser::readPageBreak | ( | MWParserInternal::Information const & | info | ) | [protected] |
read a page break zone ( version <= 3)
Referenced by sendWindow().
bool MWParser::readParagraph | ( | MWParserInternal::Information const & | info | ) | [protected] |
read a paragraph
Referenced by sendWindow().
bool MWParser::readPrintInfo | ( | ) | [protected] |
read the print info zone
Referenced by checkHeader(), createZones(), and createZonesV3().
bool MWParser::readText | ( | MWParserInternal::Information const & | info, |
std::vector< int > const & | lineHeight | ||
) | [protected] |
read a text zone
Referenced by sendWindow().
bool MWParser::readWindowsInfo | ( | int | wh | ) | [protected] |
read the windows zone
Referenced by createZones(), and createZonesV3().
bool MWParser::sendWindow | ( | int | zone | ) | [protected] |
send a zone ( 0: MAIN ZONE, 1 : HEADER, 2 : FOOTER )
Referenced by createDocument(), and parse().
void MWParser::setListener | ( | MWAWContentListenerPtr | listen | ) | [protected] |
sets the listener in this class and in the helper classes
Referenced by createDocument().
friend class MWParserInternal::SubDocument [friend] |
shared_ptr<MWParserInternal::State> MWParser::m_state [protected] |
the state
Referenced by checkFreeList(), checkHeader(), createDocument(), createZones(), createZonesV3(), init(), newPage(), parse(), readText(), readWindowsInfo(), and sendWindow().