/************************************************************************* * * $RCSfile: XMLImageMapExport.cxx,v $ * * $Revision: 1.1 $ * * last change: $Author: dvo $ $Date: 2001-03-28 10:28:15 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses * * - GNU Lesser General Public License Version 2.1 * - Sun Industry Standards Source License Version 1.1 * * Sun Microsystems Inc., October, 2000 * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2000 by Sun Microsystems, Inc. * 901 San Antonio Road, Palo Alto, CA 94303, USA * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * * * Sun Industry Standards Source License Version 1.1 * ================================================= * The contents of this file are subject to the Sun Industry Standards * Source License Version 1.1 (the "License"); You may not use this file * except in compliance with the License. You may obtain a copy of the * License at http://www.openoffice.org/license.html. * * Software provided under this License is provided on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. * See the License for the specific provisions governing your rights and * obligations concerning the Software. * * The Initial Developer of the Original Code is: Sun Microsystems, Inc. * * Copyright: 2000 by Sun Microsystems, Inc. * * All Rights Reserved. * * Contributor(s): _______________________________________ * * ************************************************************************/ #ifndef _XMLOFF_XMLIMAGEMAPEXPORT_HXX_ #include "XMLImageMapExport.hxx" #endif #ifndef _RTL_USTRING_HXX_ #include #endif #ifndef _TOOLS_DEBUG_HXX #include #endif #ifndef _COM_SUN_STAR_UNO_REFERENCE_H_ #include #endif #ifndef _COM_SUN_STAR_UNO_SEQUENCE_H_ #include #endif #ifndef _COM_SUN_STAR_BEANS_XPROPERTYSET_HPP_ #include #endif #ifndef _COM_SUN_STAR_LANG_XSERVICEINFO_HPP_ #include #endif #ifndef _COM_SUN_STAR_CONTAINER_XINDEXCONTAINER_HPP_ #include #endif #ifndef _COM_SUN_STAR_DOCUMENT_XEVENTSSUPPLIER_HPP #include #endif #ifndef _XMLOFF_XMLEXP_HXX #include "xmlexp.hxx" #endif #ifndef _XMLOFF_XMLNMSPE_HXX #include "xmlnmspe.hxx" #endif #ifndef _XMLOFF_XMLKYWD_HXX #include "xmlkywd.hxx" #endif #ifndef _XMLOFF_XMLEVENTEXPORT_HXX #include "XMLEventExport.hxx" #endif using ::rtl::OUString; using ::com::sun::star::uno::Any; using ::com::sun::star::uno::UNO_QUERY; using ::com::sun::star::uno::Sequence; using ::com::sun::star::uno::Reference; using ::com::sun::star::beans::XPropertySet; using ::com::sun::star::container::XIndexContainer; using ::com::sun::star::document::XEventsSupplier; using ::com::sun::star::lang::XServiceInfo; const sal_Char sAPI_ImageMapRectangleObject[] = "com.sun.star.image.ImageMapRectangleObject"; const sal_Char sAPI_ImageMapCircleObject[] = "com.sun.star.image.ImageMapCircleObject"; const sal_Char sAPI_ImageMapPolygonObject[] = "com.sun.star.image.ImageMapPolygonObject"; const sal_Char sXML_image_map[] = "image-map"; const sal_Char sXML_area_rectangle[] = "area-rectangle"; const sal_Char sXML_area_circle[] = "area-circle"; const sal_Char sXML_area_polygon[] = "area-polygon"; XMLImageMapExport::XMLImageMapExport(SvXMLExport& rExp) : rExport(rExp), bWhiteSpace(sal_True), sBoundary(RTL_CONSTASCII_USTRINGPARAM("Boundary")), sCenter(RTL_CONSTASCII_USTRINGPARAM("Center")), sDescription(RTL_CONSTASCII_USTRINGPARAM("Description")), sImageMap(RTL_CONSTASCII_USTRINGPARAM("ImageMap")), sIsActive(RTL_CONSTASCII_USTRINGPARAM("IsActive")), sName(RTL_CONSTASCII_USTRINGPARAM("Name")), sPolygon(RTL_CONSTASCII_USTRINGPARAM("Polygon")), sRadius(RTL_CONSTASCII_USTRINGPARAM("Radius")), sTarget(RTL_CONSTASCII_USTRINGPARAM("Target")), sURL(RTL_CONSTASCII_USTRINGPARAM("URL")) { } XMLImageMapExport::~XMLImageMapExport() { } void XMLImageMapExport::Export( const Reference & rPropertySet ) { if (rPropertySet->getPropertySetInfo()->hasPropertyByName(sImageMap)) { Any aAny = rPropertySet->getPropertyValue(sImageMap); Reference aContainer; aAny >>= aContainer; Export(aContainer); } // else: no ImageMap property -> nothing to do } void XMLImageMapExport::Export( const Reference & rContainer ) { if (rContainer.is()) { if (rContainer->hasElements()) { // image map container element SvXMLElementExport aImageMapElement( rExport, XML_NAMESPACE_DRAW, sXML_image_map, bWhiteSpace, bWhiteSpace); // iterate over image map elements and call ExportMapEntry(...) // for each sal_Int32 nLength = rContainer->getCount(); for(sal_Int32 i = 0; i < nLength; i++) { Any aAny = rContainer->getByIndex(i); Reference rElement; aAny >>= rElement; DBG_ASSERT(rElement.is(), "Image map element is empty!"); if (rElement.is()) { ExportMapEntry(rElement); } } } // else: container is empty -> nothing to do } // else: no container -> nothign to do } enum MapEntryType { RECTANGLE, CIRCLE, POLYGON, INVALID }; void XMLImageMapExport::ExportMapEntry( const Reference & rPropertySet) { OUString sAreaRectangle(RTL_CONSTASCII_USTRINGPARAM(sXML_area_rectangle)); OUString sAreaCircle(RTL_CONSTASCII_USTRINGPARAM(sXML_area_circle)); OUString sAreaPolygon(RTL_CONSTASCII_USTRINGPARAM(sXML_area_polygon)); Reference xServiceInfo(rPropertySet, UNO_QUERY); if (xServiceInfo.is()) { enum MapEntryType eType = INVALID; // distinguish map entries by their service name Sequence sServiceNames = xServiceInfo->getSupportedServiceNames(); sal_Int32 nLength = sServiceNames.getLength(); sal_Bool bFound = sal_False; for( sal_Int32 i=0; igetPropertyValue(sURL); OUString sHref; aAny >>= sHref; if (sHref.getLength() > 0) { rExport.AddAttribute(XML_NAMESPACE_XLINK, sXML_href, sHref); } // description property aAny = rPropertySet->getPropertyValue(sDescription); OUString sDescription; aAny >>= sDescription; if (sDescription.getLength() > 0) { rExport.AddAttribute(XML_NAMESPACE_DRAW, sXML_description, sDescription); } // handle name aAny = rPropertySet->getPropertyValue(sName); OUString sItemName; aAny >>= sItemName; if (sItemName.getLength() > 0) { rExport.AddAttribute(XML_NAMESPACE_DRAW, sXML_name, sItemName); } // is-active aAny = rPropertySet->getPropertyValue(sIsActive); if (! *(sal_Bool*)aAny.getValue()) { rExport.AddAttributeASCII(XML_NAMESPACE_DRAW, sXML_active, sXML_false); } // call specific rectangle/circle/... method // also prepare element name OUString* pElementName = NULL; switch (eType) { case RECTANGLE: ExportRectangle(rPropertySet); pElementName = &sAreaRectangle; break; case CIRCLE: ExportCircle(rPropertySet); pElementName = &sAreaCircle; break; case POLYGON: ExportPolygon(rPropertySet); pElementName = &sAreaPolygon; break; } // write element DBG_ASSERT(NULL != pElementName, "No name?! How did this happen?"); SvXMLElementExport aAreaElement(rExport, XML_NAMESPACE_DRAW, *pElementName, bWhiteSpace, bWhiteSpace); // export events attached to this Reference xSupplier(rPropertySet, UNO_QUERY); rExport.GetEventExport().Export(xSupplier, bWhiteSpace); } // else: no service info -> can't determine type -> ignore entry } void XMLImageMapExport::ExportRectangle( const Reference & rPropertySet) { // TODO } void XMLImageMapExport::ExportCircle( const Reference & rPropertySet) { // TODO } void XMLImageMapExport::ExportPolygon( const Reference & rPropertySet) { // TODO }