the main class to read a MacDraft5 v4-v5 file More...
#include <MacDraft5Parser.hxx>
Public Member Functions | |
MacDraft5Parser (MWAWInputStreamPtr const &input, MWAWRSRCParserPtr const &rsrcParser, MWAWHeader *header) | |
constructor | |
~MacDraft5Parser () final | |
destructor | |
bool | checkHeader (MWAWHeader *header, bool strict=false) final |
checks if the document header is correct (or not) | |
void | parse (librevenge::RVNGDrawingInterface *documentInterface) final |
virtual function used to parse the input | |
![]() | |
~MWAWGraphicParser () override | |
destructor | |
virtual void | parse (librevenge::RVNGDrawingInterface *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::RVNGDrawingInterface *documentInterface) |
creates the listener which will be associated to the document | |
bool | send (MacDraft5ParserInternal::Image const &image) |
try to send all shapes in an image | |
bool | send (MacDraft5ParserInternal::Layout const &layout) |
try to send all shapes in an layout | |
bool | send (MacDraft5ParserInternal::Shape const &shape, MacDraft5ParserInternal::Layout const &layout) |
try to send a shape in a layout | |
bool | sendBitmap (MacDraft5ParserInternal::Shape const &bitmap, MWAWPosition const &position) |
try to send a bitmap | |
bool | sendText (int layoutId, long shapeId) |
try to send text with given id | |
bool | createZones () |
finds the different objects zones | |
bool | readPrintInfo () |
try to read the print info zone | |
bool | readDocHeader () |
try to read the doc header zone ( mainly unknown ) | |
bool | readDocFooter () |
try to read last doc zone | |
bool | readLibraryHeader () |
try to read the library header zone ( mainly unknown ) | |
bool | readLibraryFooter () |
try to read last library zone | |
bool | readObject (MacDraft5ParserInternal::Layout &layout) |
try to read an object | |
bool | readText (MacDraft5ParserInternal::Shape &shape) |
try to read the text data corresponding to a text shape | |
bool | readModifier (MacDraft5ParserInternal::Shape &shape) |
try to read a modifier | |
bool | readStringList () |
try to read a list of strings | |
bool | readLayout (MacDraft5ParserInternal::Layout &layout) |
try to read the layout zone | |
bool | readLayoutDefinitions (MWAWEntry const &entry, bool inRsrc) |
try to read a LAYI:0 resource | |
bool | readLinks (MWAWEntry const &entry, bool inRsrc) |
try to read Link:128 resource | |
bool | readPICT (MWAWEntry const &entry, librevenge::RVNGBinaryData &pict) |
try to read a PICT entry (in data fork) | |
bool | readPICTList (MWAWEntry const &entry, bool inRsrc) |
try to read the PICT unknown entry: pnot:0 | |
bool | readViews (MWAWEntry const &entry, bool inRsrc) |
try to read a list of views : VIEW:1 | |
![]() | |
MWAWGraphicParser (MWAWInputStreamPtr const &input, MWAWRSRCParserPtr const &rsrcParser, MWAWHeader *header) | |
constructor (protected) | |
MWAWGraphicParser (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< MacDraft5StyleManager > | m_styleManager |
the style manager | |
std::shared_ptr< MacDraft5ParserInternal::State > | m_state |
the state | |
Friends | |
class | MacDraft5StyleManager |
class | MacDraft5ParserInternal::SubDocument |
the main class to read a MacDraft5 v4-v5 file
MacDraft5Parser::MacDraft5Parser | ( | 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 |
inits all internal variables
Referenced by MacDraft5Parser().
|
finalvirtual |
virtual function used to parse the input
Implements MWAWGraphicParser.
|
protected |
try to read last doc zone
Referenced by createZones().
|
protected |
try to read the doc header zone ( mainly unknown )
Referenced by createZones().
|
protected |
try to read the layout zone
Referenced by createZones().
|
protected |
try to read a LAYI:0 resource
Referenced by MacDraft5StyleManager::readResource().
|
protected |
try to read last library zone
Referenced by createZones().
|
protected |
try to read the library header zone ( mainly unknown )
Referenced by createZones().
|
protected |
try to read Link:128 resource
Referenced by MacDraft5StyleManager::readResource().
|
protected |
try to read a modifier
Referenced by readObject().
|
protected |
try to read an object
Referenced by readLayout().
|
protected |
try to read a PICT entry (in data fork)
Referenced by MacDraft5StyleManager::readResource().
|
protected |
try to read the PICT unknown entry: pnot:0
Referenced by MacDraft5StyleManager::readResource().
|
protected |
try to read the print info zone
Referenced by checkHeader().
|
protected |
try to read a list of strings
Referenced by readObject().
|
protected |
try to read the text data corresponding to a text shape
Referenced by readObject().
|
protected |
try to read a list of views : VIEW:1
Referenced by MacDraft5StyleManager::readResource().
|
protected |
|
protected |
try to send all shapes in an layout
|
protected |
try to send a shape in a layout
|
protected |
try to send a bitmap
Referenced by send().
|
protected |
try to send text with given id
|
friend |
|
friend |
Referenced by init().
|
protected |
the state
Referenced by checkHeader(), createDocument(), createZones(), init(), parse(), readDocHeader(), readLayout(), readLayoutDefinitions(), readLibraryFooter(), send(), and sendText().
|
protected |
the style manager
Referenced by createZones(), init(), readObject(), and sendBitmap().