]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MLIB/PDF/Tabla.php
Se agrega un objeto que permite armar tablas html a partir de templates.
[mecon/meconlib.git] / lib / MLIB / PDF / Tabla.php
1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
3                                     mlib
4 -------------------------------------------------------------------------------
5 This file is part of mlib.
6
7 mlib is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2 of the License, or (at your option)
10 any later version.
11
12 mlib is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15  
16 You should have received a copy of the GNU General Public License; if not,
17 write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 Boston, MA  02111-1307  USA
19 -------------------------------------------------------------------------------
20 Creado: Fri Oct 24 16:34:11 2003
21 Autor:  Martin Marrese <mmarre@mecon.gov.ar>
22 -------------------------------------------------------------------------------
23 $Id$
24 -----------------------------------------------------------------------------*/
25
26 require_once 'MLIB/PDF/Contenido.php';
27
28 /**
29  * Libreria que permite agregar una tabla a un pdf.
30  */
31 class MLIB_PDF_Tabla extends MLIB_PDF_Contenido {
32     
33     /**
34      * Configuracion
35      * @var array $config
36      * @access protected
37      */
38     var $_config;
39     
40     /**
41      * Objeto MLIB_HTML_Tabla.
42      * @var &Object $tabla MLIB_HTML_Tabla
43      * @access protected
44      */
45     var $_tabla;
46     
47     /**
48      * Objeto MLIB_PDF_Marco
49      * @var &Object $marco
50      * @access protected
51      */
52     var $_marco;
53
54     /**
55      * Orientacion de las nuevas paginas
56      * @var string $orientacion
57      * @access protected
58      */
59     var $_orientacion;
60     
61     /**
62      * Indica si el encabezado debe ir en la nuevas paginas.
63      * @var bool $encabezado
64      * @access protected;
65      */
66     var $_encabezado;
67     
68     /**
69      * Class Constructor
70      *
71      * @param &Object $TABLA MLIB_HTML_Tabla
72      * @param string $orientacion Orientacion que deben tener las nuevas paginas
73      * que genere la tabla.
74      *
75      * @return void
76      * @access public
77      */
78     function MLIB_PDF_Tabla($TABLA, $orientacion = null, $encabezado = true) {
79         $this->_tabla = $TABLA;
80         $this->_orientacion = $orientacion;
81         $this->_config = include 'MLIB/PDF/Tabla/medidas.php';
82         $this->_encabezado = $encabezado;
83     }
84     
85     /**
86      * Funcion que agrega el contenido de la tabla que se este utilizando al
87      * PDF.
88      *
89      * @param &Object $MARCO MLIB_PDF_Marco
90      *
91      * @return void
92      * @access public
93      */
94     function toPDF(&$MARCO) {
95         $this->_marco =& $MARCO;
96         $this->_agregarContenido();
97     }
98
99     /**
100      * Funcion que devuelve la posicion X en donde se debe escribir un texto
101      * segun su ubicacion en la celda
102      *
103      * @param int $row Indicador de la fila
104      * @param int $col Indicador de la columna
105      * @param string $texto Texto a escribir
106      * @param array $attr Atributos internos de la celda
107      * @param array $estilo Estilo del texto
108      *
109      * @return int
110      * @access protected
111      */
112     function _obtenerAlineacionTexto($row, $col, $texto, $attr, $estilo) {
113         
114         $at = $this->_tabla->getCellAttributes($row, $col);
115
116         if (@$at['colspan']) {
117             $offset = $at['colspan'];
118         }
119         else {
120             $offset = 1;
121         }
122         
123         if (@$at['align'] == 'center') {
124             $tam = $this->_marco->strlen($texto, $estilo);
125             $init = $attr[$col] + ($attr[$col+$offset] - $attr[$col] - $tam) / 2;
126         }
127         elseif (@$at['align'] == 'right') {
128             $tam = $this->_marco->strlen($texto, $estilo);
129             $init = $attr[$col+$offset] - $tam + 1;
130         }
131         else {
132             $init = $attr[$col];
133         }
134         return $init + 1;
135     }
136
137     /**
138      * Funcion que devuelve el estilo de la celda segun la configuracion.  
139      *
140      * @param int $row Indicador de la fila
141      * @param int $col Indicador de la columna
142      *
143      * @return array
144      * @access protected
145      */
146     function _obtenerEstiloCelda($row, $col) {
147         $clase = $this->_tabla->getCellAttributes($row, $col);
148         if (@$clase['cabecera']) {
149             $estilo = $this->_config['celda_cabecera'];
150         }
151         elseif (@$clase['titulo']) {
152             $estilo = $this->_config['celda_titulo'];
153         }
154         elseif (@$clase['oscura']) {
155             $tmp = $this->_config['celda_comun'];
156             $tmp['fillcolor'] = $this->_config['celda_cabecera']['fillcolor'];
157             $tmp['fill'] = $this->_config['celda_cabecera']['fill'];
158             $estilo = $tmp;
159         }
160         elseif (@$clase['clara']) {
161             $tmp = $this->_config['celda_comun'];
162             $tmp['fillcolor'] = $this->_config['celda_titulo']['fillcolor'];
163             $tmp['fill'] = $this->_config['celda_titulo']['fill'];
164             $estilo = $tmp;
165         }
166         else {
167             $estilo = $this->_config['celda_comun'];
168         }
169         if (@$clase['colspan']) {
170             $estilo['colspan'] = $clase['colspan'];
171         }
172         return $estilo;
173     }
174
175     /**
176      * Funcion que calcula el ancho de las columnas de la tabla.  
177      *
178      * @return array
179      * @access protected
180      */
181     function _obtenerAnchoColumnas() {
182         $ancho_pagina = $this->_marco->getWidth($this->_marco->refPage(),
183                 $this->_marco->getOrientation());
184         for ($row = 0; $row<$this->_tabla->getRowCount(); $row++) {
185             for ($i=0; $i<$this->_tabla->getColCount(); $i++ ) {
186                 $tmp = $this->_tabla->getCellAttributes($row,$i);
187                 if(@intval($tmp['width']) != 0)
188                     $attr[$i] = intval($tmp['width']);
189                 if(@count($attr) == $this->_tabla->getColCount())
190                   break 2;
191             }
192         }
193         
194         if (!isset($attr))
195             trigger_error ('Todas las columnas tienen que tener un ancho asignado', E_USER_ERROR);
196         
197         $tmp = array_sum($attr);
198         
199         $attr2[0] = 0;
200         for ($i=1; $i<count($attr); $i++) {
201             $attr2[$i] = intval(($ancho_pagina * $attr[$i-1] / $tmp) +
202                     $attr2[$i-1]);
203         }
204         $attr2[$i] = $ancho_pagina;
205         return $attr2;
206     }
207     /**
208      * Funcion que se encarga de crear las nuevas paginas.
209      *
210      * @return void
211      * @access protected
212      */
213     function _newPage() {
214         $tmp = ($this->_orientacion) ? $this->_orientacion :
215             $this->_marco->getOrientation();
216         $this->_marco->newPage($this->_marco->tamanio, $tmp, $this->_encabezado);               
217     }
218
219     /**
220      * Funcion que agrega las filas y columnas a la pagina.                  
221      *
222      * @return void
223      * @access protected
224      */
225     function _agregarContenido() {
226         $alto = $this->_marco->espacioDisponible;
227         $orientacion = $this->_marco->getOrientation();
228         if ($alto <= 0 || ($this->_orientacion && $this->_orientacion !=
229                     $orientacion) ) {
230             $this->_newPage();               
231             $orientacion = $this->_marco->getOrientation();
232             $alto = $this->_marco->espacioDisponible;
233         }
234         $attr2 = $this->_obtenerAnchoColumnas();
235         for ($i = 0; $i < $this->_tabla->getRowCount(); $i++) {
236             $max = 0;
237             for ($j = 0; $j < $this->_tabla->getColCount(); $j++) {
238                 $estilo = $this->_obtenerEstiloCelda($i, $j);
239
240                 //Actuo por el colspan
241                 if (@$estilo['colspan']) {
242                     if ($estilo['colspan'] > $this->_tabla->getColCount()) {
243                         $estilo['colspan'] = 
244                             $this->_tabla->getColCount() - $j;
245                     }
246                     $ancho_columna = $attr2[$j+$estilo['colspan']] - 
247                         $attr2[$j];
248                 }
249                 else {
250                    $ancho_columna = $attr2[$j+1] - $attr2[$j];
251                 }
252                 if (@$this->_tabla->getCellContents($i,$j)) {
253                     $txt = $this->_marco->wordWrap(
254                             @$this->_tabla->getCellContents($i,$j), $ancho_columna, 
255                             $estilo
256                             );
257                 }
258                 else {
259                     $txt = array (' ');
260                 }
261                 
262                 $txtt[$j] = $txt; //Esto es para no hacer el wordWrap siempre
263                 $max = max($estilo['alto_linea'] * count($txt), $max);
264                 
265                 $rep = array ();
266                 $rep = $this->_tabla->getCellAttributes($i, $j);
267                 if (@$rep['cabecera'] || @$rep['titulo']) {
268                     $repetir[$i][$j] = $txt;
269                     $repetir[$i]['max'] = $max;
270                 }
271             }
272             if ($alto <= 0) 
273             {
274                 $this->_newPage();               
275                 $alto = $this->_marco->espacioDisponible;
276                 
277                 foreach ($repetir as $ii => $value) {
278                     $alto -= $repetir[$ii]['max'];
279                     for ($jj = 0; $jj < $this->_tabla->getColCount(); $jj++) {
280                         $estilo = $this->_obtenerEstiloCelda($ii, $jj);
281
282                         //Actuo por el colspan
283                         if (@$estilo['colspan']) {
284                             if ($estilo['colspan'] > $this->_tabla->getColCount()) {
285                                 $estilo['colspan'] =
286                                     $this->_tabla->getColCount() - $jj;
287                             }
288                             $der = $attr2[$jj+$estilo['colspan']];
289                             $izq = $attr2[$jj];
290                         }
291                         else {
292                            $der = $attr2[$jj+1];
293                            $izq = $attr2[$jj];
294                         }
295
296                         
297                         $this->_marco->addRectangle($izq, $alto, $der, 
298                                 $alto+$repetir[$ii]['max'], @$estilo['fill'], 
299                                 null, $orientacion);
300                         $alto1 = $alto + $repetir[$ii]['max'];
301                         foreach ($repetir[$ii][$jj] as $t) {
302                             $alto1 -= $estilo['alto_linea'];
303
304                             //Ubico el texto segun su alineacion
305                             $init = $this->_obtenerAlineacionTexto($ii, $jj, $t, $attr2,
306                                     $estilo);
307                             
308                             $this->_marco->addText($init, $alto1 + 2,
309                                     $t, $estilo, null, $orientacion);
310                         }
311
312                         if (@$estilo['colspan']) {
313                             $jj += $estilo['colspan'] -1;
314                         }
315                         
316                     }
317                 }
318                 
319             }
320             
321             $alto -= $max;
322             for ($j = 0; $j < $this->_tabla->getColCount(); $j++) {
323                 
324                 $estilo = $this->_obtenerEstiloCelda($i, $j);
325                  
326                 //Actuo por el colspan
327                 if (@$estilo['colspan']) {
328                     if ($estilo['colspan'] > $this->_tabla->getColCount()) {
329                         $estilo['colspan'] = $this->_tabla->getColCount()  - 1;
330                     }
331                     $der = $attr2[$j+$estilo['colspan']];
332                     $izq = $attr2[$j];
333                 }
334                 else {
335                    $der = $attr2[$j+1];
336                    $izq = $attr2[$j];
337                 }
338
339                 
340                 $this->_marco->addRectangle($izq, $alto, $der, $alto+$max, 
341                         @$estilo['fill'], null, $orientacion);
342                 
343                 $alto1 = $alto + $max;
344                 if (@$txtt[$j]) {
345                     foreach ($txtt[$j] as $t) {
346                         $alto1 -= $estilo['alto_linea'];
347
348                         //Ubico el texto segun su alineacion
349                         $init = $this->_obtenerAlineacionTexto($i, $j, $t, $attr2,
350                                 $estilo);
351                         
352                         $this->_marco->addText($init, $alto1 + 2,
353                                 $t, $estilo, null, $orientacion);
354                     }
355                 }
356                 if (@$estilo['colspan']) {
357                     $j += $estilo['colspan']-1;
358                 }
359
360             }
361         }
362         $this->_marco->espacioDisponible = $alto;
363     }
364 }
365 ?>