2000-09-18 23:08:29 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-09 02:13:15 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2005-09-09 02:13:15 +00:00
|
|
|
* $RCSfile: docglos.cxx,v $
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2008-02-26 13:06:28 +00:00
|
|
|
* $Revision: 1.9 $
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2008-02-26 13:06:28 +00:00
|
|
|
* last change: $Author: obo $ $Date: 2008-02-26 14:06:28 $
|
2000-09-18 23:08:29 +00:00
|
|
|
*
|
2005-09-09 02:13:15 +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
|
|
|
*
|
|
|
|
*
|
2005-09-09 02:13:15 +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
|
|
|
*
|
2005-09-09 02:13:15 +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
|
|
|
*
|
2005-09-09 02:13:15 +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
|
|
|
*
|
2005-09-09 02:13:15 +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
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 19:53:17 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_sw.hxx"
|
|
|
|
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
#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
|
2008-02-26 13:06:28 +00:00
|
|
|
#include <docsh.hxx>
|
|
|
|
|
|
|
|
#include <com/sun/star/document/XDocumentPropertiesSupplier.hpp>
|
|
|
|
#include <com/sun/star/document/XDocumentProperties.hpp>
|
|
|
|
#include <com/sun/star/beans/XPropertySet.hpp>
|
|
|
|
#include <com/sun/star/beans/XPropertySetInfo.hpp>
|
|
|
|
|
|
|
|
|
|
|
|
using namespace ::com::sun::star;
|
|
|
|
|
|
|
|
|
|
|
|
/// copy document properties via public interface
|
|
|
|
static void lcl_copyDocumentProperties(
|
|
|
|
uno::Reference<document::XDocumentProperties> i_xSource,
|
|
|
|
uno::Reference<document::XDocumentProperties> i_xTarget) {
|
|
|
|
DBG_ASSERT(i_xSource.is(), "null reference");
|
|
|
|
DBG_ASSERT(i_xTarget.is(), "null reference");
|
|
|
|
|
|
|
|
i_xTarget->setAuthor(i_xSource->getAuthor());
|
|
|
|
i_xTarget->setGenerator(i_xSource->getGenerator());
|
|
|
|
i_xTarget->setCreationDate(i_xSource->getCreationDate());
|
|
|
|
i_xTarget->setTitle(i_xSource->getTitle());
|
|
|
|
i_xTarget->setSubject(i_xSource->getSubject());
|
|
|
|
i_xTarget->setDescription(i_xSource->getDescription());
|
|
|
|
i_xTarget->setKeywords(i_xSource->getKeywords());
|
|
|
|
i_xTarget->setLanguage(i_xSource->getLanguage());
|
|
|
|
i_xTarget->setModifiedBy(i_xSource->getModifiedBy());
|
|
|
|
i_xTarget->setModificationDate(i_xSource->getModificationDate());
|
|
|
|
i_xTarget->setPrintedBy(i_xSource->getPrintedBy());
|
|
|
|
i_xTarget->setPrintDate(i_xSource->getPrintDate());
|
|
|
|
i_xTarget->setTemplateName(i_xSource->getTemplateName());
|
|
|
|
i_xTarget->setTemplateURL(i_xSource->getTemplateURL());
|
|
|
|
i_xTarget->setTemplateDate(i_xSource->getTemplateDate());
|
|
|
|
i_xTarget->setAutoloadURL(i_xSource->getAutoloadURL());
|
|
|
|
i_xTarget->setAutoloadSecs(i_xSource->getAutoloadSecs());
|
|
|
|
i_xTarget->setDefaultTarget(i_xSource->getDefaultTarget());
|
|
|
|
i_xTarget->setDocumentStatistics(i_xSource->getDocumentStatistics());
|
|
|
|
i_xTarget->setEditingCycles(i_xSource->getEditingCycles());
|
|
|
|
i_xTarget->setEditingDuration(i_xSource->getEditingDuration());
|
|
|
|
|
|
|
|
uno::Reference<beans::XPropertySet> xSourceUDSet(
|
|
|
|
i_xSource->getUserDefinedProperties(), uno::UNO_QUERY_THROW);
|
|
|
|
uno::Reference<beans::XPropertyContainer> xTargetUD(
|
|
|
|
i_xTarget->getUserDefinedProperties());
|
|
|
|
uno::Reference<beans::XPropertySet> xTargetUDSet(xTargetUD,
|
|
|
|
uno::UNO_QUERY_THROW);
|
|
|
|
uno::Sequence<beans::Property> tgtprops
|
|
|
|
= xTargetUDSet->getPropertySetInfo()->getProperties();
|
|
|
|
for (sal_Int32 i = 0; i < tgtprops.getLength(); ++i) {
|
|
|
|
try {
|
|
|
|
xTargetUD->removeProperty(tgtprops [i].Name);
|
|
|
|
} catch (uno::Exception &) {
|
|
|
|
// ignore
|
|
|
|
}
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
uno::Reference<beans::XPropertySetInfo> xSetInfo
|
|
|
|
= xSourceUDSet->getPropertySetInfo();
|
|
|
|
uno::Sequence<beans::Property> srcprops = xSetInfo->getProperties();
|
|
|
|
for (sal_Int32 i = 0; i < srcprops.getLength(); ++i) {
|
|
|
|
::rtl::OUString name = srcprops[i].Name;
|
|
|
|
xTargetUD->addProperty(name, srcprops[i].Attributes,
|
|
|
|
xSourceUDSet->getPropertyValue(name));
|
|
|
|
}
|
|
|
|
} catch (uno::Exception &) {
|
|
|
|
// ignore
|
|
|
|
}
|
|
|
|
}
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
/* -----------------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!
|
2006-08-14 14:58:24 +00:00
|
|
|
BOOL bSav_IsInsGlossary = mbInsOnlyTxtGlssry;
|
|
|
|
mbInsOnlyTxtGlssry = rBlock.IsOnlyTextBlock( nIdx );
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
if( rBlock.BeginGetDoc( nIdx ) )
|
|
|
|
{
|
|
|
|
SwDoc* pGDoc = rBlock.GetDoc();
|
|
|
|
|
|
|
|
// alle FixFelder aktualisieren. Dann aber auch mit der
|
|
|
|
// richtigen DocInfo!
|
2008-02-26 13:06:28 +00:00
|
|
|
// FIXME: UGLY: Because we cannot limit the range in which to do
|
|
|
|
// field updates, we must update the fixed fields at the glossary
|
|
|
|
// entry document.
|
|
|
|
// To be able to do this, we copy the document properties of the
|
|
|
|
// target document to the glossary document
|
|
|
|
DBG_ASSERT(GetDocShell(), "no SwDocShell");
|
|
|
|
uno::Reference<document::XDocumentPropertiesSupplier> xDPS(
|
|
|
|
GetDocShell()->GetModel(), uno::UNO_QUERY_THROW);
|
|
|
|
uno::Reference<document::XDocumentProperties> xDocProps
|
|
|
|
= xDPS->getDocumentProperties();
|
|
|
|
DBG_ASSERT(pGDoc->GetDocShell(), "no SwDocShell at glossary");
|
|
|
|
uno::Reference<document::XDocumentPropertiesSupplier> xGlosDPS(
|
|
|
|
pGDoc->GetDocShell()->GetModel(), uno::UNO_QUERY_THROW);
|
|
|
|
uno::Reference<document::XDocumentProperties> xGlosDocProps
|
|
|
|
= xGlosDPS->getDocumentProperties();
|
|
|
|
lcl_copyDocumentProperties(xDocProps, xGlosDocProps);
|
2006-08-14 14:58:24 +00:00
|
|
|
pGDoc->SetFixFields(false, NULL);
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
//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() );
|
|
|
|
|
2006-08-14 14:58:24 +00:00
|
|
|
StartUndo( UNDO_INSGLOSSARY, NULL );
|
2000-09-18 23:08:29 +00:00
|
|
|
SwPaM *_pStartCrsr = &rPaM, *__pStartCrsr = _pStartCrsr;
|
|
|
|
do {
|
|
|
|
|
|
|
|
SwPosition& rInsPos = *_pStartCrsr->GetPoint();
|
|
|
|
SwStartNode* pBoxSttNd = (SwStartNode*)rInsPos.nNode.GetNode().
|
|
|
|
FindTableBoxStartNode();
|
|
|
|
|
2004-06-01 06:41:27 +00:00
|
|
|
if( pBoxSttNd && 2 == pBoxSttNd->EndOfSectionIndex() -
|
|
|
|
pBoxSttNd->GetIndex() &&
|
|
|
|
aCpyPam.GetPoint()->nNode != aCpyPam.GetMark()->nNode )
|
2000-09-18 23:08:29 +00:00
|
|
|
{
|
2004-06-01 06:41:27 +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
|
|
|
}
|
2004-06-01 06:41:27 +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 );
|
2006-08-14 14:58:24 +00:00
|
|
|
EndUndo( UNDO_INSGLOSSARY, NULL );
|
2000-09-18 23:08:29 +00:00
|
|
|
|
|
|
|
UnlockExpFlds();
|
|
|
|
if( !IsExpFldsLocked() )
|
2006-08-14 14:58:24 +00:00
|
|
|
UpdateExpFlds(NULL, true);
|
2000-09-18 23:08:29 +00:00
|
|
|
bRet = TRUE;
|
|
|
|
}
|
2006-08-14 14:58:24 +00:00
|
|
|
mbInsOnlyTxtGlssry = bSav_IsInsGlossary;
|
2000-09-18 23:08:29 +00:00
|
|
|
}
|
|
|
|
rBlock.EndGetDoc();
|
|
|
|
return bRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
|