/* * * Copyright 2011 Fausto Di Creddo Trautwein, ftwein@yahoo.com.br * * Thanks TO Robert F Greer, PHP original version * http://sourceforge.net/projects/excelwriterxml/ * * This program is free software; you can redistribute it AND/OR modify * it under the terms of the GNU General PUBLIC License as published by * the Free Software Foundation; either version 2, OR( at your option ) * any later version. * * This program is distributed IN the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General PUBLIC License FOR more details. * * You should have received a copy of the GNU General PUBLIC License * along WITH this software; see the file COPYING.txt. IF NOT, write TO * the Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, MA 02111-1307 USA( OR visit the web site https://www.gnu.org/ ). * * As a special exception, the Harbour Project gives permission FOR * additional uses of the text contained IN its release of Harbour. * * The exception is that, IF you link the Harbour libraries WITH other * files TO produce an executable, this does NOT by itself cause the * resulting executable TO be covered by the GNU General PUBLIC License. * Your use of that executable is IN no way restricted on account of * linking the Harbour library code into it. * * This exception does NOT however invalidate any other reasons why * the executable file might be covered by the GNU General PUBLIC License. * * This exception applies only TO the code released by the Harbour * Project under the name Harbour. IF you copy code FROM other * Harbour Project OR Free Software Foundation releases into a copy of * Harbour, as the General PUBLIC License permits, the exception does * NOT apply TO the code that you add IN this way. TO avoid misleading * anyone as TO the status of such modified files, you must delete * this exception notice FROM them. * * IF you write modifications of your own FOR Harbour, it is your choice * whether TO permit this exception TO apply TO your modifications. * IF you DO NOT wish that, delete this exception notice. * */ #include "hbclass.ch" CREATE CLASS ExcelWriterXML_Sheet VAR id VAR cells INIT { => } VAR colWidth INIT { => } VAR rowHeight INIT { => } VAR URLs INIT { => } VAR mergeCells INIT { => } VAR comments INIT { => } VAR formatErrors INIT { => } VAR ldisplayRightToLeft INIT .F. METHOD new( id ) METHOD getID() METHOD addError( cFunction, cMessage ) METHOD getErrors() METHOD writeFormula( dataType, row, column, xData, style ) METHOD writeString( row, column, xData, style ) METHOD writeNumber( row, column, xData, style ) METHOD writeDateTime( row, column, xData, style ) METHOD writeData( type, row, column, xData, style, formula ) METHOD displayRightToLeft() METHOD getSheetXML( handle ) METHOD cellWidth( row, col, width ) METHOD columnWidth( col, width ) METHOD cellHeight( row, col, height ) METHOD setRowHeight( row, height ) METHOD cellMerge( row, col, width, height ) METHOD addComment( row, col, comment, author ) ENDCLASS METHOD ExcelWriterXML_Sheet:new( id ) ::id := id RETURN SELF METHOD ExcelWriterXML_Sheet:getID() RETURN ::id METHOD ExcelWriterXML_Sheet:addError( cFunction, cMessage ) ::formatErrors += { ; "sheet" => ::id, ; "FUNCTION" => cFunction, ; "MESSAGE" => cMessage } RETURN NIL METHOD ExcelWriterXML_Sheet:getErrors() RETURN ::formatErrors METHOD ExcelWriterXML_Sheet:writeFormula( dataType, row, column, xData, style ) HB_SYMBOL_UNUSED( dataType ) ::writeData( "String", row, column, "", style, xData ) RETURN NIL METHOD ExcelWriterXML_Sheet:writeString( row, column, xData, style ) ::writeData( "String", row, column, xData, style ) RETURN NIL METHOD ExcelWriterXML_Sheet:writeNumber( row, column, xData, style ) IF HB_ISNUMERIC( xData ) ::writeData( "Number", row, column, AllTrim( Str( xData, 18, 6 ) ), style ) ELSE ::writeData( "String", row, column, xData, style ) ENDIF RETURN NIL METHOD ExcelWriterXML_Sheet:writeDateTime( row, column, xData, style ) IF HB_ISDATE( xData ) ::writeData( "DateTime", row, column, DToC( xData ), style ) ELSE ::writeData( "String", row, column, xData, style ) ENDIF RETURN NIL METHOD ExcelWriterXML_Sheet:writeData( type, row, column, xData, style, formula ) LOCAL hcol, cell, styleID IF style != NIL IF HB_ISOBJECT( style ) styleID := style:getID() ELSE styleID := style ENDIF ELSE styleID := NIL ENDIF cell := { ; "type" => type, ; "style" => styleID, ; "data" => xData, ; "formula" => formula } IF hb_HPos( ::cells, row ) > 0 hcol := ::cells[ row ] hcol[ column ] := cell ::cells[ row ] := hcol ELSE hcol := { => } hcol[ column ] := cell ::cells[ row ] := hcol ENDIF RETURN NIL METHOD ExcelWriterXML_Sheet:displayRightToLeft() ::ldisplayRightToLeft := .T. RETURN NIL METHOD ExcelWriterXML_Sheet:getSheetXML( handle ) LOCAL displayRightToLeft, ir, ic, xml, url LOCAL column, cell, xData, type, mergecell, comment, style, colIndex, colWidth LOCAL row, rowData, rowHeight, formula displayRightToLeft := iif( ::ldisplayRightToLeft, 'ss:RightToLeft="1"', "" ) xml := '" + hb_eol() xml += " " + hb_eol() FWrite( handle, xml ) xml := "" FOR EACH ic IN ::colWidth colIndex := ic:__enumKey() colWidth := ic:__enumValue() colIndex := hb_ntos( colIndex ) colWidth := hb_ntos( colWidth ) xml += ' ' + hb_eol() NEXT FWrite( handle, xml ) xml := "" FOR EACH ir IN ::cells row := ir:__enumKey() rowData := ir:__enumValue() IF hb_HPos( ::rowHeight, row ) > 0 rowHeight := 'ss:AutoFitHeight="0" ss:Height="' + AllTrim( Str( ::rowHeight[ row ], 14, 2 ) ) + '"' ELSE rowHeight := "" ENDIF xml += ' " + hb_eol() FOR EACH ic IN rowData column := ic:__enumKey() cell := ic:__enumValue() IF Empty( cell[ "formula" ] ) formula := "" ELSE formula := 'ss:Formula="' + cell[ "formula" ] + '"' ENDIF IF Empty( cell[ "style" ] ) style := "" ELSE style := 'ss:StyleID="' + cell[ "style" ] + '"' ENDIF URL := "" mergeCell := "" IF hb_HPos( ::mergeCells, row ) > 0 IF hb_HPos( ::mergeCells[ row ], column ) > 0 mergeCell := 'ss:MergeAcross="' + hb_ntos( ::mergeCells[ row ][ column ][ "width" ] ) + '" ss:MergeDown="' + hb_ntos( ::mergeCells[ row ][ column ][ "height" ] ) + '"' ENDIF ENDIF comment := "" IF hb_HPos( ::comments, row ) > 0 IF hb_HPos( ::comments[ row ], column ) > 0 comment := ' ' + hb_eol() comment += ' ' + hb_eol() comment += ' ' + ::comments[ row ][ column ][ "author" ] + ":" + hb_eol() comment += ' ' + ::comments[ row ][ column ][ "comment" ] + "" + hb_eol() comment += " " + hb_eol() comment += " " + hb_eol() ENDIF ENDIF comment := "" type := cell[ "type" ] xData := cell[ "data" ] xml += " " + hb_eol() xml += ' ' xml += StrToHtmlSpecial( xData ) xml += "" + hb_eol() xml += comment xml += " " + hb_eol() NEXT xml += " " + hb_eol() FWrite( handle, xml ) xml := "" NEXT xml += "
" + hb_eol() xml += "
" + hb_eol() FWrite( handle, xml ) xml := "" RETURN xml METHOD ExcelWriterXML_Sheet:cellWidth( row, col, width ) HB_SYMBOL_UNUSED( row ) HB_SYMBOL_UNUSED( col ) hb_default( @width, 48 ) ::columnWidth( col, width ) RETURN NIL METHOD ExcelWriterXML_Sheet:columnWidth( col, width ) hb_default( @width, 48 ) ::colWidth[ col ] := width RETURN NIL METHOD ExcelWriterXML_Sheet:cellHeight( row, col, height ) HB_SYMBOL_UNUSED( col ) hb_default( @height, 12.5 ) ::setRowHeight( row, height ) RETURN NIL METHOD ExcelWriterXML_Sheet:setRowHeight( row, height ) hb_default( @height, 12.5 ) ::rowHeight[ row ] := height RETURN NIL METHOD ExcelWriterXML_Sheet:cellMerge( row, col, width, height ) LOCAL haux := { => } IF hb_HPos( ::mergeCells, row ) > 0 haux := ::mergeCells[ row ] ENDIF haux[ col ] := { ; "width" => width, ; "height" => height } ::mergeCells[ row ] := haux RETURN NIL METHOD ExcelWriterXML_Sheet:addComment( row, col, comment, author ) LOCAL haux := { => } haux[ col ] := { ; "comment" => comment, ; "author" => author } ::comments[ row ] := haux RETURN NIL