]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MECON/PDF/Tabla.php
Acomode la tabla para que tenga igual funcionamiento que el texto
[mecon/meconlib.git] / lib / MECON / PDF / Tabla.php
1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
3                              Ministerio de Economía
4                                     meconlib
5 -------------------------------------------------------------------------------
6 This file is part of meconlib.
7
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)
11 any later version.
12
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.
16  
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 -------------------------------------------------------------------------------
24 $Id$
25 -----------------------------------------------------------------------------*/
26
27 require_once 'MECON/PDF/Contenido.php';
28
29 /**
30  * Libreria que permite agregar una tabla a un pdf.
31  */
32 class MECON_PDF_Tabla extends MECON_PDF_Contenido {
33     
34     /**
35      * Configuracion
36      * @var array $config
37      * @access protected
38      */
39     var $_config;
40     
41     /**
42      * Objeto MECON_HTML_Tabla.
43      * @var &Object $tabla MECON_HTML_Tabla
44      * @access protected
45      */
46     var $_tabla;
47     
48     /**
49      * Objeto MECON_PDF_Marco
50      * @var &Object $marco
51      * @access protected
52      */
53     var $_marco;
54
55     /**
56      * Orientacion de las nuevas paginas
57      * @var string $orientacion
58      * @access protected
59      */
60     var $_orientacion;
61     
62     /**
63      * Class Constructor
64      *
65      * @param &Object $TABLA MECON_HTML_Tabla
66      * @param string $orientacion Orientacion que deben tener las nuevas paginas
67      * que genere la tabla.
68      *
69      * @return void
70      * @access public
71      */
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';
76     }
77     
78     /**
79      * Funcion que agrega el contenido de la tabla que se este utilizando al
80      * PDF.
81      *
82      * @param &Object $MARCO MECON_PDF_Marco
83      *
84      * @return void
85      * @access public
86      */
87     function toPDF(&$MARCO) {
88         $this->_marco =& $MARCO;
89         $this->_agregarContenido();
90     }
91
92     /**
93      * Funcion que devuelve la posicion X en donde se debe escribir un texto
94      * segun su ubicacion en la celda
95      *
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
101      *
102      * @return int
103      * @access protected
104      */
105     function _obtenerAlineacionTexto($row, $col, $texto, $attr, $estilo) {
106         
107         $at = $this->_tabla->getCellAttributes($row, $col);
108         if (@$at['align'] == 'center') {
109             $tam = $this->_marco->strlen($texto, $estilo);
110             $init = $attr[$col] + ($attr[$col+1] - $attr[$col] - $tam) / 2;
111         }
112         elseif (@$at['align'] == 'right') {
113             $tam = $this->_marco->strlen($texto, $estilo);
114             $init = $attr[$col+1] - $tam + 1;
115         }
116         else {
117             $init = $attr[$col];
118         }
119         return $init + 1;
120     }
121
122     /**
123      * Funcion que devuelve el estilo de la celda segun la configuracion.  
124      *
125      * @param int $row Indicador de la fila
126      * @param int $col Indicador de la columna
127      *
128      * @return array
129      * @access protected
130      */
131     function _obtenerEstiloCelda($row, $col) {
132         $clase = $this->_tabla->getCellAttributes($row, $col);
133         if (@$clase['cabecera']) {
134             $estilo = $this->_config['celda_cabecera'];
135         }
136         elseif (@$clase['titulo']) {
137             $estilo = $this->_config['celda_titulo'];
138         }
139         elseif (@$clase['oscura']) {
140             $tmp = $this->_config['celda_comun'];
141             $tmp['fillcolor'] = $this->_config['celda_cabecera']['fillcolor'];
142             $tmp['fill'] = $this->_config['celda_cabecera']['fill'];
143             $estilo = $tmp;
144         }
145         elseif (@$clase['clara']) {
146             $tmp = $this->_config['celda_comun'];
147             $tmp['fillcolor'] = $this->_config['celda_titulo']['fillcolor'];
148             $tmp['fill'] = $this->_config['celda_titulo']['fill'];
149             $estilo = $tmp;
150         }
151         else {
152             $estilo = $this->_config['celda_comun'];
153         }
154         return $estilo;
155     }
156
157     /**
158      * Funcion que calcula el ancho de las columnas de la tabla.  
159      *
160      * @return array
161      * @access protected
162      */
163     function _obtenerAnchoColumnas() {
164         $ancho_pagina = $this->_marco->getWidth($this->_marco->refPage(),
165                 $this->_marco->getOrientation());
166         for ($i=0; $i<$this->_tabla->getColCount(); $i++ ) {
167             $tmp = $this->_tabla->getCellAttributes(0,$i);
168             if (is_null(@$tmp['width'])) {
169                 die ('Todas las columnas deben tener asignado un ancho.');                
170             }
171             $attr[$i] = intval($tmp['width']);
172         }
173         $tmp = array_sum($attr);
174         $attr2[0] = 0;
175         for ($i=1; $i<count($attr); $i++) {
176             $attr2[$i] = intval(($ancho_pagina * $attr[$i-1] / $tmp) +
177                     $attr2[$i-1]);
178         }
179         $attr2[$i] = $ancho_pagina;
180         return $attr2;
181     }
182     /**
183      * Funcion que se encarga de crear las nuevas paginas.
184      *
185      * @return void
186      * @access protected
187      */
188     function _newPage() {
189         $tmp = ($this->_orientacion) ? $this->_orientacion :
190             $this->_marco->getOrientation();
191         $this->_marco->newPage($this->_marco->tamanio, $tmp);               
192     }
193
194     /**
195      * Funcion que agrega las filas y columnas a la pagina.                  
196      *
197      * @return void
198      * @access protected
199      */
200     function _agregarContenido() {
201         $alto = $this->_marco->espacioDisponible;
202         $orientacion = $this->_marco->getOrientation();
203         if ($alto <= 0 || ($this->_orientacion && $this->_orientacion !=
204                     $orientacion) ) {
205             $this->_newPage();               
206             $orientacion = $this->_marco->getOrientation();
207             $alto = $this->_marco->espacioDisponible;
208         }
209
210         $attr2 = $this->_obtenerAnchoColumnas();
211         for ($i = 0; $i < $this->_tabla->getRowCount(); $i++) {
212             $max = 0;
213             for ($j = 0; $j < $this->_tabla->getColCount(); $j++) {
214                 $estilo = $this->_obtenerEstiloCelda($i, $j);
215                 $txt = $this->_marco->wordWrap($this->_tabla->getCellContents($i,$j),
216                         $attr2[$j+1] - $attr2[$j], $estilo);
217                 $txtt[$j] = $txt; //Esto es para no hacer el wordWrap siempre
218                 $max = max($estilo['alto_linea'] * count($txt), $max);
219                 
220                 $rep = array ();
221                 $rep = $this->_tabla->getCellAttributes($i, $j);
222                 if (@$rep['cabecera'] || @$rep['titulo']) {
223                     $repetir[$i][$j] = $txt;
224                     $repetir[$i]['max'] = $max;
225                 }
226             }
227             
228             if ($alto <= 0) 
229             {
230                 $this->_newPage();               
231                 $alto = $this->_marco->espacioDisponible;
232                 
233                 foreach ($repetir as $ii => $value) {
234                     $alto -= $repetir[$ii]['max'];
235                     for ($jj = 0; $jj < $this->_tabla->getColCount(); $jj++) {
236                         $estilo = $this->_obtenerEstiloCelda($ii, $jj);
237                         $this->_marco->addRectangle($attr2[$jj], $alto,
238                                 $attr2[$jj+1],  $alto+$repetir[$ii]['max'],
239                                 @$estilo['fill'], null, $orientacion);
240                         
241                         $alto1 = $alto + $repetir[$ii]['max'];
242                         foreach ($repetir[$ii][$jj] as $t) {
243                             $alto1 -= $estilo['alto_linea'];
244
245                             //Ubico el texto segun su alineacion
246                             $init = $this->_obtenerAlineacionTexto($ii, $jj, $t, $attr2,
247                                     $estilo);
248                             
249                             $this->_marco->addText($init, $alto1 + 2,
250                                     $t, $estilo, null, $orientacion);
251                         }
252                     }
253                 }
254                 
255             }
256             
257             $alto -= $max;
258             for ($j = 0; $j < $this->_tabla->getColCount(); $j++) {
259
260                 $estilo = $this->_obtenerEstiloCelda($i, $j);
261                 
262                 $this->_marco->addRectangle($attr2[$j], $alto,
263                         $attr2[$j+1], $alto+$max, @$estilo['fill'], null,
264                         $orientacion);
265                 
266                 $alto1 = $alto + $max;
267                 if (@$txtt[$j]) {
268                     foreach ($txtt[$j] as $t) {
269                         $alto1 -= $estilo['alto_linea'];
270
271                         //Ubico el texto segun su alineacion
272                         $init = $this->_obtenerAlineacionTexto($i, $j, $t, $attr2,
273                                 $estilo);
274                         
275                         $this->_marco->addText($init, $alto1 + 2,
276                                 $t, $estilo, null, $orientacion);
277                     }
278                 }
279             }
280         }
281         $this->_marco->espacioDisponible = $alto;
282     }
283 }
284 ?>