]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/PDF/Tabla.php
Modificaciones a los pdf
[mecon/meconlib.git] / lib / MECON / PDF / Tabla.php
index 37ecb7ddbebfa730a882efe256d3573b668ccfc0..d0dc4b26e69b1d4478979e71602f9e4bfa647614 100644 (file)
@@ -24,32 +24,59 @@ Autor:  Martin Marrese <mmarre@mecon.gov.ar>
 $Id$
 -----------------------------------------------------------------------------*/
 
 $Id$
 -----------------------------------------------------------------------------*/
 
-require_once 'MECON/PDF/Marco.php';
+require_once 'MECON/PDF/Contenido.php';
 
 /**
  * Libreria que permite agregar una tabla a un pdf.
  */
 
 /**
  * Libreria que permite agregar una tabla a un pdf.
  */
-class MECON_PDF_Tabla extends MECON_PDF_Marco {
-
+class MECON_PDF_Tabla extends MECON_PDF_Contenido {
+    
+    /**
+     * Configuracion
+     * @var array $config
+     * @access protected
+     */
+    var $_config;
+    
+    /**
+     * Objeto MECON_HTML_Tabla.
+     * @var &Object $tabla MECON_HTML_Tabla
+     * @access protected
+     */
+    var $_tabla;
+    
+    /**
+     * Objeto MECON_PDF_Marco
+     * @var &Object $marco
+     * @access protected
+     */
+    var $_marco;
+    
+    /**
+     * Class Constructor
+     *
+     * @param &Object $TABLA MECON_HTML_Tabla
+     *
+     * @return void
+     * @access public
+     */
+    function MECON_PDF_Tabla($TABLA) {
+        $this->_tabla = $TABLA;
+        $this->_config = include 'MECON/PDF/Tabla/medidas.php';
+    }
+    
     /**
     /**
-     * Funcion que envia el archivo a pantalla (para que el usuario haga un
-     * download)
+     * Funcion que agrega el contenido de la tabla que se este utilizando al
+     * PDF.
+     *
+     * @param &Object $MARCO MECON_PDF_Marco
      *
      *
-     * @return string
+     * @return void
      * @access public
      */
      * @access public
      */
-    function display() {
+    function toPDF(&$MARCO) {
+        $this->_marco =& $MARCO;
         $this->_agregarContenido();
         $this->_agregarContenido();
-        
-        //Agrego los encabezados
-        $t = true;
-        foreach ($this->_pdf->getPages() as $page) {
-            $this->_pdf->_pagina_actual = $page;
-            $this->buildPage($t, $t);
-            $t = false;
-        }
-        
-        $this->_pdf->display();
     }
 
     /**
     }
 
     /**
@@ -67,13 +94,13 @@ class MECON_PDF_Tabla extends MECON_PDF_Marco {
      */
     function _obtenerAlineacionTexto($row, $col, $texto, $attr, $estilo) {
         
      */
     function _obtenerAlineacionTexto($row, $col, $texto, $attr, $estilo) {
         
-        $at = $this->getCellAttributes($row, $col);
+        $at = $this->_tabla->getCellAttributes($row, $col);
         if (@$at['align'] == 'center') {
         if (@$at['align'] == 'center') {
-            $tam = $this->_pdf->strlen($texto, $estilo);
+            $tam = $this->_marco->strlen($texto, $estilo);
             $init = $attr[$col] + ($attr[$col+1] - $attr[$col] - $tam) / 2;
         }
         elseif (@$at['align'] == 'right') {
             $init = $attr[$col] + ($attr[$col+1] - $attr[$col] - $tam) / 2;
         }
         elseif (@$at['align'] == 'right') {
-            $tam = $this->_pdf->strlen($texto, $estilo);
+            $tam = $this->_marco->strlen($texto, $estilo);
             $init = $attr[$col+1] - $tam + 1;
         }
         else {
             $init = $attr[$col+1] - $tam + 1;
         }
         else {
@@ -92,13 +119,25 @@ class MECON_PDF_Tabla extends MECON_PDF_Marco {
      * @access protected
      */
     function _obtenerEstiloCelda($row, $col) {
      * @access protected
      */
     function _obtenerEstiloCelda($row, $col) {
-        $clase = $this->getCellAttributes($row, $col);
-        if (@$clase['cabecera'] || @$clase['oscura']) {
+        $clase = $this->_tabla->getCellAttributes($row, $col);
+        if (@$clase['cabecera']) {
             $estilo = $this->_config['celda_cabecera'];
         }
             $estilo = $this->_config['celda_cabecera'];
         }
-        elseif (@$clase['titulo'] || @$clase['clara']) {
+        elseif (@$clase['titulo']) {
             $estilo = $this->_config['celda_titulo'];
         }
             $estilo = $this->_config['celda_titulo'];
         }
+        elseif (@$clase['oscura']) {
+            $tmp = $this->_config['celda_comun'];
+            $tmp['fillcolor'] = $this->_config['celda_cabecera']['fillcolor'];
+            $tmp['fill'] = $this->_config['celda_cabecera']['fill'];
+            $estilo = $tmp;
+        }
+        elseif (@$clase['clara']) {
+            $tmp = $this->_config['celda_comun'];
+            $tmp['fillcolor'] = $this->_config['celda_titulo']['fillcolor'];
+            $tmp['fill'] = $this->_config['celda_titulo']['fill'];
+            $estilo = $tmp;
+        }
         else {
             $estilo = $this->_config['celda_comun'];
         }
         else {
             $estilo = $this->_config['celda_comun'];
         }
@@ -112,9 +151,9 @@ class MECON_PDF_Tabla extends MECON_PDF_Marco {
      * @access protected
      */
     function _obtenerAnchoColumnas() {
      * @access protected
      */
     function _obtenerAnchoColumnas() {
-        $ancho_pagina = $this->_pdf->getWidth($this->_orientacion);
-        for ($i=0; $i<$this->getColCount(); $i++ ) {
-            $tmp = $this->getCellAttributes(0,$i);
+        $ancho_pagina = $this->_marco->getWidth($this->_marco->orientacion);
+        for ($i=0; $i<$this->_tabla->getColCount(); $i++ ) {
+            $tmp = $this->_tabla->getCellAttributes(0,$i);
             if (is_null(@$tmp['width'])) {
                 die ('Todas las columnas deben tener asignado un ancho.');                
             }
             if (is_null(@$tmp['width'])) {
                 die ('Todas las columnas deben tener asignado un ancho.');                
             }
@@ -137,37 +176,42 @@ class MECON_PDF_Tabla extends MECON_PDF_Marco {
      * @access protected
      */
     function _agregarContenido() {
      * @access protected
      */
     function _agregarContenido() {
-        $this->_pdf->newPage($this->_tamanio);               
-        $alto = $this->_getAvailableSpace($this->_pdf->numPage());
+        $alto = $this->_marco->espacioDisponible;
+        if ($alto <= 0 ) {
+            $this->_marco->newPage($this->_marco->tamanio);               
+            $alto = $this->_marco->espacioDisponible;
+        }
+
         $attr2 = $this->_obtenerAnchoColumnas();
         $attr2 = $this->_obtenerAnchoColumnas();
-        for ($i = 0; $i < $this->getRowCount(); $i++) {
+        for ($i = 0; $i < $this->_tabla->getRowCount(); $i++) {
             $max = 0;
             $max = 0;
-            for ($j = 0; $j < $this->getColCount(); $j++) {
+            for ($j = 0; $j < $this->_tabla->getColCount(); $j++) {
                 $estilo = $this->_obtenerEstiloCelda($i, $j);
                 $estilo = $this->_obtenerEstiloCelda($i, $j);
-                $txt = $this->_pdf->wordWrap($this->getCellContents($i,$j),
+                $txt = $this->_marco->wordWrap($this->_tabla->getCellContents($i,$j),
                         $attr2[$j+1] - $attr2[$j], $estilo);
                 $txtt[$j] = $txt; //Esto es para no hacer el wordWrap siempre
                 $max = max($estilo['alto_linea'] * count($txt), $max);
                 
                 $rep = array ();
                         $attr2[$j+1] - $attr2[$j], $estilo);
                 $txtt[$j] = $txt; //Esto es para no hacer el wordWrap siempre
                 $max = max($estilo['alto_linea'] * count($txt), $max);
                 
                 $rep = array ();
-                $rep = $this->getCellAttributes($i, $j);
+                $rep = $this->_tabla->getCellAttributes($i, $j);
                 if (@$rep['cabecera'] || @$rep['titulo']) {
                     $repetir[$i][$j] = $txt;
                     $repetir[$i]['max'] = $max;
                 }
             }
             
                 if (@$rep['cabecera'] || @$rep['titulo']) {
                     $repetir[$i][$j] = $txt;
                     $repetir[$i]['max'] = $max;
                 }
             }
             
-            if ($alto < 0) {
-                $this->_pdf->newPage($this->_tamanio);
-                $alto = $this->_getAvailableSpace($this->_pdf->numPage());
+            if ($alto <= 0) 
+            {
+                $this->_marco->newPage($this->_marco->tamanio);
+                $alto = $this->_marco->espacioDisponible;
                 
                 foreach ($repetir as $ii => $value) {
                     $alto -= $repetir[$ii]['max'];
                 
                 foreach ($repetir as $ii => $value) {
                     $alto -= $repetir[$ii]['max'];
-                    for ($jj = 0; $jj < $this->getColCount(); $jj++) {
+                    for ($jj = 0; $jj < $this->_tabla->getColCount(); $jj++) {
                         $estilo = $this->_obtenerEstiloCelda($ii, $jj);
                         $estilo = $this->_obtenerEstiloCelda($ii, $jj);
-                        $this->_pdf->addRectangle($attr2[$jj], $alto,
+                        $this->_marco->addRectangle($attr2[$jj], $alto,
                                 $attr2[$jj+1],  $alto+$repetir[$ii]['max'],
                                 $attr2[$jj+1],  $alto+$repetir[$ii]['max'],
-                                @$estilo['fill'], null, $this->_orientacion);
+                                @$estilo['fill'], null, $this->_marco->orientacion);
                         
                         $alto1 = $alto + $repetir[$ii]['max'];
                         foreach ($repetir[$ii][$jj] as $t) {
                         
                         $alto1 = $alto + $repetir[$ii]['max'];
                         foreach ($repetir[$ii][$jj] as $t) {
@@ -177,8 +221,8 @@ class MECON_PDF_Tabla extends MECON_PDF_Marco {
                             $init = $this->_obtenerAlineacionTexto($ii, $jj, $t, $attr2,
                                     $estilo);
                             
                             $init = $this->_obtenerAlineacionTexto($ii, $jj, $t, $attr2,
                                     $estilo);
                             
-                            $this->_pdf->addText($init, $alto1 + 2,
-                                    $t, $estilo, null, $this->_orientacion);
+                            $this->_marco->addText($init, $alto1 + 2,
+                                    $t, $estilo, null, $this->_marco->orientacion);
                         }
                     }
                 }
                         }
                     }
                 }
@@ -186,27 +230,30 @@ class MECON_PDF_Tabla extends MECON_PDF_Marco {
             }
             
             $alto -= $max;
             }
             
             $alto -= $max;
-            for ($j = 0; $j < $this->getColCount(); $j++) {
+            for ($j = 0; $j < $this->_tabla->getColCount(); $j++) {
 
                 $estilo = $this->_obtenerEstiloCelda($i, $j);
                 
 
                 $estilo = $this->_obtenerEstiloCelda($i, $j);
                 
-                $this->_pdf->addRectangle($attr2[$j], $alto,
+                $this->_marco->addRectangle($attr2[$j], $alto,
                         $attr2[$j+1], $alto+$max, @$estilo['fill'], null,
                         $attr2[$j+1], $alto+$max, @$estilo['fill'], null,
-                        $this->_orientacion);
+                        $this->_marco->orientacion);
                 
                 $alto1 = $alto + $max;
                 
                 $alto1 = $alto + $max;
-                foreach ($txtt[$j] as $t) {
-                    $alto1 -= $estilo['alto_linea'];
+                if (@$txtt[$j]) {
+                    foreach ($txtt[$j] as $t) {
+                        $alto1 -= $estilo['alto_linea'];
 
 
-                    //Ubico el texto segun su alineacion
-                    $init = $this->_obtenerAlineacionTexto($i, $j, $t, $attr2,
-                            $estilo);
-                    
-                    $this->_pdf->addText($init, $alto1 + 2,
-                            $t, $estilo, null, $this->_orientacion);
+                        //Ubico el texto segun su alineacion
+                        $init = $this->_obtenerAlineacionTexto($i, $j, $t, $attr2,
+                                $estilo);
+                        
+                        $this->_marco->addText($init, $alto1 + 2,
+                                $t, $estilo, null, $this->_marco->orientacion);
+                    }
                 }
             }
         }
                 }
             }
         }
+        $this->_marco->espacioDisponible = $alto;
     }
 }
 ?>
\ No newline at end of file
     }
 }
 ?>
\ No newline at end of file