WPSCellFormat Class Reference

a structure used to defined the cell format More...

#include <WPSCell.h>

Inheritance diagram for WPSCellFormat:
LotusSpreadsheetInternal::Format123Style LotusSpreadsheetInternal::Style QuattroSpreadsheetInternal::Style WKS4SpreadsheetInternal::Style WPSCell LotusSpreadsheetInternal::Cell QuattroSpreadsheetInternal::Cell WKS4SpreadsheetInternal::Cell WPS8TableInternal::Cell

Classes

struct  CompareFormat
 a comparaison structure used to store data More...
 

Public Types

enum  HorizontalAlignment {
  HALIGN_LEFT, HALIGN_RIGHT, HALIGN_CENTER, HALIGN_FULL,
  HALIGN_DEFAULT
}
 the default horizontal alignement. More...
 
enum  VerticalAlignment { VALIGN_TOP, VALIGN_CENTER, VALIGN_BOTTOM, VALIGN_DEFAULT }
 the default vertical alignement. More...
 
enum  Wrapping { WRAP_WRAP, WRAP_NO_WRAP, WRAP_DEFAULT }
 the wrapping More...
 
enum  FormatType {
  F_TEXT, F_BOOLEAN, F_NUMBER, F_DATE,
  F_TIME, F_UNKNOWN
}
 the different types of cell's field More...
 

Public Member Functions

 WPSCellFormat ()
 constructor More...
 
virtual ~WPSCellFormat ()
 destructor More...
 
bool hasBasicFormat () const
 returns true if this is a basic format style More...
 
std::string getValueType () const
 returns a value type More...
 
void addTo (librevenge::RVNGPropertyList &propList) const
 add to the propList More...
 
bool getNumberingProperties (librevenge::RVNGPropertyList &propList) const
 get the number style More...
 
WPSFont const & getFont () const
 returns the font More...
 
void setFont (WPSFont const &font)
 sets the font More...
 
HorizontalAlignment hAlignement () const
 returns the horizontal alignement More...
 
void setHAlignement (HorizontalAlignment align)
 sets the horizontal alignement More...
 
VerticalAlignment vAlignement () const
 returns the vertical alignement More...
 
void setVAlignement (VerticalAlignment align)
 sets the vertical alignement More...
 
Wrapping wrapping () const
 returns the wrapping More...
 
void setWrapping (Wrapping align)
 sets the wrapping More...
 
int getTextRotation () const
 returns the text rotation angle More...
 
void setTextRotation (int rotation)
 sets the text rotation angle More...
 
FormatType getFormat () const
 returns the format type More...
 
int getSubFormat () const
 returns the subformat type More...
 
std::string getDTFormat () const
 returns the date/time format ( if set) More...
 
void setFormat (FormatType form, int subForm=0)
 sets the format type More...
 
void setDTFormat (FormatType form, std::string const &dtFormat="")
 sets the format type More...
 
int digits () const
 returns the number of digits ( for a number) More...
 
void setDigits (int newDigit)
 set the number of digits ( for a number) More...
 
bool isProtected () const
 returns true if the cell is protected More...
 
void setProtected (bool fl)
 returns true if the cell is protected More...
 
bool hasBorders () const
 return true if the cell has some border More...
 
std::vector< WPSBorder > const & borders () const
 return the cell border: libwps::LeftBit | ... More...
 
void resetBorders ()
 reset the border More...
 
void setBorders (int wh, WPSBorder const &border)
 sets the cell border: wh=WPSBorder::LeftBit|... More...
 
void setBorders (std::vector< WPSBorder > const &newBorders)
 sets the cell borders More...
 
WPSColor backgroundColor () const
 returns the background color More...
 
void setBackgroundColor (WPSColor const &color)
 set the background color More...
 
int compare (WPSCellFormat const &cell, bool onlyNumbering=false) const
 a comparison function More...
 

Static Protected Member Functions

static bool convertDTFormat (std::string const &dtFormat, librevenge::RVNGPropertyListVector &propListVector)
 convert a DTFormat in a propertyList More...
 

Protected Attributes

WPSFont m_font
 the cell font ( used in spreadsheet code ) More...
 
HorizontalAlignment m_hAlign
 the cell alignement : by default nothing More...
 
VerticalAlignment m_vAlign
 the cell vertical alignement : by default nothing More...
 
Wrapping m_wrapping
 the wrapping : by default nothing More...
 
int m_rotation
 the text rotation More...
 
std::vector< WPSBorderm_bordersList
 the cell border WPSBorder::Pos More...
 
FormatType m_format
 the cell format : by default unknown More...
 
int m_subFormat
 the sub format More...
 
std::string m_DTFormat
 a date/time format ( using a subset of strftime format ) More...
 
int m_digits
 the number of digits More...
 
bool m_protected
 cell protected More...
 
WPSColor m_backgroundColor
 the backgroung color More...
 

Friends

std::ostream & operator<< (std::ostream &o, WPSCellFormat const &cell)
 operator<< More...
 

Detailed Description

a structure used to defined the cell format

Member Enumeration Documentation

the different types of cell's field

Enumerator
F_TEXT 
F_BOOLEAN 
F_NUMBER 
F_DATE 
F_TIME 
F_UNKNOWN 

the default horizontal alignement.

Note
actually mainly used for table/spreadsheet cell, FULL is not yet implemented
Enumerator
HALIGN_LEFT 
HALIGN_RIGHT 
HALIGN_CENTER 
HALIGN_FULL 
HALIGN_DEFAULT 

