QuattroDosSpreadsheet Class Reference

This class parses Quattro Pro DOS spreadsheet file. More...

#include <QuattroDosSpreadsheet.h>

Public Member Functions

 QuattroDosSpreadsheet (QuattroDosParser &parser)
 constructor
 ~QuattroDosSpreadsheet ()
 destructor
void setListener (WKSContentListenerPtr &listen)
 sets the listener

Protected Member Functions

bool checkFilePosition (long pos)
 return true if the pos is in the file, update the file size if need
int version () const
 return the file version
int getNumSpreadsheets () const
 returns the number of spreadsheet
librevenge::RVNGString getSheetName (int id) const
 returns the name of the id's spreadsheet
void sendSpreadsheet (int sId, std::map< Vec2i, Vec2i > const &chartCellMap)
 send the sId'th spreadsheet
void sendCellContent (QuattroDosSpreadsheetInternal::Cell const &cell, int sheetId, int cellChartSheetId=-1, Vec2f const &chartSize=Vec2f())
 send the cell data
bool readSpreadsheetOpen ()
 reads a sheet header zone 0:dc (Quattro Pro wq2)
bool readSpreadsheetClose ()
 reads a sheet header zone 0:dd (Quattro Pro wq2)
bool readCell ()
 reads a cell content data
bool readCellFormulaResult ()
 reads the result of a text formula
bool readSheetSize ()
 reads sheet size
bool readSpreadsheetName ()
 reads a sheet name (zone 0xde), unused...
bool readColumnSize ()
 reads the column size ( in ??? )
bool readRowSize ()
 reads the column size ( in points )
bool readHiddenColumns ()
 reads the list of hidden columns zone ( unused )
bool readCellProperty ()
 reads a Quattro Pro property (zone 0x9d)
bool readCellStyle ()
 reads a Quattro Pro cell styles (zone 0xd8)
bool readUserStyle ()
 reads a Quattro Pro style ( zone 0xc9)
bool readCell (Vec2i actPos, WKSContentListener::FormulaInstruction &instr, bool hasSheetId=false, int sheetId=0)
bool readFormula (long endPos, Vec2i const &pos, int sheetId, std::vector< WKSContentListener::FormulaInstruction > &formula, std::string &error)

Private Member Functions

 QuattroDosSpreadsheet (QuattroDosSpreadsheet const &orig)=delete
QuattroDosSpreadsheetoperator= (QuattroDosSpreadsheet const &orig)=delete
libwps::DebugFileascii ()
 returns the debug file

Private Attributes

RVNGInputStreamPtr m_input
 the input
std::shared_ptr< WKSContentListenerm_listener
QuattroDosParserm_mainParser
 the listener (if set)
std::shared_ptr< QuattroDosSpreadsheetInternal::Statem_state
 the internal state
libwps::DebugFilem_asciiFile
 the ascii file

Friends

class QuattroDosParser

Detailed Description

This class parses Quattro Pro DOS spreadsheet file.

Constructor & Destructor Documentation

◆ QuattroDosSpreadsheet() [1/2]

QuattroDosSpreadsheet::QuattroDosSpreadsheet ( QuattroDosParser & parser)
explicit

constructor

Referenced by operator=(), and QuattroDosSpreadsheet().

◆ ~QuattroDosSpreadsheet()

QuattroDosSpreadsheet::~QuattroDosSpreadsheet ( )

destructor

◆ QuattroDosSpreadsheet() [2/2]

QuattroDosSpreadsheet::QuattroDosSpreadsheet ( QuattroDosSpreadsheet const & orig)
privatedelete

Member Function Documentation

◆ ascii()

◆ checkFilePosition()

bool QuattroDosSpreadsheet::checkFilePosition ( long pos)
protected

return true if the pos is in the file, update the file size if need

◆ getNumSpreadsheets()

int QuattroDosSpreadsheet::getNumSpreadsheets ( ) const
protected

returns the number of spreadsheet

◆ getSheetName()

