2001-02-21 18:28:49 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
|
|
|
* $RCSfile: XMLFootnoteSeparatorExport.cxx,v $
|
|
|
|
*
|
2001-06-29 20:07:26 +00:00
|
|
|
* $Revision: 1.6 $
|
2001-02-21 18:28:49 +00:00
|
|
|
*
|
2001-06-29 20:07:26 +00:00
|
|
|
* last change: $Author: dvo $ $Date: 2001-06-29 21:07:17 $
|
2001-02-21 18:28:49 +00:00
|
|
|
*
|
|
|
|
* 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 <tools/debug.hxx>
|
|
|
|
#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
|
|
|
|
|
2001-06-29 20:07:26 +00:00
|
|
|
#ifndef _XMLOFF_XMLTOKEN_HXX
|
|
|
|
#include "xmltoken.hxx"
|
2001-02-21 18:28:49 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _XMLOFF_PROPERTYSETMAPPER_HXX
|
|
|
|
#include "xmlprmap.hxx"
|
|
|
|
#endif
|
|
|
|
|
2001-04-17 11:01:21 +00:00
|
|
|
#ifndef _XMLOFF_PAGEMASTERSTYLEMAP_HXX
|
|
|
|
#include "PageMasterStyleMap.hxx"
|
|
|
|
#endif
|
|
|
|
|
2001-02-21 18:28:49 +00:00
|
|
|
#ifndef _COM_SUN_STAR_TEXT_HORIZONTALADJUST_HPP_
|
|
|
|
#include <com/sun/star/text/HorizontalAdjust.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _RTL_USTRBUF_HXX_
|
|
|
|
#include <rtl/ustrbuf.hxx>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
using namespace ::com::sun::star;
|
2001-06-15 09:37:08 +00:00
|
|
|
using namespace ::xmloff::token;
|
2001-02-21 18:28:49 +00:00
|
|
|
using ::rtl::OUStringBuffer;
|
|
|
|
using ::std::vector;
|
|
|
|
|
|
|
|
XMLFootnoteSeparatorExport::XMLFootnoteSeparatorExport(SvXMLExport& rExp) :
|
|
|
|
rExport(rExp)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
XMLFootnoteSeparatorExport::~XMLFootnoteSeparatorExport()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const SvXMLEnumMapEntry aXML_HorizontalAdjust_Enum[] =
|
|
|
|
{
|
2001-06-15 09:37:08 +00:00
|
|
|
{ XML_LEFT, text::HorizontalAdjust_LEFT },
|
|
|
|
{ XML_CENTER, text::HorizontalAdjust_CENTER },
|
|
|
|
{ XML_RIGHT, text::HorizontalAdjust_RIGHT },
|
|
|
|
{ XML_TOKEN_INVALID, 0 }
|
2001-02-21 18:28:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void XMLFootnoteSeparatorExport::exportXML(
|
|
|
|
const vector<XMLPropertyState> * pProperties,
|
|
|
|
sal_uInt32 nIdx,
|
|
|
|
const UniReference<XMLPropertySetMapper> & rMapper)
|
|
|
|
{
|
|
|
|
DBG_ASSERT(NULL != pProperties, "Need property states");
|
|
|
|
|
2001-04-17 11:01:21 +00:00
|
|
|
// 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++)
|
2001-02-21 18:28:49 +00:00
|
|
|
{
|
2001-04-17 11:01:21 +00:00
|
|
|
const XMLPropertyState& rState = (*pProperties)[i];
|
2001-02-28 17:09:57 +00:00
|
|
|
|
2001-04-17 11:01:21 +00:00
|
|
|
switch (rMapper->GetEntryContextId(rState.mnIndex))
|
2001-02-28 17:09:57 +00:00
|
|
|
{
|
2001-04-17 11:01:21 +00:00
|
|
|
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;
|
2001-02-28 17:09:57 +00:00
|
|
|
}
|
2001-04-17 11:01:21 +00:00
|
|
|
}
|
2001-02-28 17:09:57 +00:00
|
|
|
|
2001-04-17 11:01:21 +00:00
|
|
|
OUStringBuffer sBuf;
|
2001-02-28 17:09:57 +00:00
|
|
|
|
2001-04-17 11:01:21 +00:00
|
|
|
// weight/width
|
|
|
|
if (nLineWeight > 0)
|
|
|
|
{
|
|
|
|
rExport.GetMM100UnitConverter().convertMeasure(sBuf, nLineWeight);
|
2001-06-29 20:07:26 +00:00
|
|
|
rExport.AddAttribute(XML_NAMESPACE_STYLE, XML_WIDTH,
|
2001-04-17 11:01:21 +00:00
|
|
|
sBuf.makeStringAndClear());
|
|
|
|
}
|
2001-02-28 17:09:57 +00:00
|
|
|
|
2001-04-17 11:01:21 +00:00
|
|
|
// line text distance
|
|
|
|
if (nLineTextDistance > 0)
|
|
|
|
{
|
|
|
|
rExport.GetMM100UnitConverter().convertMeasure(sBuf,nLineTextDistance);
|
2001-06-29 20:07:26 +00:00
|
|
|
rExport.AddAttribute(XML_NAMESPACE_STYLE, XML_DISTANCE_BEFORE_SEP,
|
2001-02-21 18:28:49 +00:00
|
|
|
sBuf.makeStringAndClear());
|
2001-04-17 11:01:21 +00:00
|
|
|
}
|
2001-02-21 18:28:49 +00:00
|
|
|
|
2001-04-17 11:01:21 +00:00
|
|
|
// line distance
|
|
|
|
if (nLineDistance > 0)
|
|
|
|
{
|
|
|
|
rExport.GetMM100UnitConverter().convertMeasure(sBuf, nLineDistance);
|
2001-06-29 20:07:26 +00:00
|
|
|
rExport.AddAttribute(XML_NAMESPACE_STYLE, XML_DISTANCE_AFTER_SEP,
|
2001-02-21 18:28:49 +00:00
|
|
|
sBuf.makeStringAndClear());
|
2001-04-17 11:01:21 +00:00
|
|
|
}
|
2001-02-21 18:28:49 +00:00
|
|
|
|
2001-04-17 11:01:21 +00:00
|
|
|
// adjustment
|
|
|
|
if (rExport.GetMM100UnitConverter().convertEnum(
|
|
|
|
sBuf, eLineAdjust, aXML_HorizontalAdjust_Enum))
|
|
|
|
{
|
2001-06-29 20:07:26 +00:00
|
|
|
rExport.AddAttribute(XML_NAMESPACE_STYLE, XML_ADJUSTMENT,
|
2001-04-17 11:01:21 +00:00
|
|
|
sBuf.makeStringAndClear());
|
2001-02-21 18:28:49 +00:00
|
|
|
}
|
2001-04-17 11:01:21 +00:00
|
|
|
|
|
|
|
// relative line width
|
|
|
|
SvXMLUnitConverter::convertPercent(sBuf, nLineRelWidth);
|
2001-06-29 20:07:26 +00:00
|
|
|
rExport.AddAttribute(XML_NAMESPACE_STYLE, XML_REL_WIDTH,
|
2001-04-17 11:01:21 +00:00
|
|
|
sBuf.makeStringAndClear());
|
|
|
|
|
|
|
|
// color
|
|
|
|
rExport.GetMM100UnitConverter().convertColor(sBuf, nLineColor);
|
2001-06-29 20:07:26 +00:00
|
|
|
rExport.AddAttribute(XML_NAMESPACE_STYLE, XML_COLOR,
|
2001-04-17 11:01:21 +00:00
|
|
|
sBuf.makeStringAndClear());
|
|
|
|
|
|
|
|
SvXMLElementExport aElem(rExport, XML_NAMESPACE_STYLE,
|
2001-06-29 20:07:26 +00:00
|
|
|
XML_FOOTNOTE_SEP, sal_True, sal_True);
|
2001-02-21 18:28:49 +00:00
|
|
|
}
|