78 static bool convertDTFormat(std::string
const &dtFormat, librevenge::RVNGPropertyListVector &propListVector);
139 void addTo(librevenge::RVNGPropertyList &propList, shared_ptr<MWAWFontConverter> fontConverter)
const;
278 std::vector<MWAWBorder>
const &
borders()
const 361 enum Type { F_Operator, F_Function, F_Cell, F_CellList, F_Long, F_Double, F_Text };
365 for (
int i=0; i<2; ++i) {
367 m_positionRelative[i]=
MWAWVec2b(
false,
false);
371 librevenge::RVNGPropertyList getPropertyList(
MWAWFontConverter &fontConverter,
int fontId)
const;
391 enum Type { C_NONE, C_TEXT, C_NUMBER, C_FORMULA, C_UNKNOWN };
393 MWAWCellContent() : m_contentType(C_UNKNOWN), m_value(0.0), m_valueSet(false), m_textEntry(), m_formula() { }
402 if (m_contentType == C_NUMBER)
return false;
403 if (m_contentType == C_TEXT && m_textEntry.valid())
return false;
404 if (m_contentType == C_FORMULA && (m_formula.size() || isValueSet()))
return false;
421 return m_textEntry.valid();
425 static bool double2Date(
double val,
int &Y,
int &M,
int &D);
427 static bool double2Time(
double val,
int &H,
int &M,
int &S);
429 static bool double2String(
double val,
MWAWCell::Format const &format, std::string &str);
431 static bool date2Double(
int Y,
int M,
int D,
double &val);
MWAWVec2i const & numSpannedCells() const
returns the number of spanned cells
Definition: MWAWCell.hxx:171
shared_ptr< MWAWListener > MWAWListenerPtr
a smart pointer of MWAWListener
Definition: libmwaw_internal.hxx:491
MWAWVec2i const & position() const
position accessor
Definition: MWAWCell.hxx:160
small class use to define a formula instruction
Definition: MWAWCell.hxx:360
double m_doubleValue
value ( if type==F_Double )
Definition: MWAWCell.hxx:381
Type
the different types of cell's field
Definition: MWAWCell.hxx:391
MWAWVec2i m_position
the cell row and column : 0,0 -> A1, 0,1 -> A2
Definition: MWAWCell.hxx:324
MWAWFont m_font
the cell font
Definition: MWAWCell.hxx:335
MWAWFont getFont() const
returns the font
Definition: MWAWCell.hxx:228
MWAWBorder m_extraLineType
extra line type
Definition: MWAWCell.hxx:352
void setFormat(Format const &format)
set the cell format
Definition: MWAWCell.hxx:217
void setFont(MWAWFont const &font, bool isDefault=false)
sets the fonts
Definition: MWAWCell.hxx:233
virtual bool sendContent(MWAWListenerPtr listener, MWAWTable &table)
function called when the content of a cell must be send to the listener, ie.
Definition: MWAWCell.cxx:543
void setBackgroundColor(MWAWColor color)
sets the background color
Definition: MWAWCell.hxx:297
Definition: MWAWCell.hxx:56
MWAWCell()
constructor
Definition: MWAWCell.hxx:130
Definition: MWAWCell.hxx:58
Definition: MWAWCell.hxx:56
MWAWCellContent()
constructor
Definition: MWAWCell.hxx:393
MWAWBox2f const & bdBox() const
bdbox accessor
Definition: MWAWCell.hxx:182
Definition: MWAWCell.hxx:58
Definition: MWAWCell.hxx:56
bool hasBorders() const
return true if the cell has some border
Definition: MWAWCell.hxx:273
Definition: MWAWCell.hxx:58
void setProtected(bool fl)
sets the cell's protected flag
Definition: MWAWCell.hxx:245
Definition: MWAWCell.hxx:124
bool isFontSet() const
returns true if the font has been set
Definition: MWAWCell.hxx:223
std::vector< MWAWBorder > m_bordersList
the cell border MWAWBorder::Pos
Definition: MWAWCell.hxx:348
virtual bool send(MWAWListenerPtr listener, MWAWTable &table)
function called when a cell is send by MWAWTable to send a cell to a listener.
Definition: MWAWCell.cxx:534
VerticalAlignment m_vAlign
the vertical cell alignment : by default nothing
Definition: MWAWCell.hxx:341
MWAWEntry m_textEntry
the cell string
Definition: MWAWCell.hxx:439
Type m_type
the type
Definition: MWAWCell.hxx:375
void setValue(double value)
sets the double value
Definition: MWAWCell.hxx:408
std::string m_sheet
the sheet name (if not empty)
Definition: MWAWCell.hxx:387
Definition: MWAWCell.hxx:58
HorizontalAlignment hAlignment() const
returns the horizontal alignment
Definition: MWAWCell.hxx:251
a class used to recreate the table structure using cell informations, ....
Definition: MWAWTable.hxx:51
MWAWVec2< int > MWAWVec2i
MWAWVec2 of int.
Definition: libmwaw_internal.hxx:767
bool m_protected
cell protected
Definition: MWAWCell.hxx:345
void setHAlignment(HorizontalAlignment align)
sets the horizontal alignment
Definition: MWAWCell.hxx:256
static std::string getColumnName(int col)
return the column name
Definition: MWAWCell.cxx:409
Definition: MWAWCell.hxx:58
ExtraLine extraLine() const
returns the extra lines
Definition: MWAWCell.hxx:307
HorizontalAlignment
the default horizontal alignment.
Definition: MWAWCell.hxx:118
a structure used to define a cell and its format
Definition: MWAWCell.hxx:52
the class to store a color
Definition: libmwaw_internal.hxx:176
MWAWColor backgroundColor() const
returns the background color
Definition: MWAWCell.hxx:292
Format m_format
the cell format
Definition: MWAWCell.hxx:333
double m_value
the cell value
Definition: MWAWCell.hxx:435
Definition: MWAWCell.hxx:127
std::vector< FormulaInstruction > m_formula
the formula list of instruction
Definition: MWAWCell.hxx:441
small class use to define a sheet cell content
Definition: MWAWCell.hxx:356
FormatType
the different format of a cell's content
Definition: MWAWCell.hxx:56
MWAWVec2f m_bdSize
the cell bounding size : unit point
Definition: MWAWCell.hxx:330
MWAWBox2f m_bdBox
the cell bounding box (unit in point)
Definition: MWAWCell.hxx:328
virtual ~MWAWCell()
destructor
Definition: MWAWCell.hxx:136
Class to store font.
Definition: MWAWFont.hxx:43
a border
Definition: libmwaw_internal.hxx:308
bool hasText() const
returns true if the text is set
Definition: MWAWCell.hxx:419
~MWAWCellContent()
destructor
Definition: MWAWCell.hxx:395
Definition: MWAWCell.hxx:58
void setBdSize(MWAWVec2f sz)
set the bdbox size(unit point)
Definition: MWAWCell.hxx:198
void setVAlignment(VerticalAlignment align)
sets the vertical alignment
Definition: MWAWCell.hxx:267
HorizontalAlignment m_hAlign
the cell alignment : by default nothing
Definition: MWAWCell.hxx:339
ExtraLine
an enum to defined potential internal line: E_Line1=TL to RB, E_Line2=BL to RT
Definition: MWAWCell.hxx:127
Definition: MWAWCell.hxx:124
MWAWVec2< bool > MWAWVec2b
MWAWVec2 of bool.
Definition: libmwaw_internal.hxx:765
Definition: MWAWCell.hxx:119
Format const & getFormat() const
returns the cell format
Definition: MWAWCell.hxx:212
Definition: MWAWCell.hxx:56
MWAWVec2i m_numberCellSpanned
the cell spanned : by default (1,1)
Definition: MWAWCell.hxx:326
void setExtraLine(ExtraLine extrLine, MWAWBorder const &type=MWAWBorder())
sets the extraline
Definition: MWAWCell.hxx:317
ExtraLine m_extraLine
extra line
Definition: MWAWCell.hxx:350
void resetBorders()
reset the border
Definition: MWAWCell.hxx:284
Type
Definition: MWAWCell.hxx:361
Definition: MWAWCell.hxx:127
void setPosition(MWAWVec2i posi)
set the cell positions : 0,0 -> A1, 0,1 -> A2
Definition: MWAWCell.hxx:165
VerticalAlignment vAlignment() const
returns the vertical alignment
Definition: MWAWCell.hxx:262
MWAWVec2f const & bdSize() const
bdbox size accessor
Definition: MWAWCell.hxx:193
a namespace used to convert Mac font characters in unicode
Definition: MWAWFontConverter.hxx:62
Type m_contentType
the content type ( by default unknown )
Definition: MWAWCell.hxx:433
Definition: MWAWCell.hxx:56
Definition: MWAWCell.hxx:124
void setNumSpannedCells(MWAWVec2i numSpanned)
sets the number of spanned cells : MWAWVec2i(1,1) means 1 cellule
Definition: MWAWCell.hxx:176
Definition: MWAWCell.hxx:119
Definition: MWAWCell.hxx:58
MWAWColor m_backgroundColor
the backgroung color
Definition: MWAWCell.hxx:343
void addTo(librevenge::RVNGPropertyList &propList, shared_ptr< MWAWFontConverter > fontConverter) const
adds to the propList
Definition: MWAWCell.cxx:336
bool m_fontSet
a flag to know if the font has been set
Definition: MWAWCell.hxx:337
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
Definition: MWAWCell.cxx:419
bool hasExtraLine() const
returns true if we have some extra lines
Definition: MWAWCell.hxx:302
double m_longValue
value ( if type==F_Long )
Definition: MWAWCell.hxx:379
Definition: MWAWCell.hxx:127
std::vector< MWAWBorder > const & borders() const
return the cell border: libmwaw::Left | ...
Definition: MWAWCell.hxx:278
MWAWBorder const & extraLineType() const
returns the extra line border
Definition: MWAWCell.hxx:312
bool m_valueSet
true if the value has been set
Definition: MWAWCell.hxx:437
basic class to store an entry in a file This contained :
Definition: MWAWEntry.hxx:46
bool empty() const
returns true if the cell has no content
Definition: MWAWCell.hxx:400
VerticalAlignment
the default vertical alignment.
Definition: MWAWCell.hxx:124
FormulaInstruction()
constructor
Definition: MWAWCell.hxx:363
NumberType
the different number format of a cell's content
Definition: MWAWCell.hxx:58
Definition: MWAWCell.hxx:118
std::string m_content
the content ( if type == F_Operator or type = F_Function or type==F_Text)
Definition: MWAWCell.hxx:377
Definition: MWAWCell.hxx:124
void setBdBox(MWAWBox2f box)
set the bdbox (unit point)
Definition: MWAWCell.hxx:187
Definition: MWAWCell.hxx:127
bool isValueSet() const
returns true if the value has been setted
Definition: MWAWCell.hxx:414
Definition: MWAWCell.hxx:118
bool isProtected() const
returns true if the cell is protected
Definition: MWAWCell.hxx:240
Definition: MWAWCell.hxx:118
Definition: MWAWCell.hxx:56
void setBorders(int wh, MWAWBorder const &border)
sets the cell border: wh=libmwaw::LeftBit|...
Definition: MWAWCell.cxx:432
bool isEmpty() const
returns true if the border is empty
Definition: libmwaw_internal.hxx:321