the main class to read a Mariner Write file More...
#include <MarinerWrtParser.hxx>
Public Member Functions | |
MarinerWrtParser (MWAWInputStreamPtr const &input, MWAWRSRCParserPtr const &rsrcParser, MWAWHeader *header) | |
constructor | |
~MarinerWrtParser () final | |
destructor | |
bool | checkHeader (MWAWHeader *header, bool strict=false) final |
checks if the document header is correct (or not) | |
void | parse (librevenge::RVNGTextInterface *documentInterface) final |
virtual function used to parse the input | |
![]() | |
~MWAWTextParser () override | |
destructor | |
virtual void | parse (librevenge::RVNGTextInterface *documentInterface)=0 |
virtual function used to parse the input | |
![]() | |
virtual | ~MWAWParser () |
virtual destructor | |
virtual bool | checkHeader (MWAWHeader *header, bool strict=false)=0 |
virtual function used to check if the document header is correct (or not) | |
int | version () const |
returns the works version | |
MWAWParserStatePtr | getParserState () |
returns the parser state | |
MWAWHeader * | getHeader () |
returns the header | |
MWAWInputStreamPtr & | getInput () |
returns the actual input | |
MWAWListenerPtr | getMainListener () |
returns the main listener | |
MWAWGraphicListenerPtr & | getGraphicListener () |
returns the graphic listener | |
MWAWPresentationListenerPtr & | getPresentationListener () |
returns the presentation listener | |
MWAWSpreadsheetListenerPtr & | getSpreadsheetListener () |
returns the spreadsheet listener | |
MWAWTextListenerPtr & | getTextListener () |
returns the text listener | |
MWAWFontConverterPtr & | getFontConverter () |
returns the font converter | |
MWAWFontManagerPtr & | getFontManager () |
returns the font manager | |
MWAWPageSpan const & | getPageSpan () const |
returns the actual page dimension | |
MWAWPageSpan & | getPageSpan () |
returns the actual page dimension | |
double | getFormLength () const |
returns the form length | |
double | getFormWidth () const |
returns the form width | |
double | getPageLength () const |
returns the page length (form length without margin ) | |
double | getPageWidth () const |
returns the page width (form width without margin ) | |
MWAWRSRCParserPtr & | getRSRCParser () |
returns the rsrc parser | |
libmwaw::DebugFile & | ascii () |
a DebugFile used to write what we recognize when we parse the document | |
Protected Member Functions | |
void | init () |
inits all internal variables | |
void | createDocument (librevenge::RVNGTextInterface *documentInterface) |
creates the listener which will be associated to the document | |
bool | createZones () |
finds the different objects zones | |
bool | readZone (int &actZone, bool onlyTest=false) |
try to read a zone | |
MWAWVec2f | getPageLeftTop () const |
returns the page left top point ( in inches) | |
MWAWSection | getSection (int zoneId) const |
returns the section information corresponding to a zone | |
void | newPage (int number) |
adds a new page | |
int | getZoneId (uint32_t fileId, bool &endNote) |
return a zoneid corresponding to a fileId (or -1) and set the endnote flag | |
void | sendText (int zoneId) |
ask the text parser to send a zone | |
float | getPatternPercent (int id) const |
return the pattern percent which corresponds to an id (or -1) | |
void | sendToken (int zoneId, long tokenId) |
ask the graph parser to send a token | |
bool | readEntryHeader (MarinerWrtEntry &entry) |
try to read an entry header | |
bool | decodeZone (std::vector< MarinerWrtStruct > &dataList, long numData=999999) |
try to decode a zone | |
bool | readSeparator (MarinerWrtEntry const &entry) |
try to read the separator of differents part | |
bool | readZoneDim (MarinerWrtEntry const &entry, int zoneId) |
try to read the zone dimension ( normal and with margin ) | |
bool | readZoneHeader (MarinerWrtEntry const &entry, int zoneId, bool onlyTest) |
try to read the zone header | |
bool | readZoneb (MarinerWrtEntry const &entry, int zoneId) |
try to read a unknown zone : one by separator?, borderdim? | |
bool | readZonec (MarinerWrtEntry const &entry, int zoneId) |
try to read a unknown zone of 9 int | |
bool | readZone13 (MarinerWrtEntry const &entry, int zoneId) |
try to read a unknown zone of 23 int | |
bool | readDocInfo (MarinerWrtEntry const &entry, int zoneId) |
try to read the doc info zone | |
bool | readPrintInfo (MarinerWrtEntry const &entry) |
try to read a printinfo zone | |
bool | readCPRT (MarinerWrtEntry const &entry) |
try to read a xml printinfo zone | |
bool | readNumbersString (int num, std::vector< long > &res) |
try to read a number or a list of number entries | |
![]() | |
MWAWTextParser (MWAWInputStreamPtr const &input, MWAWRSRCParserPtr const &rsrcParser, MWAWHeader *header) | |
constructor (protected) | |
MWAWTextParser (MWAWParserStatePtr const &state) | |
constructor using a state | |
![]() | |
MWAWParser (MWAWParserState::Type type, MWAWInputStreamPtr const &input, MWAWRSRCParserPtr const &rsrcParser, MWAWHeader *header) | |
constructor (protected) | |
MWAWParser (MWAWParserStatePtr const &state) | |
constructor using a state | |
void | setVersion (int vers) |
sets the document's version | |
void | setGraphicListener (MWAWGraphicListenerPtr &listener) |
sets the graphic listener | |
void | resetGraphicListener () |
resets the listener | |
void | setPresentationListener (MWAWPresentationListenerPtr &listener) |
sets the presentation listener | |
void | resetPresentationListener () |
resets the listener | |
void | setSpreadsheetListener (MWAWSpreadsheetListenerPtr &listener) |
sets the spreadsheet listener | |
void | resetSpreadsheetListener () |
resets the listener | |
void | setTextListener (MWAWTextListenerPtr &listener) |
sets the text listener | |
void | resetTextListener () |
resets the listener | |
void | setAsciiName (char const *name) |
Debugging: change the default ascii file. | |
std::string const & | asciiName () const |
return the ascii file name | |
Protected Attributes | |
std::shared_ptr< MarinerWrtParserInternal::State > | m_state |
the state | |
bool | m_pageMarginsSpanSet |
a flag to know if page margins span are set | |
std::shared_ptr< MarinerWrtGraph > | m_graphParser |
the graph parser | |
std::shared_ptr< MarinerWrtText > | m_textParser |
the text parser | |
Friends | |
class | MarinerWrtGraph |
class | MarinerWrtText |
class | MarinerWrtParserInternal::SubDocument |
the main class to read a Mariner Write file
MarinerWrtParser::MarinerWrtParser | ( | MWAWInputStreamPtr const & | input, |
MWAWRSRCParserPtr const & | rsrcParser, | ||
MWAWHeader * | header | ||
) |
constructor
|
final |
destructor
|
finalvirtual |
|
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 decode a zone
Referenced by readDocInfo(), MarinerWrtText::readFontNames(), MarinerWrtText::readFonts(), MarinerWrtText::readPLCZone(), MarinerWrtGraph::readPostscript(), MarinerWrtText::readRulers(), readSeparator(), MarinerWrtText::readStyleNames(), MarinerWrtText::readTextStruct(), MarinerWrtGraph::readToken(), readZone(), MarinerWrtText::readZone(), readZone13(), readZoneb(), readZonec(), readZoneDim(), and readZoneHeader().
|
protected |
returns the page left top point ( in inches)
|
protected |
return the pattern percent which corresponds to an id (or -1)
Referenced by MarinerWrtText::readRulers(), and MarinerWrtText::sendTable().
|
protected |
returns the section information corresponding to a zone
Referenced by MarinerWrtText::send().
|
protected |
return a zoneid corresponding to a fileId (or -1) and set the endnote flag
Referenced by MarinerWrtGraph::sendToken().
|
protected |
inits all internal variables
Referenced by MarinerWrtParser().
|
protected |
adds a new page
Referenced by MarinerWrtText::send().
|
finalvirtual |
virtual function used to parse the input
Implements MWAWTextParser.
|
protected |
try to read a xml printinfo zone
Referenced by readZone().
|
protected |
try to read the doc info zone
Referenced by readZone().
|
protected |
try to read an entry header
Referenced by readZone().
|
protected |
try to read a number or a list of number entries
Referenced by decodeZone(), and readEntryHeader().
|
protected |
try to read a printinfo zone
Referenced by readZone().
|
protected |
try to read the separator of differents part
Referenced by readZone().
|
protected |
try to read a zone
Referenced by checkHeader(), and createZones().
|
protected |
try to read a unknown zone of 23 int
Referenced by readZone().
|
protected |
try to read a unknown zone : one by separator?, borderdim?
Referenced by readZone().
|
protected |
try to read a unknown zone of 9 int
Referenced by readZone().
|
protected |
try to read the zone dimension ( normal and with margin )
Referenced by readZone().
|
protected |
try to read the zone header
Referenced by readZone().
|
protected |
ask the text parser to send a zone
Referenced by MarinerWrtGraph::sendText().
|
protected |
ask the graph parser to send a token
Referenced by MarinerWrtText::send().
|
friend |
Referenced by init().
|
friend |
|
friend |
Referenced by init().
|
protected |
the graph parser
Referenced by createDocument(), getPatternPercent(), init(), parse(), readZone(), and sendToken().
|
protected |
a flag to know if page margins span are set
Referenced by readDocInfo(), and readPrintInfo().
|
protected |
the state
Referenced by checkHeader(), createDocument(), createZones(), getSection(), getZoneId(), init(), newPage(), readDocInfo(), readZonec(), readZoneDim(), and readZoneHeader().
|
protected |
the text parser
Referenced by createDocument(), init(), parse(), readZone(), and sendText().