the default vertical alignement.

Enumerator
VALIGN_TOP 
VALIGN_CENTER 
VALIGN_BOTTOM 
VALIGN_DEFAULT 

the wrapping

Enumerator
WRAP_WRAP 
WRAP_NO_WRAP 
WRAP_DEFAULT 

Constructor & Destructor Documentation

WPSCellFormat::WPSCellFormat ( )
inline

constructor

virtual WPSCellFormat::~WPSCellFormat ( )
inlinevirtual

destructor

Member Function Documentation

void WPSCellFormat::addTo ( librevenge::RVNGPropertyList &  propList) const

add to the propList

Referenced by WPSCell::addTo().

WPSColor WPSCellFormat::backgroundColor ( ) const
inline

returns the background color

Referenced by addTo().

std::vector<WPSBorder> const& WPSCellFormat::borders ( ) const
inline

return the cell border: libwps::LeftBit | ...

bool WPSCellFormat::convertDTFormat ( std::string const &  dtFormat,
librevenge::RVNGPropertyListVector &  propListVector 
)
staticprotected

convert a DTFormat in a propertyList

Referenced by getNumberingProperties().

int WPSCellFormat::digits ( ) const
inline

returns the number of digits ( for a number)

Referenced by LotusSpreadsheetInternal::Format123Style::update().

std::string WPSCellFormat::getDTFormat ( ) const
inline

returns the date/time format ( if set)

Referenced by operator<<(), and LotusSpreadsheetInternal::Format123Style::update().

FormatType WPSCellFormat::getFormat ( ) const
inline
bool WPSCellFormat::getNumberingProperties ( librevenge::RVNGPropertyList &  propList) const

get the number style

Referenced by WKSContentListener::openSheetCell().

int WPSCellFormat::getSubFormat ( ) const
inline

returns the subformat type

Referenced by LotusSpreadsheetInternal::Format123Style::update().

int WPSCellFormat::getTextRotation ( ) const
inline

returns the text rotation angle

std::string WPSCellFormat::getValueType ( ) const

returns a value type

Referenced by WKSContentListener::openSheetCell().

HorizontalAlignment WPSCellFormat::hAlignement ( ) const
inline

returns the horizontal alignement

bool WPSCellFormat::hasBasicFormat ( ) const
inline

returns true if this is a basic format style

Referenced by WKSContentListener::openSheetCell().

bool WPSCellFormat::hasBorders ( ) const
inline

return true if the cell has some border

bool WPSCellFormat::isProtected ( ) const
inline

returns true if the cell is protected

void WPSCellFormat::resetBorders ( )
inline

reset the border

void WPSCellFormat::setBackgroundColor ( WPSColor const &  color)
inline
void WPSCellFormat::setBorders ( std::vector< WPSBorder > const &  newBorders)
inline

sets the cell borders

void WPSCellFormat::setDigits ( int  newDigit)
inline
void WPSCellFormat::setDTFormat ( FormatType  form,
std::string const &  dtFormat = "" 
)
inline
void WPSCellFormat::setProtected ( bool  fl)
inline

returns true if the cell is protected

void WPSCellFormat::setTextRotation ( int  rotation)
inline

sets the text rotation angle

Referenced by LotusStyleManager::updateCellStyle().

void WPSCellFormat::setVAlignement ( VerticalAlignment  align)
inline

sets the vertical alignement

Referenced by LotusStyleManager::updateCellStyle().

void WPSCellFormat::setWrapping ( Wrapping  align)
inline

sets the wrapping

Referenced by LotusStyleManager::updateCellStyle().

VerticalAlignment WPSCellFormat::vAlignement ( ) const
inline

returns the vertical alignement

Referenced by addTo().

Wrapping WPSCellFormat::wrapping ( ) const
inline

returns the wrapping

Referenced by addTo().

Friends And Related Function Documentation

std::ostream& operator<< ( std::ostream &  o,
WPSCellFormat const &  cell 
)
friend

operator<<

Member Data Documentation

WPSColor WPSCellFormat::m_backgroundColor
protected

the backgroung color

Referenced by backgroundColor(), compare(), operator<<(), and setBackgroundColor().

std::vector<WPSBorder> WPSCellFormat::m_bordersList
protected
int WPSCellFormat::m_digits
protected
std::string WPSCellFormat::m_DTFormat
protected

a date/time format ( using a subset of strftime format )

Referenced by compare(), getDTFormat(), getNumberingProperties(), and setDTFormat().

WPSFont WPSCellFormat::m_font
protected
HorizontalAlignment WPSCellFormat::m_hAlign
protected

the cell alignement : by default nothing

Referenced by addTo(), compare(), hAlignement(), operator<<(), and setHAlignement().

bool WPSCellFormat::m_protected
protected
int WPSCellFormat::m_rotation
protected

the text rotation

Referenced by addTo(), compare(), getTextRotation(), operator<<(), and setTextRotation().

VerticalAlignment WPSCellFormat::m_vAlign
protected

the cell vertical alignement : by default nothing

Referenced by compare(), operator<<(), setVAlignement(), and vAlignement().

Wrapping WPSCellFormat::m_wrapping
protected

the wrapping : by default nothing

Referenced by compare(), operator<<(), setWrapping(), and wrapping().


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

Generated on Wed Apr 11 2018 00:19:13 for libwps by doxygen 1.8.5