1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
3 Ministerio de EconomÃa
5 -------------------------------------------------------------------------------
6 This file is part of meconlib.
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)
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.
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 -------------------------------------------------------------------------------
25 -----------------------------------------------------------------------------*/
27 require_once 'MECON/PDF.php';
28 require_once 'MECON/HTML/Tabla.php';
31 * Libreria que crea un marco estandar para los pdfs.
33 class MECON_PDF_Marco extends MECON_HTML_Tabla {
37 * @var Object MECON_PDF
43 * Archivo de configuracion de medidas
47 var $_config = array ();
50 * Tamanio de las paginas.
51 * @var string $tamanio
57 * Orientacion (portrait o landscape).
58 * @var sting $orientacion
61 var $_orientacion = "portrait";
68 var $logo = '/home/mmarrese/public_html/meconlib/www/images/pdf_logo.jpg';
69 //@FIXME Ponener el path del logo por defecto
73 * @var bool $paginador
76 var $paginador = true;
79 * Fecha. Si es true se pone la fecha del servidor, si es false no se pone
80 * nada, en caso contrario se pone lo que haya en esta variable.
88 * @var string $seccion
95 * @var string $subseccion
98 var $subseccion = 'Ministerio de Economia';
102 * @var string $string
109 * @var string $subtitulo
112 var $subtitulo = true;
117 * @param string $tam Tamanio de las hojas.
118 * @param string $ori Orientacion de las hojaz (portrait o landscape).
123 function MECON_PDF_Marco($tam = "a4", $ori = "portrait") {
124 $this->_pdf =& new MECON_PDF;
125 $this->_tamanio = $tam;
126 $this->_orientacion = $ori;
127 $this->_config = include 'MECON/PDF/Marco/medidas.php' ;
128 $this->_config = $this->_config[$tam][$ori];
129 $this->MECON_HTML_Tabla();
133 * Funcion que agrega el logo al encabezado de una pagina.
138 function _addLogo() {
139 $conf = $this->_config['encabezado'];
141 $this->_pdf->addImage($this->logo, $conf['logo']['X'],
142 $conf['logo']['Y'], null, 'jpg');
147 * Funcion que agrega la seccion al encabezado de una pagina.
152 function _addSeccion() {
153 $conf = $this->_config['encabezado'];
154 if ($this->seccion) {
155 $tmp = $this->_pdf->strlen($this->seccion, $conf['seccion']);
156 $tmp2 = $conf['linea2']['Xi'] - $conf['linea1']['Xi'];
158 $this->seccion = $this->_pdf->wrapLine ($this->seccion, $tmp2,
160 $tmp = $this->_pdf->strlen($this->seccion, $conf['seccion']);
162 $init = $conf['linea1']['Xi'] + ( $conf['linea2']['Xi']
163 - $conf['linea1']['Xi'] - $tmp) / 2;
164 $this->_pdf->addText($init, $conf['seccion']['Y'], $this->seccion, $conf['seccion']);
169 * Funcion que agrega la subseccion al encabezado de una pagina.
174 function _addSubSeccion() {
175 $conf = $this->_config['encabezado'];
176 if ($this->subseccion) {
177 $tmp = $this->_pdf->strlen($this->subseccion, $conf['subseccion']);
178 $tmp2 = $conf['linea2']['Xi'] - $conf['linea1']['Xi'];
180 $this->subseccion = $this->_pdf->wrapLine ($this->subseccion, $tmp2,
181 $conf['subseccion']);
182 $tmp = $this->_pdf->strlen($this->subseccion, $conf['subseccion']);
184 $init = $conf['linea1']['Xi'] + ( $conf['linea2']['Xi']
185 - $conf['linea1']['Xi'] - $tmp) / 2;
186 $this->_pdf->addText($init, $conf['subseccion']['Y'], $this->subseccion,
187 $conf['subseccion']);
192 * Funcion que agrega el paginador al encabezado de una pagina.
197 function _addPager() {
198 $conf = $this->_config['encabezado'];
199 if ($this->paginador) {
200 $txt = 'Pagina '.$this->_pdf->numPage().' de '.
201 $this->_pdf->countPages();
202 $tmp = $this->_pdf->strlen($txt, $conf['paginador']);
203 $init = $conf['linea2']['Xi'] + ( $conf['Xf']
204 - $conf['linea2']['Xi'] - $tmp) / 2;
205 $this->_pdf->addText($init, $conf['paginador']['Y'], $txt,
211 * Funcion que permite agregar la fecha al encabezado de una pagina.
216 function _addDate() {
217 $conf = $this->_config['encabezado'];
219 if ($this->fecha === true) {
220 $this->fecha = date("d/m/Y");
222 $tmp = $this->_pdf->strlen($this->fecha, $conf['fecha']);
223 $init = $conf['linea2']['Xi'] + ( $conf['Xf']
224 - $conf['linea2']['Xi'] - $tmp) / 2;
225 $this->_pdf->addText($init, $conf['fecha']['Y'], $this->fecha,
231 * Funcion que arma el recuadro del encabezado de las paginas.
236 function _addHeaderRectangle() {
237 $conf = $this->_config['encabezado'];
239 $this->_pdf->addRectangle ($conf['Yi'], $conf['Xi'], $conf['Yf'],
241 $this->_pdf->addLine($conf['linea1']['Xi'], $conf['linea1']['Yi'],
242 $conf['linea1']['Xf'], $conf['linea1']['Yf']);
243 $this->_pdf->addLine($conf['linea2']['Xi'], $conf['linea2']['Yi'],
244 $conf['linea2']['Xf'], $conf['linea2']['Yf']);
248 * Funcion que permite agregar el titulo a una pagina.
253 function _addTitle() {
254 $conf = $this->_config['titulo'];
256 $tmp = $this->_pdf->strlen($this->titulo, $conf);
257 $tmp2 = $this->_config['Xf'] + abs($this->_config['Xi']);
259 $this->titulo = $this->_pdf->wrapLine ($this->titulo, $tmp2,
261 $tmp = $this->_pdf->strlen($this->titulo, $conf);
263 $init = $this->_config['Xi'] + ($tmp2 - $tmp) / 2;
264 $this->_pdf->addText($init, $conf['Y'], $this->titulo,
270 * Funcion que permite agregar el subtitulo a una pagina.
275 function _addSubTitle() {
276 $conf = $this->_config['subtitulo'];
277 if ($this->subtitulo) {
278 $tmp = $this->_pdf->strlen($this->subtitulo, $conf);
279 $tmp2 = $this->_config['Xf'] + abs($this->_config['Xi']);
281 $this->subtitulo = $this->_pdf->wrapLine ($this->subtitulo, $tmp2,
283 $tmp = $this->_pdf->strlen($this->subtitulo, $conf);
285 $init = $this->_config['Xi'] + ($tmp2 - $tmp) / 2;
286 $this->_pdf->addText($init, $conf['Y'], $this->subtitulo,
292 * Funcion que agrega la informacion del marco a la pagina actual.
294 * @param bool $title Muetra o no el titulo.
295 * @param bool $subtitle Muestra o no el subtitulo.
300 function buildPage($title = true, $subtitle = true) {
302 $this->_addSeccion();
303 $this->_addSubseccion();
306 $this->_addHeaderRectangle();
311 $this->_addSubTitle();
313 // $this->_pdf->addLine($this->_config['Xi'], $this->_config['Yi'],
314 // $this->_config['Xf'], $this->_config['Yi']);
318 * Funcion que devuelve el espacio dispobible en una pagina.
320 * @param int $pagina Numero de pagina.
325 function _getAvailableSpace($pagina) {
327 return $this->_config['contenido']['Y'];
330 return $this->_config['titulo']['Y'];