1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
3 Ministerio de EconomÃa
5 -------------------------------------------------------------------------------
6 This file is part of meconlib.
8 meconlib is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2 of the License, or (at your option)
13 meconlib is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License; if not,
18 write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 Boston, MA 02111-1307 USA
20 -------------------------------------------------------------------------------
21 Creado: Fri Oct 24 16:34:11 2003
22 Autor: Martin Marrese <mmarre@mecon.gov.ar>
23 -------------------------------------------------------------------------------
25 -----------------------------------------------------------------------------*/
27 require_once 'MECON/PDF/Contenido.php';
30 * Libreria que permite agregar una tabla a un pdf.
32 class MECON_PDF_Tabla extends MECON_PDF_Contenido {
42 * Objeto MECON_HTML_Tabla.
43 * @var &Object $tabla MECON_HTML_Tabla
49 * Objeto MECON_PDF_Marco
56 * Orientacion de las nuevas paginas
57 * @var string $orientacion
65 * @param &Object $TABLA MECON_HTML_Tabla
66 * @param string $orientacion Orientacion que deben tener las nuevas paginas
67 * que genere la tabla.
72 function MECON_PDF_Tabla($TABLA, $orientacion = null) {
73 $this->_tabla = $TABLA;
74 $this->_orientacion = $orientacion;
75 $this->_config = include 'MECON/PDF/Tabla/medidas.php';
79 * Funcion que agrega el contenido de la tabla que se este utilizando al
82 * @param &Object $MARCO MECON_PDF_Marco
87 function toPDF(&$MARCO) {
88 $this->_marco =& $MARCO;
89 $this->_agregarContenido();
93 * Funcion que devuelve la posicion X en donde se debe escribir un texto
94 * segun su ubicacion en la celda
96 * @param int $row Indicador de la fila
97 * @param int $col Indicador de la columna
98 * @param string $texto Texto a escribir
99 * @param array $attr Atributos internos de la celda
100 * @param array $estilo Estilo del texto
105 function _obtenerAlineacionTexto($row, $col, $texto, $attr, $estilo) {
107 $at = $this->_tabla->getCellAttributes($row, $col);
109 if (@$at['colspan']) {
110 $offset = $at['colspan'];
116 if (@$at['align'] == 'center') {
117 $tam = $this->_marco->strlen($texto, $estilo);
118 $init = $attr[$col] + ($attr[$col+$offset] - $attr[$col] - $tam) / 2;
120 elseif (@$at['align'] == 'right') {
121 $tam = $this->_marco->strlen($texto, $estilo);
122 $init = $attr[$col+$offset] - $tam + 1;
131 * Funcion que devuelve el estilo de la celda segun la configuracion.
133 * @param int $row Indicador de la fila
134 * @param int $col Indicador de la columna
139 function _obtenerEstiloCelda($row, $col) {
140 $clase = $this->_tabla->getCellAttributes($row, $col);
141 if (@$clase['cabecera']) {
142 $estilo = $this->_config['celda_cabecera'];
144 elseif (@$clase['titulo']) {
145 $estilo = $this->_config['celda_titulo'];
147 elseif (@$clase['oscura']) {
148 $tmp = $this->_config['celda_comun'];
149 $tmp['fillcolor'] = $this->_config['celda_cabecera']['fillcolor'];
150 $tmp['fill'] = $this->_config['celda_cabecera']['fill'];
153 elseif (@$clase['clara']) {
154 $tmp = $this->_config['celda_comun'];
155 $tmp['fillcolor'] = $this->_config['celda_titulo']['fillcolor'];
156 $tmp['fill'] = $this->_config['celda_titulo']['fill'];
160 $estilo = $this->_config['celda_comun'];
162 if (@$clase['colspan']) {
163 $estilo['colspan'] = $clase['colspan'];
169 * Funcion que calcula el ancho de las columnas de la tabla.
174 function _obtenerAnchoColumnas() {
175 $ancho_pagina = $this->_marco->getWidth($this->_marco->refPage(),
176 $this->_marco->getOrientation());
177 for ($row = 0; $row<$this->_tabla->getRowCount(); $row++) {
178 for ($i=0; $i<$this->_tabla->getColCount(); $i++ ) {
179 $tmp = $this->_tabla->getCellAttributes($row,$i);
180 if(intval($tmp['width']) != 0)
181 $attr[$i] = intval($tmp['width']);
182 if(count($attr) == $this->_tabla->getColCount())
185 if(count($attr) == $this->_tabla->getColCount())
188 $tmp = array_sum($attr);
191 for ($i=1; $i<count($attr); $i++) {
192 $attr2[$i] = intval(($ancho_pagina * $attr[$i-1] / $tmp) +
195 $attr2[$i] = $ancho_pagina;
199 * Funcion que se encarga de crear las nuevas paginas.
204 function _newPage() {
205 $tmp = ($this->_orientacion) ? $this->_orientacion :
206 $this->_marco->getOrientation();
207 $this->_marco->newPage($this->_marco->tamanio, $tmp);
211 * Funcion que agrega las filas y columnas a la pagina.
216 function _agregarContenido() {
217 $alto = $this->_marco->espacioDisponible;
218 $orientacion = $this->_marco->getOrientation();
219 if ($alto <= 0 || ($this->_orientacion && $this->_orientacion !=
222 $orientacion = $this->_marco->getOrientation();
223 $alto = $this->_marco->espacioDisponible;
225 $attr2 = $this->_obtenerAnchoColumnas();
226 for ($i = 0; $i < $this->_tabla->getRowCount(); $i++) {
228 for ($j = 0; $j < $this->_tabla->getColCount(); $j++) {
229 $estilo = $this->_obtenerEstiloCelda($i, $j);
231 //Actuo por el colspan
232 if (@$estilo['colspan']) {
233 if ($estilo['colspan'] > $this->_tabla->getColCount()) {
235 $this->_tabla->getColCount() - $j;
237 $ancho_columna = $attr2[$j+$estilo['colspan']] -
241 $ancho_columna = $attr2[$j+1] - $attr2[$j];
243 $txt = $this->_marco->wordWrap(
244 @$this->_tabla->getCellContents($i,$j), $ancho_columna,
247 $txtt[$j] = $txt; //Esto es para no hacer el wordWrap siempre
248 $max = max($estilo['alto_linea'] * count($txt), $max);
251 $rep = $this->_tabla->getCellAttributes($i, $j);
252 if (@$rep['cabecera'] || @$rep['titulo']) {
253 $repetir[$i][$j] = $txt;
254 $repetir[$i]['max'] = $max;
260 $alto = $this->_marco->espacioDisponible;
262 foreach ($repetir as $ii => $value) {
263 $alto -= $repetir[$ii]['max'];
264 for ($jj = 0; $jj < $this->_tabla->getColCount(); $jj++) {
265 $estilo = $this->_obtenerEstiloCelda($ii, $jj);
267 //Actuo por el colspan
268 if (@$estilo['colspan']) {
269 if ($estilo['colspan'] > $this->_tabla->getColCount()) {
271 $this->_tabla->getColCount() - $jj;
273 $der = $attr2[$jj+$estilo['colspan']];
277 $der = $attr2[$jj+1];
282 $this->_marco->addRectangle($izq, $alto, $der,
283 $alto+$repetir[$ii]['max'], @$estilo['fill'],
285 $alto1 = $alto + $repetir[$ii]['max'];
286 foreach ($repetir[$ii][$jj] as $t) {
287 $alto1 -= $estilo['alto_linea'];
289 //Ubico el texto segun su alineacion
290 $init = $this->_obtenerAlineacionTexto($ii, $jj, $t, $attr2,
293 $this->_marco->addText($init, $alto1 + 2,
294 $t, $estilo, null, $orientacion);
297 if (@$estilo['colspan']) {
298 $jj += $estilo['colspan'];
307 for ($j = 0; $j < $this->_tabla->getColCount(); $j++) {
309 $estilo = $this->_obtenerEstiloCelda($i, $j);
311 //Actuo por el colspan
312 if (@$estilo['colspan']) {
313 if ($estilo['colspan'] > $this->_tabla->getColCount()) {
314 $estilo['colspan'] = $this->_tabla->getColCount() - 1;
316 $der = $attr2[$j+$estilo['colspan']];
325 $this->_marco->addRectangle($izq, $alto, $der, $alto+$max,
326 @$estilo['fill'], null, $orientacion);
328 $alto1 = $alto + $max;
330 foreach ($txtt[$j] as $t) {
331 $alto1 -= $estilo['alto_linea'];
333 //Ubico el texto segun su alineacion
334 $init = $this->_obtenerAlineacionTexto($i, $j, $t, $attr2,
337 $this->_marco->addText($init, $alto1 + 2,
338 $t, $estilo, null, $orientacion);
341 if (@$estilo['colspan']) {
342 $j += $estilo['colspan'];
347 $this->_marco->espacioDisponible = $alto;