/************************************************************************* * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: docglos.cxx,v $ * * $Revision: 1.4 $ * * last change: $Author: rt $ $Date: 2005-09-09 03:13:15 $ * * 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 * ************************************************************************/ #pragma hdrstop #ifndef _DOC_HXX #include #endif #ifndef _SHELLIO_HXX #include #endif #ifndef _PAM_HXX #include #endif #ifndef _SWUNDO_HXX #include #endif #ifndef _NDTXT_HXX #include #endif #ifndef _ACORRECT_HXX #include #endif #ifndef _CRSRSH_HXX #include #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 ) { // es wird mehr als 1 Node in die akt. Box kopiert. // Dann muessen die BoxAttribute aber entfernt werden. ClearBoxNumAttrs( rInsPos.nNode ); } SwDontExpandItem aACD; aACD.SaveDontExpandItems( rInsPos ); pGDoc->Copy( aCpyPam, rInsPos ); aACD.RestoreDontExpandItems( rInsPos ); if( pShell ) pShell->SaveTblBoxCntnt( &rInsPos ); } while( (_pStartCrsr=(SwPaM *)_pStartCrsr->GetNext()) != __pStartCrsr ); EndUndo( UNDO_INSGLOSSARY ); UnlockExpFlds(); if( !IsExpFldsLocked() ) UpdateExpFlds(); bRet = TRUE; } bInsOnlyTxtGlssry = bSav_IsInsGlossary; } rBlock.EndGetDoc(); return bRet; }