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

265 lines
9.1 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2000-09-18 16:07:07 +00:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-09-18 16:07:07 +00:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2000-09-18 16:07:07 +00:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 16:07:07 +00:00
*
* This file is part of OpenOffice.org.
2000-09-18 16:07:07 +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-09-18 16:07:07 +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-09-18 16:07:07 +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-09-18 16:07:07 +00:00
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_xmloff.hxx"
2000-09-18 16:07:07 +00:00
#include <tools/debug.hxx>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/beans/PropertyValue.hpp>
#include <com/sun/star/container/XIndexReplace.hpp>
#include <com/sun/star/style/NumberingType.hpp>
2000-10-23 10:28:11 +00:00
#include <com/sun/star/container/XNamed.hpp>
2000-09-18 16:07:07 +00:00
#include "XMLTextNumRuleInfo.hxx"
// --> OD 2008-04-25 #refactorlists#
#include "XMLTextListAutoStylePool.hxx"
// <--
using ::rtl::OUString;
2000-09-18 16:07:07 +00:00
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::container;
using namespace ::com::sun::star::style;
// --> OD 2008-05-08 #refactorlists#
// Complete refactoring of the class and enhancement of the class for lists.
XMLTextNumRuleInfo::XMLTextNumRuleInfo()
: msNumberingRules(RTL_CONSTASCII_USTRINGPARAM("NumberingRules"))
, msNumberingLevel(RTL_CONSTASCII_USTRINGPARAM("NumberingLevel"))
, msNumberingStartValue(RTL_CONSTASCII_USTRINGPARAM("NumberingStartValue"))
, msParaIsNumberingRestart(RTL_CONSTASCII_USTRINGPARAM("ParaIsNumberingRestart"))
, msNumberingIsNumber(RTL_CONSTASCII_USTRINGPARAM("NumberingIsNumber"))
, msNumberingIsOutline(RTL_CONSTASCII_USTRINGPARAM("NumberingIsOutline"))
, msPropNameListId(RTL_CONSTASCII_USTRINGPARAM("ListId"))
, msPropNameStartWith(RTL_CONSTASCII_USTRINGPARAM("StartWith"))
// --> OD 2008-11-26 #158694#
, msContinueingPreviousSubTree(RTL_CONSTASCII_USTRINGPARAM("ContinueingPreviousSubTree"))
, msListLabelStringProp(RTL_CONSTASCII_USTRINGPARAM("ListLabelString"))
// <--
, mxNumRules()
, msNumRulesName()
, msListId()
, mnListStartValue( -1 )
, mnListLevel( 0 )
, mbIsNumbered( sal_False )
, mbIsRestart( sal_False )
, mnListLevelStartValue( -1 )
, mbOutlineStyleAsNormalListStyle( sal_False )
2000-09-18 16:07:07 +00:00
{
Reset();
}
// --> OD 2006-09-27 #i69627#
2000-09-18 16:07:07 +00:00
void XMLTextNumRuleInfo::Set(
const ::com::sun::star::uno::Reference <
::com::sun::star::text::XTextContent > & xTextContent,
const sal_Bool bOutlineStyleAsNormalListStyle,
const XMLTextListAutoStylePool& rListAutoPool,
// --> OD 2008-11-26 #158694#
const sal_Bool bExportTextNumberElement )
// <--
2000-09-18 16:07:07 +00:00
{
Reset();
// --> OD 2006-09-27 #i69627#
mbOutlineStyleAsNormalListStyle = bOutlineStyleAsNormalListStyle;
// <--
2000-09-18 16:07:07 +00:00
Reference< XPropertySet > xPropSet( xTextContent, UNO_QUERY );
Reference< XPropertySetInfo > xPropSetInfo = xPropSet->getPropertySetInfo();
2000-09-18 16:07:07 +00:00
// check if this paragraph supports a numbering
if( !xPropSetInfo->hasPropertyByName( msNumberingLevel ) )
return;
2000-09-18 16:07:07 +00:00
if( xPropSet->getPropertyValue( msNumberingLevel ) >>= mnListLevel )
{
if( xPropSetInfo->hasPropertyByName( msNumberingRules ) )
{
xPropSet->getPropertyValue( msNumberingRules ) >>= mxNumRules;
}
}
else
2000-09-18 16:07:07 +00:00
{
// in applications using the outliner we always have a numbering rule,
// so a void property no numbering
mnListLevel = 0;
2000-09-18 16:07:07 +00:00
}
CWS-TOOLING: integrate CWS outlinelevel 2008-12-19 10:32:51 +0100 od r265718 : #i70748# method <SwWW8Writer::StartTOX(..)> - correction for custom to outline style assigned paragraph styles 2008-12-19 09:24:41 +0100 od r265715 : #i70748# method <HandleModifyAtTxtNode(..)> - retrieve former applied list style before potential reset of empty list style due to set outline level 2008-12-17 15:33:57 +0100 hde r265608 : #i97013# 2008-12-17 14:43:42 +0100 od r265603 : #i70748# adjust fix i44177 - adjustment of to outline style assigned paragraph styles only for OOo-Templates. 2008-12-17 12:59:42 +0100 od r265598 : #i70748# method <XMLTextImportHelper::SetStyleAndAttrs(..)> - special handling of OOo 2.x document regarding outline numbering of headings. 2008-12-17 12:45:53 +0100 od r265597 : #i70748# method <HandleModifyAtTxtNode(..)> - correct determination of new and former applied list style 2008-12-17 10:18:41 +0100 od r265581 : #i97312# method <XMLTextNumRuleInfo::Set(..)> - check, if numbering rules instance contains any numbering rule. 2008-12-16 14:34:22 +0100 hde r265542 : #i97013 2008-12-16 14:20:24 +0100 od r265541 : #i70748# adjust documentation of "Which"-ID numbers 2008-12-16 14:19:49 +0100 od r265539 : #i70748# Adjust Attribute-Function-Mapping table due to new attribute 2008-12-16 14:06:24 +0100 od r265538 : #i70748# - Correct handling of to outline style assigned paragraph styles on reset of all paragraph style attributes - WW8 import: Consider refactoring of paragraph style's outline level attribute - NO_NUMBERING define no longer exsits. 2008-12-16 10:37:19 +0100 od r265530 : #i70478# Correction on moving outline paragraph up respectively down in its outline level: - Check also outline paragraph, which are not an outline via a to outline style assigned paragraph style, if action is applicable. 2008-12-16 09:10:13 +0100 hde r265523 : #i97277 2008-12-16 09:09:30 +0100 hde r265522 : #i97277 2008-12-16 09:07:40 +0100 hde r265521 : Added control and purged obsolete id's 2008-12-10 13:09:36 +0100 od r265174 : #i70748# correction of previous fix due to warning-free code 2008-12-10 13:03:30 +0100 od r265172 : #i70748# method <XMLTextImportHelper::SetStyleAndAttrs(..)> - Due to performance issues avoid retrieving outline level value from paragraph's paragraph style for each paragraph. Instead retrieve current outline level value from paragraph, which is the inherited value from its paragraph style, and only when it is needed. 2008-12-09 16:50:36 +0100 ufi r265117 : help 2008-12-09 16:49:50 +0100 ufi r265116 : help 2008-12-09 15:45:05 +0100 od r265107 : #i70748# method <XMLTextImportHelper::SetStyleAndAttrs(..)> - some minor rework and check access to paragraph styles 2008-12-09 15:42:04 +0100 od r265106 : #i70748# adjust name of local variable to avoid hiding of class variable 2008-12-09 15:40:51 +0100 od r265105 : #i70748# correct initialization order 2008-12-09 15:35:07 +0100 od r265101 : #i70748# remove duplicate entry in certain property map 2008-12-09 15:33:39 +0100 od r265100 : #i70748# add end of file token 2008-12-07 15:11:54 +0100 zhaojianwei r264952 : conflicts left not to be resolved when cws rebase 2008-12-04 14:52:21 +0100 zhaojianwei r264846 : CWS-TOOLING: rebase CWS outlinelevel to trunk@264325 (milestone: DEV300:m36) 2008-11-28 03:42:09 +0100 zhaojianwei r264525 : #i70748#: migrate CWS outlinelevel to SVN 2008-11-28 03:41:39 +0100 zhaojianwei r264524 : #i70748#: migrate CWS outlinelevel to SVN 2008-11-28 03:41:11 +0100 zhaojianwei r264523 : #i70748#: migrate CWS outlinelevel to SVN
2009-01-07 11:57:24 +00:00
// --> OD 2008-12-17 #i97312#
if ( mxNumRules.is() && mxNumRules->getCount() < 1 )
{
DBG_ASSERT( false,
"<XMLTextNumRuleInfo::Set(..)> - numbering rules instance does not contain any numbering rule" );
Reset();
return;
}
// <--
// --> OD 2010-01-13 #b6912256#
if ( mnListLevel < 0 )
{
DBG_ASSERT( false,
"<XMLTextNumRuleInfo::Set(..)> - unexpected numbering level" );
Reset();
return;
}
// --> OD 2006-09-27 #i69627#
bool bSuppressListStyle( false );
if ( mxNumRules.is() )
{
if ( !mbOutlineStyleAsNormalListStyle )
{
sal_Bool bIsOutline = sal_False;
Reference<XPropertySet> xNumRulesProps(mxNumRules, UNO_QUERY);
if ( xNumRulesProps.is() &&
xNumRulesProps->getPropertySetInfo()->
hasPropertyByName( msNumberingIsOutline ) )
{
xNumRulesProps->getPropertyValue( msNumberingIsOutline ) >>= bIsOutline;
bSuppressListStyle = bIsOutline ? true : false;
}
}
}
if( mxNumRules.is() && !bSuppressListStyle )
// <--
2000-09-18 16:07:07 +00:00
{
// First try to find the numbering rules in the list auto style pool.
// If not found, the numbering rules instance has to be named.
msNumRulesName = rListAutoPool.Find( mxNumRules );
if ( msNumRulesName.getLength() == 0 )
{
Reference < XNamed > xNamed( mxNumRules, UNO_QUERY );
DBG_ASSERT( xNamed.is(),
"<XMLTextNumRuleInfo::Set(..)> - numbering rules instance have to be named. Serious defect -> please inform OD." );
if( xNamed.is() )
{
msNumRulesName = xNamed->getName();
}
}
DBG_ASSERT( msNumRulesName.getLength() > 0,
"<XMLTextNumRuleInfo::Set(..)> - no name found for numbering rules instance. Serious defect -> please inform OD." );
if( xPropSetInfo->hasPropertyByName( msPropNameListId ) )
{
xPropSet->getPropertyValue( msPropNameListId ) >>= msListId;
}
2000-09-18 16:07:07 +00:00
// --> OD 2008-11-26 #158694#
mbContinueingPreviousSubTree = sal_False;
if( xPropSetInfo->hasPropertyByName( msContinueingPreviousSubTree ) )
{
xPropSet->getPropertyValue( msContinueingPreviousSubTree ) >>= mbContinueingPreviousSubTree;
}
// <--
mbIsNumbered = sal_True;
if( xPropSetInfo->hasPropertyByName( msNumberingIsNumber ) )
2000-09-18 16:07:07 +00:00
{
if( !(xPropSet->getPropertyValue( msNumberingIsNumber ) >>= mbIsNumbered ) )
{
OSL_ENSURE( false, "numbered paragraph without number info" );
mbIsNumbered = sal_False;
}
2000-09-18 16:07:07 +00:00
}
if( mbIsNumbered )
2000-09-18 16:07:07 +00:00
{
if( xPropSetInfo->hasPropertyByName( msParaIsNumberingRestart ) )
2000-10-23 10:28:11 +00:00
{
xPropSet->getPropertyValue( msParaIsNumberingRestart ) >>= mbIsRestart;
2000-10-23 10:28:11 +00:00
}
if( xPropSetInfo->hasPropertyByName( msNumberingStartValue ) )
2000-09-18 16:07:07 +00:00
{
xPropSet->getPropertyValue( msNumberingStartValue ) >>= mnListStartValue;
2000-09-18 16:07:07 +00:00
}
}
OSL_ENSURE( mnListLevel < mxNumRules->getCount(), "wrong num rule level" );
if( mnListLevel >= mxNumRules->getCount() )
2001-04-18 07:52:32 +00:00
{
Reset();
return;
}
2000-09-18 16:07:07 +00:00
Sequence<PropertyValue> aProps;
mxNumRules->getByIndex( mnListLevel ) >>= aProps;
2000-09-18 16:07:07 +00:00
const PropertyValue* pPropArray = aProps.getConstArray();
sal_Int32 nCount = aProps.getLength();
for( sal_Int32 i=0; i<nCount; i++ )
{
const PropertyValue& rProp = pPropArray[i];
if ( rProp.Name == msPropNameStartWith )
2000-09-18 16:07:07 +00:00
{
rProp.Value >>= mnListLevelStartValue;
break;
2000-09-18 16:07:07 +00:00
}
}
// --> OD 2008-11-26 #158694#
msListLabelString = ::rtl::OUString();
if ( bExportTextNumberElement &&
xPropSetInfo->hasPropertyByName( msListLabelStringProp ) )
{
xPropSet->getPropertyValue( msListLabelStringProp ) >>= msListLabelString;
}
// <--
// paragraph's list level range is [0..9] representing list levels [1..10]
++mnListLevel;
2000-09-18 16:07:07 +00:00
}
else
{
mnListLevel = 0;
}
2000-09-18 16:07:07 +00:00
}
sal_Bool XMLTextNumRuleInfo::BelongsToSameList( const XMLTextNumRuleInfo& rCmp ) const
{
sal_Bool bRet( sal_True );
// Currently only the text documents support <ListId>.
if ( rCmp.msListId.getLength() > 0 ||
msListId.getLength() > 0 )
{
bRet = rCmp.msListId == msListId;
}
else
{
bRet = HasSameNumRules( rCmp );
}
return bRet;
}
// <--
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */