diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2005-12-13 13:39:47 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2005-12-13 13:39:47 +0000 |
commit | 4cafe7bc377f29157a8a54e7f2e8c1732c3aecc2 (patch) | |
tree | 9660267252b3429e908f21cfff9bd5bb36183513 /devel/xlslib/files/patch-src_xlslib_label.cpp | |
parent | Fix bold text rendering bug. (diff) |
Add xlslib, a C++ library for generation of Excel(TM) files
xlsLib is a multiplatform, C++ developed, library for dynamically
generating Excel(TM) files (*.xls). It allows the generation of Excel(TM)
compatible files without the need of any other external software.
* Easy to use, fully object oriented, API.
* Excel 95 (TM) format spreadsheets.
* Multiple worksheets.
* All standard font's styles and colors.
* All standard cell's styles, colors and properties.
* All standard cell's border-styles and colors.
* Three basic type of cells:
o Blank.
o Label. The text in labels can be formated in all standard styles.
o Number. All standard number-formats are supported.
* Merged cells.
* Handling of cells using ranges.
PR: 89933
Submitted by: Sergey Prikhodko <sergey@network-asp.biz>
Notes
Notes:
svn path=/head/; revision=151097
Diffstat (limited to 'devel/xlslib/files/patch-src_xlslib_label.cpp')
-rw-r--r-- | devel/xlslib/files/patch-src_xlslib_label.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/devel/xlslib/files/patch-src_xlslib_label.cpp b/devel/xlslib/files/patch-src_xlslib_label.cpp new file mode 100644 index 000000000000..7f2782fcf021 --- /dev/null +++ b/devel/xlslib/files/patch-src_xlslib_label.cpp @@ -0,0 +1,29 @@ +--- src/xlslib/label.cpp.orig Mon Dec 12 16:45:55 2005 ++++ src/xlslib/label.cpp Mon Dec 12 16:48:27 2005 +@@ -95,7 +95,7 @@ + label_t class implementation + ****************************** + */ +-label_t::label_t(unsigned16_t rowval, unsigned16_t colval, ++xlslib_core::label_t::label_t(unsigned16_t rowval, unsigned16_t colval, + string& labelstrval, xf_t* pxfval) + { + row = rowval; +@@ -121,7 +121,7 @@ + ****************************** + */ + +-unsigned16_t label_t::GetSize() ++unsigned16_t xlslib_core::label_t::GetSize() + { + unsigned16_t size = 0; + +@@ -136,7 +136,7 @@ + ****************************** + */ + +-CUnit* label_t::GetData() ++CUnit* xlslib_core::label_t::GetData() + { + CUnit* datalabel = + (CUnit*)( new CLabel(row,col,strlabel,pxf)); |