]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/PDF/Tabla.php
Bugs en Marco y Tabla
[mecon/meconlib.git] / lib / MECON / PDF / Tabla.php
index bbe535c5a252ec74c01c7b144dd4d6c3a719db15..3530180dd9eee214e276f0e29eb4142348e1948c 100644 (file)
@@ -51,17 +51,27 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
      * @access protected
      */
     var $_marco;
      * @access protected
      */
     var $_marco;
+
+    /**
+     * Orientacion de las nuevas paginas
+     * @var string $orientacion
+     * @access protected
+     */
+    var $_orientacion;
     
     /**
      * Class Constructor
      *
      * @param &Object $TABLA MECON_HTML_Tabla
     
     /**
      * 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
      */
      *
      * @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';
     }
     
         $this->_config = include 'MECON/PDF/Tabla/medidas.php';
     }
     
@@ -95,13 +105,21 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
     function _obtenerAlineacionTexto($row, $col, $texto, $attr, $estilo) {
         
         $at = $this->_tabla->getCellAttributes($row, $col);
     function _obtenerAlineacionTexto($row, $col, $texto, $attr, $estilo) {
         
         $at = $this->_tabla->getCellAttributes($row, $col);
+
+        if (@$at['colspan']) {
+            $offset = $at['colspan'];
+        }
+        else {
+            $offset = 1;
+        }
+        
         if (@$at['align'] == 'center') {
             $tam = $this->_marco->strlen($texto, $estilo);
         if (@$at['align'] == 'center') {
             $tam = $this->_marco->strlen($texto, $estilo);
-            $init = $attr[$col] + ($attr[$col+1] - $attr[$col] - $tam) / 2;
+            $init = $attr[$col] + ($attr[$col+$offset] - $attr[$col] - $tam) / 2;
         }
         elseif (@$at['align'] == 'right') {
             $tam = $this->_marco->strlen($texto, $estilo);
         }
         elseif (@$at['align'] == 'right') {
             $tam = $this->_marco->strlen($texto, $estilo);
-            $init = $attr[$col+1] - $tam + 1;
+            $init = $attr[$col+$offset] - $tam + 1;
         }
         else {
             $init = $attr[$col];
         }
         else {
             $init = $attr[$col];
@@ -120,15 +138,30 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
      */
     function _obtenerEstiloCelda($row, $col) {
         $clase = $this->_tabla->getCellAttributes($row, $col);
      */
     function _obtenerEstiloCelda($row, $col) {
         $clase = $this->_tabla->getCellAttributes($row, $col);
-        if (@$clase['cabecera'] || @$clase['oscura']) {
+        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'];
         }
+        if (@$clase['colspan']) {
+            $estilo['colspan'] = $clase['colspan'];
+        }
         return $estilo;
     }
 
         return $estilo;
     }
 
@@ -139,15 +172,21 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
      * @access protected
      */
     function _obtenerAnchoColumnas() {
      * @access protected
      */
     function _obtenerAnchoColumnas() {
-        $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.');                
+        $ancho_pagina = $this->_marco->getWidth($this->_marco->refPage(),
+                $this->_marco->getOrientation());
+        for ($row = 0; $row<$this->_tabla->getRowCount(); $row++) {
+            for ($i=0; $i<$this->_tabla->getColCount(); $i++ ) {
+                $tmp = $this->_tabla->getCellAttributes($row,$i);
+                 if(intval($tmp['width']) != 0)
+                    $attr[$i] = intval($tmp['width']);
+                if(count($attr) == $this->_tabla->getColCount())
+                  break;
             }
             }
-            $attr[$i] = intval($tmp['width']);
+            if(count($attr) == $this->_tabla->getColCount())
+               break;
         }
         $tmp = array_sum($attr);
         }
         $tmp = array_sum($attr);
+        
         $attr2[0] = 0;
         for ($i=1; $i<count($attr); $i++) {
             $attr2[$i] = intval(($ancho_pagina * $attr[$i-1] / $tmp) +
         $attr2[0] = 0;
         for ($i=1; $i<count($attr); $i++) {
             $attr2[$i] = intval(($ancho_pagina * $attr[$i-1] / $tmp) +
@@ -156,6 +195,17 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
         $attr2[$i] = $ancho_pagina;
         return $attr2;
     }
         $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.                  
 
     /**
      * Funcion que agrega las filas y columnas a la pagina.                  
@@ -165,17 +215,35 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
      */
     function _agregarContenido() {
         $alto = $this->_marco->espacioDisponible;
      */
     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;
             for ($j = 0; $j < $this->_tabla->getColCount(); $j++) {
                 $estilo = $this->_obtenerEstiloCelda($i, $j);
         $attr2 = $this->_obtenerAnchoColumnas();
         for ($i = 0; $i < $this->_tabla->getRowCount(); $i++) {
             $max = 0;
             for ($j = 0; $j < $this->_tabla->getColCount(); $j++) {
                 $estilo = $this->_obtenerEstiloCelda($i, $j);
-                $txt = $this->_marco->wordWrap($this->_tabla->getCellContents($i,$j),
-                        $attr2[$j+1] - $attr2[$j], $estilo);
+
+                //Actuo por el colspan
+                if (@$estilo['colspan']) {
+                    if ($estilo['colspan'] >= $this->_tabla->getColCount()) {
+                        $estilo['colspan'] = 
+                            $this->_tabla->getColCount() - $j - 1;
+                    }
+                    $ancho_columna = $attr2[$j+$estilo['colspan']] - 
+                        $attr2[$j];
+                }
+                else {
+                   $ancho_columna = $attr2[$j+1] - $attr2[$j];
+                }
+                $txt = $this->_marco->wordWrap(
+                        @$this->_tabla->getCellContents($i,$j), $ancho_columna, 
+                        $estilo);
+                
                 $txtt[$j] = $txt; //Esto es para no hacer el wordWrap siempre
                 $max = max($estilo['alto_linea'] * count($txt), $max);
                 
                 $txtt[$j] = $txt; //Esto es para no hacer el wordWrap siempre
                 $max = max($estilo['alto_linea'] * count($txt), $max);
                 
@@ -186,18 +254,34 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
                     $repetir[$i]['max'] = $max;
                 }
             }
                     $repetir[$i]['max'] = $max;
                 }
             }
-            
-            if ($alto <= 0) {
-                $this->_marco->newPage($this->_marco->tamanio);
+            if ($alto <= 0) 
+            {
+                $this->_newPage();               
                 $alto = $this->_marco->espacioDisponible;
                 
                 foreach ($repetir as $ii => $value) {
                     $alto -= $repetir[$ii]['max'];
                     for ($jj = 0; $jj < $this->_tabla->getColCount(); $jj++) {
                         $estilo = $this->_obtenerEstiloCelda($ii, $jj);
                 $alto = $this->_marco->espacioDisponible;
                 
                 foreach ($repetir as $ii => $value) {
                     $alto -= $repetir[$ii]['max'];
                     for ($jj = 0; $jj < $this->_tabla->getColCount(); $jj++) {
                         $estilo = $this->_obtenerEstiloCelda($ii, $jj);
-                        $this->_marco->addRectangle($attr2[$jj], $alto,
-                                $attr2[$jj+1],  $alto+$repetir[$ii]['max'],
-                                @$estilo['fill'], null, $this->_marco->orientacion);
+
+                        //Actuo por el colspan
+                        if (@$estilo['colspan']) {
+                            if ($estilo['colspan'] >= $this->_tabla->getColCount()) {
+                                $estilo['colspan'] =
+                                    $this->_tabla->getColCount() - $j - 1;
+                            }
+                            $der = $attr2[$jj+$estilo['colspan']];
+                            $izq = $attr2[$jj];
+                        }
+                        else {
+                           $der = $attr2[$jj+1];
+                           $izq = $attr2[$jj];
+                        }
+
+                        
+                        $this->_marco->addRectangle($izq, $alto, $der, 
+                                $alto+$repetir[$ii]['max'], @$estilo['fill'], 
+                                null, $orientacion);
                         
                         $alto1 = $alto + $repetir[$ii]['max'];
                         foreach ($repetir[$ii][$jj] as $t) {
                         
                         $alto1 = $alto + $repetir[$ii]['max'];
                         foreach ($repetir[$ii][$jj] as $t) {
@@ -208,8 +292,13 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
                                     $estilo);
                             
                             $this->_marco->addText($init, $alto1 + 2,
                                     $estilo);
                             
                             $this->_marco->addText($init, $alto1 + 2,
-                                    $t, $estilo, null, $this->_marco->orientacion);
+                                    $t, $estilo, null, $orientacion);
+                        }
+
+                        if (@$estilo['colspan']) {
+                            $jj++;
                         }
                         }
+                        
                     }
                 }
                 
                     }
                 }
                 
@@ -217,24 +306,43 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido {
             
             $alto -= $max;
             for ($j = 0; $j < $this->_tabla->getColCount(); $j++) {
             
             $alto -= $max;
             for ($j = 0; $j < $this->_tabla->getColCount(); $j++) {
-
+                
                 $estilo = $this->_obtenerEstiloCelda($i, $j);
                 $estilo = $this->_obtenerEstiloCelda($i, $j);
+                        
+                //Actuo por el colspan
+                if (@$estilo['colspan']) {
+                    if ($estilo['colspan'] >= $this->_tabla->getColCount()) {
+                        $estilo['colspan'] = $this->_tabla->getColCount() - 1;
+                    }
+                    $der = $attr2[$j+$estilo['colspan']];
+                    $izq = $attr2[$j];
+                }
+                else {
+                   $der = $attr2[$j+1];
+                   $izq = $attr2[$j];
+                }
+
                 
                 
-                $this->_marco->addRectangle($attr2[$j], $alto,
-                        $attr2[$j+1], $alto+$max, @$estilo['fill'], null,
-                        $this->_marco->orientacion);
+                $this->_marco->addRectangle($izq, $alto, $der, $alto+$max, 
+                        @$estilo['fill'], null, $orientacion);
                 
                 $alto1 = $alto + $max;
                 
                 $alto1 = $alto + $max;
-                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);
+                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, $orientacion);
+                    }
                 }
                 }
+                if (@$estilo['colspan']) {
+                    $j++;
+                }
+
             }
         }
         $this->_marco->espacioDisponible = $alto;
             }
         }
         $this->_marco->espacioDisponible = $alto;