]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/PDF/Tabla.php
Acomode la tabla para que tenga igual funcionamiento que el texto
[mecon/meconlib.git] / lib / MECON / PDF / Tabla.php
index bbe535c5a252ec74c01c7b144dd4d6c3a719db15..414b0192695f9a93aef1f3f3a2b07ddc6349a81e 100644 (file)
@@ -51,17 +51,27 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
      * @access protected
      */
     var $_marco;
+
+    /**
+     * Orientacion de las nuevas paginas
+     * @var string $orientacion
+     * @access protected
+     */
+    var $_orientacion;
     
     /**
      * Class Constructor
      *
      * @param &Object $TABLA MECON_HTML_Tabla
+     * @param string $orientacion Orientacion que deben tener las nuevas paginas
+     * que genere la tabla.
      *
      * @return void
      * @access public
      */
-    function MECON_PDF_Tabla(&$TABLA) {
-        $this->_tabla =& $TABLA;
+    function MECON_PDF_Tabla($TABLA, $orientacion = null) {
+        $this->_tabla = $TABLA;
+        $this->_orientacion = $orientacion;
         $this->_config = include 'MECON/PDF/Tabla/medidas.php';
     }
     
@@ -120,12 +130,24 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
      */
     function _obtenerEstiloCelda($row, $col) {
         $clase = $this->_tabla->getCellAttributes($row, $col);
-        if (@$clase['cabecera'] || @$clase['oscura']) {
+        if (@$clase['cabecera']) {
             $estilo = $this->_config['celda_cabecera'];
         }
-        elseif (@$clase['titulo'] || @$clase['clara']) {
+        elseif (@$clase['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'];
         }
@@ -139,7 +161,8 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
      * @access protected
      */
     function _obtenerAnchoColumnas() {
-        $ancho_pagina = $this->_marco->getWidth($this->_marco->orientacion);
+        $ancho_pagina = $this->_marco->getWidth($this->_marco->refPage(),
+                $this->_marco->getOrientation());
         for ($i=0; $i<$this->_tabla->getColCount(); $i++ ) {
             $tmp = $this->_tabla->getCellAttributes(0,$i);
             if (is_null(@$tmp['width'])) {
@@ -156,6 +179,17 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
         $attr2[$i] = $ancho_pagina;
         return $attr2;
     }
+    /**
+     * Funcion que se encarga de crear las nuevas paginas.
+     *
+     * @return void
+     * @access protected
+     */
+    function _newPage() {
+        $tmp = ($this->_orientacion) ? $this->_orientacion :
+            $this->_marco->getOrientation();
+        $this->_marco->newPage($this->_marco->tamanio, $tmp);               
+    }
 
     /**
      * Funcion que agrega las filas y columnas a la pagina.                  
@@ -165,10 +199,14 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
      */
     function _agregarContenido() {
         $alto = $this->_marco->espacioDisponible;
-        if ($alto <= 0 ) {
-            $this->_marco->newPage($this->_marco->tamanio);               
+        $orientacion = $this->_marco->getOrientation();
+        if ($alto <= 0 || ($this->_orientacion && $this->_orientacion !=
+                    $orientacion) ) {
+            $this->_newPage();               
+            $orientacion = $this->_marco->getOrientation();
+            $alto = $this->_marco->espacioDisponible;
         }
-        //\@TODO Aca antes de crear una nueva pagina utilizar la que ya existe
+
         $attr2 = $this->_obtenerAnchoColumnas();
         for ($i = 0; $i < $this->_tabla->getRowCount(); $i++) {
             $max = 0;
@@ -187,8 +225,9 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
                 }
             }
             
-            if ($alto <= 0) {
-                $this->_marco->newPage($this->_marco->tamanio);
+            if ($alto <= 0) 
+            {
+                $this->_newPage();               
                 $alto = $this->_marco->espacioDisponible;
                 
                 foreach ($repetir as $ii => $value) {
@@ -197,7 +236,7 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
                         $estilo = $this->_obtenerEstiloCelda($ii, $jj);
                         $this->_marco->addRectangle($attr2[$jj], $alto,
                                 $attr2[$jj+1],  $alto+$repetir[$ii]['max'],
-                                @$estilo['fill'], null, $this->_marco->orientacion);
+                                @$estilo['fill'], null, $orientacion);
                         
                         $alto1 = $alto + $repetir[$ii]['max'];
                         foreach ($repetir[$ii][$jj] as $t) {
@@ -208,7 +247,7 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
                                     $estilo);
                             
                             $this->_marco->addText($init, $alto1 + 2,
-                                    $t, $estilo, null, $this->_marco->orientacion);
+                                    $t, $estilo, null, $orientacion);
                         }
                     }
                 }
@@ -222,18 +261,20 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
                 
                 $this->_marco->addRectangle($attr2[$j], $alto,
                         $attr2[$j+1], $alto+$max, @$estilo['fill'], null,
-                        $this->_marco->orientacion);
+                        $orientacion);
                 
                 $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->_marco->addText($init, $alto1 + 2,
-                            $t, $estilo, null, $this->_marco->orientacion);
+                        //Ubico el texto segun su alineacion
+                        $init = $this->_obtenerAlineacionTexto($i, $j, $t, $attr2,
+                                $estilo);
+                        
+                        $this->_marco->addText($init, $alto1 + 2,
+                                $t, $estilo, null, $orientacion);
+                    }
                 }
             }
         }