/************************************************************************* * * $RCSfile: XMLFootnoteSeparatorExport.cxx,v $ * * $Revision: 1.6 $ * * last change: $Author: dvo $ $Date: 2001-06-29 21:07:17 $ * * 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_XMLFOOTNOTESEPARATOREXPORT_HXX #include "XMLFootnoteSeparatorExport.hxx" #endif #ifndef _TOOLS_DEBUG_HXX #include #endif #ifndef _XMLOFF_XMLEXP_HXX #include "xmlexp.hxx" #endif #ifndef _XMLOFF_XMLNMSPE_HXX #include "xmlnmspe.hxx" #endif #ifndef _XMLOFF_XMLUCONV_HXX #include "xmluconv.hxx" #endif #ifndef _XMLOFF_XMLTOKEN_HXX #include "xmltoken.hxx" #endif #ifndef _XMLOFF_PROPERTYSETMAPPER_HXX #include "xmlprmap.hxx" #endif #ifndef _XMLOFF_PAGEMASTERSTYLEMAP_HXX #include "PageMasterStyleMap.hxx" #endif #ifndef _COM_SUN_STAR_TEXT_HORIZONTALADJUST_HPP_ #include #endif #ifndef _RTL_USTRBUF_HXX_ #include #endif using namespace ::com::sun::star; using namespace ::xmloff::token; using ::rtl::OUStringBuffer; using ::std::vector; XMLFootnoteSeparatorExport::XMLFootnoteSeparatorExport(SvXMLExport& rExp) : rExport(rExp) { } XMLFootnoteSeparatorExport::~XMLFootnoteSeparatorExport() { } static const SvXMLEnumMapEntry aXML_HorizontalAdjust_Enum[] = { { XML_LEFT, text::HorizontalAdjust_LEFT }, { XML_CENTER, text::HorizontalAdjust_CENTER }, { XML_RIGHT, text::HorizontalAdjust_RIGHT }, { XML_TOKEN_INVALID, 0 } }; void XMLFootnoteSeparatorExport::exportXML( const vector * pProperties, sal_uInt32 nIdx, const UniReference & rMapper) { DBG_ASSERT(NULL != pProperties, "Need property states"); // intialize values sal_Int16 eLineAdjust = text::HorizontalAdjust_LEFT; sal_Int32 nLineColor = 0; sal_Int32 nLineDistance = 0; sal_Int8 nLineRelWidth = 0; sal_Int32 nLineTextDistance = 0; sal_Int16 nLineWeight = 0; // find indices into property map and get values sal_uInt32 nCount = pProperties->size(); for(sal_uInt32 i = 0; i < nCount; i++) { const XMLPropertyState& rState = (*pProperties)[i]; switch (rMapper->GetEntryContextId(rState.mnIndex)) { case CTF_PM_FTN_LINE_ADJUST: rState.maValue >>= eLineAdjust; break; case CTF_PM_FTN_LINE_COLOR: rState.maValue >>= nLineColor; break; case CTF_PM_FTN_DISTANCE: rState.maValue >>= nLineDistance; break; case CTF_PM_FTN_LINE_WIDTH: rState.maValue >>= nLineRelWidth; break; case CTF_PM_FTN_LINE_DISTANCE: rState.maValue >>= nLineTextDistance; break; case CTF_PM_FTN_LINE_WEIGTH: DBG_ASSERT( i == nIdx, "received wrong property state index" ); rState.maValue >>= nLineWeight; break; } } OUStringBuffer sBuf; // weight/width if (nLineWeight > 0) { rExport.GetMM100UnitConverter().convertMeasure(sBuf, nLineWeight); rExport.AddAttribute(XML_NAMESPACE_STYLE, XML_WIDTH, sBuf.makeStringAndClear()); } // line text distance if (nLineTextDistance > 0) { rExport.GetMM100UnitConverter().convertMeasure(sBuf,nLineTextDistance); rExport.AddAttribute(XML_NAMESPACE_STYLE, XML_DISTANCE_BEFORE_SEP, sBuf.makeStringAndClear()); } // line distance if (nLineDistance > 0) { rExport.GetMM100UnitConverter().convertMeasure(sBuf, nLineDistance); rExport.AddAttribute(XML_NAMESPACE_STYLE, XML_DISTANCE_AFTER_SEP, sBuf.makeStringAndClear()); } // adjustment if (rExport.GetMM100UnitConverter().convertEnum( sBuf, eLineAdjust, aXML_HorizontalAdjust_Enum)) { rExport.AddAttribute(XML_NAMESPACE_STYLE, XML_ADJUSTMENT, sBuf.makeStringAndClear()); } // relative line width SvXMLUnitConverter::convertPercent(sBuf, nLineRelWidth); rExport.AddAttribute(XML_NAMESPACE_STYLE, XML_REL_WIDTH, sBuf.makeStringAndClear()); // color rExport.GetMM100UnitConverter().convertColor(sBuf, nLineColor); rExport.AddAttribute(XML_NAMESPACE_STYLE, XML_COLOR, sBuf.makeStringAndClear()); SvXMLElementExport aElem(rExport, XML_NAMESPACE_STYLE, XML_FOOTNOTE_SEP, sal_True, sal_True); }