Files
libreoffice/sw/source/core/doc/docglos.cxx

141 lines
4.7 KiB
C++
Raw Normal View History

2000-09-18 23:08:29 +00:00
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 23:08:29 +00:00
*
* $RCSfile: docglos.cxx,v $
2000-09-18 23:08:29 +00:00
*
* $Revision: 1.4 $
2000-09-18 23:08:29 +00:00
*
* last change: $Author: rt $ $Date: 2005-09-09 03:13:15 $
2000-09-18 23:08:29 +00:00
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
2000-09-18 23:08:29 +00:00
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
2000-09-18 23:08:29 +00:00
*
* 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.
2000-09-18 23:08:29 +00:00
*
* 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.
2000-09-18 23:08:29 +00:00
*
* 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
2000-09-18 23:08:29 +00:00
*
************************************************************************/
#pragma hdrstop
#ifndef _DOC_HXX
#include <doc.hxx>
#endif
#ifndef _SHELLIO_HXX
#include <shellio.hxx>
#endif
#ifndef _PAM_HXX
#include <pam.hxx>
#endif
#ifndef _SWUNDO_HXX
#include <swundo.hxx>
#endif
#ifndef _NDTXT_HXX
#include <ndtxt.hxx>
#endif
#ifndef _ACORRECT_HXX
#include <acorrect.hxx>
#endif
#ifndef _CRSRSH_HXX
#include <crsrsh.hxx>
#endif
/* -----------------22.07.99 11:47-------------------
Description: inserts an AutoText block
--------------------------------------------------*/
BOOL SwDoc::InsertGlossary( SwTextBlocks& rBlock, const String& rEntry,
SwPaM& rPaM, SwCrsrShell* pShell )
{
BOOL bRet = FALSE;
USHORT nIdx = rBlock.GetIndex( rEntry );
if( (USHORT) -1 != nIdx )
{
// Bug #70238# ask the TextOnly-Flag before BeginGetDoc, because
// the method closed the Storage!
BOOL bSav_IsInsGlossary = bInsOnlyTxtGlssry;
bInsOnlyTxtGlssry = rBlock.IsOnlyTextBlock( nIdx );
if( rBlock.BeginGetDoc( nIdx ) )
{
SwDoc* pGDoc = rBlock.GetDoc();
// alle FixFelder aktualisieren. Dann aber auch mit der
// richtigen DocInfo!
pGDoc->SetInfo( *GetInfo() );
pGDoc->SetFixFields();
//StartAllAction();
LockExpFlds();
SwNodeIndex aStt( pGDoc->GetNodes().GetEndOfExtras(), 1 );
SwCntntNode* pCntntNd = pGDoc->GetNodes().GoNext( &aStt );
const SwTableNode* pTblNd = pCntntNd->FindTableNode();
SwPaM aCpyPam( pTblNd ? *(SwNode*)pTblNd : *(SwNode*)pCntntNd );
aCpyPam.SetMark();
// dann bis zum Ende vom Nodes Array
aCpyPam.GetPoint()->nNode = pGDoc->GetNodes().GetEndOfContent().GetIndex()-1;
pCntntNd = aCpyPam.GetCntntNode();
aCpyPam.GetPoint()->nContent.Assign( pCntntNd, pCntntNd->Len() );
StartUndo( UNDO_INSGLOSSARY );
SwPaM *_pStartCrsr = &rPaM, *__pStartCrsr = _pStartCrsr;
do {
const SwTxtNode* pTNd;
SwPosition& rInsPos = *_pStartCrsr->GetPoint();
SwStartNode* pBoxSttNd = (SwStartNode*)rInsPos.nNode.GetNode().
FindTableBoxStartNode();
if( pBoxSttNd && 2 == pBoxSttNd->EndOfSectionIndex() -
pBoxSttNd->GetIndex() &&
aCpyPam.GetPoint()->nNode != aCpyPam.GetMark()->nNode )
2000-09-18 23:08:29 +00:00
{
// es wird mehr als 1 Node in die akt. Box kopiert.
// Dann muessen die BoxAttribute aber entfernt werden.
ClearBoxNumAttrs( rInsPos.nNode );
2000-09-18 23:08:29 +00:00
}
SwDontExpandItem aACD;
aACD.SaveDontExpandItems( rInsPos );
pGDoc->Copy( aCpyPam, rInsPos );
aACD.RestoreDontExpandItems( rInsPos );
if( pShell )
pShell->SaveTblBoxCntnt( &rInsPos );
2000-09-18 23:08:29 +00:00
} while( (_pStartCrsr=(SwPaM *)_pStartCrsr->GetNext()) !=
__pStartCrsr );
EndUndo( UNDO_INSGLOSSARY );
UnlockExpFlds();
if( !IsExpFldsLocked() )
UpdateExpFlds();
bRet = TRUE;
}
bInsOnlyTxtGlssry = bSav_IsInsGlossary;
}
rBlock.EndGetDoc();
return bRet;
}