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 More... | |
~MacDraft5Parser () final | |
destructor More... | |
bool | checkHeader (MWAWHeader *header, bool strict=false) final |
checks if the document header is correct (or not) More... | |
void | parse (librevenge::RVNGDrawingInterface *documentInterface) final |
virtual function used to parse the input More... | |
![]() | |
~MWAWGraphicParser () override | |
destructor More... | |
![]() | |
virtual | ~MWAWParser () |
virtual destructor More... | |
int | version () const |
returns the works version More... | |
MWAWParserStatePtr | getParserState () |
returns the parser state More... | |
MWAWHeader * | getHeader () |
returns the header More... | |
MWAWInputStreamPtr & | getInput () |
returns the actual input More... | |
MWAWListenerPtr | getMainListener () |
returns the main listener More... | |
MWAWGraphicListenerPtr & | getGraphicListener () |
returns the graphic listener More... | |
MWAWPresentationListenerPtr & | getPresentationListener () |
returns the presentation listener More... | |
MWAWSpreadsheetListenerPtr & | getSpreadsheetListener () |
returns the spreadsheet listener More... | |
MWAWTextListenerPtr & | getTextListener () |
returns the text listener More... | |
MWAWFontConverterPtr & | getFontConverter () |
returns the font converter More... | |
MWAWFontManagerPtr & | getFontManager () |
returns the font manager More... | |
MWAWPageSpan const & | getPageSpan () const |
returns the actual page dimension More... | |
MWAWPageSpan & | getPageSpan () |
returns the actual page dimension More... | |
double | getFormLength () const |
returns the form length More... | |
double | getFormWidth () const |
returns the form width More... | |
double | getPageLength () const |
returns the page length (form length without margin ) More... | |
double | getPageWidth () const |
returns the page width (form width without margin ) More... | |
MWAWRSRCParserPtr & | getRSRCParser () |
returns the rsrc parser More... | |
libmwaw::DebugFile & | ascii () |
a DebugFile used to write what we recognize when we parse the document More... | |
Protected Member Functions | |
void | init () |
inits all internal variables More... | |
void | createDocument (librevenge::RVNGDrawingInterface *documentInterface) |
creates the listener which will be associated to the document More... | |
bool | send (MacDraft5ParserInternal::Image const &image) |
try to send all shapes in an image More... | |
bool | send (MacDraft5ParserInternal::Layout const &layout) |
try to send all shapes in an layout More... | |
bool | send (MacDraft5ParserInternal::Shape const &shape, MacDraft5ParserInternal::Layout const &layout) |
try to send a shape in a layout More... | |
bool | sendBitmap (MacDraft5ParserInternal::Shape const &bitmap, MWAWPosition const &position) |
try to send a bitmap More... | |
bool | sendText (int layoutId, long shapeId) |
try to send text with given id More... | |
bool | createZones () |
finds the different objects zones More... | |
bool | readPrintInfo () |
try to read the print info zone More... | |
bool | readDocHeader () |
try to read the doc header zone ( mainly unknown ) More... | |
bool | readDocFooter () |
try to read last doc zone More... | |
bool | readLibraryHeader () |
try to read the library header zone ( mainly unknown ) More... | |
bool | readLibraryFooter () |
try to read last library zone More... | |
bool | readObject (MacDraft5ParserInternal::Layout &layout) |
try to read an object More... | |
bool | readText (MacDraft5ParserInternal::Shape &shape) |
try to read the text data corresponding to a text shape More... | |
bool | readModifier (MacDraft5ParserInternal::Shape &shape) |
try to read a modifier More... | |
bool | readStringList () |
try to read a list of strings More... | |
bool | readLayout (MacDraft5ParserInternal::Layout &layout) |
try to read the layout zone More... | |
bool | readLayoutDefinitions (MWAWEntry const &entry, bool inRsrc) |
try to read a LAYI:0 resource More... | |
bool | readLinks (MWAWEntry const &entry, bool inRsrc) |
try to read Link:128 resource More... | |
bool | readPICT (MWAWEntry const &entry, librevenge::RVNGBinaryData &pict) |
try to read a PICT entry (in data fork) More... | |
bool | readPICTList (MWAWEntry const &entry, bool inRsrc) |
try to read the PICT unknown entry: pnot:0 More... | |
bool | readViews (MWAWEntry const &entry, bool inRsrc) |
try to read a list of views : VIEW:1 More... | |
![]() | |
MWAWGraphicParser (MWAWInputStreamPtr const &input, MWAWRSRCParserPtr const &rsrcParser, MWAWHeader *header) | |
constructor (protected) More... | |
MWAWGraphicParser (MWAWParserStatePtr const &state) | |
constructor using a state More... | |
![]() | |
MWAWParser (MWAWParserState::Type type, MWAWInputStreamPtr const &input, MWAWRSRCParserPtr const &rsrcParser, MWAWHeader *header) | |
constructor (protected) More... | |
MWAWParser (MWAWParserStatePtr const &state) | |
constructor using a state More... | |
void | setVersion (int vers) |
sets the document's version More... | |
void | setGraphicListener (MWAWGraphicListenerPtr &listener) |
sets the graphic listener More... | |
void | resetGraphicListener () |
resets the listener More... | |
void | setPresentationListener (MWAWPresentationListenerPtr &listener) |
sets the presentation listener More... | |
void | resetPresentationListener () |
resets the listener More... | |
void | setSpreadsheetListener (MWAWSpreadsheetListenerPtr &listener) |
sets the spreadsheet listener More... | |
void | resetSpreadsheetListener () |
resets the listener More... | |
void | setTextListener (MWAWTextListenerPtr &listener) |
sets the text listener More... | |
void | resetTextListener () |
resets the listener 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 | |
std::shared_ptr< MacDraft5StyleManager > | m_styleManager |
the style manager More... | |
std::shared_ptr< MacDraft5ParserInternal::State > | m_state |
the state More... | |
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().