MacDraft5Parser Class Referencefinal

the main class to read a MacDraft5 v4-v5 file More...

#include <MacDraft5Parser.hxx>

Inheritance diagram for MacDraft5Parser:
MWAWGraphicParser MWAWParser

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
 
- Public Member Functions inherited from MWAWGraphicParser
 ~MWAWGraphicParser () override
 destructor
 
virtual void parse (librevenge::RVNGDrawingInterface *documentInterface)=0
 virtual function used to parse the input
 
- Public Member Functions inherited from MWAWParser
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
 
MWAWHeadergetHeader ()
 returns the header
 
MWAWInputStreamPtrgetInput ()
 returns the actual input
 
MWAWListenerPtr getMainListener ()
 returns the main listener
 
MWAWGraphicListenerPtrgetGraphicListener ()
 returns the graphic listener
 
MWAWPresentationListenerPtrgetPresentationListener ()
 returns the presentation listener
 
MWAWSpreadsheetListenerPtrgetSpreadsheetListener ()
 returns the spreadsheet listener
 
MWAWTextListenerPtrgetTextListener ()
 returns the text listener
 
MWAWFontConverterPtrgetFontConverter ()
 returns the font converter
 
MWAWFontManagerPtrgetFontManager ()
 returns the font manager
 
MWAWPageSpan const & getPageSpan () const
 returns the actual page dimension
 
MWAWPageSpangetPageSpan ()
 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 )
 
MWAWRSRCParserPtrgetRSRCParser ()
 returns the rsrc parser
 
libmwaw::DebugFileascii ()
 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
 
- Protected Member Functions inherited from MWAWGraphicParser
 MWAWGraphicParser (MWAWInputStreamPtr const &input, MWAWRSRCParserPtr const &rsrcParser, MWAWHeader *header)
 constructor (protected)
 
 MWAWGraphicParser (MWAWParserStatePtr const &state)
 constructor using a state
 
- Protected Member Functions inherited from MWAWParser
 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< MacDraft5StyleManagerm_styleManager
 the style manager
 
std::shared_ptr< MacDraft5ParserInternal::Statem_state
 the state
 

Friends

class MacDraft5StyleManager
 
class MacDraft5ParserInternal::SubDocument
 

Detailed Description

the main class to read a MacDraft5 v4-v5 file

Constructor & Destructor Documentation

◆ MacDraft5Parser()

MacDraft5Parser::MacDraft5Parser ( MWAWInputStreamPtr const &  input,
MWAWRSRCParserPtr const &  rsrcParser,
MWAWHeader header 
)

constructor

◆ ~MacDraft5Parser()

MacDraft5Parser::~MacDraft5Parser ( )
final

destructor

Member Function Documentation

◆ checkHeader()

bool MacDraft5Parser::checkHeader ( MWAWHeader header,
bool  strict = false 
)
finalvirtual

checks if the document header is correct (or not)

Implements MWAWParser.

Referenced by parse().

◆ createDocument()

void MacDraft5Parser::createDocument ( librevenge::RVNGDrawingInterface *  documentInterface)
protected

creates the listener which will be associated to the document

Referenced by parse().

◆ createZones()

bool MacDraft5Parser::createZones ( )
protected

finds the different objects zones

Referenced by parse().

◆ init()

void MacDraft5Parser::init ( )
protected

inits all internal variables

Referenced by MacDraft5Parser().

◆ parse()

void MacDraft5Parser::parse ( librevenge::RVNGDrawingInterface *  documentInterface)
finalvirtual

virtual function used to parse the input

Implements MWAWGraphicParser.

◆ readDocFooter()

bool MacDraft5Parser::readDocFooter ( )
protected

try to read last doc zone

Referenced by createZones().

◆ readDocHeader()

bool MacDraft5Parser::readDocHeader ( )
protected

try to read the doc header zone ( mainly unknown )

Referenced by createZones().

◆ readLayout()

