2001-02-21 18:28:49 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 21:29:37 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2001-02-21 18:28:49 +00:00
|
|
|
*
|
2008-04-10 21:29:37 +00:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2001-02-21 18:28:49 +00:00
|
|
|
*
|
2008-04-10 21:29:37 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2001-02-21 18:28:49 +00:00
|
|
|
*
|
2008-04-10 21:29:37 +00:00
|
|
|
* $RCSfile: XMLFootnoteSeparatorExport.cxx,v $
|
|
|
|
* $Revision: 1.12 $
|
2001-02-21 18:28:49 +00:00
|
|
|
*
|
2008-04-10 21:29:37 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2001-02-21 18:28:49 +00:00
|
|
|
*
|
2008-04-10 21:29:37 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2001-02-21 18:28:49 +00:00
|
|
|
*
|
2008-04-10 21:29:37 +00:00
|
|
|
* OpenOffice.org 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 version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2001-02-21 18:28:49 +00:00
|
|
|
*
|
2008-04-10 21:29:37 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2001-02-21 18:28:49 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-17 09:50:15 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_xmloff.hxx"
|
2001-02-21 18:28:49 +00:00
|
|
|
#include "XMLFootnoteSeparatorExport.hxx"
|
|
|
|
#include <tools/debug.hxx>
|
2007-06-27 14:32:49 +00:00
|
|
|
#include <xmloff/xmlexp.hxx>
|
2001-02-21 18:28:49 +00:00
|
|
|
#include "xmlnmspe.hxx"
|
2007-06-27 14:32:49 +00:00
|
|
|
#include <xmloff/xmluconv.hxx>
|
|
|
|
#include <xmloff/xmltoken.hxx>
|
|
|
|
#include <xmloff/xmlprmap.hxx>
|
2001-02-21 18:28:49 +00:00
|
|
|
|
2001-04-17 11:01:21 +00:00
|
|
|
#ifndef _XMLOFF_PAGEMASTERSTYLEMAP_HXX
|
2007-06-27 14:32:49 +00:00
|
|
|
#include <xmloff/PageMasterStyleMap.hxx>
|
2001-04-17 11:01:21 +00:00
|
|
|
#endif
|
2001-02-21 18:28:49 +00:00
|
|
|
#include <com/sun/star/text/HorizontalAdjust.hpp>
|
|
|
|
#include <rtl/ustrbuf.hxx>
|
|
|
|
|
|
|
|
|
|
|
|
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,
|
2006-06-19 17:29:35 +00:00
|
|
|
sal_uInt32
|
|
|
|
#ifdef DBG_UTIL
|
|
|
|
nIdx
|
|
|
|
#endif
|
|
|
|
,
|
2001-02-21 18:28:49 +00:00
|
|
|
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
|
|
|
|
2004-03-30 13:31:23 +00:00
|
|
|
if( rState.mnIndex == -1 )
|
|
|
|
continue;
|
|
|
|
|
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
|
|
|
}
|