2000-09-18 23:08:29 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 12:52:39 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2008-04-10 12:52:39 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2008-04-10 12:52:39 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2008-04-10 12:52:39 +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 23:08:29 +00:00
|
|
|
*
|
2008-04-10 12:52:39 +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 23:08:29 +00:00
|
|
|
*
|
2008-04-10 12:52:39 +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 23:08:29 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 20:10:14 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_sw.hxx"
|
|
|
|
|
2000-09-18 23:08:29 +00:00
|
|
|
|
2001-10-24 17:56:14 +00:00
|
|
|
#include <com/sun/star/text/ChapterFormat.hpp>
|
2000-09-18 23:08:29 +00:00
|
|
|
#include <doc.hxx>
|
|
|
|
#include <frame.hxx> // SwChapterFieldType::ChangeExpansion()
|
|
|
|
#include <pam.hxx> // fuer GetBodyTxtNode
|
|
|
|
#include <ndtxt.hxx>
|
|
|
|
#include <chpfld.hxx>
|
|
|
|
#include <expfld.hxx> // fuer GetBodyTxtNode
|
2001-10-24 17:56:14 +00:00
|
|
|
#ifndef _UNOFLDMID_H
|
|
|
|
#include <unofldmid.h>
|
2000-09-18 23:08:29 +00:00
|
|
|
#endif
|
2008-03-05 16:01:33 +00:00
|
|
|
#include <numrule.hxx>
|
2001-10-24 17:56:14 +00:00
|
|
|
|
2000-09-18 23:08:29 +00:00
|
|
|
using namespace ::com::sun::star;
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------
|
|
|
|
Beschreibung: SwChapterFieldType
|
|
|
|
--------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
|
|
SwChapterFieldType::SwChapterFieldType()
|
|
|
|
: SwFieldType( RES_CHAPTERFLD )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SwFieldType* SwChapterFieldType::Copy() const
|
|
|
|
{
|
|
|
|
return new SwChapterFieldType();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------
|
|
|
|
Beschreibung: Kapittelfeld
|
|
|
|
--------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
|
|
SwChapterField::SwChapterField(SwChapterFieldType* pTyp, sal_uInt32 nFmt)
|
|
|
|
: SwField(pTyp, nFmt), nLevel( 0 )
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
String SwChapterField::Expand() const
|
|
|
|
{
|
|
|
|
String sStr( sNumber );
|
|
|
|
switch( GetFormat() )
|
|
|
|
{
|
|
|
|
case CF_TITLE: sStr = sTitle; break;
|
|
|
|
|
|
|
|
case CF_NUMBER:
|
|
|
|
case CF_NUM_TITLE: sStr.Insert( sPre, 0 );
|
|
|
|
sStr += sPost;
|
|
|
|
if( CF_NUM_TITLE == GetFormat() )
|
|
|
|
sStr += sTitle;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CF_NUM_NOPREPST_TITLE: sStr += sTitle; break;
|
|
|
|
}
|
|
|
|
return sStr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SwField* SwChapterField::Copy() const
|
|
|
|
{
|
|
|
|
SwChapterField *pTmp =
|
|
|
|
new SwChapterField((SwChapterFieldType*)GetTyp(), GetFormat());
|
|
|
|
pTmp->nLevel = nLevel;
|
|
|
|
pTmp->sTitle = sTitle;
|
|
|
|
pTmp->sNumber = sNumber;
|
|
|
|
pTmp->sPost = sPost;
|
|
|
|
pTmp->sPre = sPre;
|
|
|
|
|
|
|
|
return pTmp;
|
|
|
|
}
|
|
|
|
|
2008-03-07 10:59:57 +00:00
|
|
|
// --> OD 2008-02-14 #i53420#
|
|
|
|
//void SwChapterField::ChangeExpansion( const SwFrm* pFrm,
|
|
|
|
// const SwTxtNode* pTxtNd,
|
|
|
|
// sal_Bool bSrchNum )
|
|
|
|
//{
|
|
|
|
// ASSERT( pFrm, "in welchem Frame stehe ich denn?" )
|
|
|
|
// SwDoc* pDoc = (SwDoc*)pTxtNd->GetDoc();
|
|
|
|
// SwPosition aPos( pDoc->GetNodes().GetEndOfContent() );
|
|
|
|
|
|
|
|
// if( pFrm->IsInDocBody() )
|
|
|
|
// aPos.nNode = *pTxtNd;
|
|
|
|
// else if( 0 == (pTxtNd = GetBodyTxtNode( *pDoc, aPos, *pFrm )) )
|
|
|
|
// // kein TxtNode (Formatierung Kopf/Fusszeile)
|
|
|
|
// return;
|
|
|
|
// ChangeExpansion(*pTxtNd, bSrchNum);
|
|
|
|
//}
|
2003-12-09 10:37:07 +00:00
|
|
|
void SwChapterField::ChangeExpansion(const SwFrm* pFrm,
|
2008-03-07 10:59:57 +00:00
|
|
|
const SwCntntNode* pCntntNode,
|
|
|
|
sal_Bool bSrchNum )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
ASSERT( pFrm, "in welchem Frame stehe ich denn?" )
|
2008-03-07 10:59:57 +00:00
|
|
|
SwDoc* pDoc = (SwDoc*)pCntntNode->GetDoc();
|
|
|
|
|
|
|
|
const SwTxtNode* pTxtNode = dynamic_cast<const SwTxtNode*>(pCntntNode);
|
|
|
|
if ( !pTxtNode || !pFrm->IsInDocBody() )
|
|
|
|
{
|
|
|
|
SwPosition aDummyPos( pDoc->GetNodes().GetEndOfContent() );
|
|
|
|
pTxtNode = GetBodyTxtNode( *pDoc, aDummyPos, *pFrm );
|
|
|
|
}
|
2000-09-18 23:08:29 +00:00
|
|
|
|
2008-03-07 10:59:57 +00:00
|
|
|
if ( pTxtNode )
|
|
|
|
{
|
|
|
|
ChangeExpansion( *pTxtNode, bSrchNum );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// <--
|
2003-12-09 10:37:07 +00:00
|
|
|
|
|
|
|
void SwChapterField::ChangeExpansion(const SwTxtNode &rTxtNd, sal_Bool bSrchNum)
|
|
|
|
{
|
|
|
|
SwDoc* pDoc = (SwDoc*)rTxtNd.GetDoc();
|
|
|
|
const SwTxtNode *pTxtNd = rTxtNd.FindOutlineNodeOfLevel( nLevel );
|
2000-09-18 23:08:29 +00:00
|
|
|
if( pTxtNd )
|
|
|
|
{
|
|
|
|
if( bSrchNum )
|
|
|
|
{
|
|
|
|
const SwTxtNode* pONd = pTxtNd;
|
|
|
|
do {
|
|
|
|
if( pONd && pONd->GetTxtColl() )
|
|
|
|
{
|
|
|
|
BYTE nPrevLvl = nLevel;
|
2009-01-07 11:57:24 +00:00
|
|
|
|
2008-06-13 08:46:03 +00:00
|
|
|
// --> OD 2008-04-02 #refactorlists#
|
|
|
|
// nLevel = GetRealLevel( pONd->GetTxtColl()->
|
|
|
|
// GetOutlineLevel() );
|
2009-01-07 11:57:24 +00:00
|
|
|
//ASSERT( pONd->GetOutlineLevel() >= 0 && pONd->GetOutlineLevel() < MAXLEVEL, //#outline level,zhaojianwei
|
|
|
|
// "<SwChapterField::ChangeExpansion(..)> - outline node with inconsistent outline level. Serious defect -> please inform OD." );
|
|
|
|
//nLevel = static_cast<BYTE>(pONd->GetOutlineLevel());
|
|
|
|
ASSERT( pONd->GetAttrOutlineLevel() >= 0 && pONd->GetAttrOutlineLevel() <= MAXLEVEL,
|
2008-06-13 08:46:03 +00:00
|
|
|
"<SwChapterField::ChangeExpansion(..)> - outline node with inconsistent outline level. Serious defect -> please inform OD." );
|
2009-01-07 11:57:24 +00:00
|
|
|
nLevel = static_cast<BYTE>(pONd->GetAttrOutlineLevel()); //<-end,zhaojianwei
|
2008-06-13 08:46:03 +00:00
|
|
|
// <--
|
2009-01-07 11:57:24 +00:00
|
|
|
|
2000-09-18 23:08:29 +00:00
|
|
|
if( nPrevLvl < nLevel )
|
|
|
|
nLevel = nPrevLvl;
|
|
|
|
else if( SVX_NUM_NUMBER_NONE != pDoc->GetOutlineNumRule()
|
2001-02-23 11:45:30 +00:00
|
|
|
->Get( nLevel ).GetNumberingType() )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
|
|
|
pTxtNd = pONd;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !nLevel-- )
|
|
|
|
break;
|
|
|
|
pONd = pTxtNd->FindOutlineNodeOfLevel( nLevel );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
} while( sal_True );
|
|
|
|
}
|
|
|
|
|
|
|
|
// nur die Nummer besorgen, ohne Pre-/Post-fixstrings
|
|
|
|
|
2005-11-17 18:58:59 +00:00
|
|
|
if ( pTxtNd->IsOutline() )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
2005-11-17 18:58:59 +00:00
|
|
|
// --> OD 2005-11-17 #128041#
|
|
|
|
// correction of refactoring done by cws swnumtree:
|
|
|
|
// retrieve numbering string without prefix and suffix strings
|
|
|
|
// as stated in the above german comment.
|
|
|
|
sNumber = pTxtNd->GetNumString( false );
|
|
|
|
// <--
|
|
|
|
|
|
|
|
SwNumRule* pRule( pTxtNd->GetNumRule() );
|
2008-06-13 08:46:03 +00:00
|
|
|
if ( pTxtNd->IsCountedInList() && pRule )
|
2004-07-05 13:40:00 +00:00
|
|
|
{
|
2008-06-13 08:46:03 +00:00
|
|
|
const SwNumFmt& rNFmt = pRule->Get( static_cast<USHORT>(pTxtNd->GetActualListLevel()) );
|
2004-07-05 13:40:00 +00:00
|
|
|
sPost = rNFmt.GetSuffix();
|
|
|
|
sPre = rNFmt.GetPrefix();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
sPost = aEmptyStr, sPre = aEmptyStr;
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
else
|
2004-07-05 13:40:00 +00:00
|
|
|
{
|
|
|
|
sPost = aEmptyStr;
|
|
|
|
sPre = aEmptyStr;
|
|
|
|
sNumber = String("??", RTL_TEXTENCODING_ASCII_US);
|
|
|
|
}
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
sTitle = pTxtNd->GetExpandTxt();
|
|
|
|
|
|
|
|
for( xub_StrLen i = 0; i < sTitle.Len(); ++i )
|
|
|
|
if( ' ' > sTitle.GetChar( i ) )
|
|
|
|
sTitle.Erase( i--, 1 );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sNumber = aEmptyStr;
|
|
|
|
sTitle = aEmptyStr;
|
|
|
|
sPost = aEmptyStr;
|
|
|
|
sPre = aEmptyStr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-----------------05.03.98 16:19-------------------
|
|
|
|
|
|
|
|
--------------------------------------------------*/
|
2007-09-27 07:48:02 +00:00
|
|
|
BOOL SwChapterField::QueryValue( uno::Any& rAny, USHORT nWhichId ) const
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
2007-09-27 07:48:02 +00:00
|
|
|
switch( nWhichId )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
2001-10-24 17:56:14 +00:00
|
|
|
case FIELD_PROP_BYTE1:
|
|
|
|
rAny <<= (sal_Int8)nLevel;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FIELD_PROP_USHORT1:
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
2001-10-24 17:56:14 +00:00
|
|
|
sal_Int16 nRet;
|
|
|
|
switch( GetFormat() )
|
|
|
|
{
|
|
|
|
case CF_NUMBER: nRet = text::ChapterFormat::NUMBER; break;
|
|
|
|
case CF_TITLE: nRet = text::ChapterFormat::NAME; break;
|
|
|
|
case CF_NUMBER_NOPREPST:
|
|
|
|
nRet = text::ChapterFormat::DIGIT;
|
|
|
|
break;
|
|
|
|
case CF_NUM_NOPREPST_TITLE:
|
|
|
|
nRet = text::ChapterFormat::NO_PREFIX_SUFFIX;
|
|
|
|
break;
|
|
|
|
case CF_NUM_TITLE:
|
|
|
|
default: nRet = text::ChapterFormat::NAME_NUMBER;
|
|
|
|
}
|
|
|
|
rAny <<= nRet;
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
2001-10-24 17:56:14 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
DBG_ERROR("illegal property");
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
return sal_True;
|
|
|
|
}
|
|
|
|
/*-----------------05.03.98 16:19-------------------
|
|
|
|
|
|
|
|
--------------------------------------------------*/
|
2007-09-27 07:48:02 +00:00
|
|
|
BOOL SwChapterField::PutValue( const uno::Any& rAny, USHORT nWhichId )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
2001-10-24 17:56:14 +00:00
|
|
|
BOOL bRet = TRUE;
|
2007-09-27 07:48:02 +00:00
|
|
|
switch( nWhichId )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
2001-10-24 17:56:14 +00:00
|
|
|
case FIELD_PROP_BYTE1:
|
2007-11-12 15:23:09 +00:00
|
|
|
{
|
|
|
|
sal_Int8 nTmp = 0;
|
2000-09-18 23:08:29 +00:00
|
|
|
rAny >>= nTmp;
|
|
|
|
if(nTmp >= 0 && nTmp < MAXLEVEL)
|
|
|
|
nLevel = nTmp;
|
|
|
|
else
|
2001-10-24 17:56:14 +00:00
|
|
|
bRet = FALSE;
|
|
|
|
break;
|
2007-11-12 15:23:09 +00:00
|
|
|
}
|
2001-10-24 17:56:14 +00:00
|
|
|
|
|
|
|
case FIELD_PROP_USHORT1:
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
2007-11-12 15:23:09 +00:00
|
|
|
sal_Int16 nVal = 0;
|
2001-10-24 17:56:14 +00:00
|
|
|
rAny >>= nVal;
|
|
|
|
switch( nVal )
|
|
|
|
{
|
|
|
|
case text::ChapterFormat::NAME: SetFormat(CF_TITLE); break;
|
|
|
|
case text::ChapterFormat::NUMBER: SetFormat(CF_NUMBER); break;
|
|
|
|
case text::ChapterFormat::NO_PREFIX_SUFFIX:
|
|
|
|
SetFormat(CF_NUM_NOPREPST_TITLE);
|
|
|
|
break;
|
|
|
|
case text::ChapterFormat::DIGIT:
|
|
|
|
SetFormat(CF_NUMBER_NOPREPST);
|
|
|
|
break;
|
|
|
|
//case text::ChapterFormat::NAME_NUMBER:
|
|
|
|
default: SetFormat(CF_NUM_TITLE);
|
|
|
|
}
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
2001-10-24 17:56:14 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
DBG_ERROR("illegal property");
|
|
|
|
bRet = FALSE;
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
2001-10-24 17:56:14 +00:00
|
|
|
return bRet;
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|