Internal: a cell inside a ClarisWksTable. More...
Public Member Functions | |
TableCell () | |
constructor | |
void | update (Table const &table) |
use table to finish updating cell | |
bool | sendContent (MWAWListenerPtr listener, MWAWTable &table) final |
send the cell content to a listener | |
![]() | |
MWAWCell () | |
constructor | |
MWAWCell (MWAWCell const &)=default | |
MWAWCell & | operator= (MWAWCell const &)=default |
MWAWCell & | operator= (MWAWCell &&)=default |
virtual | ~MWAWCell () |
destructor | |
void | addTo (librevenge::RVNGPropertyList &propList, std::shared_ptr< MWAWFontConverter > fontConverter) const |
adds to the propList | |
virtual bool | send (MWAWListenerPtr listener, MWAWTable &table) |
function called when a cell is send by MWAWTable to send a cell to a listener. | |
virtual bool | sendContent (MWAWListenerPtr listener, MWAWTable &table) |
function called when the content of a cell must be send to the listener, ie. | |
MWAWVec2i const & | position () const |
position accessor | |
void | setPosition (MWAWVec2i posi) |
set the cell positions : 0,0 -> A1, 0,1 -> A2 | |
MWAWVec2i const & | numSpannedCells () const |
returns the number of spanned cells | |
void | setNumSpannedCells (MWAWVec2i numSpanned) |
sets the number of spanned cells : MWAWVec2i(1,1) means 1 cellule | |
MWAWBox2f const & | bdBox () const |
bdbox accessor | |
void | setBdBox (MWAWBox2f box) |
set the bdbox (unit point) | |
MWAWVec2f const & | bdSize () const |
bdbox size accessor | |
void | setBdSize (MWAWVec2f sz) |
set the bdbox size(unit point) | |
Format const & | getFormat () const |
returns the cell format | |
void | setFormat (Format const &format) |
set the cell format | |
bool | isFontSet () const |
returns true if the font has been set | |
MWAWFont | getFont () const |
returns the font | |
void | setFont (MWAWFont const &font, bool isDefault=false) |
sets the fonts | |
bool | isProtected () const |
returns true if the cell is protected | |
void | setProtected (bool fl) |
sets the cell's protected flag | |
HorizontalAlignment | hAlignment () const |
returns the horizontal alignment | |
void | setHAlignment (HorizontalAlignment align) |
sets the horizontal alignment | |
VerticalAlignment | vAlignment () const |
returns the vertical alignment | |
void | setVAlignment (VerticalAlignment align) |
sets the vertical alignment | |
double | rotation () const |
returns the rotation angle in degree | |
void | setRotation (double angle) |
sets the rotation angle | |
bool | hasBorders () const |
return true if the cell has some border | |
std::vector< MWAWBorder > const & | borders () const |
return the cell border: libmwaw::Left | ... | |
void | resetBorders () |
reset the border | |
void | setBorders (int wh, MWAWBorder const &border) |
sets the cell border: wh=libmwaw::LeftBit|... | |
MWAWColor | backgroundColor () const |
returns the background color | |
void | setBackgroundColor (MWAWColor color) |
sets the background color | |
bool | hasExtraLine () const |
returns true if we have some extra lines | |
ExtraLine | extraLine () const |
returns the extra lines | |
MWAWBorder const & | extraLineType () const |
returns the extra line border | |
void | setExtraLine (ExtraLine extrLine, MWAWBorder const &type=MWAWBorder()) |
sets the extraline | |
Public Attributes | |
int | m_zoneId |
the cell zone ( 0 is no content ) | |
std::vector< int > | m_bordersId [4] |
the list of border id : Left, Top, Right, Bottom | |
int | m_styleId |
the style id | |
Private Member Functions | |
TableCell (TableCell const &orig)=delete | |
TableCell & | operator= (TableCell const &orig)=delete |
Friends | |
std::ostream & | operator<< (std::ostream &o, TableCell const &cell) |
operator<< | |
Additional Inherited Members | |
![]() | |
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... | |
![]() | |
static std::string | getBasicCellName (MWAWVec2i const &pos) |
return the name of a cell (given row and column) : 0,0 -> A1, 0,1 -> A2... | |
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] | |
static std::string | getColumnName (int col) |
return the column name | |
![]() | |
MWAWVec2i | m_position |
the cell row and column : 0,0 -> A1, 0,1 -> A2 | |
MWAWVec2i | m_numberCellSpanned |
the cell spanned : by default (1,1) | |
MWAWBox2f | m_bdBox |
the cell bounding box (unit in point) | |
MWAWVec2f | m_bdSize |
the cell bounding size : unit point | |
Format | m_format |
the cell format | |
MWAWFont | m_font |
the cell font | |
bool | m_fontSet |
a flag to know if the font has been set | |
HorizontalAlignment | m_hAlign |
the cell alignment : by default nothing | |
VerticalAlignment | m_vAlign |
the vertical cell alignment : by default nothing | |
double | m_rotation |
the content's rotation in degree | |
MWAWColor | m_backgroundColor |
the backgroung color | |
bool | m_protected |
cell protected | |
std::vector< MWAWBorder > | m_bordersList |
the cell border MWAWBorder::Pos | |
ExtraLine | m_extraLine |
extra line | |
MWAWBorder | m_extraLineType |
extra line type | |
Internal: a cell inside a ClarisWksTable.
|
inline |
constructor
|
privatedelete |
|
finalvirtual |
send the cell content to a listener
Reimplemented from MWAWCell.
void ClarisWksTableInternal::TableCell::update | ( | Table const & | table | ) |
use table to finish updating cell
fixme: check that the opposite has a border, if not print the first border
Referenced by ClarisWksTableInternal::Table::updateCells().
|
friend |
operator<<
std::vector<int> ClarisWksTableInternal::TableCell::m_bordersId[4] |
the list of border id : Left, Top, Right, Bottom
Normally, one id but merge cells can have mutiple border
Referenced by update().
int ClarisWksTableInternal::TableCell::m_styleId |
the style id
int ClarisWksTableInternal::TableCell::m_zoneId |
the cell zone ( 0 is no content )
Referenced by ClarisWksTableInternal::Table::removeChild(), and sendContent().