/************************************************************************* * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: XMLIndexTOCSourceContext.cxx,v $ * * $Revision: 1.9 $ * * last change: $Author: hr $ $Date: 2006-06-19 18:41:25 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. * * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2005 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 * ************************************************************************/ #ifndef _XMLOFF_XMLINDEXTOCSOURCECONTEXT_HXX_ #include "XMLIndexTOCSourceContext.hxx" #endif #ifndef _COM_SUN_STAR_BEANS_XPROPERTYSET_HPP_ #include #endif #ifndef _COM_SUN_STAR_CONTAINER_XINDEXREPLACE_HPP_ #include #endif #ifndef _XMLOFF_XMLINDEXTEMPLATECONTEXT_HXX_ #include "XMLIndexTemplateContext.hxx" #endif #ifndef _XMLOFF_XMLINDEXTITLETEMPLATECONTEXT_HXX_ #include "XMLIndexTitleTemplateContext.hxx" #endif #ifndef _XMLOFF_XMLINDEXTOCSTYLESCONTEXT_HXX_ #include "XMLIndexTOCStylesContext.hxx" #endif #ifndef _XMLOFF_XMLICTXT_HXX #include "xmlictxt.hxx" #endif #ifndef _XMLOFF_XMLIMP_HXX #include "xmlimp.hxx" #endif #ifndef _XMLOFF_TEXTIMP_HXX_ #include "txtimp.hxx" #endif #ifndef _XMLOFF_XMLNMSPE_HXX #include "xmlnmspe.hxx" #endif #ifndef _XMLOFF_NMSPMAP_HXX #include "nmspmap.hxx" #endif #ifndef _XMLOFF_XMLTOKEN_HXX #include "xmltoken.hxx" #endif #ifndef _XMLOFF_XMLUCONV_HXX #include "xmluconv.hxx" #endif #ifndef _TOOLS_DEBUG_HXX #include #endif #ifndef _RTL_USTRING_HXX_ #include #endif using namespace ::xmloff::token; using ::rtl::OUString; using ::com::sun::star::beans::XPropertySet; using ::com::sun::star::uno::Reference; using ::com::sun::star::uno::Any; using ::com::sun::star::xml::sax::XAttributeList; const sal_Char sAPI_CreateFromChapter[] = "CreateFromChapter"; const sal_Char sAPI_CreateFromOutline[] = "CreateFromOutline"; const sal_Char sAPI_CreateFromMarks[] = "CreateFromMarks"; const sal_Char sAPI_Level[] = "Level"; const sal_Char sAPI_CreateFromLevelParagraphStyles[] = "CreateFromLevelParagraphStyles"; TYPEINIT1( XMLIndexTOCSourceContext, XMLIndexSourceBaseContext ); XMLIndexTOCSourceContext::XMLIndexTOCSourceContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLocalName, Reference & rPropSet) : XMLIndexSourceBaseContext(rImport, nPrfx, rLocalName, rPropSet, sal_True) , sCreateFromMarks(RTL_CONSTASCII_USTRINGPARAM(sAPI_CreateFromMarks)) , sLevel(RTL_CONSTASCII_USTRINGPARAM(sAPI_Level)) , sCreateFromOutline(RTL_CONSTASCII_USTRINGPARAM(sAPI_CreateFromOutline)) , sCreateFromLevelParagraphStyles(RTL_CONSTASCII_USTRINGPARAM(sAPI_CreateFromLevelParagraphStyles)) // use all chapters by default , nOutlineLevel(rImport.GetTextImport()->GetChapterNumbering()->getCount()) , bUseOutline(sal_True) , bUseMarks(sal_True) , bUseParagraphStyles(sal_False) { } XMLIndexTOCSourceContext::~XMLIndexTOCSourceContext() { } void XMLIndexTOCSourceContext::ProcessAttribute( enum IndexSourceParamEnum eParam, const OUString& rValue) { switch (eParam) { case XML_TOK_INDEXSOURCE_OUTLINE_LEVEL: if ( IsXMLToken( rValue, XML_NONE ) ) { // #104651# use OUTLINE_LEVEL and USE_OUTLINE_LEVEL instead of // OUTLINE_LEVEL with values none|1..10. For backwards // compatibility, 'none' must still be read. bUseOutline = sal_False; } else { sal_Int32 nTmp; if (SvXMLUnitConverter::convertNumber( nTmp, rValue, 1, GetImport().GetTextImport()-> GetChapterNumbering()->getCount())) { bUseOutline = sal_True; nOutlineLevel = nTmp; } } break; case XML_TOK_INDEXSOURCE_USE_OUTLINE_LEVEL: { sal_Bool bTmp; if (SvXMLUnitConverter::convertBool(bTmp, rValue)) { bUseOutline = bTmp; } break; } case XML_TOK_INDEXSOURCE_USE_INDEX_MARKS: { sal_Bool bTmp; if (SvXMLUnitConverter::convertBool(bTmp, rValue)) { bUseMarks = bTmp; } break; } case XML_TOK_INDEXSOURCE_USE_INDEX_SOURCE_STYLES: { sal_Bool bTmp; if (SvXMLUnitConverter::convertBool(bTmp, rValue)) { bUseParagraphStyles = bTmp; } break; } default: // default: ask superclass XMLIndexSourceBaseContext::ProcessAttribute(eParam, rValue); break; } } void XMLIndexTOCSourceContext::EndElement() { Any aAny; aAny.setValue(&bUseMarks, ::getBooleanCppuType()); rIndexPropertySet->setPropertyValue(sCreateFromMarks, aAny); aAny.setValue(&bUseOutline, ::getBooleanCppuType()); rIndexPropertySet->setPropertyValue(sCreateFromOutline, aAny); aAny.setValue(&bUseParagraphStyles, ::getBooleanCppuType()); rIndexPropertySet->setPropertyValue(sCreateFromLevelParagraphStyles, aAny); aAny <<= (sal_Int16)nOutlineLevel; rIndexPropertySet->setPropertyValue(sLevel, aAny); // process common attributes XMLIndexSourceBaseContext::EndElement(); } SvXMLImportContext* XMLIndexTOCSourceContext::CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, const Reference & xAttrList ) { if ( (XML_NAMESPACE_TEXT == nPrefix) && IsXMLToken(rLocalName, XML_TABLE_OF_CONTENT_ENTRY_TEMPLATE) ) { return new XMLIndexTemplateContext(GetImport(), rIndexPropertySet, nPrefix, rLocalName, aLevelNameTOCMap, XML_OUTLINE_LEVEL, aLevelStylePropNameTOCMap, aAllowedTokenTypesTOC, sal_True ); } else { return XMLIndexSourceBaseContext::CreateChildContext(nPrefix, rLocalName, xAttrList); } }