Files
libreoffice/xmloff/source/text/XMLLineNumberingImportContext.cxx

382 lines
12 KiB
C++
Raw Normal View History

/*************************************************************************
*
* $RCSfile: XMLLineNumberingImportContext.cxx,v $
*
* $Revision: 1.3 $
*
* last change: $Author: dvo $ $Date: 2001-01-25 11:35:25 $
*
* 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_XMLLINENUMBERINGIMPORTCONTEXT_HXX_
#include "XMLLineNumberingImportContext.hxx"
#endif
#ifndef _XMLOFF_XMLLINENUMBERINGSEPARATORIMPORTCONTEXT_HXX_
#include "XMLLineNumberingSeparatorImportContext.hxx"
#endif
#ifndef _COM_SUN_STAR_BEANS_XPROPERTYSET_HPP_
#include "com/sun/star/beans/XPropertySet.hpp"
#endif
#ifndef _COM_SUN_STAR_TEXT_XLINENUMBERINGPROPERTIES_HPP_
#include "com/sun/star/text/XLineNumberingProperties.hpp"
#endif
#ifndef _COM_SUN_STAR_STYLE_LINENUMBERPOSITION_HPP_
#include <com/sun/star/style/LineNumberPosition.hpp>
#endif
#ifndef _XMLOFF_XMLIMP_HXX
#include "xmlimp.hxx"
#endif
#ifndef _XMLOFF_XMLUCONV_HXX
#include "xmluconv.hxx"
#endif
#ifndef _XMLOFF_XMLNMSPE_HXX
#include "xmlnmspe.hxx"
#endif
#ifndef _XMLOFF_NMSPMAP_HXX
#include "nmspmap.hxx"
#endif
#ifndef _XMLOFF_XMLKYWD_HXX
#include "xmlkywd.hxx"
#endif
#ifndef _XMLOFF_XMLNUMI_HXX
#include "xmlnumi.hxx"
#endif
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
using ::com::sun::star::beans::XPropertySet;
using ::com::sun::star::xml::sax::XAttributeList;
using ::com::sun::star::text::XLineNumberingProperties;
using ::rtl::OUString;
TYPEINIT1( XMLLineNumberingImportContext, SvXMLStyleContext );
XMLLineNumberingImportContext::XMLLineNumberingImportContext(
SvXMLImport& rImport,
sal_uInt16 nPrfx,
const OUString& rLocalName,
const Reference<XAttributeList> & xAttrList) :
2001-01-16 21:19:14 +00:00
SvXMLStyleContext(rImport, nPrfx, rLocalName, xAttrList, XML_STYLE_FAMILY_TEXT_LINENUMBERINGCONFIG),
sStyleName(),
sNumFormat(RTL_CONSTASCII_USTRINGPARAM(sXML_1)),
sNumLetterSync(RTL_CONSTASCII_USTRINGPARAM(sXML_false)),
sSeparator(),
nOffset(-1),
nNumberPosition(style::LineNumberPosition::LEFT),
nIncrement(-1),
nSeparatorIncrement(-1),
bNumberLines(sal_True),
bCountEmptyLines(sal_True),
bCountInFloatingFrames(sal_False),
bRestartNumbering(sal_False),
sCharStyleName(RTL_CONSTASCII_USTRINGPARAM("CharStyleName")),
sCountEmptyLines(RTL_CONSTASCII_USTRINGPARAM("CountEmptyLines")),
sCountLinesInFrames(RTL_CONSTASCII_USTRINGPARAM("CountLinesInFrames")),
sDistance(RTL_CONSTASCII_USTRINGPARAM("Distance")),
sInterval(RTL_CONSTASCII_USTRINGPARAM("Interval")),
sSeparatorText(RTL_CONSTASCII_USTRINGPARAM("SeparatorText")),
sNumberPosition(RTL_CONSTASCII_USTRINGPARAM("NumberPosition")),
sNumberingType(RTL_CONSTASCII_USTRINGPARAM("NumberingType")),
sIsOn(RTL_CONSTASCII_USTRINGPARAM("IsOn")),
sRestartAtEachPage(RTL_CONSTASCII_USTRINGPARAM("RestartAtEachPage")),
sSeparatorInterval(RTL_CONSTASCII_USTRINGPARAM("SeparatorInterval"))
{
}
XMLLineNumberingImportContext::~XMLLineNumberingImportContext()
{
}
static const SvXMLEnumMapEntry aLineNumberPositionMap[] =
{
{ sXML_left, style::LineNumberPosition::LEFT },
{ sXML_right, style::LineNumberPosition::RIGHT },
{ sXML_inside, style::LineNumberPosition::INSIDE },
{ sXML_outside, style::LineNumberPosition::OUTSIDE },
{ NULL, 0 }
};
static SvXMLTokenMapEntry aLineNumberingTokenMap[] =
{
{ XML_NAMESPACE_TEXT, sXML_style_name, XML_TOK_LINENUMBERING_STYLE_NAME },
{ XML_NAMESPACE_TEXT, sXML_number_lines,
XML_TOK_LINENUMBERING_NUMBER_LINES },
{ XML_NAMESPACE_TEXT, sXML_count_empty_lines,
XML_TOK_LINENUMBERING_COUNT_EMPTY_LINES },
{ XML_NAMESPACE_TEXT, sXML_count_in_floating_frames,
XML_TOK_LINENUMBERING_COUNT_IN_FLOATING_FRAMES },
{ XML_NAMESPACE_TEXT, sXML_restart_on_page,
XML_TOK_LINENUMBERING_RESTART_NUMBERING },
{ XML_NAMESPACE_TEXT, sXML_offset, XML_TOK_LINENUMBERING_OFFSET },
{ XML_NAMESPACE_STYLE, sXML_num_format, XML_TOK_LINENUMBERING_NUM_FORMAT },
{ XML_NAMESPACE_STYLE, sXML_num_letter_sync,
XML_TOK_LINENUMBERING_NUM_LETTER_SYNC },
{ XML_NAMESPACE_TEXT, sXML_number_position,
XML_TOK_LINENUMBERING_NUMBER_POSITION },
{ XML_NAMESPACE_TEXT, sXML_increment, XML_TOK_LINENUMBERING_INCREMENT },
// { XML_NAMESPACE_TEXT, sXML_linenumbering_configuration,
// XML_TOK_LINENUMBERING_LINENUMBERING_CONFIGURATION },
// { XML_NAMESPACE_TEXT, sXML_increment, XML_TOK_LINENUMBERING_INCREMENT },
// { XML_NAMESPACE_TEXT, sXML_linenumbering_separator,
// XML_TOK_LINENUMBERING_LINENUMBERING_SEPARATOR },
XML_TOKEN_MAP_END
};
void XMLLineNumberingImportContext::StartElement(
const Reference<XAttributeList> & xAttrList)
{
SvXMLTokenMap aTokenMap(aLineNumberingTokenMap);
// process attributes
sal_Int16 nLength = xAttrList->getLength();
for(sal_Int16 i=0; i<nLength; i++)
{
OUString sLocalName;
sal_uInt16 nPrefix = GetImport().GetNamespaceMap().
GetKeyByAttrName( xAttrList->getNameByIndex(i), &sLocalName );
ProcessAttribute(
(enum LineNumberingToken)aTokenMap.Get(nPrefix, sLocalName),
xAttrList->getValueByIndex(i));
}
}
void XMLLineNumberingImportContext::ProcessAttribute(
enum LineNumberingToken eToken,
OUString sValue)
{
sal_Bool bTmp;
sal_Int32 nTmp;
switch (eToken)
{
case XML_TOK_LINENUMBERING_STYLE_NAME:
sStyleName = sValue;
break;
case XML_TOK_LINENUMBERING_NUMBER_LINES:
if (SvXMLUnitConverter::convertBool(bTmp, sValue))
{
bNumberLines = bTmp;
}
break;
case XML_TOK_LINENUMBERING_COUNT_EMPTY_LINES:
if (SvXMLUnitConverter::convertBool(bTmp, sValue))
{
bCountEmptyLines = bTmp;
}
break;
case XML_TOK_LINENUMBERING_COUNT_IN_FLOATING_FRAMES:
if (SvXMLUnitConverter::convertBool(bTmp, sValue))
{
bCountInFloatingFrames = bTmp;
}
break;
case XML_TOK_LINENUMBERING_RESTART_NUMBERING:
if (SvXMLUnitConverter::convertBool(bTmp, sValue))
{
bRestartNumbering = bTmp;
}
break;
case XML_TOK_LINENUMBERING_OFFSET:
if (GetImport().GetMM100UnitConverter().
convertMeasure(nTmp, sValue))
{
nOffset = nTmp;
}
break;
case XML_TOK_LINENUMBERING_NUM_FORMAT:
sNumFormat = sValue;
break;
case XML_TOK_LINENUMBERING_NUM_LETTER_SYNC:
sNumLetterSync = sValue;
break;
case XML_TOK_LINENUMBERING_NUMBER_POSITION:
{
sal_uInt16 nTmp;
if (SvXMLUnitConverter::convertEnum(nTmp, sValue,
aLineNumberPositionMap))
{
nNumberPosition = nTmp;
}
break;
}
case XML_TOK_LINENUMBERING_INCREMENT:
if (SvXMLUnitConverter::convertNumber(nTmp, sValue, 0))
{
nIncrement = (sal_Int16)nTmp;
}
break;
}
}
void XMLLineNumberingImportContext::CreateAndInsert(
sal_Bool bOverwrite)
{
// insert and block mode is handled in insertStyleFamily
// we'll try to get the LineNumberingProperties
Reference<XLineNumberingProperties> xSupplier(GetImport().GetModel(),
UNO_QUERY);
if (xSupplier.is())
{
Reference<XPropertySet> xLineNumbering =
xSupplier->getLineNumberingProperties();
if (xLineNumbering.is())
{
Any aAny;
// TODO: check if style name exists
aAny <<= sStyleName;
xLineNumbering->setPropertyValue(sCharStyleName, aAny);
aAny <<= sSeparator;
xLineNumbering->setPropertyValue(sSeparatorText, aAny);
aAny <<= nOffset;
xLineNumbering->setPropertyValue(sDistance, aAny);
aAny <<= nNumberPosition;
xLineNumbering->setPropertyValue(sNumberPosition, aAny);
if (nIncrement >= 0)
{
aAny <<= nIncrement;
xLineNumbering->setPropertyValue(sInterval, aAny);
}
if (nSeparatorIncrement >= 0)
{
aAny <<= nSeparatorIncrement;
xLineNumbering->setPropertyValue(sSeparatorInterval, aAny);
}
aAny.setValue(&bNumberLines, ::getBooleanCppuType());
xLineNumbering->setPropertyValue(sIsOn, aAny);
aAny.setValue(&bCountEmptyLines, ::getBooleanCppuType());
xLineNumbering->setPropertyValue(sCountEmptyLines, aAny);
aAny.setValue(&bCountInFloatingFrames, ::getBooleanCppuType());
xLineNumbering->setPropertyValue(sCountLinesInFrames, aAny);
aAny.setValue(&bRestartNumbering, ::getBooleanCppuType());
xLineNumbering->setPropertyValue(sRestartAtEachPage, aAny);
aAny <<= SvxXMLListStyleContext::GetNumType(sNumFormat,
sNumLetterSync);
xLineNumbering->setPropertyValue(sNumberingType, aAny);
}
}
}
SvXMLImportContext* XMLLineNumberingImportContext::CreateChildContext(
sal_uInt16 nPrefix,
const OUString& rLocalName,
const Reference<XAttributeList> & xAttrList )
{
if ( (nPrefix == XML_NAMESPACE_TEXT) &&
rLocalName.equalsAsciiL(sXML_linenumbering_separator,
sizeof(sXML_linenumbering_separator)-1) )
{
return new XMLLineNumberingSeparatorImportContext(GetImport(),
nPrefix, rLocalName,
*this);
}
else
{
// unknown element: default context
return SvXMLImportContext::CreateChildContext(nPrefix, rLocalName,
xAttrList);
}
}
void XMLLineNumberingImportContext::SetSeparatorText(
const OUString& sText)
{
sSeparator = sText;
}
void XMLLineNumberingImportContext::SetSeparatorIncrement(
sal_Int16 nIncr)
{
nSeparatorIncrement = nIncr;
}