Files
libreoffice/sw/source/core/tox/txmsrt.cxx
Michael Meeks caaeb0a046 re-base on ALv2 code. Includes:
Patches contributed by Oliver-Rainer Wittmann
    sw34bf06: #i117783# - Writer's implementation of XPagePrintable -
    apply print settings to new printing routines
    http://svn.apache.org/viewvc?view=revision&revision=1172115
    sw34bf06: #o12311627# use <rtl_random> methods to
    create unique ids for list styles and list ids
    http://svn.apache.org/viewvc?view=revision&revision=1172112
    sw34bf06 #i114725#,#i115828# - method <SwDoc::ClearDoc()> -
    clear list structures completely
    http://svn.apache.org/viewvc?view=revision&revision=1172122
    i#118572 - remove ui string and help content regarding usage of
    Java Mail in Writer's Mail Merge as Java Mail is not used.
    http://svn.apache.org/viewvc?view=revision&revision=1197035

    Patches contributed by Mathias Bauer
    cws mba34issues01: #i117718#: provide filter name in
    case storage of medium does not allow to detect one
    http://svn.apache.org/viewvc?view=revision&revision=1172350
    cws mba34issues01: #i117721#: directly provide
    parameters retrieved from SfxMedium
    http://svn.apache.org/viewvc?view=revision&revision=1172353
    gnumake4 work variously
    http://svn.apache.org/viewvc?view=revision&revision=1394707
    http://svn.apache.org/viewvc?view=revision&revision=1394326
    http://svn.apache.org/viewvc?view=revision&revision=1396797
    http://svn.apache.org/viewvc?view=revision&revision=1397315
    cws mba34issues01: #i117723#: convert assertion into trace
    http://svn.apache.org/viewvc?view=revision&revision=1172355
    cws mba34issues01: #i117699#: keep layout alive until swdoc dies
    http://svn.apache.org/viewvc?view=revision&revision=1172362
    cws mba34issues01: #i117943#: missing color attributes in RTF clipboard
    http://svn.apache.org/viewvc?view=revision&revision=1172363

    Patch contributed by Henning Brinkmann
    imported patch i#103878
    http://svn.apache.org/viewvc?view=revision&revision=1172109

    Patches contributed by Michael Stahl
    sw34bf06: #i117955#: WW8 export: disable storing of section breaks in endnotes
    http://svn.apache.org/viewvc?view=revision&revision=1172119

    Patch contributed by imacat
    Fixed the Asian language work count.
    http://svn.apache.org/viewvc?view=revision&revision=1241345

    Patch contributed by Pedro Giffuni
    i#20878 - Add comment with BZ issue for reference.
    http://svn.apache.org/viewvc?view=revision&revision=1244517

    Patch contributed by Andre Fischer
    Do not add targets for junit tests when junit is disabled.
    http://svn.apache.org/viewvc?view=revision&revision=1241508

add writerperfect dependency.
2012-11-30 10:10:38 +00:00

