the main class to read a Nisus Writer file More...
#include <NisusWrtParser.hxx>
Public Member Functions | |
| NisusWrtParser (MWAWInputStreamPtr input, MWAWRSRCParserPtr rsrcParser, MWAWHeader *header) | |
| constructor | |
| virtual | ~NisusWrtParser () |
| destructor | |
| bool | checkHeader (MWAWHeader *header, bool strict=false) |
| checks if the document header is correct (or not) | |
| void | parse (librevenge::RVNGTextInterface *documentInterface) |
| virtual function used to parse the input | |
Protected Member Functions | |
| void | init () |
| inits all internal variables | |
| void | createDocument (librevenge::RVNGTextInterface *documentInterface) |
| creates the listener which will be associated to the document | |
| MWAWVec2f | getPageLeftTop () const |
| returns the page left top point ( in inches) | |
| void | getColumnInfo (int &numColumns, float &colSep) const |
| returns the columns information | |
| void | getFootnoteInfo (NisusWrtStruct::FootnoteInfo &fInfo) const |
| returns the footnote information | |
| void | newPage (int number) |
| adds a new page | |
| std::string | getDateFormat (NisusWrtStruct::ZoneType zoneId, int vId) const |
| returns the date format corresponding to a variable id or "" | |
| bool | getReferenceData (NisusWrtStruct::ZoneType zoneId, int vId, MWAWField::Type &fType, std::string &content, std::vector< int > &number) const |
| returns the fieldtype or a string corresponding to a variable | |
| bool | sendPicture (int pictId, MWAWPosition const &pictPos) |
| try to send a picture | |
| bool | createZones () |
| finds the different objects zones | |
| bool | readPrintInfo (MWAWEntry const &entry) |
| read the print info zone ( id=128 ) | |
| bool | readCPRC (MWAWEntry const &entry) |
| read the CPRC info zone ( id=128 ), an unknown zone | |
| bool | readPageLimit (MWAWEntry const &entry) |
| read the PGLY info zone ( id=128 ) | |
| bool | readStringsList (MWAWEntry const &entry, std::vector< std::string > &list, bool simpleList) |
| read a list of strings | |
| bool | readINFO (MWAWEntry const &entry) |
| read the INFO info zone, an unknown zone of size 0x23a: to doo | |
| bool | readReference (NisusWrtStruct::RecursifData const &data) |
| parse the MRK7 resource | |
| bool | readVariable (NisusWrtStruct::RecursifData const &data) |
| parse the DSPL/VARI/VRS resource: numbering definition, variable or variable ? | |
| bool | readCNTR (MWAWEntry const &entry, int zoneId) |
| read the CNTR resource: a list of version controler ? | |
| bool | readNumberingReset (MWAWEntry const &entry, int zoneId) |
| parse the DPND resource: numbering reset ( one by zone ) : related to CNTR and VRS ? | |
| bool | readSGP1 (NisusWrtStruct::RecursifData const &data) |
| parse the SGP1 resource: a unknown resource | |
| bool | readABBR (MWAWEntry const &entry) |
| parse the ABBR resource: a list of abreviation? | |
| bool | readFTA2 (MWAWEntry const &entry) |
| parse the FTA2 resource: a list of ? find in v6 document | |
| bool | readFnSc (MWAWEntry const &entry) |
| parse the FnSc resource: a unknown resource, find in v6 document | |
| MWAWInputStreamPtr | rsrcInput () |
| return the input input | |
| libmwaw::DebugFile & | rsrcAscii () |
| a DebugFile used to write what we recognize when we parse the document in rsrc | |
Protected Attributes | |
| shared_ptr < NisusWrtParserInternal::State > | m_state |
| the state | |
| shared_ptr< NisusWrtGraph > | m_graphParser |
| the graph parser | |
| shared_ptr< NisusWrtText > | m_textParser |
| the text parser | |
Friends | |
| struct | NisusWrtStruct::RecursifData |
| class | NisusWrtGraph |
| class | NisusWrtText |
the main class to read a Nisus Writer file
| NisusWrtParser::NisusWrtParser | ( | MWAWInputStreamPtr | input, |
| MWAWRSRCParserPtr | rsrcParser, | ||
| MWAWHeader * | header | ||
| ) |
constructor
| NisusWrtParser::~NisusWrtParser | ( | ) | [virtual] |
destructor
| bool NisusWrtParser::checkHeader | ( | MWAWHeader * | header, |
| bool | strict = false |
||
| ) | [virtual] |
checks if the document header is correct (or not)
no data fork, may be ok, but this means that the file contains no text and no picture, so...
Implements MWAWParser.
Referenced by parse().
| void NisusWrtParser::createDocument | ( | librevenge::RVNGTextInterface * | documentInterface | ) | [protected] |
creates the listener which will be associated to the document
Referenced by parse().
| bool NisusWrtParser::createZones | ( | ) | [protected] |
finds the different objects zones
find also the resources :
Referenced by parse().
| void NisusWrtParser::getColumnInfo | ( | int & | numColumns, |
| float & | colSep | ||
| ) | const [protected] |
returns the columns information
Referenced by NisusWrtText::sendText().
| std::string NisusWrtParser::getDateFormat | ( | NisusWrtStruct::ZoneType | zoneId, |
| int | vId | ||
| ) | const [protected] |
returns the date format corresponding to a variable id or ""
Referenced by NisusWrtText::sendText().
| void NisusWrtParser::getFootnoteInfo | ( | NisusWrtStruct::FootnoteInfo & | fInfo | ) | const [protected] |
returns the footnote information
Referenced by NisusWrtText::sendText().
| MWAWVec2f NisusWrtParser::getPageLeftTop | ( | ) | const [protected] |
returns the page left top point ( in inches)
Referenced by NisusWrtGraph::sendPageGraphics().
| bool NisusWrtParser::getReferenceData | ( | NisusWrtStruct::ZoneType | zoneId, |
| int | vId, | ||
| MWAWField::Type & | fType, | ||
| std::string & | content, | ||
| std::vector< int > & | number | ||
| ) | const [protected] |
returns the fieldtype or a string corresponding to a variable
Referenced by NisusWrtText::sendText().
| void NisusWrtParser::init | ( | ) | [protected] |
inits all internal variables
Referenced by NisusWrtParser().
| void NisusWrtParser::newPage | ( | int | number | ) | [protected] |
adds a new page
Referenced by NisusWrtText::sendText().
| void NisusWrtParser::parse | ( | librevenge::RVNGTextInterface * | documentInterface | ) | [virtual] |
virtual function used to parse the input
Implements MWAWTextParser.
| bool NisusWrtParser::readABBR | ( | MWAWEntry const & | entry | ) | [protected] |
parse the ABBR resource: a list of abreviation?
read the ABBR resource: a list of abreviation ?
Referenced by createZones().
| bool NisusWrtParser::readCNTR | ( | MWAWEntry const & | entry, |
| int | zoneId | ||
| ) | [protected] |
read the CNTR resource: a list of version controler ?
Referenced by createZones().
| bool NisusWrtParser::readCPRC | ( | MWAWEntry const & | entry | ) | [protected] |
read the CPRC info zone ( id=128 ), an unknown zone
find only 0... except one time f0=1[id?], f4=1900 f6=206c [2pos?]
Referenced by createZones().
| bool NisusWrtParser::readFnSc | ( | MWAWEntry const & | entry | ) | [protected] |
parse the FnSc resource: a unknown resource, find in v6 document
read the FnSc resource: a list of ?
Referenced by createZones().
| bool NisusWrtParser::readFTA2 | ( | MWAWEntry const & | entry | ) | [protected] |
parse the FTA2 resource: a list of ? find in v6 document
read the FTA2 resource: a list of ?
Referenced by createZones().
| bool NisusWrtParser::readINFO | ( | MWAWEntry const & | entry | ) | [protected] |
read the INFO info zone, an unknown zone of size 0x23a: to doo
read the INFO resource: a unknown zone
Referenced by createZones().
| bool NisusWrtParser::readNumberingReset | ( | MWAWEntry const & | entry, |
| int | zoneId | ||
| ) | [protected] |
parse the DPND resource: numbering reset ( one by zone ) : related to CNTR and VRS ?
Referenced by createZones().
| bool NisusWrtParser::readPageLimit | ( | MWAWEntry const & | entry | ) | [protected] |
read the PGLY info zone ( id=128 )
Referenced by createZones().
| bool NisusWrtParser::readPrintInfo | ( | MWAWEntry const & | entry | ) | [protected] |
read the print info zone ( id=128 )
Referenced by createZones().
| bool NisusWrtParser::readReference | ( | NisusWrtStruct::RecursifData const & | data | ) | [protected] |
parse the MRK7 resource
Referenced by createZones().
| bool NisusWrtParser::readSGP1 | ( | NisusWrtStruct::RecursifData const & | data | ) | [protected] |
parse the SGP1 resource: a unknown resource
Referenced by createZones().
| bool NisusWrtParser::readStringsList | ( | MWAWEntry const & | entry, |
| std::vector< std::string > & | list, | ||
| bool | simpleList | ||
| ) | [protected] |
read a list of strings
Referenced by NisusWrtText::createZones(), and createZones().
| bool NisusWrtParser::readVariable | ( | NisusWrtStruct::RecursifData const & | data | ) | [protected] |
parse the DSPL/VARI/VRS resource: numbering definition, variable or variable ?
Referenced by createZones().
| libmwaw::DebugFile & NisusWrtParser::rsrcAscii | ( | ) | [protected] |
a DebugFile used to write what we recognize when we parse the document in rsrc
Referenced by NisusWrtStruct::RecursifData::read(), readABBR(), readCNTR(), readCPRC(), readFnSc(), NisusWrtText::readFonts(), NisusWrtText::readFontsList(), NisusWrtText::readFootnotes(), readFTA2(), NisusWrtText::readHeaderFooter(), readINFO(), readNumberingReset(), readPageLimit(), NisusWrtText::readParagraphs(), NisusWrtGraph::readPGRA(), NisusWrtText::readPICD(), NisusWrtGraph::readPLAC(), NisusWrtGraph::readPLDT(), NisusWrtText::readPosToFont(), readPrintInfo(), readReference(), readSGP1(), readStringsList(), readVariable(), and NisusWrtText::sendText().
| MWAWInputStreamPtr NisusWrtParser::rsrcInput | ( | ) | [protected] |
return the input input
Referenced by NisusWrtText::findFilePos(), NisusWrtText::getFooter(), NisusWrtText::getHeader(), NisusWrtStruct::RecursifData::read(), readABBR(), readCNTR(), readCPRC(), readFnSc(), NisusWrtText::readFonts(), NisusWrtText::readFontsList(), NisusWrtText::readFootnotes(), readFTA2(), NisusWrtText::readHeaderFooter(), readINFO(), readNumberingReset(), readPageLimit(), NisusWrtText::readParagraphs(), NisusWrtGraph::readPGRA(), NisusWrtText::readPICD(), NisusWrtGraph::readPLAC(), NisusWrtGraph::readPLDT(), NisusWrtText::readPosToFont(), readPrintInfo(), readReference(), readSGP1(), readStringsList(), readVariable(), NisusWrtGraph::sendPicture(), sendPicture(), and NisusWrtText::sendText().
| bool NisusWrtParser::sendPicture | ( | int | pictId, |
| MWAWPosition const & | pictPos | ||
| ) | [protected] |
try to send a picture
Referenced by NisusWrtText::sendText().
friend class NisusWrtGraph [friend] |
Referenced by init().
friend struct NisusWrtStruct::RecursifData [friend] |
friend class NisusWrtText [friend] |
Referenced by init().
shared_ptr<NisusWrtGraph> NisusWrtParser::m_graphParser [protected] |
the graph parser
Referenced by createDocument(), createZones(), init(), parse(), and sendPicture().
shared_ptr<NisusWrtParserInternal::State> NisusWrtParser::m_state [protected] |
the state
Referenced by checkHeader(), createDocument(), createZones(), getColumnInfo(), getDateFormat(), getFootnoteInfo(), getPageLeftTop(), init(), newPage(), readINFO(), readNumberingReset(), readPageLimit(), readReference(), and readVariable().
shared_ptr<NisusWrtText> NisusWrtParser::m_textParser [protected] |
the text parser
Referenced by createDocument(), createZones(), init(), and parse().