X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/409294316ffb829e4fb995ce023b7ca279204771..3e909d4f2f545ea7c74fc3d94ab62e60d7444914:/lib/MECON/PDF/Tabla.php?ds=sidebyside diff --git a/lib/MECON/PDF/Tabla.php b/lib/MECON/PDF/Tabla.php index 876c704..414b019 100644 --- a/lib/MECON/PDF/Tabla.php +++ b/lib/MECON/PDF/Tabla.php @@ -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,8 +199,11 @@ 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; } @@ -190,7 +227,7 @@ class MECON_PDF_Tabla extends MECON_PDF_Contenido { if ($alto <= 0) { - $this->_marco->newPage($this->_marco->tamanio); + $this->_newPage(); $alto = $this->_marco->espacioDisponible; foreach ($repetir as $ii => $value) { @@ -199,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) { @@ -210,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); } } } @@ -224,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); + } } } }