a structure used to define a cell and its format More...
#include <MWAWCell.hxx>
Classes | |
struct | CompareFormat |
a comparaison structure used to store data More... | |
struct | Format |
a structure uses to define the format of a cell content More... | |
Public Types | |
enum | FormatType { F_TEXT, F_BOOLEAN, F_NUMBER, F_DATE, F_TIME, F_UNKNOWN } |
the different format of a cell's content More... | |
enum | NumberType { F_NUMBER_CURRENCY, F_NUMBER_DECIMAL, F_NUMBER_FRACTION, F_NUMBER_GENERIC, F_NUMBER_SCIENTIFIC, F_NUMBER_PERCENT, F_NUMBER_UNKNOWN } |
the different number format of a cell's content More... | |
enum | HorizontalAlignment { HALIGN_LEFT, HALIGN_RIGHT, HALIGN_CENTER, HALIGN_FULL, HALIGN_DEFAULT } |
the default horizontal alignment. More... | |
enum | VerticalAlignment { VALIGN_TOP, VALIGN_CENTER, VALIGN_BOTTOM, VALIGN_DEFAULT } |
the default vertical alignment. More... | |
enum | ExtraLine { E_None, E_Line1, E_Line2, E_Cross } |
an enum to defined potential internal line: E_Line1=TL to RB, E_Line2=BL to RT More... | |
Public Member Functions | |
MWAWCell () | |
constructor More... | |
MWAWCell (MWAWCell const &)=default | |
MWAWCell & | operator= (MWAWCell const &)=default |
MWAWCell & | operator= (MWAWCell &&)=default |
virtual | ~MWAWCell () |
destructor More... | |
void | addTo (librevenge::RVNGPropertyList &propList, std::shared_ptr< MWAWFontConverter > fontConverter) const |
adds to the propList More... | |
virtual bool | send (MWAWListenerPtr listener, MWAWTable &table) |
function called when a cell is send by MWAWTable to send a cell to a listener. More... | |
virtual bool | sendContent (MWAWListenerPtr listener, MWAWTable &table) |
function called when the content of a cell must be send to the listener, ie. More... | |
MWAWVec2i const & | position () const |
position accessor More... | |
void | setPosition (MWAWVec2i posi) |
set the cell positions : 0,0 -> A1, 0,1 -> A2 More... | |
MWAWVec2i const & | numSpannedCells () const |
returns the number of spanned cells More... | |
void | setNumSpannedCells (MWAWVec2i numSpanned) |
sets the number of spanned cells : MWAWVec2i(1,1) means 1 cellule More... | |
MWAWBox2f const & | bdBox () const |
bdbox accessor More... | |
void | setBdBox (MWAWBox2f box) |
set the bdbox (unit point) More... | |
MWAWVec2f const & | bdSize () const |
bdbox size accessor More... | |
void | setBdSize (MWAWVec2f sz) |
set the bdbox size(unit point) More... | |
Format const & | getFormat () const |
returns the cell format More... | |
void | setFormat (Format const &format) |
set the cell format More... | |
bool | isFontSet () const |
returns true if the font has been set More... | |
MWAWFont | getFont () const |
returns the font More... | |
void | setFont (MWAWFont const &font, bool isDefault=false) |
sets the fonts More... | |
bool | isProtected () const |
returns true if the cell is protected More... | |
void | setProtected (bool fl) |
sets the cell's protected flag More... | |
HorizontalAlignment | hAlignment () const |
returns the horizontal alignment More... | |
void | setHAlignment (HorizontalAlignment align) |
sets the horizontal alignment More... | |
VerticalAlignment | vAlignment () const |
returns the vertical alignment More... | |
void | setVAlignment (VerticalAlignment align) |
sets the vertical alignment More... | |
double | rotation () const |
returns the rotation angle in degree More... | |
void | setRotation (double angle) |
sets the rotation angle More... | |
bool | hasBorders () const |
return true if the cell has some border More... | |
std::vector< MWAWBorder > const & | borders () const |
return the cell border: libmwaw::Left | ... More... | |
void | resetBorders () |
reset the border More... | |
void | setBorders (int wh, MWAWBorder const &border) |
sets the cell border: wh=libmwaw::LeftBit|... More... | |
MWAWColor | backgroundColor () const |
returns the background color More... | |
void | setBackgroundColor (MWAWColor color) |
sets the background color More... | |
bool | hasExtraLine () const |
returns true if we have some extra lines More... | |
ExtraLine | extraLine () const |
returns the extra lines More... | |
MWAWBorder const & | extraLineType () const |
returns the extra line border More... | |
void | setExtraLine (ExtraLine extrLine, MWAWBorder const &type=MWAWBorder()) |
sets the extraline More... | |
Static Public Member Functions | |
static std::string | getBasicCellName (MWAWVec2i const &pos) |
return the name of a cell (given row and column) : 0,0 -> A1, 0,1 -> A2... More... | |
static std::string | getCellName (MWAWVec2i const &pos, MWAWVec2b const &absolute) |
return the name of a cell (given row and column) : 0,0 -> [.A1], 0,1 -> [.A2] More... | |
static std::string | getColumnName (int col) |
return the column name More... | |
Protected Attributes | |
MWAWVec2i | m_position |
the cell row and column : 0,0 -> A1, 0,1 -> A2 More... | |
MWAWVec2i | m_numberCellSpanned |
the cell spanned : by default (1,1) More... | |
MWAWBox2f | m_bdBox |
the cell bounding box (unit in point) More... | |
MWAWVec2f | m_bdSize |
the cell bounding size : unit point More... | |
Format | m_format |
the cell format More... | |
MWAWFont | m_font |
the cell font More... | |
bool | m_fontSet |
a flag to know if the font has been set More... | |
HorizontalAlignment | m_hAlign |
the cell alignment : by default nothing More... | |
VerticalAlignment | m_vAlign |
the vertical cell alignment : by default nothing More... | |
double | m_rotation |
the content's rotation in degree More... | |
MWAWColor | m_backgroundColor |
the backgroung color More... | |
bool | m_protected |
cell protected More... | |
std::vector< MWAWBorder > | m_bordersList |
the cell border MWAWBorder::Pos More... | |
ExtraLine | m_extraLine |
extra line More... | |
MWAWBorder | m_extraLineType |
extra line type More... | |
Friends | |
std::ostream & | operator<< (std::ostream &o, MWAWCell const &cell) |
operator<< More... | |
a structure used to define a cell and its format
enum MWAWCell::ExtraLine |
enum MWAWCell::FormatType |
enum MWAWCell::NumberType |
|
inline |
constructor
|
default |
|
inlinevirtual |
destructor
void MWAWCell::addTo | ( | librevenge::RVNGPropertyList & | propList, |
std::shared_ptr< MWAWFontConverter > | fontConverter | ||
) | const |
adds to the propList
Referenced by MWAWSpreadsheetListener::openSheetCell(), MWAWGraphicListener::openTableCell(), MWAWPresentationListener::openTableCell(), MWAWSpreadsheetListener::openTableCell(), and MWAWTextListener::openTableCell().
|
inline |
returns the background color
Referenced by addTo(), and BeagleWksSSParser::readCellSheet().
|
inline |
bdbox accessor
Referenced by MWAWTableInternal::Compare::Point::getPos(), MWAWTableInternal::Compare::Point::getSize(), and MWAWTableInternal::Compare::operator()().
|
inline |
bdbox size accessor
|
inline |
return the cell border: libmwaw::Left | ...
|
inline |
returns the extra lines
Referenced by MWAWTable::sendExtraLines(), and HanMacWrdJGraphInternal::TableCell::update().
|
inline |
returns the extra line border
Referenced by MWAWTable::sendExtraLines().
|
static |
return the name of a cell (given row and column) : 0,0 -> A1, 0,1 -> A2...
Referenced by RagTime5Spreadsheet::send(), BeagleWksDBParser::sendDatabase(), GreatWksDBParser::sendDatabase(), and ClarisWksDatabase::sendDatabase().
return the name of a cell (given row and column) : 0,0 -> [.A1], 0,1 -> [.A2]
Referenced by operator<<().
|
static |
return the column name
|
inline |
returns the font
Referenced by RagTimeSpreadsheet::send(), and MultiplanParser::sendCell().
|
inline |
returns the cell format
Referenced by MWAWSpreadsheetListener::openSheetCell(), GreatWksDBParser::readFormulaResult(), RagTimeSpreadsheet::readSpreadsheetCellContent(), RagTimeSpreadsheet::send(), RagTimeSpreadsheetInternal::CellFormat::update(), RagTime5SpreadsheetInternal::CellValue::update(), RagTime5StyleManager::updateCellFormat(), BeagleWksDBParserInternal::Database::updateWithContent(), and MsWksDBParserInternal::FieldType::updateWithContent().
|
inline |
returns the horizontal alignment
Referenced by addTo().
|
inline |
return true if the cell has some border
Referenced by GreatWksDBParserInternal::Cell::isEmpty(), GreatWksSSParserInternal::Cell::isEmpty(), and MsWksSSParserInternal::Cell::isEmpty().
|
inline |
returns true if we have some extra lines
Referenced by MWAWTable::sendExtraLines(), and HanMacWrdJGraphInternal::TableCell::update().
|
inline |
returns true if the font has been set
|
inline |
returns true if the cell is protected
Referenced by addTo().
|
inline |
returns the number of spanned cells
Referenced by addTo(), and operator<<().
|
inline |
position accessor
Referenced by addTo(), RagTimeSpreadsheetInternal::Spreadsheet::getRightBottomPosition(), BeagleWksSSParser::readCellSheet(), RagTimeSpreadsheet::readSpreadsheetCellContent(), RagTimeSpreadsheet::readSpreadsheetCellFormat(), RagTimeSpreadsheet::readSpreadsheetCellV2(), RagTimeSpreadsheet::send(), GreatWksDBParser::sendDatabase(), and WingzParserInternal::Spreadsheet::update().
|
inline |
reset the border
|
inline |
returns the rotation angle in degree
|
virtual |
function called when a cell is send by MWAWTable to send a cell to a listener.
By default: calls openTableCell(*this), sendContent and then closeTableCell()
|
virtual |
function called when the content of a cell must be send to the listener, ie.
when MWAWTable::sendTable or MWAWTable::sendAsText is called.
Reimplemented in WriteNowTextInternal::Cell, HanMacWrdKGraphInternal::TableCell, HanMacWrdJGraphInternal::TableCell, ClarisWksTableInternal::TableCell, and MacWrtProStructuresInternal::Cell.
Referenced by send().
|
inline |
sets the background color
Referenced by MacWrtProStructuresInternal::Cell::Cell(), BeagleWksSSParser::readCellSheet(), WingzParser::readSpreadsheetCellList(), RagTime5Spreadsheet::send(), ClarisWksSpreadsheet::sendSpreadsheet(), MsWksTable::sendTable(), MsWrdText::sendTable(), RagTimeSpreadsheetInternal::CellExtra::update(), HanMacWrdJGraphInternal::TableCell::update(), MarinerWrtTextInternal::Paragraph::update(), and WriteNowTextInternal::TableData::updateCell().
|
inline |
set the bdbox (unit point)
Referenced by MacWrtProStructuresInternal::Cell::Cell(), and WriteNowTextInternal::TableData::updateCell().
|
inline |
set the bdbox size(unit point)
void MWAWCell::setBorders | ( | int | wh, |
MWAWBorder const & | border | ||
) |
sets the cell border: wh=libmwaw::LeftBit|...
Referenced by MacWrtProStructuresInternal::Cell::Cell(), GreatWksSSParser::readCell(), MsWksSSParser::readCell(), BeagleWksSSParser::readCellSheet(), WingzParser::readSpreadsheetCellList(), RagTimeSpreadsheet::readSpreadsheetCellV2(), RagTime5Spreadsheet::send(), ClarisWksSpreadsheet::sendSpreadsheet(), MsWksTable::sendTable(), MsWrdText::sendTable(), FullWrtText::sendTable(), RagTimeSpreadsheetInternal::CellBorder::update(), HanMacWrdJGraphInternal::TableCell::update(), MarinerWrtTextInternal::Paragraph::update(), ClarisWksTableInternal::TableCell::update(), and WriteNowTextInternal::TableData::updateCell().
|
inline |
sets the extraline
Referenced by HanMacWrdJGraphInternal::TableCell::update().
|
inline |
sets the fonts
Referenced by JazzSSParser::readCell(), MsWksSSParser::readCell(), BeagleWksSSParser::readCellSheet(), MsWksDBParser::readFieldTypes(), MsWksDBParser::readFieldTypesV2(), BeagleWksDBParser::readFormat(), RagTimeSpreadsheet::readSpreadsheetCellFormat(), WingzParser::readSpreadsheetCellList(), RagTimeSpreadsheet::readSpreadsheetCellV2(), RagTime5Spreadsheet::send(), MultiplanParser::sendCell(), and ClarisWksSpreadsheet::sendSpreadsheet().
|
inline |
set the cell format
Referenced by GreatWksSSParser::readCell(), JazzSSParser::readCell(), MsWksSSParser::readCell(), BeagleWksSSParser::readCellSheet(), GreatWksDBParser::readFieldRecords(), MsWksDBParser::readFieldTypes(), MsWksDBParser::readFieldTypesV2(), BeagleWksDBParser::readFormat(), GreatWksDBParser::readFormulaResult(), GreatWksDBParser::readRowRecords(), RagTimeSpreadsheet::readSpreadsheetCellContent(), WingzParser::readSpreadsheetCellList(), RagTimeSpreadsheet::readSpreadsheetCellV2(), MultiplanParser::sendCell(), ClarisWksDatabase::sendDatabase(), ClarisWksSpreadsheet::sendSpreadsheet(), RagTimeSpreadsheetInternal::CellFormat::update(), RagTime5SpreadsheetInternal::CellValue::update(), and RagTime5StyleManager::updateCellFormat().
|
inline |
sets the horizontal alignment
Referenced by GreatWksSSParser::readCell(), JazzSSParser::readCell(), MsWksSSParser::readCell(), BeagleWksSSParser::readCellSheet(), MsWksDBParser::readFieldTypes(), MsWksDBParser::readFieldTypesV2(), BeagleWksDBParser::readFormat(), WingzParser::readSpreadsheetCellList(), RagTimeSpreadsheet::readSpreadsheetCellV2(), RagTime5Spreadsheet::send(), MultiplanParser::sendCell(), ClarisWksDatabase::sendDatabase(), ClarisWksSpreadsheet::sendSpreadsheet(), and RagTimeSpreadsheetInternal::CellFormat::update().
|
inline |
sets the number of spanned cells : MWAWVec2i(1,1) means 1 cellule
Referenced by RagTime5Spreadsheet::send().
|
inline |
set the cell positions : 0,0 -> A1, 0,1 -> A2
Referenced by BeagleWksDBParserInternal::Cell::Cell(), BeagleWksSSParserInternal::Cell::Cell(), RagTimeSpreadsheetInternal::Cell::Cell(), WingzParserInternal::Cell::Cell(), GreatWksSSParser::readCell(), JazzSSParser::readCell(), MsWksSSParser::readCell(), RagTimeSpreadsheet::readSpreadsheetCellsV2(), RagTimeSpreadsheet::readSpreadsheetComplexStructure(), RagTime5Spreadsheet::send(), MultiplanParser::sendCell(), GreatWksDBParser::sendDatabase(), ClarisWksDatabase::sendDatabase(), ClarisWksSpreadsheet::sendSpreadsheet(), ClarisWksSpreadsheet::sendSpreadsheetAsTable(), MsWksTable::sendTable(), MarinerWrtText::sendTable(), MsWrdText::sendTable(), FullWrtText::sendTable(), WriterPlsParser::sendWindow(), BeagleWksDBParserInternal::Database::updateWithContent(), and MsWksDBParserInternal::FieldType::updateWithContent().
|
inline |
sets the cell's protected flag
Referenced by GreatWksSSParser::readCell(), MsWksSSParser::readCell(), MultiplanParser::sendCell(), and RagTimeSpreadsheetInternal::CellFormat::update().
|
inline |
sets the rotation angle
Referenced by RagTime5Spreadsheet::send().
|
inline |
sets the vertical alignment
Referenced by RagTime5Spreadsheet::send(), and ClarisWksSpreadsheet::sendSpreadsheetAsTable().
|
inline |
returns the vertical alignment
Referenced by addTo().
|
friend |
operator<<
|
protected |
the backgroung color
Referenced by backgroundColor(), operator<<(), and setBackgroundColor().
|
protected |
the cell bounding box (unit in point)
Referenced by bdBox(), operator<<(), and setBdBox().
|
protected |
the cell bounding size : unit point
Referenced by bdSize(), operator<<(), and setBdSize().
|
protected |
the cell border MWAWBorder::Pos
Referenced by addTo(), borders(), hasBorders(), operator<<(), resetBorders(), and setBorders().
|
protected |
extra line
Referenced by extraLine(), hasExtraLine(), operator<<(), and setExtraLine().
|
protected |
extra line type
Referenced by extraLineType(), hasExtraLine(), operator<<(), and setExtraLine().
|
protected |
a flag to know if the font has been set
Referenced by addTo(), isFontSet(), operator<<(), and setFont().
|
protected |
the cell format
Referenced by MWAWCell::Format::compare(), getFormat(), MWAWCell::Format::getNumberingProperties(), MWAWCell::Format::getValueType(), operator<<(), and setFormat().
|
protected |
the cell alignment : by default nothing
Referenced by hAlignment(), operator<<(), and setHAlignment().
|
protected |
the cell spanned : by default (1,1)
Referenced by numSpannedCells(), and setNumSpannedCells().
|
protected |
the cell row and column : 0,0 -> A1, 0,1 -> A2
Referenced by MWAWCellContent::FormulaInstruction::getPropertyList(), operator<<(), position(), and setPosition().
|
protected |
cell protected
Referenced by isProtected(), operator<<(), and setProtected().
|
protected |
the content's rotation in degree
Referenced by addTo(), operator<<(), rotation(), and setRotation().
|
protected |
the vertical cell alignment : by default nothing
Referenced by operator<<(), setVAlignment(), and vAlignment().