bool MacDraft5Parser::readLayout ( MacDraft5ParserInternal::Layout layout)
protected

try to read the layout zone

Referenced by createZones().

◆ readLayoutDefinitions()

bool MacDraft5Parser::readLayoutDefinitions ( MWAWEntry const &  entry,
bool  inRsrc 
)
protected

try to read a LAYI:0 resource

Referenced by MacDraft5StyleManager::readResource().

◆ readLibraryFooter()

bool MacDraft5Parser::readLibraryFooter ( )
protected

try to read last library zone

Referenced by createZones().

◆ readLibraryHeader()

bool MacDraft5Parser::readLibraryHeader ( )
protected

try to read the library header zone ( mainly unknown )

Referenced by createZones().

◆ readLinks()

bool MacDraft5Parser::readLinks ( MWAWEntry const &  entry,
bool  inRsrc 
)
protected

try to read Link:128 resource

Referenced by MacDraft5StyleManager::readResource().

◆ readModifier()

bool MacDraft5Parser::readModifier ( MacDraft5ParserInternal::Shape shape)
protected

try to read a modifier

Referenced by readObject().

◆ readObject()

bool MacDraft5Parser::readObject ( MacDraft5ParserInternal::Layout layout)
protected

try to read an object

Referenced by readLayout().

◆ readPICT()

bool MacDraft5Parser::readPICT ( MWAWEntry const &  entry,
librevenge::RVNGBinaryData &  pict 
)
protected

try to read a PICT entry (in data fork)

Referenced by MacDraft5StyleManager::readResource().

◆ readPICTList()

bool MacDraft5Parser::readPICTList ( MWAWEntry const &  entry,
bool  inRsrc 
)
protected

try to read the PICT unknown entry: pnot:0

Referenced by MacDraft5StyleManager::readResource().

◆ readPrintInfo()

bool MacDraft5Parser::readPrintInfo ( )
protected

try to read the print info zone

Referenced by checkHeader().

◆ readStringList()

bool MacDraft5Parser::readStringList ( )
protected

try to read a list of strings

Referenced by readObject().

◆ readText()

bool MacDraft5Parser::readText ( MacDraft5ParserInternal::Shape shape)
protected

try to read the text data corresponding to a text shape

Referenced by readObject().

◆ readViews()

bool MacDraft5Parser::readViews ( MWAWEntry const &  entry,
bool  inRsrc 
)
protected

try to read a list of views : VIEW:1

Referenced by MacDraft5StyleManager::readResource().

◆ send() [1/3]

bool MacDraft5Parser::send ( MacDraft5ParserInternal::Image const &  image)
protected

try to send all shapes in an image

Referenced by parse(), and send().

◆ send() [2/3]

bool MacDraft5Parser::send ( MacDraft5ParserInternal::Layout const &  layout)
protected

try to send all shapes in an layout

◆ send() [3/3]

bool MacDraft5Parser::send ( MacDraft5ParserInternal::Shape const &  shape,
MacDraft5ParserInternal::Layout const &  layout 
)
protected

try to send a shape in a layout

◆ sendBitmap()

bool MacDraft5Parser::sendBitmap ( MacDraft5ParserInternal::Shape const &  bitmap,
MWAWPosition const &  position 
)
protected

try to send a bitmap

Referenced by send().

◆ sendText()

bool MacDraft5Parser::sendText ( int  layoutId,
long  shapeId 
)
protected

try to send text with given id

Friends And Related Function Documentation

◆ MacDraft5ParserInternal::SubDocument

◆ MacDraft5StyleManager

friend class MacDraft5StyleManager
friend

Referenced by init().

Member Data Documentation

◆ m_state

◆ m_styleManager

std::shared_ptr<MacDraft5StyleManager> MacDraft5Parser::m_styleManager
protected

the style manager

Referenced by createZones(), init(), readObject(), and sendBitmap().


The documentation for this class was generated from the following files:

Generated on Thu Jan 19 2023 00:00:00 for libmwaw by doxygen 1.9.6