2010-10-12 15:53:47 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2000-11-14 13:42:50 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 22:02:32 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-11-14 13:42:50 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-11-14 13:42:50 +00:00
|
|
|
*
|
2008-04-10 22:02:32 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-11-14 13:42:50 +00:00
|
|
|
*
|
2008-04-10 22:02:32 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-11-14 13:42:50 +00:00
|
|
|
*
|
2008-04-10 22:02:32 +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.
|
2000-11-14 13:42:50 +00:00
|
|
|
*
|
2008-04-10 22:02:32 +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).
|
2000-11-14 13:42:50 +00:00
|
|
|
*
|
2008-04-10 22:02:32 +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.
|
2000-11-14 13:42:50 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-17 10:05:56 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_xmloff.hxx"
|
|
|
|
|
2000-11-14 13:42:50 +00:00
|
|
|
|
|
|
|
#include "XMLIndexChapterInfoEntryContext.hxx"
|
|
|
|
#include "XMLIndexTemplateContext.hxx"
|
2007-06-27 14:57:31 +00:00
|
|
|
#include <xmloff/xmlictxt.hxx>
|
|
|
|
#include <xmloff/xmlimp.hxx>
|
|
|
|
#include <xmloff/txtimp.hxx>
|
|
|
|
#include <xmloff/nmspmap.hxx>
|
2000-11-14 13:42:50 +00:00
|
|
|
#include "xmlnmspe.hxx"
|
2007-06-27 14:57:31 +00:00
|
|
|
#include <xmloff/xmltoken.hxx>
|
|
|
|
#include <xmloff/xmluconv.hxx>
|
2000-11-14 13:42:50 +00:00
|
|
|
#include <com/sun/star/text/ChapterFormat.hpp>
|
|
|
|
|
|
|
|
|
|
|
|
using namespace ::com::sun::star::text;
|
2001-06-15 09:37:08 +00:00
|
|
|
using namespace ::xmloff::token;
|
2000-11-14 13:42:50 +00:00
|
|
|
|
|
|
|
using ::rtl::OUString;
|
|
|
|
using ::com::sun::star::beans::PropertyValue;
|
|
|
|
using ::com::sun::star::beans::PropertyValues;
|
|
|
|
using ::com::sun::star::uno::Reference;
|
|
|
|
using ::com::sun::star::uno::Sequence;
|
|
|
|
using ::com::sun::star::uno::Any;
|
|
|
|
using ::com::sun::star::xml::sax::XAttributeList;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
TYPEINIT1( XMLIndexChapterInfoEntryContext, XMLIndexSimpleEntryContext);
|
|
|
|
|
|
|
|
XMLIndexChapterInfoEntryContext::XMLIndexChapterInfoEntryContext(
|
|
|
|
SvXMLImport& rImport,
|
|
|
|
XMLIndexTemplateContext& rTemplate,
|
|
|
|
sal_uInt16 nPrfx,
|
2004-07-13 07:32:09 +00:00
|
|
|
const OUString& rLocalName,
|
|
|
|
sal_Bool bT ) :
|
|
|
|
XMLIndexSimpleEntryContext(rImport,
|
|
|
|
(bT ? rTemplate.sTokenEntryNumber
|
|
|
|
: rTemplate.sTokenChapterInfo),
|
2000-11-14 13:42:50 +00:00
|
|
|
rTemplate, nPrfx, rLocalName),
|
|
|
|
nChapterInfo(ChapterFormat::NAME_NUMBER),
|
2004-07-13 07:32:09 +00:00
|
|
|
bChapterInfoOK(sal_False),
|
2008-03-07 10:52:44 +00:00
|
|
|
bTOC( bT ),
|
|
|
|
nOutlineLevel( 0 ),
|
|
|
|
bOutlineLevelOK(sal_False)
|
2000-11-14 13:42:50 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
XMLIndexChapterInfoEntryContext::~XMLIndexChapterInfoEntryContext()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static const SvXMLEnumMapEntry aChapterDisplayMap[] =
|
|
|
|
{
|
2001-06-15 09:37:08 +00:00
|
|
|
{ XML_NAME, ChapterFormat::NAME },
|
|
|
|
{ XML_NUMBER, ChapterFormat::NUMBER },
|
|
|
|
{ XML_NUMBER_AND_NAME, ChapterFormat::NAME_NUMBER },
|
2008-07-02 09:24:29 +00:00
|
|
|
//---> i89791
|
|
|
|
// enabled for ODF 1.2, full index support in 3.0
|
|
|
|
{ XML_PLAIN_NUMBER_AND_NAME, ChapterFormat::NO_PREFIX_SUFFIX },
|
|
|
|
//<---
|
2008-03-07 10:52:44 +00:00
|
|
|
{ XML_PLAIN_NUMBER, ChapterFormat::DIGIT },
|
2001-06-15 09:37:08 +00:00
|
|
|
{ XML_TOKEN_INVALID, 0 }
|
2000-11-14 13:42:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void XMLIndexChapterInfoEntryContext::StartElement(
|
|
|
|
const Reference<XAttributeList> & xAttrList)
|
|
|
|
{
|
|
|
|
// handle both, style name and bibliography info
|
2001-01-02 13:41:38 +00:00
|
|
|
sal_Int16 nLength = xAttrList->getLength();
|
|
|
|
for(sal_Int16 nAttr = 0; nAttr < nLength; nAttr++)
|
2000-11-14 13:42:50 +00:00
|
|
|
{
|
|
|
|
OUString sLocalName;
|
|
|
|
sal_uInt16 nPrefix = GetImport().GetNamespaceMap().
|
|
|
|
GetKeyByAttrName( xAttrList->getNameByIndex(nAttr),
|
|
|
|
&sLocalName );
|
|
|
|
if (XML_NAMESPACE_TEXT == nPrefix)
|
|
|
|
{
|
2001-06-29 20:07:26 +00:00
|
|
|
if ( IsXMLToken( sLocalName, XML_STYLE_NAME ) )
|
2000-11-14 13:42:50 +00:00
|
|
|
{
|
|
|
|
sCharStyleName = xAttrList->getValueByIndex(nAttr);
|
|
|
|
bCharStyleNameOK = sal_True;
|
|
|
|
}
|
2008-03-07 10:52:44 +00:00
|
|
|
else if ( IsXMLToken( sLocalName, XML_DISPLAY ) )//i53420, always true, in TOC as well
|
2000-11-14 13:42:50 +00:00
|
|
|
{
|
|
|
|
sal_uInt16 nTmp;
|
|
|
|
if (SvXMLUnitConverter::convertEnum(
|
|
|
|
nTmp, xAttrList->getValueByIndex(nAttr),
|
|
|
|
aChapterDisplayMap))
|
|
|
|
{
|
|
|
|
nChapterInfo = nTmp;
|
|
|
|
bChapterInfoOK = sal_True;
|
|
|
|
}
|
|
|
|
}
|
2008-03-07 10:52:44 +00:00
|
|
|
else if ( IsXMLToken( sLocalName, XML_OUTLINE_LEVEL ) )
|
|
|
|
{
|
|
|
|
sal_Int32 nTmp;
|
|
|
|
|
|
|
|
if (SvXMLUnitConverter::convertNumber(nTmp, xAttrList->getValueByIndex(nAttr)))
|
|
|
|
{
|
|
|
|
//control on range is carried out in the UNO level
|
|
|
|
nOutlineLevel = static_cast<sal_uInt16>(nTmp);
|
|
|
|
bOutlineLevelOK = sal_True;
|
|
|
|
}
|
|
|
|
}
|
2000-11-14 13:42:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if we have a style name, set it!
|
|
|
|
if (bCharStyleNameOK)
|
|
|
|
{
|
|
|
|
nValues++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if we have chaper info, set it!
|
|
|
|
if (bChapterInfoOK)
|
|
|
|
{
|
|
|
|
nValues++;
|
2010-11-09 01:42:14 +05:00
|
|
|
/* Some of the index chapter information attributes written to ODF 1.1
|
|
|
|
and 1.2 don't reflect the displaying (#i89791#)
|
|
|
|
*/
|
2008-07-02 09:24:29 +00:00
|
|
|
if ( !bTOC )
|
|
|
|
{
|
|
|
|
bool bConvert( false );
|
|
|
|
{
|
|
|
|
sal_Int32 nUPD( 0 );
|
|
|
|
sal_Int32 nBuild( 0 );
|
|
|
|
const bool bBuildIdFound = GetImport().getBuildIds( nUPD, nBuild );
|
|
|
|
if ( GetImport().IsTextDocInOOoFileFormat() ||
|
|
|
|
( bBuildIdFound &&
|
|
|
|
( nUPD== 680 || nUPD == 645 || nUPD == 641 ) ) )
|
|
|
|
{
|
|
|
|
bConvert = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( bConvert )
|
|
|
|
{
|
|
|
|
if ( nChapterInfo == ChapterFormat::NUMBER )
|
|
|
|
{
|
|
|
|
nChapterInfo = ChapterFormat::DIGIT;
|
|
|
|
}
|
|
|
|
else if ( nChapterInfo == ChapterFormat::NAME_NUMBER )
|
|
|
|
{
|
|
|
|
nChapterInfo = ChapterFormat::NO_PREFIX_SUFFIX;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// <--
|
2000-11-14 13:42:50 +00:00
|
|
|
}
|
2008-03-07 10:52:44 +00:00
|
|
|
if (bOutlineLevelOK)
|
|
|
|
nValues++;
|
2000-11-14 13:42:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void XMLIndexChapterInfoEntryContext::FillPropertyValues(
|
|
|
|
::com::sun::star::uno::Sequence<
|
|
|
|
::com::sun::star::beans::PropertyValue> & rValues)
|
|
|
|
{
|
|
|
|
// entry name and (optionally) style name in parent class
|
|
|
|
XMLIndexSimpleEntryContext::FillPropertyValues(rValues);
|
|
|
|
|
2008-03-07 10:52:44 +00:00
|
|
|
sal_Int32 nIndex = bCharStyleNameOK ? 2 : 1;
|
|
|
|
|
2004-07-13 07:32:09 +00:00
|
|
|
if( bChapterInfoOK )
|
|
|
|
{
|
|
|
|
// chapter info field
|
|
|
|
rValues[nIndex].Name = rTemplateContext.sChapterFormat;
|
|
|
|
Any aAny;
|
|
|
|
aAny <<= nChapterInfo;
|
|
|
|
rValues[nIndex].Value = aAny;
|
2008-03-07 10:52:44 +00:00
|
|
|
nIndex++;
|
|
|
|
}
|
|
|
|
if( bOutlineLevelOK )
|
|
|
|
{
|
|
|
|
rValues[nIndex].Name = rTemplateContext.sChapterLevel;
|
|
|
|
Any aAny;
|
|
|
|
aAny <<= nOutlineLevel;
|
|
|
|
rValues[nIndex].Value = aAny;
|
2004-07-13 07:32:09 +00:00
|
|
|
}
|
2000-11-14 13:42:50 +00:00
|
|
|
}
|
2010-10-12 15:53:47 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|