From: Leandro Lucarella Date: Tue, 1 Jul 2003 19:25:05 +0000 (+0000) Subject: Se agrega un nombre a la imagen animada. X-Git-Tag: svn_import~425 X-Git-Url: https://git.llucax.com/mecon/meconlib.git/commitdiff_plain/b6a1253fa3a2d9eead5e11fc8eb80ac1659590a3?ds=inline Se agrega un nombre a la imagen animada. --- diff --git a/doc/Marco/uml/Marco.xmi b/doc/Marco/uml/Marco.xmi index db7b239..d202ed8 100644 --- a/doc/Marco/uml/Marco.xmi +++ b/doc/Marco/uml/Marco.xmi @@ -9,7 +9,7 @@ - + @@ -138,6 +138,7 @@ Devuelve 1 si pertenece a la seccion, en caso contrario 0." name="verifSeccionSe + @@ -154,6 +155,7 @@ x2c:get set" name="seleccionada" static="0" scope="202" /> x2c:get set" name="habilitada" static="0" scope="202" /> + @@ -205,7 +207,7 @@ x2c:include: HTML/Page.php" name="HTML_Page" static="0" scope="200" /> - + @@ -250,7 +252,7 @@ x2c:include: HTML/Page.php" name="HTML_Page" static="0" scope="200" /> - + @@ -286,7 +288,7 @@ x2c:include: HTML/Page.php" name="HTML_Page" static="0" scope="200" /> - + @@ -363,6 +365,7 @@ x2c:include: HTML/Page.php" name="HTML_Page" static="0" scope="200" /> + diff --git a/lib/MECON/Marco/ImagenAnimada.php b/lib/MECON/Marco/ImagenAnimada.php index 6166045..c9bae7d 100644 --- a/lib/MECON/Marco/ImagenAnimada.php +++ b/lib/MECON/Marco/ImagenAnimada.php @@ -81,6 +81,12 @@ class ImagenAnimada { */ var $_link = ''; + /** + * @var string $nombre + * @access protected + */ + var $_nombre; + /** * Gets Seleccionada. * @@ -150,6 +156,29 @@ class ImagenAnimada { $this->_link = $link; } + /** + * Gets Nombre. + * + * @return string + * @access public + */ + function getNombre() + { + return $this->_nombre; + } + /** + * Sets Nombre. + * + * @param string $nombre Nombre. + * + * @return void + * @access public + */ + function setNombre($nombre) + { + $this->_nombre = $nombre; + } + // ~X2C // +X2C Operation 70 @@ -160,11 +189,12 @@ class ImagenAnimada { * @param string $imagenMouseOn Imagen alterna con el mouse por arriba * @param string $imagenSelect Imagen alterna cuando esta seleccionada la seccion * @param string $directorio Directorio en donde se encuentran las imagenes + * @param string $nombre Nombre de la imagen animada. * * @return void * @access public */ - function ImagenAnimada($imagenComun, $imagenMouseOn = '', $imagenSelect = '', $directorio = '')// ~X2C + function ImagenAnimada($imagenComun, $imagenMouseOn = '', $imagenSelect = '', $directorio = '', $nombre = '')// ~X2C { if ($imagenComun !== '') { $this->_imgComun = $this->_calcularImagen($imagenComun, $directorio); @@ -181,6 +211,7 @@ class ImagenAnimada { $this->_imgSelect = $this->_calcularImagen($imagenComun, $directorio, '_f3'); } } + $this->_nombre = $nombre; } // -X2C @@ -241,4 +272,4 @@ class ImagenAnimada { } // -X2C Class :ImagenAnimada -?> \ No newline at end of file +?>