863 lines
26 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 .
*/
#include <tools/resid.hxx>
#include <unotools/charclass.hxx>
#include <com/sun/star/i18n/CollatorOptions.hpp>
#include <editeng/unolingu.hxx>
#include <txtfld.hxx>
#include <doc.hxx>
#include <docary.hxx>
#include <cntfrm.hxx>
#include <node.hxx>
#include <frmatr.hxx>
#include <pam.hxx>
#include <txttxmrk.hxx>
#include <frmfmt.hxx>
#include <fmtfld.hxx>
#include <txmsrt.hxx>
#include <ndtxt.hxx>
#include <txtatr.hxx>
#include <swtable.hxx>
#include <expfld.hxx>
#include <authfld.hxx>
#include <toxwrap.hxx>
#include <comcore.hrc>
#include <numrule.hxx>
extern bool IsFrameBehind( const SwTxtNode& rMyNd, xub_StrLen nMySttPos,
const SwTxtNode& rBehindNd, xub_StrLen nSttPos );
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
using ::rtl::OUString;
/*--------------------------------------------------------------------
Initialize strings
--------------------------------------------------------------------*/
sal_uInt16 SwTOXSortTabBase::nOpt = 0;
SwTOXInternational::SwTOXInternational( LanguageType nLang, sal_uInt16 nOpt,
const String& rSortAlgorithm ) :
eLang( nLang ),
sSortAlgorithm(rSortAlgorithm),
nOptions( nOpt )
{
Init();
}
SwTOXInternational::SwTOXInternational( const SwTOXInternational& rIntl ) :
eLang( rIntl.eLang ),
sSortAlgorithm(rIntl.sSortAlgorithm),
nOptions( rIntl.nOptions )
{
Init();
}
void SwTOXInternational::Init()
{
pIndexWrapper = new IndexEntrySupplierWrapper();
const lang::Locale aLcl( LanguageTag( eLang ).getLocale() );
pIndexWrapper->SetLocale( aLcl );
if(!sSortAlgorithm.Len())
{
Sequence < OUString > aSeq( pIndexWrapper->GetAlgorithmList( aLcl ));
if(aSeq.getLength())
sSortAlgorithm = aSeq.getConstArray()[0];
}
if ( nOptions & nsSwTOIOptions::TOI_CASE_SENSITIVE )
pIndexWrapper->LoadAlgorithm( aLcl, sSortAlgorithm, 0 );
else
pIndexWrapper->LoadAlgorithm( aLcl, sSortAlgorithm, SW_COLLATOR_IGNORES );
pCharClass = new CharClass( LanguageTag( aLcl ));
}
SwTOXInternational::~SwTOXInternational()
{
delete pCharClass;
delete pIndexWrapper;
}
String SwTOXInternational::ToUpper( const String& rStr, xub_StrLen nPos ) const
{
return pCharClass->uppercase( rStr, nPos, 1 );
}
inline sal_Bool SwTOXInternational::IsNumeric( const String& rStr ) const
{
return pCharClass->isNumeric( rStr );
}
sal_Int32 SwTOXInternational::Compare( const String& rTxt1, const String& rTxtReading1,
const lang::Locale& rLocale1,
const String& rTxt2, const String& rTxtReading2,
const lang::Locale& rLocale2 ) const
{
return pIndexWrapper->CompareIndexEntry( rTxt1, rTxtReading1, rLocale1,
rTxt2, rTxtReading2, rLocale2 );
}
String SwTOXInternational::GetIndexKey( const String& rTxt, const String& rTxtReading,
const lang::Locale& rLocale ) const
{
return pIndexWrapper->GetIndexKey( rTxt, rTxtReading, rLocale );
}
String SwTOXInternational::GetFollowingText( sal_Bool bMorePages ) const
{
return pIndexWrapper->GetFollowingText( bMorePages );
}
/*--------------------------------------------------------------------
SortElement for TOX entries
--------------------------------------------------------------------*/
SwTOXSortTabBase::SwTOXSortTabBase( TOXSortType nTyp, const SwCntntNode* pNd,
const SwTxtTOXMark* pMark,
const SwTOXInternational* pInter,
const lang::Locale* pLocale )
: pTOXNd( 0 ), pTxtMark( pMark ), pTOXIntl( pInter ),
nPos( 0 ), nCntPos( 0 ), nType( static_cast<sal_uInt16>(nTyp) ), bValidTxt( sal_False )
{
if ( pLocale )
aLocale = *pLocale;
if( pNd )
{
xub_StrLen n = 0;
if( pTxtMark )
n = *pTxtMark->GetStart();
SwTOXSource aTmp( pNd, n,
pTxtMark ? pTxtMark->GetTOXMark().IsMainEntry() : sal_False );
aTOXSources.push_back(aTmp);
nPos = pNd->GetIndex();
switch( nTyp )
{
case TOX_SORT_CONTENT:
case TOX_SORT_PARA:
case TOX_SORT_TABLE:
// If they are in a special areas, we should get the position at the
// body
if( nPos < pNd->GetNodes().GetEndOfExtras().GetIndex() )
{
// Then get the 'anchor' (body) position
Point aPt;
const SwCntntFrm* pFrm = pNd->getLayoutFrm( pNd->GetDoc()->GetCurrentLayout(), &aPt, 0, sal_False );
if( pFrm )
{
SwPosition aPos( *pNd );
const SwDoc& rDoc = *pNd->GetDoc();
bool const bResult = GetBodyTxtNode( rDoc, aPos, *pFrm );
OSL_ENSURE(bResult, "where is the text node");
(void) bResult; // unused in non-debug
nPos = aPos.nNode.GetIndex();
nCntPos = aPos.nContent.GetIndex();
}
}
else
nCntPos = n;
break;
default: break;
}
}
}
String SwTOXSortTabBase::GetURL() const
{
return aEmptyStr;
}
void SwTOXSortTabBase::FillText( SwTxtNode& rNd, const SwIndex& rInsPos,
sal_uInt16 ) const
{
String sMyTxt;
String sMyTxtReading;
GetTxt( sMyTxt, sMyTxtReading );
rNd.InsertText( sMyTxt, rInsPos );
}
bool SwTOXSortTabBase::operator==( const SwTOXSortTabBase& rCmp )
{
bool bRet = nPos == rCmp.nPos && nCntPos == rCmp.nCntPos &&
(!aTOXSources[0].pNd || !rCmp.aTOXSources[0].pNd ||
aTOXSources[0].pNd == rCmp.aTOXSources[0].pNd );
if( TOX_SORT_CONTENT == nType )
{
bRet = bRet && pTxtMark && rCmp.pTxtMark &&
*pTxtMark->GetStart() == *rCmp.pTxtMark->GetStart();
if( bRet )
{
// Both pointers exist -> compare text
// else -> compare AlternativeText
const xub_StrLen *pEnd = pTxtMark->GetEnd(),
*pEndCmp = rCmp.pTxtMark->GetEnd();
String sMyTxt;
String sMyTxtReading;
GetTxt( sMyTxt, sMyTxtReading );
String sOtherTxt;
String sOtherTxtReading;
rCmp.GetTxt( sOtherTxt, sOtherTxtReading );
bRet = ( ( pEnd && pEndCmp ) || ( !pEnd && !pEndCmp ) ) &&
pTOXIntl->IsEqual( sMyTxt, sMyTxtReading, GetLocale(),
sOtherTxt, sOtherTxtReading, rCmp.GetLocale() );
}
}
return bRet;
}
bool SwTOXSortTabBase::operator<( const SwTOXSortTabBase& rCmp )
{
if( nPos < rCmp.nPos )
return true;
if( nPos == rCmp.nPos )
{
if( nCntPos < rCmp.nCntPos )
return true;
if( nCntPos == rCmp.nCntPos )
{
const SwNode* pFirst = aTOXSources[0].pNd;
const SwNode* pNext = rCmp.aTOXSources[0].pNd;
if( pFirst && pFirst == pNext )
{
if( TOX_SORT_CONTENT == nType && pTxtMark && rCmp.pTxtMark )
{
if( *pTxtMark->GetStart() < *rCmp.pTxtMark->GetStart() )
return true;
if( *pTxtMark->GetStart() == *rCmp.pTxtMark->GetStart() )
{
const xub_StrLen *pEnd = pTxtMark->GetEnd(),
*pEndCmp = rCmp.pTxtMark->GetEnd();
String sMyTxt;
String sMyTxtReading;
GetTxt( sMyTxt, sMyTxtReading );
String sOtherTxt;
String sOtherTxtReading;
rCmp.GetTxt( sOtherTxt, sOtherTxtReading );
// Both pointers exist -> compare text
// else -> compare AlternativeText
if( ( pEnd && pEndCmp ) || ( !pEnd && !pEndCmp ) )
pTOXIntl->IsEqual( sMyTxt, sMyTxtReading, GetLocale(),
sOtherTxt, sOtherTxtReading, rCmp.GetLocale() );
if( pEnd && !pEndCmp )
return true;
}
}
}
else if( pFirst && pFirst->IsTxtNode() &&
pNext && pNext->IsTxtNode() )
return ::IsFrameBehind( *(SwTxtNode*)pNext, nCntPos,
*(SwTxtNode*)pFirst, nCntPos );
}
}
return false;
}
/*--------------------------------------------------------------------
Sorted keyword entry
--------------------------------------------------------------------*/
SwTOXIndex::SwTOXIndex( const SwTxtNode& rNd,
const SwTxtTOXMark* pMark, sal_uInt16 nOptions,
sal_uInt8 nKyLevel,
const SwTOXInternational& rIntl,
const lang::Locale& rLocale )
: SwTOXSortTabBase( TOX_SORT_INDEX, &rNd, pMark, &rIntl, &rLocale ),
nKeyLevel(nKyLevel)
{
nPos = rNd.GetIndex();
nOpt = nOptions;
}
//
// Compare keywords. Only relates to the text.
//
bool SwTOXIndex::operator==( const SwTOXSortTabBase& rCmpBase )
{
SwTOXIndex& rCmp = (SwTOXIndex&)rCmpBase;
// Respect case taking dependencies into account
if(GetLevel() != rCmp.GetLevel() || nKeyLevel != rCmp.nKeyLevel)
return false;
OSL_ENSURE(pTxtMark, "pTxtMark == 0, No keyword");
String sMyTxt;
String sMyTxtReading;
GetTxt( sMyTxt, sMyTxtReading );
String sOtherTxt;
String sOtherTxtReading;
rCmp.GetTxt( sOtherTxt, sOtherTxtReading );
bool bRet = pTOXIntl->IsEqual( sMyTxt, sMyTxtReading, GetLocale(),
sOtherTxt, sOtherTxtReading, rCmp.GetLocale() );
// If we don't summarize we need to evaluate the Pos
if(bRet && !(GetOptions() & nsSwTOIOptions::TOI_SAME_ENTRY))
bRet = nPos == rCmp.nPos;
return bRet;
}
//
// operator, only depends on the text
bool SwTOXIndex::operator<( const SwTOXSortTabBase& rCmpBase )
{
SwTOXIndex& rCmp = (SwTOXIndex&)rCmpBase;
OSL_ENSURE(pTxtMark, "pTxtMark == 0, No keyword");
String sMyTxt;
String sMyTxtReading;
GetTxt( sMyTxt, sMyTxtReading );
String sOtherTxt;
String sOtherTxtReading;
rCmp.GetTxt( sOtherTxt, sOtherTxtReading );
bool bRet = GetLevel() == rCmp.GetLevel() &&
pTOXIntl->IsLess( sMyTxt, sMyTxtReading, GetLocale(),
sOtherTxt, sOtherTxtReading, rCmp.GetLocale() );
// If we don't summarize we need to evaluate the Pos
if( !bRet && !(GetOptions() & nsSwTOIOptions::TOI_SAME_ENTRY) )
{
bRet = pTOXIntl->IsEqual( sMyTxt, sMyTxtReading, GetLocale(),
sOtherTxt, sOtherTxtReading, rCmp.GetLocale() ) &&
nPos < rCmp.nPos;
}
return bRet;
}
//
// The keyword itself
void SwTOXIndex::GetText_Impl( String& rTxt, String& rTxtReading ) const
{
OSL_ENSURE(pTxtMark, "pTxtMark == 0, No keyword");
const SwTOXMark& rTOXMark = pTxtMark->GetTOXMark();
switch(nKeyLevel)
{
case FORM_PRIMARY_KEY :
{
rTxt = rTOXMark.GetPrimaryKey();
rTxtReading = rTOXMark.GetPrimaryKeyReading();
}
break;
case FORM_SECONDARY_KEY :
{
rTxt = rTOXMark.GetSecondaryKey();
rTxtReading = rTOXMark.GetSecondaryKeyReading();
}
break;
case FORM_ENTRY :
{
rTxt = rTOXMark.GetText();
rTxtReading = rTOXMark.GetTextReading();
}
break;
}
// if TOI_INITIAL_CAPS is set, first character is to be capitalized
if( nsSwTOIOptions::TOI_INITIAL_CAPS & nOpt && pTOXIntl )
{
String sUpper( pTOXIntl->ToUpper( rTxt, 0 ));
rTxt.Erase( 0, 1 ).Insert( sUpper, 0 );
}
}
void SwTOXIndex::FillText( SwTxtNode& rNd, const SwIndex& rInsPos, sal_uInt16 ) const
{
const xub_StrLen* pEnd = pTxtMark->GetEnd();
String sTmp;
String sTmpReading;
if( pEnd && !pTxtMark->GetTOXMark().IsAlternativeText() &&
0 == (GetOptions() & nsSwTOIOptions::TOI_KEY_AS_ENTRY))
{
sTmp = ((SwTxtNode*)aTOXSources[0].pNd)->GetExpandTxt(
*pTxtMark->GetStart(),
*pEnd - *pTxtMark->GetStart());
if(nsSwTOIOptions::TOI_INITIAL_CAPS&nOpt && pTOXIntl)
{
String sUpper( pTOXIntl->ToUpper( sTmp, 0 ));
sTmp.Erase( 0, 1 ).Insert( sUpper, 0 );
}
}
else
GetTxt( sTmp, sTmpReading );
rNd.InsertText( sTmp, rInsPos );
}
sal_uInt16 SwTOXIndex::GetLevel() const
{
OSL_ENSURE(pTxtMark, "pTxtMark == 0, No keyword");
sal_uInt16 nForm = FORM_PRIMARY_KEY;
if( 0 == (GetOptions() & nsSwTOIOptions::TOI_KEY_AS_ENTRY)&&
pTxtMark->GetTOXMark().GetPrimaryKey().Len() )
{
nForm = FORM_SECONDARY_KEY;
if( pTxtMark->GetTOXMark().GetSecondaryKey().Len() )
nForm = FORM_ENTRY;
}
return nForm;
}
/*--------------------------------------------------------------------
Key and separator
--------------------------------------------------------------------*/
SwTOXCustom::SwTOXCustom(const String& rStr, const String& rReading,
sal_uInt16 nLevel,
const SwTOXInternational& rIntl,
const lang::Locale& rLocale )
: SwTOXSortTabBase( TOX_SORT_CUSTOM, 0, 0, &rIntl, &rLocale ),
aKey(rStr), sReading(rReading), nLev(nLevel)
{
}
bool SwTOXCustom::operator==(const SwTOXSortTabBase& rCmpBase)
{
String sMyTxt;
String sMyTxtReading;
GetTxt( sMyTxt, sMyTxtReading );
String sOtherTxt;
String sOtherTxtReading;
rCmpBase.GetTxt( sOtherTxt, sOtherTxtReading );
return GetLevel() == rCmpBase.GetLevel() &&
pTOXIntl->IsEqual( sMyTxt, sMyTxtReading, GetLocale(),
sOtherTxt, sOtherTxtReading, rCmpBase.GetLocale() );
}
bool SwTOXCustom::operator < (const SwTOXSortTabBase& rCmpBase)
{
String sMyTxt;
String sMyTxtReading;
GetTxt( sMyTxt, sMyTxtReading );
String sOtherTxt;
String sOtherTxtReading;
rCmpBase.GetTxt( sOtherTxt, sOtherTxtReading );
return GetLevel() <= rCmpBase.GetLevel() &&
pTOXIntl->IsLess( sMyTxt, sMyTxtReading, GetLocale(),
sOtherTxt, sOtherTxtReading, rCmpBase.GetLocale() );
}
sal_uInt16 SwTOXCustom::GetLevel() const
{
return nLev;
}
void SwTOXCustom::GetText_Impl( String& rTxt, String &rTxtReading ) const
{
rTxt = aKey;
rTxtReading = sReading;
}
/*--------------------------------------------------------------------
Sorts the TOX entries
--------------------------------------------------------------------*/
SwTOXContent::SwTOXContent( const SwTxtNode& rNd, const SwTxtTOXMark* pMark,
const SwTOXInternational& rIntl)
: SwTOXSortTabBase( TOX_SORT_CONTENT, &rNd, pMark, &rIntl )
{
}
// The content's text
void SwTOXContent::GetText_Impl( String& rTxt, String& rTxtReading ) const
{
const xub_StrLen* pEnd = pTxtMark->GetEnd();
if( pEnd && !pTxtMark->GetTOXMark().IsAlternativeText() )
{
rTxt = ((SwTxtNode*)aTOXSources[0].pNd)->GetExpandTxt(
*pTxtMark->GetStart(),
*pEnd - *pTxtMark->GetStart() );
rTxtReading = pTxtMark->GetTOXMark().GetTextReading();
}
else
rTxt = pTxtMark->GetTOXMark().GetAlternativeText();
}
void SwTOXContent::FillText( SwTxtNode& rNd, const SwIndex& rInsPos, sal_uInt16 ) const
{
const xub_StrLen* pEnd = pTxtMark->GetEnd();
if( pEnd && !pTxtMark->GetTOXMark().IsAlternativeText() )
((SwTxtNode*)aTOXSources[0].pNd)->GetExpandTxt( rNd, &rInsPos,
*pTxtMark->GetStart(),
*pEnd - *pTxtMark->GetStart() );
else
{
String sTmp, sTmpReading;
GetTxt( sTmp, sTmpReading );
rNd.InsertText( sTmp, rInsPos );
}
}
//
// The level for displaying it
//
sal_uInt16 SwTOXContent::GetLevel() const
{
return pTxtMark->GetTOXMark().GetLevel();
}
/*--------------------------------------------------------------------
TOX assembled from paragraphs
Watch out for OLE/graphics when sorting!
The position must not come from the document, but from the "anchor"!
--------------------------------------------------------------------*/
SwTOXPara::SwTOXPara( const SwCntntNode& rNd, SwTOXElement eT, sal_uInt16 nLevel )
: SwTOXSortTabBase( TOX_SORT_PARA, &rNd, 0, 0 ),
eType( eT ),
m_nLevel(nLevel),
nStartIndex(0),
nEndIndex(STRING_LEN)
{
}
void SwTOXPara::GetText_Impl( String& rTxt, String& ) const
{
const SwCntntNode* pNd = aTOXSources[0].pNd;
switch( eType )
{
case nsSwTOXElement::TOX_SEQUENCE:
case nsSwTOXElement::TOX_TEMPLATE:
case nsSwTOXElement::TOX_OUTLINELEVEL:
{
xub_StrLen nStt = nStartIndex;
rTxt = ((SwTxtNode*)pNd)->GetExpandTxt(
nStt,
STRING_NOTFOUND == nEndIndex ? STRING_LEN : nEndIndex - nStt);
}
break;
case nsSwTOXElement::TOX_OLE:
case nsSwTOXElement::TOX_GRAPHIC:
case nsSwTOXElement::TOX_FRAME:
{
// Find the FlyFormat; the object/graphic name is there
SwFrmFmt* pFly = pNd->GetFlyFmt();
if( pFly )
rTxt = pFly->GetName();
else
{
OSL_ENSURE( !this, "Graphic/object without name" );
sal_uInt16 nId = nsSwTOXElement::TOX_OLE == eType
? STR_OBJECT_DEFNAME
: nsSwTOXElement::TOX_GRAPHIC == eType
? STR_GRAPHIC_DEFNAME
: STR_FRAME_DEFNAME;
rTxt = SW_RESSTR( nId );
}
}
break;
default: break;
}
}
void SwTOXPara::FillText( SwTxtNode& rNd, const SwIndex& rInsPos, sal_uInt16 ) const
{
if( nsSwTOXElement::TOX_TEMPLATE == eType || nsSwTOXElement::TOX_SEQUENCE == eType || nsSwTOXElement::TOX_OUTLINELEVEL == eType)
{
SwTxtNode* pSrc = (SwTxtNode*)aTOXSources[0].pNd;
xub_StrLen nStt = nStartIndex;
pSrc->GetExpandTxt( rNd, &rInsPos, nStt,
nEndIndex == STRING_LEN ? STRING_LEN : nEndIndex - nStt,
sal_False, sal_False, sal_True );
}
else
{
String sTmp, sTmpReading;
GetTxt( sTmp, sTmpReading );
sTmp.SearchAndReplaceAll('\t', ' ');
rNd.InsertText( sTmp, rInsPos );
}
}
sal_uInt16 SwTOXPara::GetLevel() const
{
sal_uInt16 nRet = m_nLevel;
const SwCntntNode* pNd = aTOXSources[0].pNd;
if( nsSwTOXElement::TOX_OUTLINELEVEL == eType && pNd->GetTxtNode() )
{
const int nTmp = ((SwTxtNode*)pNd)->GetAttrOutlineLevel();
if(nTmp != 0 )
nRet = static_cast<sal_uInt16>(nTmp);
}
return nRet;
}
String SwTOXPara::GetURL() const
{
String aTxt;
const SwCntntNode* pNd = aTOXSources[0].pNd;
switch( eType )
{
case nsSwTOXElement::TOX_TEMPLATE:
case nsSwTOXElement::TOX_OUTLINELEVEL:
{
const SwTxtNode * pTxtNd = static_cast<const SwTxtNode *>(pNd);
SwDoc* pDoc = const_cast<SwDoc*>( pTxtNd->GetDoc() );
::sw::mark::IMark const * const pMark = pDoc->getIDocumentMarkAccess()->getMarkForTxtNode(
*(pTxtNd),
IDocumentMarkAccess::CROSSREF_HEADING_BOOKMARK);
aTxt = '#';
const String aMarkName( pMark->GetName() );
aTxt += aMarkName;
}
break;
case nsSwTOXElement::TOX_OLE:
case nsSwTOXElement::TOX_GRAPHIC:
case nsSwTOXElement::TOX_FRAME:
{
// Find the FlyFormat; the object/graphic name is there
SwFrmFmt* pFly = pNd->GetFlyFmt();
if( pFly )
{
(( aTxt = '#' ) += pFly->GetName() ) += cMarkSeperator;
const sal_Char* pStr;
switch( eType )
{
case nsSwTOXElement::TOX_OLE: pStr = pMarkToOLE; break;
case nsSwTOXElement::TOX_GRAPHIC: pStr = pMarkToGraphic; break;
case nsSwTOXElement::TOX_FRAME: pStr = pMarkToFrame; break;
default: pStr = 0;
}
if( pStr )
aTxt.AppendAscii( pStr );
}
}
break;
default: break;
}
return aTxt;
}
/*--------------------------------------------------------------------
Table
--------------------------------------------------------------------*/
SwTOXTable::SwTOXTable( const SwCntntNode& rNd )
: SwTOXSortTabBase( TOX_SORT_TABLE, &rNd, 0, 0 ),
nLevel(FORM_ALPHA_DELIMITTER)
{
}
void SwTOXTable::GetText_Impl( String& rTxt, String& ) const
{
const SwNode* pNd = aTOXSources[0].pNd;
if( pNd && 0 != ( pNd = pNd->FindTableNode() ) )
{
rTxt = ((SwTableNode*)pNd)->GetTable().GetFrmFmt()->GetName();
}
else
{
OSL_ENSURE( !this, "Where's my table?" );
rTxt = SW_RESSTR( STR_TABLE_DEFNAME );
}
}
sal_uInt16 SwTOXTable::GetLevel() const
{
return nLevel;
}
String SwTOXTable::GetURL() const
{
String aTxt;
const SwNode* pNd = aTOXSources[0].pNd;
if( pNd && 0 != ( pNd = pNd->FindTableNode() ) )
{
aTxt = ((SwTableNode*)pNd)->GetTable().GetFrmFmt()->GetName();
if( aTxt.Len() )
{
( aTxt.Insert( '#', 0 ) += cMarkSeperator ).
AppendAscii( pMarkToTable );
}
}
return aTxt;
}
SwTOXAuthority::SwTOXAuthority( const SwCntntNode& rNd,
SwFmtFld& rField, const SwTOXInternational& rIntl ) :
SwTOXSortTabBase( TOX_SORT_AUTHORITY, &rNd, 0, &rIntl ),
m_rField(rField)
{
if(rField.GetTxtFld())
nCntPos = *rField.GetTxtFld()->GetStart();
}
sal_uInt16 SwTOXAuthority::GetLevel() const
{
String sText(((SwAuthorityField*)m_rField.GetFld())->
GetFieldText(AUTH_FIELD_AUTHORITY_TYPE));
//#i18655# the level '0' is the heading level therefor the values are incremented here
sal_uInt16 nRet = 1;
if( pTOXIntl->IsNumeric( sText ) )
{
nRet = (sal_uInt16)sText.ToInt32();
nRet++;
}
//illegal values are also set to 'ARTICLE' as non-numeric values are
if(nRet > AUTH_TYPE_END)
nRet = 1;
return nRet;
}
static String lcl_GetText(SwFmtFld const& rField)
{
return rField.GetFld()->ExpandField(true);
}
void SwTOXAuthority::GetText_Impl( String& rTxt, String& ) const
{
rTxt = lcl_GetText(m_rField);
}
void SwTOXAuthority::FillText( SwTxtNode& rNd,
const SwIndex& rInsPos, sal_uInt16 nAuthField ) const
{
SwAuthorityField* pField = (SwAuthorityField*)m_rField.GetFld();
String sText;
if(AUTH_FIELD_IDENTIFIER == nAuthField)
{
sText = lcl_GetText(m_rField);
const SwAuthorityFieldType* pType = (const SwAuthorityFieldType*)pField->GetTyp();
sal_Unicode cChar = pType->GetPrefix();
if(cChar && cChar != ' ')
sText.Erase(0, 1);
cChar = pType->GetSuffix();
if(cChar && cChar != ' ')
sText.Erase(sText.Len() - 1, 1);
}
else if(AUTH_FIELD_AUTHORITY_TYPE == nAuthField)
{
sal_uInt16 nLevel = GetLevel();
if(nLevel)
sText = SwAuthorityFieldType::GetAuthTypeName((ToxAuthorityType) --nLevel);
}
else
sText = (pField->GetFieldText((ToxAuthorityField) nAuthField));
rNd.InsertText( sText, rInsPos );
}
bool SwTOXAuthority::operator==( const SwTOXSortTabBase& rCmp)
{
return nType == rCmp.nType &&
((SwAuthorityField*)m_rField.GetFld())->GetHandle() ==
((SwAuthorityField*)((SwTOXAuthority&)rCmp).m_rField.GetFld())->GetHandle();
}
bool SwTOXAuthority::operator<( const SwTOXSortTabBase& rBase)
{
bool bRet = false;
SwAuthorityField* pField = (SwAuthorityField*)m_rField.GetFld();
SwAuthorityFieldType* pType = (SwAuthorityFieldType*)
pField->GetTyp();
if(pType->IsSortByDocument())
bRet = SwTOXSortTabBase::operator<(rBase);
else
{
SwAuthorityField* pCmpField = (SwAuthorityField*)
((SwTOXAuthority&)rBase).m_rField.GetFld();
for(sal_uInt16 i = 0; i < pType->GetSortKeyCount(); i++)
{
const SwTOXSortKey* pKey = pType->GetSortKey(i);
String sMyTxt = pField->GetFieldText(pKey->eField);
String sMyTxtReading;
String sOtherTxt = pCmpField->GetFieldText(pKey->eField);
String sOtherTxtReading;
sal_Int32 nComp = pTOXIntl->Compare( sMyTxt, sMyTxtReading, GetLocale(),
sOtherTxt, sOtherTxtReading, rBase.GetLocale() );
if( nComp )
{
bRet = (-1 == nComp) == pKey->bSortAscending;
break;
}
}
}
return bRet;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */