the main class to read a Writerperfect file More...
#include <WPParser.hxx>
Public Member Functions | |
WPParser (MWAWInputStreamPtr input, MWAWRSRCParserPtr rsrcParser, MWAWHeader *header) | |
constructor More... | |
virtual | ~WPParser () |
destructor More... | |
bool | checkHeader (MWAWHeader *header, bool strict=false) |
checks if the document header is correct (or not) More... | |
void | parse (WPXDocumentInterface *documentInterface) |
virtual function used to parse the input More... | |
![]() | |
virtual | ~MWAWParser () |
virtual destructor More... | |
int | version () const |
returns the works version More... | |
void | setVersion (int vers) |
sets the works version More... | |
Protected Member Functions | |
void | init () |
inits all internal variables More... | |
void | setListener (MWAWContentListenerPtr listen) |
sets the listener in this class and in the helper classes More... | |
void | createDocument (WPXDocumentInterface *documentInterface) |
creates the listener which will be associated to the document More... | |
bool | createZones () |
finds the different objects zones More... | |
bool | readPrintInfo () |
read the print info zone More... | |
bool | readWindowsInfo (int zone) |
read the main info for zone ( 0: MAIN ZONE, 1 : HEADER, 2 : FOOTER ) More... | |
bool | sendWindow (int zone, Vec2i limits=Vec2i(-1,-1)) |
send a zone ( 0: MAIN ZONE, 1 : HEADER, 2 : FOOTER ) More... | |
bool | readWindowsZone (int zone) |
read the page info zone More... | |
bool | readPageInfo (int zone) |
read the page info zone More... | |
bool | readColInfo (int zone) |
read the col info zone ? More... | |
bool | readParagraphInfo (int zone) |
read the paragraph info zone More... | |
bool | findSectionColumns (int zone, Vec2i limits, std::vector< int > &colSize) |
try to find the column size which correspond to a section More... | |
bool | readSection (WPParserInternal::ParagraphInfo const &info, bool mainBlock) |
read a section More... | |
bool | readText (WPParserInternal::ParagraphInfo const &info) |
read a text More... | |
bool | readTable (WPParserInternal::ParagraphInfo const &info) |
read a table More... | |
bool | readGraphic (WPParserInternal::ParagraphInfo const &info) |
read a graphic More... | |
bool | readUnknown (WPParserInternal::ParagraphInfo const &info) |
read a unknown section More... | |
float | pageHeight () const |
returns the page height, ie. paper size less margin (in inches) More... | |
float | pageWidth () const |
returns the page width, ie. paper size less margin (in inches) More... | |
void | newPage (int number) |
adds a new page More... | |
bool | readParagraphData (WPParserInternal::ParagraphInfo const &info, bool hasFonts, WPParserInternal::ParagraphData &data) |
reads a paragraph data More... | |
MWAWParagraph | getParagraph (WPParserInternal::ParagraphData const &data) |
returns a paragraph corresponding to a paragraph data More... | |
bool | readFonts (int nFonts, int type, std::vector< WPParserInternal::Font > &fonts) |
reads a list of font (with position) More... | |
bool | readLines (WPParserInternal::ParagraphInfo const &info, int nLines, std::vector< WPParserInternal::Line > &lines) |
reads a list of line (with position) More... | |
![]() | |
MWAWParser (MWAWInputStreamPtr input, MWAWRSRCParserPtr rsrcParser, MWAWHeader *header) | |
constructor (protected) More... | |
MWAWParser (MWAWParserStatePtr state) | |
constructor using a state More... | |
MWAWParserStatePtr | getParserState () |
returns the parser state More... | |
MWAWHeader * | getHeader () |
returns the header More... | |
MWAWInputStreamPtr & | getInput () |
returns the actual input More... | |
MWAWRSRCParserPtr & | getRSRCParser () |
returns the rsrc parser More... | |
MWAWContentListenerPtr & | getListener () |
returns the listener More... | |
void | setListener (MWAWContentListenerPtr &listener) |
sets the listener More... | |
void | resetListener () |
resets the listener More... | |
MWAWFontConverterPtr & | getFontConverter () |
returns the font converter More... | |
void | setFontConverter (MWAWFontConverterPtr fontConverter) |
sets the font convertor More... | |
libmwaw::DebugFile & | ascii () |
a DebugFile used to write what we recognize when we parse the document More... | |
void | setAsciiName (char const *name) |
Debugging: change the default ascii file. More... | |
std::string const & | asciiName () const |
return the ascii file name More... | |
Protected Attributes | |
shared_ptr < WPParserInternal::State > | m_state |
the state More... | |
MWAWPageSpan | m_pageSpan |
the actual document size More... | |
Friends | |
class | WPParserInternal::SubDocument |
the main class to read a Writerperfect file
WPParser::WPParser | ( | MWAWInputStreamPtr | input, |
MWAWRSRCParserPtr | rsrcParser, | ||
MWAWHeader * | header | ||
) |
constructor
|
virtual |
destructor
bool WPParser::checkHeader | ( | MWAWHeader * | header, |
bool | strict = false |
||
) |
checks if the document header is correct (or not)
Referenced by MWAWDocumentInternal::checkBasicMacHeader(), and parse().
|
protected |
creates the listener which will be associated to the document
Referenced by parse().
|
protected |
finds the different objects zones
Referenced by parse().
|
protected |
try to find the column size which correspond to a section
Referenced by sendWindow().
|
protected |
returns a paragraph corresponding to a paragraph data
Referenced by readText().
|
protected |
inits all internal variables
Referenced by WPParser().
|
protected |
adds a new page
Referenced by sendWindow().
|
protected |
returns the page height, ie. paper size less margin (in inches)
Referenced by readPageInfo().
|
protected |
returns the page width, ie. paper size less margin (in inches)
Referenced by findSectionColumns(), and getParagraph().
|
virtual |
virtual function used to parse the input
Implements MWAWParser.
Referenced by MWAWDocument::parse().
|
protected |
read the col info zone ?
Referenced by readWindowsZone().
|
protected |
reads a list of font (with position)
Referenced by readParagraphData().
|
protected |
read a graphic
Referenced by sendWindow().
|
protected |
reads a list of line (with position)
Referenced by readText().
|
protected |
read the page info zone
Referenced by readWindowsZone().
|
protected |
reads a paragraph data
Referenced by readGraphic(), readSection(), readTable(), readText(), and readUnknown().
|
protected |
read the paragraph info zone
Referenced by readWindowsZone().
|
protected |
read the print info zone
Referenced by createZones().
|
protected |
read a section
Referenced by sendWindow().
|
protected |
read a table
Referenced by sendWindow().
|
protected |
read a text
Referenced by sendWindow().
|
protected |
read a unknown section
Referenced by sendWindow().
|
protected |
read the main info for zone ( 0: MAIN ZONE, 1 : HEADER, 2 : FOOTER )
Referenced by checkHeader(), and createZones().
|
protected |
read the page info zone
Referenced by createZones().
send a zone ( 0: MAIN ZONE, 1 : HEADER, 2 : FOOTER )
Referenced by parse().
|
protected |
sets the listener in this class and in the helper classes
Referenced by createDocument().
|
friend |
|
protected |
the actual document size
Referenced by createDocument(), getParagraph(), init(), pageHeight(), pageWidth(), readPrintInfo(), and readTable().
|
protected |
the state
Referenced by checkHeader(), createDocument(), createZones(), findSectionColumns(), init(), newPage(), pageHeight(), readColInfo(), readPageInfo(), readParagraphInfo(), readWindowsInfo(), readWindowsZone(), and sendWindow().