librevenge::RVNGString QuattroDosSpreadsheet::getSheetName ( int id) const
protected

returns the name of the id's spreadsheet

Referenced by sendCellContent().

◆ operator=()

QuattroDosSpreadsheet & QuattroDosSpreadsheet::operator= ( QuattroDosSpreadsheet const & orig)
privatedelete

◆ readCell() [1/2]

bool QuattroDosSpreadsheet::readCell ( )
protected

reads a cell content data

Referenced by readFormula().

◆ readCell() [2/2]

bool QuattroDosSpreadsheet::readCell ( Vec2i actPos,
WKSContentListener::FormulaInstruction & instr,
bool hasSheetId = false,
int sheetId = 0 )
protected

◆ readCellFormulaResult()

bool QuattroDosSpreadsheet::readCellFormulaResult ( )
protected

reads the result of a text formula

◆ readCellProperty()

bool QuattroDosSpreadsheet::readCellProperty ( )
protected

reads a Quattro Pro property (zone 0x9d)

◆ readCellStyle()

bool QuattroDosSpreadsheet::readCellStyle ( )
protected

reads a Quattro Pro cell styles (zone 0xd8)

◆ readColumnSize()

bool QuattroDosSpreadsheet::readColumnSize ( )
protected

reads the column size ( in ??? )

◆ readFormula()

bool QuattroDosSpreadsheet::readFormula ( long endPos,
Vec2i const & pos,
int sheetId,
std::vector< WKSContentListener::FormulaInstruction > & formula,
std::string & error )
protected

Referenced by readCell().

◆ readHiddenColumns()

bool QuattroDosSpreadsheet::readHiddenColumns ( )
protected

reads the list of hidden columns zone ( unused )

◆ readRowSize()

bool QuattroDosSpreadsheet::readRowSize ( )
protected

reads the column size ( in points )

◆ readSheetSize()

bool QuattroDosSpreadsheet::readSheetSize ( )
protected

reads sheet size

◆ readSpreadsheetClose()

bool QuattroDosSpreadsheet::readSpreadsheetClose ( )
protected

reads a sheet header zone 0:dd (Quattro Pro wq2)

◆ readSpreadsheetName()

bool QuattroDosSpreadsheet::readSpreadsheetName ( )
protected

reads a sheet name (zone 0xde), unused...

◆ readSpreadsheetOpen()

bool QuattroDosSpreadsheet::readSpreadsheetOpen ( )
protected

reads a sheet header zone 0:dc (Quattro Pro wq2)

◆ readUserStyle()

bool QuattroDosSpreadsheet::readUserStyle ( )
protected

reads a Quattro Pro style ( zone 0xc9)

◆ sendCellContent()

void QuattroDosSpreadsheet::sendCellContent ( QuattroDosSpreadsheetInternal::Cell const & cell,
int sheetId,
int cellChartSheetId = -1,
Vec2f const & chartSize = Vec2f() )
protected

send the cell data

Referenced by sendSpreadsheet().

◆ sendSpreadsheet()

void QuattroDosSpreadsheet::sendSpreadsheet ( int sId,
std::map< Vec2i, Vec2i > const & chartCellMap )
protected

send the sId'th spreadsheet

◆ setListener()

void QuattroDosSpreadsheet::setListener ( WKSContentListenerPtr & listen)
inline

sets the listener

◆ version()

int QuattroDosSpreadsheet::version ( ) const
protected

◆ QuattroDosParser

friend class QuattroDosParser
friend

Member Data Documentation

◆ m_asciiFile

libwps::DebugFile& QuattroDosSpreadsheet::m_asciiFile
private

the ascii file

Referenced by ascii(), and QuattroDosSpreadsheet().

◆ m_input

◆ m_listener

std::shared_ptr<WKSContentListener> QuattroDosSpreadsheet::m_listener
private

◆ m_mainParser

◆ m_state


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

Generated on Sat Jul 19 2025 05:24:40 for libwps by doxygen 1.14.0